blob: dba0f6ad4e575a15af578ae6e500b71bed44fa0e [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;
Ladi Prosek44889942017-09-22 07:53:15 +0200203 unsigned long vmcs_host_cr3; /* May not match real cr3 */
204 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Nadav Har'Eld462b812011-05-24 15:26:10 +0300205 struct list_head loaded_vmcss_on_cpu_link;
206};
207
Avi Kivity26bb0982009-09-07 11:14:12 +0300208struct shared_msr_entry {
209 unsigned index;
210 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200211 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300212};
213
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300214/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300215 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
216 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
217 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
218 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
219 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
220 * More than one of these structures may exist, if L1 runs multiple L2 guests.
221 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
222 * underlying hardware which will be used to run L2.
223 * This structure is packed to ensure that its layout is identical across
224 * machines (necessary for live migration).
225 * If there are changes in this struct, VMCS12_REVISION must be changed.
226 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300227typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300228struct __packed vmcs12 {
229 /* According to the Intel spec, a VMCS region must start with the
230 * following two fields. Then follow implementation-specific data.
231 */
232 u32 revision_id;
233 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300234
Nadav Har'El27d6c862011-05-25 23:06:59 +0300235 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
236 u32 padding[7]; /* room for future expansion */
237
Nadav Har'El22bd0352011-05-25 23:05:57 +0300238 u64 io_bitmap_a;
239 u64 io_bitmap_b;
240 u64 msr_bitmap;
241 u64 vm_exit_msr_store_addr;
242 u64 vm_exit_msr_load_addr;
243 u64 vm_entry_msr_load_addr;
244 u64 tsc_offset;
245 u64 virtual_apic_page_addr;
246 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800247 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400248 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300249 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800250 u64 eoi_exit_bitmap0;
251 u64 eoi_exit_bitmap1;
252 u64 eoi_exit_bitmap2;
253 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400254 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800255 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300256 u64 guest_physical_address;
257 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400258 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300259 u64 guest_ia32_debugctl;
260 u64 guest_ia32_pat;
261 u64 guest_ia32_efer;
262 u64 guest_ia32_perf_global_ctrl;
263 u64 guest_pdptr0;
264 u64 guest_pdptr1;
265 u64 guest_pdptr2;
266 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100267 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300268 u64 host_ia32_pat;
269 u64 host_ia32_efer;
270 u64 host_ia32_perf_global_ctrl;
271 u64 padding64[8]; /* room for future expansion */
272 /*
273 * To allow migration of L1 (complete with its L2 guests) between
274 * machines of different natural widths (32 or 64 bit), we cannot have
275 * unsigned long fields with no explict size. We use u64 (aliased
276 * natural_width) instead. Luckily, x86 is little-endian.
277 */
278 natural_width cr0_guest_host_mask;
279 natural_width cr4_guest_host_mask;
280 natural_width cr0_read_shadow;
281 natural_width cr4_read_shadow;
282 natural_width cr3_target_value0;
283 natural_width cr3_target_value1;
284 natural_width cr3_target_value2;
285 natural_width cr3_target_value3;
286 natural_width exit_qualification;
287 natural_width guest_linear_address;
288 natural_width guest_cr0;
289 natural_width guest_cr3;
290 natural_width guest_cr4;
291 natural_width guest_es_base;
292 natural_width guest_cs_base;
293 natural_width guest_ss_base;
294 natural_width guest_ds_base;
295 natural_width guest_fs_base;
296 natural_width guest_gs_base;
297 natural_width guest_ldtr_base;
298 natural_width guest_tr_base;
299 natural_width guest_gdtr_base;
300 natural_width guest_idtr_base;
301 natural_width guest_dr7;
302 natural_width guest_rsp;
303 natural_width guest_rip;
304 natural_width guest_rflags;
305 natural_width guest_pending_dbg_exceptions;
306 natural_width guest_sysenter_esp;
307 natural_width guest_sysenter_eip;
308 natural_width host_cr0;
309 natural_width host_cr3;
310 natural_width host_cr4;
311 natural_width host_fs_base;
312 natural_width host_gs_base;
313 natural_width host_tr_base;
314 natural_width host_gdtr_base;
315 natural_width host_idtr_base;
316 natural_width host_ia32_sysenter_esp;
317 natural_width host_ia32_sysenter_eip;
318 natural_width host_rsp;
319 natural_width host_rip;
320 natural_width paddingl[8]; /* room for future expansion */
321 u32 pin_based_vm_exec_control;
322 u32 cpu_based_vm_exec_control;
323 u32 exception_bitmap;
324 u32 page_fault_error_code_mask;
325 u32 page_fault_error_code_match;
326 u32 cr3_target_count;
327 u32 vm_exit_controls;
328 u32 vm_exit_msr_store_count;
329 u32 vm_exit_msr_load_count;
330 u32 vm_entry_controls;
331 u32 vm_entry_msr_load_count;
332 u32 vm_entry_intr_info_field;
333 u32 vm_entry_exception_error_code;
334 u32 vm_entry_instruction_len;
335 u32 tpr_threshold;
336 u32 secondary_vm_exec_control;
337 u32 vm_instruction_error;
338 u32 vm_exit_reason;
339 u32 vm_exit_intr_info;
340 u32 vm_exit_intr_error_code;
341 u32 idt_vectoring_info_field;
342 u32 idt_vectoring_error_code;
343 u32 vm_exit_instruction_len;
344 u32 vmx_instruction_info;
345 u32 guest_es_limit;
346 u32 guest_cs_limit;
347 u32 guest_ss_limit;
348 u32 guest_ds_limit;
349 u32 guest_fs_limit;
350 u32 guest_gs_limit;
351 u32 guest_ldtr_limit;
352 u32 guest_tr_limit;
353 u32 guest_gdtr_limit;
354 u32 guest_idtr_limit;
355 u32 guest_es_ar_bytes;
356 u32 guest_cs_ar_bytes;
357 u32 guest_ss_ar_bytes;
358 u32 guest_ds_ar_bytes;
359 u32 guest_fs_ar_bytes;
360 u32 guest_gs_ar_bytes;
361 u32 guest_ldtr_ar_bytes;
362 u32 guest_tr_ar_bytes;
363 u32 guest_interruptibility_info;
364 u32 guest_activity_state;
365 u32 guest_sysenter_cs;
366 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100367 u32 vmx_preemption_timer_value;
368 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300369 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800370 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300371 u16 guest_es_selector;
372 u16 guest_cs_selector;
373 u16 guest_ss_selector;
374 u16 guest_ds_selector;
375 u16 guest_fs_selector;
376 u16 guest_gs_selector;
377 u16 guest_ldtr_selector;
378 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800379 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400380 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300381 u16 host_es_selector;
382 u16 host_cs_selector;
383 u16 host_ss_selector;
384 u16 host_ds_selector;
385 u16 host_fs_selector;
386 u16 host_gs_selector;
387 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300388};
389
390/*
391 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
392 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
393 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
394 */
395#define VMCS12_REVISION 0x11e57ed0
396
397/*
398 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
399 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
400 * current implementation, 4K are reserved to avoid future complications.
401 */
402#define VMCS12_SIZE 0x1000
403
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300404/* Used to remember the last vmcs02 used for some recently used vmcs12s */
405struct vmcs02_list {
406 struct list_head list;
407 gpa_t vmptr;
408 struct loaded_vmcs vmcs02;
409};
410
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300411/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300412 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
413 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
414 */
415struct nested_vmx {
416 /* Has the level1 guest done vmxon? */
417 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400418 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400419 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300420
421 /* The guest-physical address of the current VMCS L1 keeps for L2 */
422 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700423 /*
424 * Cache of the guest's VMCS, existing outside of guest memory.
425 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700426 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700427 */
428 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300429 /*
430 * Indicates if the shadow vmcs must be updated with the
431 * data hold by vmcs12
432 */
433 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300434
435 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
436 struct list_head vmcs02_pool;
437 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200438 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300439 /* L2 must run next, and mustn't decide to exit to L1. */
440 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300441 /*
442 * Guest pages referred to in vmcs02 with host-physical pointers, so
443 * we must keep them pinned while L2 runs.
444 */
445 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800446 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800447 struct page *pi_desc_page;
448 struct pi_desc *pi_desc;
449 bool pi_pending;
450 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100451
Radim Krčmářd048c092016-08-08 20:16:22 +0200452 unsigned long *msr_bitmap;
453
Jan Kiszkaf4124502014-03-07 20:03:13 +0100454 struct hrtimer preemption_timer;
455 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200456
457 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
458 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800459
Wanpeng Li5c614b32015-10-13 09:18:36 -0700460 u16 vpid02;
461 u16 last_vpid;
462
David Matlack0115f9c2016-11-29 18:14:06 -0800463 /*
464 * We only store the "true" versions of the VMX capability MSRs. We
465 * generate the "non-true" versions by setting the must-be-1 bits
466 * according to the SDM.
467 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800468 u32 nested_vmx_procbased_ctls_low;
469 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800470 u32 nested_vmx_secondary_ctls_low;
471 u32 nested_vmx_secondary_ctls_high;
472 u32 nested_vmx_pinbased_ctls_low;
473 u32 nested_vmx_pinbased_ctls_high;
474 u32 nested_vmx_exit_ctls_low;
475 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800476 u32 nested_vmx_entry_ctls_low;
477 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800478 u32 nested_vmx_misc_low;
479 u32 nested_vmx_misc_high;
480 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700481 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800482 u64 nested_vmx_basic;
483 u64 nested_vmx_cr0_fixed0;
484 u64 nested_vmx_cr0_fixed1;
485 u64 nested_vmx_cr4_fixed0;
486 u64 nested_vmx_cr4_fixed1;
487 u64 nested_vmx_vmcs_enum;
Bandan Das27c42a12017-08-03 15:54:42 -0400488 u64 nested_vmx_vmfunc_controls;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200489
490 /* SMM related state */
491 struct {
492 /* in VMX operation on SMM entry? */
493 bool vmxon;
494 /* in guest mode on SMM entry? */
495 bool guest_mode;
496 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300497};
498
Yang Zhang01e439b2013-04-11 19:25:12 +0800499#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800500#define POSTED_INTR_SN 1
501
Yang Zhang01e439b2013-04-11 19:25:12 +0800502/* Posted-Interrupt Descriptor */
503struct pi_desc {
504 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800505 union {
506 struct {
507 /* bit 256 - Outstanding Notification */
508 u16 on : 1,
509 /* bit 257 - Suppress Notification */
510 sn : 1,
511 /* bit 271:258 - Reserved */
512 rsvd_1 : 14;
513 /* bit 279:272 - Notification Vector */
514 u8 nv;
515 /* bit 287:280 - Reserved */
516 u8 rsvd_2;
517 /* bit 319:288 - Notification Destination */
518 u32 ndst;
519 };
520 u64 control;
521 };
522 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800523} __aligned(64);
524
Yang Zhanga20ed542013-04-11 19:25:15 +0800525static bool pi_test_and_set_on(struct pi_desc *pi_desc)
526{
527 return test_and_set_bit(POSTED_INTR_ON,
528 (unsigned long *)&pi_desc->control);
529}
530
531static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
532{
533 return test_and_clear_bit(POSTED_INTR_ON,
534 (unsigned long *)&pi_desc->control);
535}
536
537static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
538{
539 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
540}
541
Feng Wuebbfc762015-09-18 22:29:46 +0800542static inline void pi_clear_sn(struct pi_desc *pi_desc)
543{
544 return clear_bit(POSTED_INTR_SN,
545 (unsigned long *)&pi_desc->control);
546}
547
548static inline void pi_set_sn(struct pi_desc *pi_desc)
549{
550 return set_bit(POSTED_INTR_SN,
551 (unsigned long *)&pi_desc->control);
552}
553
Paolo Bonziniad361092016-09-20 16:15:05 +0200554static inline void pi_clear_on(struct pi_desc *pi_desc)
555{
556 clear_bit(POSTED_INTR_ON,
557 (unsigned long *)&pi_desc->control);
558}
559
Feng Wuebbfc762015-09-18 22:29:46 +0800560static inline int pi_test_on(struct pi_desc *pi_desc)
561{
562 return test_bit(POSTED_INTR_ON,
563 (unsigned long *)&pi_desc->control);
564}
565
566static inline int pi_test_sn(struct pi_desc *pi_desc)
567{
568 return test_bit(POSTED_INTR_SN,
569 (unsigned long *)&pi_desc->control);
570}
571
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400572struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000573 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300574 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300575 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300576 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200577 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200578 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300579 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400580 int nmsrs;
581 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800582 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400583#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300584 u64 msr_host_kernel_gs_base;
585 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400586#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200587 u32 vm_entry_controls_shadow;
588 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200589 u32 secondary_exec_control;
590
Nadav Har'Eld462b812011-05-24 15:26:10 +0300591 /*
592 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
593 * non-nested (L1) guest, it always points to vmcs01. For a nested
594 * guest (L2), it points to a different VMCS.
595 */
596 struct loaded_vmcs vmcs01;
597 struct loaded_vmcs *loaded_vmcs;
598 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300599 struct msr_autoload {
600 unsigned nr;
601 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
602 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
603 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400604 struct {
605 int loaded;
606 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300607#ifdef CONFIG_X86_64
608 u16 ds_sel, es_sel;
609#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200610 int gs_ldt_reload_needed;
611 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000612 u64 msr_host_bndcfgs;
Mike Dayd77c26f2007-10-08 09:02:08 -0400613 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200614 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300615 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300616 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300617 struct kvm_segment segs[8];
618 } rmode;
619 struct {
620 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300621 struct kvm_save_segment {
622 u16 selector;
623 unsigned long base;
624 u32 limit;
625 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300626 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300627 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800628 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300629 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200630
Andi Kleena0861c02009-06-08 17:37:09 +0800631 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800632
Yang Zhang01e439b2013-04-11 19:25:12 +0800633 /* Posted interrupt descriptor */
634 struct pi_desc pi_desc;
635
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300636 /* Support for a guest hypervisor (nested VMX) */
637 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200638
639 /* Dynamic PLE window. */
640 int ple_window;
641 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800642
643 /* Support for PML */
644#define PML_ENTITY_NUM 512
645 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800646
Yunhong Jiang64672c92016-06-13 14:19:59 -0700647 /* apic deadline value in host tsc */
648 u64 hv_deadline_tsc;
649
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800650 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800651
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800652 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800653
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800654 /*
655 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
656 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
657 * in msr_ia32_feature_control_valid_bits.
658 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800659 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800660 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400661};
662
Avi Kivity2fb92db2011-04-27 19:42:18 +0300663enum segment_cache_field {
664 SEG_FIELD_SEL = 0,
665 SEG_FIELD_BASE = 1,
666 SEG_FIELD_LIMIT = 2,
667 SEG_FIELD_AR = 3,
668
669 SEG_FIELD_NR = 4
670};
671
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400672static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
673{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000674 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400675}
676
Feng Wuefc64402015-09-18 22:29:51 +0800677static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
678{
679 return &(to_vmx(vcpu)->pi_desc);
680}
681
Nadav Har'El22bd0352011-05-25 23:05:57 +0300682#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
683#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
684#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
685 [number##_HIGH] = VMCS12_OFFSET(name)+4
686
Abel Gordon4607c2d2013-04-18 14:35:55 +0300687
Bandan Dasfe2b2012014-04-21 15:20:14 -0400688static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300689 /*
690 * We do NOT shadow fields that are modified when L0
691 * traps and emulates any vmx instruction (e.g. VMPTRLD,
692 * VMXON...) executed by L1.
693 * For example, VM_INSTRUCTION_ERROR is read
694 * by L1 if a vmx instruction fails (part of the error path).
695 * Note the code assumes this logic. If for some reason
696 * we start shadowing these fields then we need to
697 * force a shadow sync when L0 emulates vmx instructions
698 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
699 * by nested_vmx_failValid)
700 */
701 VM_EXIT_REASON,
702 VM_EXIT_INTR_INFO,
703 VM_EXIT_INSTRUCTION_LEN,
704 IDT_VECTORING_INFO_FIELD,
705 IDT_VECTORING_ERROR_CODE,
706 VM_EXIT_INTR_ERROR_CODE,
707 EXIT_QUALIFICATION,
708 GUEST_LINEAR_ADDRESS,
709 GUEST_PHYSICAL_ADDRESS
710};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400711static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300712 ARRAY_SIZE(shadow_read_only_fields);
713
Bandan Dasfe2b2012014-04-21 15:20:14 -0400714static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800715 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300716 GUEST_RIP,
717 GUEST_RSP,
718 GUEST_CR0,
719 GUEST_CR3,
720 GUEST_CR4,
721 GUEST_INTERRUPTIBILITY_INFO,
722 GUEST_RFLAGS,
723 GUEST_CS_SELECTOR,
724 GUEST_CS_AR_BYTES,
725 GUEST_CS_LIMIT,
726 GUEST_CS_BASE,
727 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100728 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300729 CR0_GUEST_HOST_MASK,
730 CR0_READ_SHADOW,
731 CR4_READ_SHADOW,
732 TSC_OFFSET,
733 EXCEPTION_BITMAP,
734 CPU_BASED_VM_EXEC_CONTROL,
735 VM_ENTRY_EXCEPTION_ERROR_CODE,
736 VM_ENTRY_INTR_INFO_FIELD,
737 VM_ENTRY_INSTRUCTION_LEN,
738 VM_ENTRY_EXCEPTION_ERROR_CODE,
739 HOST_FS_BASE,
740 HOST_GS_BASE,
741 HOST_FS_SELECTOR,
742 HOST_GS_SELECTOR
743};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400744static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300745 ARRAY_SIZE(shadow_read_write_fields);
746
Mathias Krause772e0312012-08-30 01:30:19 +0200747static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300748 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800749 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300750 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
751 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
752 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
753 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
754 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
755 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
756 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
757 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800758 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400759 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300760 FIELD(HOST_ES_SELECTOR, host_es_selector),
761 FIELD(HOST_CS_SELECTOR, host_cs_selector),
762 FIELD(HOST_SS_SELECTOR, host_ss_selector),
763 FIELD(HOST_DS_SELECTOR, host_ds_selector),
764 FIELD(HOST_FS_SELECTOR, host_fs_selector),
765 FIELD(HOST_GS_SELECTOR, host_gs_selector),
766 FIELD(HOST_TR_SELECTOR, host_tr_selector),
767 FIELD64(IO_BITMAP_A, io_bitmap_a),
768 FIELD64(IO_BITMAP_B, io_bitmap_b),
769 FIELD64(MSR_BITMAP, msr_bitmap),
770 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
771 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
772 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
773 FIELD64(TSC_OFFSET, tsc_offset),
774 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
775 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800776 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400777 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300778 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800779 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
780 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
781 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
782 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400783 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800784 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300785 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
786 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400787 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300788 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
789 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
790 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
791 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
792 FIELD64(GUEST_PDPTR0, guest_pdptr0),
793 FIELD64(GUEST_PDPTR1, guest_pdptr1),
794 FIELD64(GUEST_PDPTR2, guest_pdptr2),
795 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100796 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300797 FIELD64(HOST_IA32_PAT, host_ia32_pat),
798 FIELD64(HOST_IA32_EFER, host_ia32_efer),
799 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
800 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
801 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
802 FIELD(EXCEPTION_BITMAP, exception_bitmap),
803 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
804 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
805 FIELD(CR3_TARGET_COUNT, cr3_target_count),
806 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
807 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
808 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
809 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
810 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
811 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
812 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
813 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
814 FIELD(TPR_THRESHOLD, tpr_threshold),
815 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
816 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
817 FIELD(VM_EXIT_REASON, vm_exit_reason),
818 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
819 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
820 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
821 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
822 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
823 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
824 FIELD(GUEST_ES_LIMIT, guest_es_limit),
825 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
826 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
827 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
828 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
829 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
830 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
831 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
832 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
833 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
834 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
835 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
836 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
837 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
838 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
839 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
840 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
841 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
842 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
843 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
844 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
845 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100846 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300847 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
848 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
849 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
850 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
851 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
852 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
853 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
854 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
855 FIELD(EXIT_QUALIFICATION, exit_qualification),
856 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
857 FIELD(GUEST_CR0, guest_cr0),
858 FIELD(GUEST_CR3, guest_cr3),
859 FIELD(GUEST_CR4, guest_cr4),
860 FIELD(GUEST_ES_BASE, guest_es_base),
861 FIELD(GUEST_CS_BASE, guest_cs_base),
862 FIELD(GUEST_SS_BASE, guest_ss_base),
863 FIELD(GUEST_DS_BASE, guest_ds_base),
864 FIELD(GUEST_FS_BASE, guest_fs_base),
865 FIELD(GUEST_GS_BASE, guest_gs_base),
866 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
867 FIELD(GUEST_TR_BASE, guest_tr_base),
868 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
869 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
870 FIELD(GUEST_DR7, guest_dr7),
871 FIELD(GUEST_RSP, guest_rsp),
872 FIELD(GUEST_RIP, guest_rip),
873 FIELD(GUEST_RFLAGS, guest_rflags),
874 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
875 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
876 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
877 FIELD(HOST_CR0, host_cr0),
878 FIELD(HOST_CR3, host_cr3),
879 FIELD(HOST_CR4, host_cr4),
880 FIELD(HOST_FS_BASE, host_fs_base),
881 FIELD(HOST_GS_BASE, host_gs_base),
882 FIELD(HOST_TR_BASE, host_tr_base),
883 FIELD(HOST_GDTR_BASE, host_gdtr_base),
884 FIELD(HOST_IDTR_BASE, host_idtr_base),
885 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
886 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
887 FIELD(HOST_RSP, host_rsp),
888 FIELD(HOST_RIP, host_rip),
889};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300890
891static inline short vmcs_field_to_offset(unsigned long field)
892{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100893 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
894
895 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
896 vmcs_field_to_offset_table[field] == 0)
897 return -ENOENT;
898
Nadav Har'El22bd0352011-05-25 23:05:57 +0300899 return vmcs_field_to_offset_table[field];
900}
901
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300902static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
903{
David Matlack4f2777b2016-07-13 17:16:37 -0700904 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300905}
906
Peter Feiner995f00a2017-06-30 17:26:32 -0700907static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300908static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700909static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800910static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300911static void vmx_set_segment(struct kvm_vcpu *vcpu,
912 struct kvm_segment *var, int seg);
913static void vmx_get_segment(struct kvm_vcpu *vcpu,
914 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200915static bool guest_state_valid(struct kvm_vcpu *vcpu);
916static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +0300917static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200918static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
919static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
920static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
921 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300922
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923static DEFINE_PER_CPU(struct vmcs *, vmxarea);
924static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300925/*
926 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
927 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
928 */
929static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930
Feng Wubf9f6ac2015-09-18 22:29:55 +0800931/*
932 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
933 * can find which vCPU should be waken up.
934 */
935static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
936static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
937
Radim Krčmář23611332016-09-29 22:41:33 +0200938enum {
939 VMX_IO_BITMAP_A,
940 VMX_IO_BITMAP_B,
941 VMX_MSR_BITMAP_LEGACY,
942 VMX_MSR_BITMAP_LONGMODE,
943 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
944 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
945 VMX_MSR_BITMAP_LEGACY_X2APIC,
946 VMX_MSR_BITMAP_LONGMODE_X2APIC,
947 VMX_VMREAD_BITMAP,
948 VMX_VMWRITE_BITMAP,
949 VMX_BITMAP_NR
950};
951
952static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
953
954#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
955#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
956#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
957#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
958#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
959#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
960#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
961#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
962#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
963#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300964
Avi Kivity110312c2010-12-21 12:54:20 +0200965static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200966static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200967
Sheng Yang2384d2b2008-01-17 15:14:33 +0800968static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
969static DEFINE_SPINLOCK(vmx_vpid_lock);
970
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300971static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972 int size;
973 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300974 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300976 u32 pin_based_exec_ctrl;
977 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800978 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300979 u32 vmexit_ctrl;
980 u32 vmentry_ctrl;
981} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982
Hannes Ederefff9e52008-11-28 17:02:06 +0100983static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800984 u32 ept;
985 u32 vpid;
986} vmx_capability;
987
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988#define VMX_SEGMENT_FIELD(seg) \
989 [VCPU_SREG_##seg] = { \
990 .selector = GUEST_##seg##_SELECTOR, \
991 .base = GUEST_##seg##_BASE, \
992 .limit = GUEST_##seg##_LIMIT, \
993 .ar_bytes = GUEST_##seg##_AR_BYTES, \
994 }
995
Mathias Krause772e0312012-08-30 01:30:19 +0200996static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 unsigned selector;
998 unsigned base;
999 unsigned limit;
1000 unsigned ar_bytes;
1001} kvm_vmx_segment_fields[] = {
1002 VMX_SEGMENT_FIELD(CS),
1003 VMX_SEGMENT_FIELD(DS),
1004 VMX_SEGMENT_FIELD(ES),
1005 VMX_SEGMENT_FIELD(FS),
1006 VMX_SEGMENT_FIELD(GS),
1007 VMX_SEGMENT_FIELD(SS),
1008 VMX_SEGMENT_FIELD(TR),
1009 VMX_SEGMENT_FIELD(LDTR),
1010};
1011
Avi Kivity26bb0982009-09-07 11:14:12 +03001012static u64 host_efer;
1013
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001014static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1015
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001016/*
Brian Gerst8c065852010-07-17 09:03:26 -04001017 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001018 * away by decrementing the array size.
1019 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001021#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001022 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001024 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026
Jan Kiszka5bb16012016-02-09 20:14:21 +01001027static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028{
1029 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1030 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001031 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1032}
1033
Jan Kiszka6f054852016-02-09 20:15:18 +01001034static inline bool is_debug(u32 intr_info)
1035{
1036 return is_exception_n(intr_info, DB_VECTOR);
1037}
1038
1039static inline bool is_breakpoint(u32 intr_info)
1040{
1041 return is_exception_n(intr_info, BP_VECTOR);
1042}
1043
Jan Kiszka5bb16012016-02-09 20:14:21 +01001044static inline bool is_page_fault(u32 intr_info)
1045{
1046 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001047}
1048
Gui Jianfeng31299942010-03-15 17:29:09 +08001049static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001050{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001051 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001052}
1053
Gui Jianfeng31299942010-03-15 17:29:09 +08001054static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001055{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001056 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001057}
1058
Gui Jianfeng31299942010-03-15 17:29:09 +08001059static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060{
1061 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1062 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1063}
1064
Gui Jianfeng31299942010-03-15 17:29:09 +08001065static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001066{
1067 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1068 INTR_INFO_VALID_MASK)) ==
1069 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1070}
1071
Gui Jianfeng31299942010-03-15 17:29:09 +08001072static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001073{
Sheng Yang04547152009-04-01 15:52:31 +08001074 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001075}
1076
Gui Jianfeng31299942010-03-15 17:29:09 +08001077static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001078{
Sheng Yang04547152009-04-01 15:52:31 +08001079 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080}
1081
Paolo Bonzini35754c92015-07-29 12:05:37 +02001082static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001083{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001084 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001085}
1086
Gui Jianfeng31299942010-03-15 17:29:09 +08001087static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001088{
Sheng Yang04547152009-04-01 15:52:31 +08001089 return vmcs_config.cpu_based_exec_ctrl &
1090 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001091}
1092
Avi Kivity774ead32007-12-26 13:57:04 +02001093static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001094{
Sheng Yang04547152009-04-01 15:52:31 +08001095 return vmcs_config.cpu_based_2nd_exec_ctrl &
1096 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1097}
1098
Yang Zhang8d146952013-01-25 10:18:50 +08001099static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1100{
1101 return vmcs_config.cpu_based_2nd_exec_ctrl &
1102 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1103}
1104
Yang Zhang83d4c282013-01-25 10:18:49 +08001105static inline bool cpu_has_vmx_apic_register_virt(void)
1106{
1107 return vmcs_config.cpu_based_2nd_exec_ctrl &
1108 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1109}
1110
Yang Zhangc7c9c562013-01-25 10:18:51 +08001111static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1112{
1113 return vmcs_config.cpu_based_2nd_exec_ctrl &
1114 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1115}
1116
Yunhong Jiang64672c92016-06-13 14:19:59 -07001117/*
1118 * Comment's format: document - errata name - stepping - processor name.
1119 * Refer from
1120 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1121 */
1122static u32 vmx_preemption_cpu_tfms[] = {
1123/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11240x000206E6,
1125/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1126/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1127/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11280x00020652,
1129/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11300x00020655,
1131/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1132/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1133/*
1134 * 320767.pdf - AAP86 - B1 -
1135 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1136 */
11370x000106E5,
1138/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11390x000106A0,
1140/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11410x000106A1,
1142/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11430x000106A4,
1144 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1145 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1146 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11470x000106A5,
1148};
1149
1150static inline bool cpu_has_broken_vmx_preemption_timer(void)
1151{
1152 u32 eax = cpuid_eax(0x00000001), i;
1153
1154 /* Clear the reserved bits */
1155 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001156 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001157 if (eax == vmx_preemption_cpu_tfms[i])
1158 return true;
1159
1160 return false;
1161}
1162
1163static inline bool cpu_has_vmx_preemption_timer(void)
1164{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001165 return vmcs_config.pin_based_exec_ctrl &
1166 PIN_BASED_VMX_PREEMPTION_TIMER;
1167}
1168
Yang Zhang01e439b2013-04-11 19:25:12 +08001169static inline bool cpu_has_vmx_posted_intr(void)
1170{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001171 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1172 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001173}
1174
1175static inline bool cpu_has_vmx_apicv(void)
1176{
1177 return cpu_has_vmx_apic_register_virt() &&
1178 cpu_has_vmx_virtual_intr_delivery() &&
1179 cpu_has_vmx_posted_intr();
1180}
1181
Sheng Yang04547152009-04-01 15:52:31 +08001182static inline bool cpu_has_vmx_flexpriority(void)
1183{
1184 return cpu_has_vmx_tpr_shadow() &&
1185 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001186}
1187
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188static inline bool cpu_has_vmx_ept_execute_only(void)
1189{
Gui Jianfeng31299942010-03-15 17:29:09 +08001190 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001191}
1192
Marcelo Tosattie7997942009-06-11 12:07:40 -03001193static inline bool cpu_has_vmx_ept_2m_page(void)
1194{
Gui Jianfeng31299942010-03-15 17:29:09 +08001195 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001196}
1197
Sheng Yang878403b2010-01-05 19:02:29 +08001198static inline bool cpu_has_vmx_ept_1g_page(void)
1199{
Gui Jianfeng31299942010-03-15 17:29:09 +08001200 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001201}
1202
Sheng Yang4bc9b982010-06-02 14:05:24 +08001203static inline bool cpu_has_vmx_ept_4levels(void)
1204{
1205 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1206}
1207
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001208static inline bool cpu_has_vmx_ept_mt_wb(void)
1209{
1210 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1211}
1212
Yu Zhang855feb62017-08-24 20:27:55 +08001213static inline bool cpu_has_vmx_ept_5levels(void)
1214{
1215 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1216}
1217
Xudong Hao83c3a332012-05-28 19:33:35 +08001218static inline bool cpu_has_vmx_ept_ad_bits(void)
1219{
1220 return vmx_capability.ept & VMX_EPT_AD_BIT;
1221}
1222
Gui Jianfeng31299942010-03-15 17:29:09 +08001223static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001224{
Gui Jianfeng31299942010-03-15 17:29:09 +08001225 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001226}
1227
Gui Jianfeng31299942010-03-15 17:29:09 +08001228static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001229{
Gui Jianfeng31299942010-03-15 17:29:09 +08001230 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001231}
1232
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001233static inline bool cpu_has_vmx_invvpid_single(void)
1234{
1235 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1236}
1237
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001238static inline bool cpu_has_vmx_invvpid_global(void)
1239{
1240 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1241}
1242
Wanpeng Li08d839c2017-03-23 05:30:08 -07001243static inline bool cpu_has_vmx_invvpid(void)
1244{
1245 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1246}
1247
Gui Jianfeng31299942010-03-15 17:29:09 +08001248static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001249{
Sheng Yang04547152009-04-01 15:52:31 +08001250 return vmcs_config.cpu_based_2nd_exec_ctrl &
1251 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001252}
1253
Gui Jianfeng31299942010-03-15 17:29:09 +08001254static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001255{
1256 return vmcs_config.cpu_based_2nd_exec_ctrl &
1257 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1258}
1259
Gui Jianfeng31299942010-03-15 17:29:09 +08001260static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001261{
1262 return vmcs_config.cpu_based_2nd_exec_ctrl &
1263 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1264}
1265
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001266static inline bool cpu_has_vmx_basic_inout(void)
1267{
1268 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1269}
1270
Paolo Bonzini35754c92015-07-29 12:05:37 +02001271static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001272{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001273 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001274}
1275
Gui Jianfeng31299942010-03-15 17:29:09 +08001276static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001277{
Sheng Yang04547152009-04-01 15:52:31 +08001278 return vmcs_config.cpu_based_2nd_exec_ctrl &
1279 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001280}
1281
Gui Jianfeng31299942010-03-15 17:29:09 +08001282static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001283{
1284 return vmcs_config.cpu_based_2nd_exec_ctrl &
1285 SECONDARY_EXEC_RDTSCP;
1286}
1287
Mao, Junjiead756a12012-07-02 01:18:48 +00001288static inline bool cpu_has_vmx_invpcid(void)
1289{
1290 return vmcs_config.cpu_based_2nd_exec_ctrl &
1291 SECONDARY_EXEC_ENABLE_INVPCID;
1292}
1293
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001294static inline bool cpu_has_vmx_wbinvd_exit(void)
1295{
1296 return vmcs_config.cpu_based_2nd_exec_ctrl &
1297 SECONDARY_EXEC_WBINVD_EXITING;
1298}
1299
Abel Gordonabc4fc52013-04-18 14:35:25 +03001300static inline bool cpu_has_vmx_shadow_vmcs(void)
1301{
1302 u64 vmx_msr;
1303 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1304 /* check if the cpu supports writing r/o exit information fields */
1305 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1306 return false;
1307
1308 return vmcs_config.cpu_based_2nd_exec_ctrl &
1309 SECONDARY_EXEC_SHADOW_VMCS;
1310}
1311
Kai Huang843e4332015-01-28 10:54:28 +08001312static inline bool cpu_has_vmx_pml(void)
1313{
1314 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1315}
1316
Haozhong Zhang64903d62015-10-20 15:39:09 +08001317static inline bool cpu_has_vmx_tsc_scaling(void)
1318{
1319 return vmcs_config.cpu_based_2nd_exec_ctrl &
1320 SECONDARY_EXEC_TSC_SCALING;
1321}
1322
Bandan Das2a499e42017-08-03 15:54:41 -04001323static inline bool cpu_has_vmx_vmfunc(void)
1324{
1325 return vmcs_config.cpu_based_2nd_exec_ctrl &
1326 SECONDARY_EXEC_ENABLE_VMFUNC;
1327}
1328
Sheng Yang04547152009-04-01 15:52:31 +08001329static inline bool report_flexpriority(void)
1330{
1331 return flexpriority_enabled;
1332}
1333
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001334static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1335{
1336 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1337}
1338
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001339static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1340{
1341 return vmcs12->cpu_based_vm_exec_control & bit;
1342}
1343
1344static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1345{
1346 return (vmcs12->cpu_based_vm_exec_control &
1347 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1348 (vmcs12->secondary_vm_exec_control & bit);
1349}
1350
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001351static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001352{
1353 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1354}
1355
Jan Kiszkaf4124502014-03-07 20:03:13 +01001356static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1357{
1358 return vmcs12->pin_based_vm_exec_control &
1359 PIN_BASED_VMX_PREEMPTION_TIMER;
1360}
1361
Nadav Har'El155a97a2013-08-05 11:07:16 +03001362static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1363{
1364 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1365}
1366
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001367static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1368{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001369 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001370}
1371
Bandan Dasc5f983f2017-05-05 15:25:14 -04001372static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1373{
1374 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1375}
1376
Wincy Vanf2b93282015-02-03 23:56:03 +08001377static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1378{
1379 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1380}
1381
Wanpeng Li5c614b32015-10-13 09:18:36 -07001382static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1383{
1384 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1385}
1386
Wincy Van82f0dd42015-02-03 23:57:18 +08001387static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1388{
1389 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1390}
1391
Wincy Van608406e2015-02-03 23:57:51 +08001392static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1393{
1394 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1395}
1396
Wincy Van705699a2015-02-03 23:58:17 +08001397static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1398{
1399 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1400}
1401
Bandan Das27c42a12017-08-03 15:54:42 -04001402static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1403{
1404 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1405}
1406
Bandan Das41ab9372017-08-03 15:54:43 -04001407static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1408{
1409 return nested_cpu_has_vmfunc(vmcs12) &&
1410 (vmcs12->vm_function_control &
1411 VMX_VMFUNC_EPTP_SWITCHING);
1412}
1413
Jim Mattsonef85b672016-12-12 11:01:37 -08001414static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001415{
1416 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001417 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001418}
1419
Jan Kiszka533558b2014-01-04 18:47:20 +01001420static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1421 u32 exit_intr_info,
1422 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001423static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1424 struct vmcs12 *vmcs12,
1425 u32 reason, unsigned long qualification);
1426
Rusty Russell8b9cf982007-07-30 16:31:43 +10001427static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001428{
1429 int i;
1430
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001431 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001432 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001433 return i;
1434 return -1;
1435}
1436
Sheng Yang2384d2b2008-01-17 15:14:33 +08001437static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1438{
1439 struct {
1440 u64 vpid : 16;
1441 u64 rsvd : 48;
1442 u64 gva;
1443 } operand = { vpid, 0, gva };
1444
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001445 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001446 /* CF==1 or ZF==1 --> rc = -1 */
1447 "; ja 1f ; ud2 ; 1:"
1448 : : "a"(&operand), "c"(ext) : "cc", "memory");
1449}
1450
Sheng Yang14394422008-04-28 12:24:45 +08001451static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1452{
1453 struct {
1454 u64 eptp, gpa;
1455 } operand = {eptp, gpa};
1456
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001457 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001458 /* CF==1 or ZF==1 --> rc = -1 */
1459 "; ja 1f ; ud2 ; 1:\n"
1460 : : "a" (&operand), "c" (ext) : "cc", "memory");
1461}
1462
Avi Kivity26bb0982009-09-07 11:14:12 +03001463static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001464{
1465 int i;
1466
Rusty Russell8b9cf982007-07-30 16:31:43 +10001467 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001468 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001469 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001470 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001471}
1472
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473static void vmcs_clear(struct vmcs *vmcs)
1474{
1475 u64 phys_addr = __pa(vmcs);
1476 u8 error;
1477
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001478 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001479 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480 : "cc", "memory");
1481 if (error)
1482 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1483 vmcs, phys_addr);
1484}
1485
Nadav Har'Eld462b812011-05-24 15:26:10 +03001486static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1487{
1488 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001489 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1490 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001491 loaded_vmcs->cpu = -1;
1492 loaded_vmcs->launched = 0;
1493}
1494
Dongxiao Xu7725b892010-05-11 18:29:38 +08001495static void vmcs_load(struct vmcs *vmcs)
1496{
1497 u64 phys_addr = __pa(vmcs);
1498 u8 error;
1499
1500 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001501 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001502 : "cc", "memory");
1503 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001504 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001505 vmcs, phys_addr);
1506}
1507
Dave Young2965faa2015-09-09 15:38:55 -07001508#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001509/*
1510 * This bitmap is used to indicate whether the vmclear
1511 * operation is enabled on all cpus. All disabled by
1512 * default.
1513 */
1514static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1515
1516static inline void crash_enable_local_vmclear(int cpu)
1517{
1518 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1519}
1520
1521static inline void crash_disable_local_vmclear(int cpu)
1522{
1523 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1524}
1525
1526static inline int crash_local_vmclear_enabled(int cpu)
1527{
1528 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1529}
1530
1531static void crash_vmclear_local_loaded_vmcss(void)
1532{
1533 int cpu = raw_smp_processor_id();
1534 struct loaded_vmcs *v;
1535
1536 if (!crash_local_vmclear_enabled(cpu))
1537 return;
1538
1539 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1540 loaded_vmcss_on_cpu_link)
1541 vmcs_clear(v->vmcs);
1542}
1543#else
1544static inline void crash_enable_local_vmclear(int cpu) { }
1545static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001546#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001547
Nadav Har'Eld462b812011-05-24 15:26:10 +03001548static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001550 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001551 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552
Nadav Har'Eld462b812011-05-24 15:26:10 +03001553 if (loaded_vmcs->cpu != cpu)
1554 return; /* vcpu migration can race with cpu offline */
1555 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001557 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001558 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001559
1560 /*
1561 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1562 * is before setting loaded_vmcs->vcpu to -1 which is done in
1563 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1564 * then adds the vmcs into percpu list before it is deleted.
1565 */
1566 smp_wmb();
1567
Nadav Har'Eld462b812011-05-24 15:26:10 +03001568 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001569 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570}
1571
Nadav Har'Eld462b812011-05-24 15:26:10 +03001572static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001573{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001574 int cpu = loaded_vmcs->cpu;
1575
1576 if (cpu != -1)
1577 smp_call_function_single(cpu,
1578 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001579}
1580
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001581static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001582{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001583 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001584 return;
1585
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001586 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001587 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001588}
1589
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001590static inline void vpid_sync_vcpu_global(void)
1591{
1592 if (cpu_has_vmx_invvpid_global())
1593 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1594}
1595
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001596static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001597{
1598 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001599 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001600 else
1601 vpid_sync_vcpu_global();
1602}
1603
Sheng Yang14394422008-04-28 12:24:45 +08001604static inline void ept_sync_global(void)
1605{
David Hildenbrandf5f51582017-08-24 20:51:30 +02001606 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08001607}
1608
1609static inline void ept_sync_context(u64 eptp)
1610{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02001611 if (cpu_has_vmx_invept_context())
1612 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1613 else
1614 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08001615}
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
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002207 /*
2208 * In case of hot-plug or hot-unplug, we may have to undo
2209 * vmx_vcpu_pi_put even if there is no assigned device. And we
2210 * always keep PI.NDST up to date for simplicity: it makes the
2211 * code easier, and CPU migration is not a fast path.
2212 */
2213 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08002214 return;
2215
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002216 /*
2217 * First handle the simple case where no cmpxchg is necessary; just
2218 * allow posting non-urgent interrupts.
2219 *
2220 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
2221 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
2222 * expects the VCPU to be on the blocked_vcpu_list that matches
2223 * PI.NDST.
2224 */
2225 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
2226 vcpu->cpu == cpu) {
2227 pi_clear_sn(pi_desc);
2228 return;
2229 }
2230
2231 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08002232 do {
2233 old.control = new.control = pi_desc->control;
2234
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002235 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08002236
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002237 if (x2apic_enabled())
2238 new.ndst = dest;
2239 else
2240 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08002241
Feng Wu28b835d2015-09-18 22:29:54 +08002242 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02002243 } while (cmpxchg64(&pi_desc->control, old.control,
2244 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08002245}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002246
Peter Feinerc95ba922016-08-17 09:36:47 -07002247static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2248{
2249 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2250 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2251}
2252
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253/*
2254 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2255 * vcpu mutex is already taken.
2256 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002257static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002258{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002259 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002260 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002262 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002263 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002264 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002265 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002266
2267 /*
2268 * Read loaded_vmcs->cpu should be before fetching
2269 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2270 * See the comments in __loaded_vmcs_clear().
2271 */
2272 smp_rmb();
2273
Nadav Har'Eld462b812011-05-24 15:26:10 +03002274 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2275 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002276 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002277 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002278 }
2279
2280 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2281 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2282 vmcs_load(vmx->loaded_vmcs->vmcs);
2283 }
2284
2285 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002286 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002287 unsigned long sysenter_esp;
2288
2289 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002290
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291 /*
2292 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002293 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002295 vmcs_writel(HOST_TR_BASE,
2296 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002297 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002299 /*
2300 * VM exits change the host TR limit to 0x67 after a VM
2301 * exit. This is okay, since 0x67 covers everything except
2302 * the IO bitmap and have have code to handle the IO bitmap
2303 * being lost after a VM exit.
2304 */
2305 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2306
Avi Kivity6aa8b732006-12-10 02:21:36 -08002307 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2308 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002309
Nadav Har'Eld462b812011-05-24 15:26:10 +03002310 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002311 }
Feng Wu28b835d2015-09-18 22:29:54 +08002312
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002313 /* Setup TSC multiplier */
2314 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002315 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2316 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002317
Feng Wu28b835d2015-09-18 22:29:54 +08002318 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002319 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002320}
2321
2322static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2323{
2324 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2325
2326 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002327 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2328 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002329 return;
2330
2331 /* Set SN when the vCPU is preempted */
2332 if (vcpu->preempted)
2333 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334}
2335
2336static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2337{
Feng Wu28b835d2015-09-18 22:29:54 +08002338 vmx_vcpu_pi_put(vcpu);
2339
Avi Kivitya9b21b62008-06-24 11:48:49 +03002340 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
Wanpeng Lif244dee2017-07-20 01:11:54 -07002343static bool emulation_required(struct kvm_vcpu *vcpu)
2344{
2345 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2346}
2347
Avi Kivityedcafe32009-12-30 18:07:40 +02002348static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2349
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002350/*
2351 * Return the cr0 value that a nested guest would read. This is a combination
2352 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2353 * its hypervisor (cr0_read_shadow).
2354 */
2355static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2356{
2357 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2358 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2359}
2360static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2361{
2362 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2363 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2364}
2365
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2367{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002368 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002369
Avi Kivity6de12732011-03-07 12:51:22 +02002370 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2371 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2372 rflags = vmcs_readl(GUEST_RFLAGS);
2373 if (to_vmx(vcpu)->rmode.vm86_active) {
2374 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2375 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2376 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2377 }
2378 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002379 }
Avi Kivity6de12732011-03-07 12:51:22 +02002380 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381}
2382
2383static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2384{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002385 unsigned long old_rflags = vmx_get_rflags(vcpu);
2386
Avi Kivity6de12732011-03-07 12:51:22 +02002387 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2388 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002389 if (to_vmx(vcpu)->rmode.vm86_active) {
2390 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002391 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002392 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002394
2395 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2396 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002397}
2398
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002399static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002400{
2401 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2402 int ret = 0;
2403
2404 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002405 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002406 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002407 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002408
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002409 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002410}
2411
2412static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2413{
2414 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2415 u32 interruptibility = interruptibility_old;
2416
2417 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2418
Jan Kiszka48005f62010-02-19 19:38:07 +01002419 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002420 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002421 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002422 interruptibility |= GUEST_INTR_STATE_STI;
2423
2424 if ((interruptibility != interruptibility_old))
2425 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2426}
2427
Avi Kivity6aa8b732006-12-10 02:21:36 -08002428static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2429{
2430 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002432 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002433 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002434 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435
Glauber Costa2809f5d2009-05-12 16:21:05 -04002436 /* skipping an emulated instruction also counts */
2437 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002438}
2439
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002440static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2441 unsigned long exit_qual)
2442{
2443 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2444 unsigned int nr = vcpu->arch.exception.nr;
2445 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2446
2447 if (vcpu->arch.exception.has_error_code) {
2448 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2449 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2450 }
2451
2452 if (kvm_exception_is_soft(nr))
2453 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2454 else
2455 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2456
2457 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2458 vmx_get_nmi_mask(vcpu))
2459 intr_info |= INTR_INFO_UNBLOCK_NMI;
2460
2461 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2462}
2463
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002464/*
2465 * KVM wants to inject page-faults which it got to the guest. This function
2466 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002467 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002468static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002469{
2470 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002471 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002472
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002473 if (nr == PF_VECTOR) {
2474 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002475 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002476 return 1;
2477 }
2478 /*
2479 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2480 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2481 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2482 * can be written only when inject_pending_event runs. This should be
2483 * conditional on a new capability---if the capability is disabled,
2484 * kvm_multiple_exception would write the ancillary information to
2485 * CR2 or DR6, for backwards ABI-compatibility.
2486 */
2487 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2488 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002489 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002490 return 1;
2491 }
2492 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002493 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002494 if (nr == DB_VECTOR)
2495 *exit_qual = vcpu->arch.dr6;
2496 else
2497 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002498 return 1;
2499 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002500 }
2501
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002502 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002503}
2504
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002505static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002506{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002507 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002508 unsigned nr = vcpu->arch.exception.nr;
2509 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002510 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002511 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002512
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002513 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002514 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002515 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2516 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002517
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002518 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002519 int inc_eip = 0;
2520 if (kvm_exception_is_soft(nr))
2521 inc_eip = vcpu->arch.event_exit_inst_len;
2522 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002523 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002524 return;
2525 }
2526
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002527 if (kvm_exception_is_soft(nr)) {
2528 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2529 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002530 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2531 } else
2532 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2533
2534 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002535}
2536
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002537static bool vmx_rdtscp_supported(void)
2538{
2539 return cpu_has_vmx_rdtscp();
2540}
2541
Mao, Junjiead756a12012-07-02 01:18:48 +00002542static bool vmx_invpcid_supported(void)
2543{
2544 return cpu_has_vmx_invpcid() && enable_ept;
2545}
2546
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547/*
Eddie Donga75beee2007-05-17 18:55:15 +03002548 * Swap MSR entry in host/guest MSR entry array.
2549 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002550static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002551{
Avi Kivity26bb0982009-09-07 11:14:12 +03002552 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002553
2554 tmp = vmx->guest_msrs[to];
2555 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2556 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002557}
2558
Yang Zhang8d146952013-01-25 10:18:50 +08002559static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2560{
2561 unsigned long *msr_bitmap;
2562
Wincy Van670125b2015-03-04 14:31:56 +08002563 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002564 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002565 else if (cpu_has_secondary_exec_ctrls() &&
2566 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2567 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002568 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2569 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002570 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2571 else
2572 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2573 } else {
2574 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002575 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2576 else
2577 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002578 }
Yang Zhang8d146952013-01-25 10:18:50 +08002579 } else {
2580 if (is_long_mode(vcpu))
2581 msr_bitmap = vmx_msr_bitmap_longmode;
2582 else
2583 msr_bitmap = vmx_msr_bitmap_legacy;
2584 }
2585
2586 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2587}
2588
Eddie Donga75beee2007-05-17 18:55:15 +03002589/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002590 * Set up the vmcs to automatically save and restore system
2591 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2592 * mode, as fiddling with msrs is very expensive.
2593 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002594static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002595{
Avi Kivity26bb0982009-09-07 11:14:12 +03002596 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002597
Eddie Donga75beee2007-05-17 18:55:15 +03002598 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002599#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002600 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002601 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002602 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002603 move_msr_up(vmx, index, save_nmsrs++);
2604 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002605 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002606 move_msr_up(vmx, index, save_nmsrs++);
2607 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002608 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002609 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002610 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002611 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002612 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002613 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002614 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002615 * if efer.sce is enabled.
2616 */
Brian Gerst8c065852010-07-17 09:03:26 -04002617 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002618 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002619 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002620 }
Eddie Donga75beee2007-05-17 18:55:15 +03002621#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002622 index = __find_msr_index(vmx, MSR_EFER);
2623 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002624 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002625
Avi Kivity26bb0982009-09-07 11:14:12 +03002626 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002627
Yang Zhang8d146952013-01-25 10:18:50 +08002628 if (cpu_has_vmx_msr_bitmap())
2629 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002630}
2631
2632/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002634 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2635 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002637static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002638{
2639 u64 host_tsc, tsc_offset;
2640
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002641 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002643 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644}
2645
2646/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002647 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002649static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002651 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002652 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002653 * We're here if L1 chose not to trap WRMSR to TSC. According
2654 * to the spec, this should set L1's TSC; The offset that L1
2655 * set for L2 remains unchanged, and still needs to be added
2656 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002657 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002658 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002659 /* recalculate vmcs02.TSC_OFFSET: */
2660 vmcs12 = get_vmcs12(vcpu);
2661 vmcs_write64(TSC_OFFSET, offset +
2662 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2663 vmcs12->tsc_offset : 0));
2664 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002665 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2666 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002667 vmcs_write64(TSC_OFFSET, offset);
2668 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002669}
2670
Nadav Har'El801d3422011-05-25 23:02:23 +03002671/*
2672 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2673 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2674 * all guests if the "nested" module option is off, and can also be disabled
2675 * for a single guest by disabling its VMX cpuid bit.
2676 */
2677static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2678{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002679 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002680}
2681
Avi Kivity6aa8b732006-12-10 02:21:36 -08002682/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002683 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2684 * returned for the various VMX controls MSRs when nested VMX is enabled.
2685 * The same values should also be used to verify that vmcs12 control fields are
2686 * valid during nested entry from L1 to L2.
2687 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2688 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2689 * bit in the high half is on if the corresponding bit in the control field
2690 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002691 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002692static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002693{
2694 /*
2695 * Note that as a general rule, the high half of the MSRs (bits in
2696 * the control fields which may be 1) should be initialized by the
2697 * intersection of the underlying hardware's MSR (i.e., features which
2698 * can be supported) and the list of features we want to expose -
2699 * because they are known to be properly supported in our code.
2700 * Also, usually, the low half of the MSRs (bits which must be 1) can
2701 * be set to 0, meaning that L1 may turn off any of these bits. The
2702 * reason is that if one of these bits is necessary, it will appear
2703 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2704 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002705 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002706 * These rules have exceptions below.
2707 */
2708
2709 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002710 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002711 vmx->nested.nested_vmx_pinbased_ctls_low,
2712 vmx->nested.nested_vmx_pinbased_ctls_high);
2713 vmx->nested.nested_vmx_pinbased_ctls_low |=
2714 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2715 vmx->nested.nested_vmx_pinbased_ctls_high &=
2716 PIN_BASED_EXT_INTR_MASK |
2717 PIN_BASED_NMI_EXITING |
2718 PIN_BASED_VIRTUAL_NMIS;
2719 vmx->nested.nested_vmx_pinbased_ctls_high |=
2720 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002721 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002722 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002723 vmx->nested.nested_vmx_pinbased_ctls_high |=
2724 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002725
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002726 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002727 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002728 vmx->nested.nested_vmx_exit_ctls_low,
2729 vmx->nested.nested_vmx_exit_ctls_high);
2730 vmx->nested.nested_vmx_exit_ctls_low =
2731 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002732
Wincy Vanb9c237b2015-02-03 23:56:30 +08002733 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002734#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002735 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002736#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002737 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002738 vmx->nested.nested_vmx_exit_ctls_high |=
2739 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002740 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002741 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2742
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002743 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002744 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002745
Jan Kiszka2996fca2014-06-16 13:59:43 +02002746 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002747 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002748
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002749 /* entry controls */
2750 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002751 vmx->nested.nested_vmx_entry_ctls_low,
2752 vmx->nested.nested_vmx_entry_ctls_high);
2753 vmx->nested.nested_vmx_entry_ctls_low =
2754 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2755 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002756#ifdef CONFIG_X86_64
2757 VM_ENTRY_IA32E_MODE |
2758#endif
2759 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002760 vmx->nested.nested_vmx_entry_ctls_high |=
2761 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002762 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002763 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002764
Jan Kiszka2996fca2014-06-16 13:59:43 +02002765 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002766 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002767
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002768 /* cpu-based controls */
2769 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002770 vmx->nested.nested_vmx_procbased_ctls_low,
2771 vmx->nested.nested_vmx_procbased_ctls_high);
2772 vmx->nested.nested_vmx_procbased_ctls_low =
2773 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2774 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002775 CPU_BASED_VIRTUAL_INTR_PENDING |
2776 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002777 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2778 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2779 CPU_BASED_CR3_STORE_EXITING |
2780#ifdef CONFIG_X86_64
2781 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2782#endif
2783 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002784 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2785 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2786 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2787 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002788 /*
2789 * We can allow some features even when not supported by the
2790 * hardware. For example, L1 can specify an MSR bitmap - and we
2791 * can use it to avoid exits to L1 - even when L0 runs L2
2792 * without MSR bitmaps.
2793 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002794 vmx->nested.nested_vmx_procbased_ctls_high |=
2795 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002796 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002797
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002798 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002799 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002800 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2801
Paolo Bonzini80154d72017-08-24 13:55:35 +02002802 /*
2803 * secondary cpu-based controls. Do not include those that
2804 * depend on CPUID bits, they are added later by vmx_cpuid_update.
2805 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002806 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002807 vmx->nested.nested_vmx_secondary_ctls_low,
2808 vmx->nested.nested_vmx_secondary_ctls_high);
2809 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2810 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002811 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002812 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002813 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002814 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002815 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02002816 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002817
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002818 if (enable_ept) {
2819 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002820 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002821 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002822 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002823 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002824 if (cpu_has_vmx_ept_execute_only())
2825 vmx->nested.nested_vmx_ept_caps |=
2826 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002827 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002828 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002829 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2830 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002831 if (enable_ept_ad_bits) {
2832 vmx->nested.nested_vmx_secondary_ctls_high |=
2833 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002834 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002835 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02002836 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002837
Bandan Das27c42a12017-08-03 15:54:42 -04002838 if (cpu_has_vmx_vmfunc()) {
2839 vmx->nested.nested_vmx_secondary_ctls_high |=
2840 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002841 /*
2842 * Advertise EPTP switching unconditionally
2843 * since we emulate it
2844 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08002845 if (enable_ept)
2846 vmx->nested.nested_vmx_vmfunc_controls =
2847 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002848 }
2849
Paolo Bonzinief697a72016-03-18 16:58:38 +01002850 /*
2851 * Old versions of KVM use the single-context version without
2852 * checking for support, so declare that it is supported even
2853 * though it is treated as global context. The alternative is
2854 * not failing the single-context invvpid, and it is worse.
2855 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002856 if (enable_vpid) {
2857 vmx->nested.nested_vmx_secondary_ctls_high |=
2858 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002859 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002860 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02002861 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002862
Radim Krčmář0790ec12015-03-17 14:02:32 +01002863 if (enable_unrestricted_guest)
2864 vmx->nested.nested_vmx_secondary_ctls_high |=
2865 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2866
Jan Kiszkac18911a2013-03-13 16:06:41 +01002867 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002868 rdmsr(MSR_IA32_VMX_MISC,
2869 vmx->nested.nested_vmx_misc_low,
2870 vmx->nested.nested_vmx_misc_high);
2871 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2872 vmx->nested.nested_vmx_misc_low |=
2873 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002874 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002875 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002876
2877 /*
2878 * This MSR reports some information about VMX support. We
2879 * should return information about the VMX we emulate for the
2880 * guest, and the VMCS structure we give it - not about the
2881 * VMX support of the underlying hardware.
2882 */
2883 vmx->nested.nested_vmx_basic =
2884 VMCS12_REVISION |
2885 VMX_BASIC_TRUE_CTLS |
2886 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2887 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2888
2889 if (cpu_has_vmx_basic_inout())
2890 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2891
2892 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002893 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002894 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2895 * We picked the standard core2 setting.
2896 */
2897#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2898#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2899 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002900 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002901
2902 /* These MSRs specify bits which the guest must keep fixed off. */
2903 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2904 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002905
2906 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2907 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002908}
2909
David Matlack38991522016-11-29 18:14:08 -08002910/*
2911 * if fixed0[i] == 1: val[i] must be 1
2912 * if fixed1[i] == 0: val[i] must be 0
2913 */
2914static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2915{
2916 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002917}
2918
2919static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2920{
David Matlack38991522016-11-29 18:14:08 -08002921 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002922}
2923
2924static inline u64 vmx_control_msr(u32 low, u32 high)
2925{
2926 return low | ((u64)high << 32);
2927}
2928
David Matlack62cc6b9d2016-11-29 18:14:07 -08002929static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2930{
2931 superset &= mask;
2932 subset &= mask;
2933
2934 return (superset | subset) == superset;
2935}
2936
2937static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2938{
2939 const u64 feature_and_reserved =
2940 /* feature (except bit 48; see below) */
2941 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2942 /* reserved */
2943 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2944 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2945
2946 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2947 return -EINVAL;
2948
2949 /*
2950 * KVM does not emulate a version of VMX that constrains physical
2951 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2952 */
2953 if (data & BIT_ULL(48))
2954 return -EINVAL;
2955
2956 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2957 vmx_basic_vmcs_revision_id(data))
2958 return -EINVAL;
2959
2960 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2961 return -EINVAL;
2962
2963 vmx->nested.nested_vmx_basic = data;
2964 return 0;
2965}
2966
2967static int
2968vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2969{
2970 u64 supported;
2971 u32 *lowp, *highp;
2972
2973 switch (msr_index) {
2974 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2975 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2976 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2977 break;
2978 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2979 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2980 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2981 break;
2982 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2983 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2984 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2985 break;
2986 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2987 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2988 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2989 break;
2990 case MSR_IA32_VMX_PROCBASED_CTLS2:
2991 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2992 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
2993 break;
2994 default:
2995 BUG();
2996 }
2997
2998 supported = vmx_control_msr(*lowp, *highp);
2999
3000 /* Check must-be-1 bits are still 1. */
3001 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3002 return -EINVAL;
3003
3004 /* Check must-be-0 bits are still 0. */
3005 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3006 return -EINVAL;
3007
3008 *lowp = data;
3009 *highp = data >> 32;
3010 return 0;
3011}
3012
3013static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3014{
3015 const u64 feature_and_reserved_bits =
3016 /* feature */
3017 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3018 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3019 /* reserved */
3020 GENMASK_ULL(13, 9) | BIT_ULL(31);
3021 u64 vmx_misc;
3022
3023 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3024 vmx->nested.nested_vmx_misc_high);
3025
3026 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3027 return -EINVAL;
3028
3029 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3030 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3031 vmx_misc_preemption_timer_rate(data) !=
3032 vmx_misc_preemption_timer_rate(vmx_misc))
3033 return -EINVAL;
3034
3035 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3036 return -EINVAL;
3037
3038 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3039 return -EINVAL;
3040
3041 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3042 return -EINVAL;
3043
3044 vmx->nested.nested_vmx_misc_low = data;
3045 vmx->nested.nested_vmx_misc_high = data >> 32;
3046 return 0;
3047}
3048
3049static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3050{
3051 u64 vmx_ept_vpid_cap;
3052
3053 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3054 vmx->nested.nested_vmx_vpid_caps);
3055
3056 /* Every bit is either reserved or a feature bit. */
3057 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3058 return -EINVAL;
3059
3060 vmx->nested.nested_vmx_ept_caps = data;
3061 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3062 return 0;
3063}
3064
3065static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3066{
3067 u64 *msr;
3068
3069 switch (msr_index) {
3070 case MSR_IA32_VMX_CR0_FIXED0:
3071 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3072 break;
3073 case MSR_IA32_VMX_CR4_FIXED0:
3074 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3075 break;
3076 default:
3077 BUG();
3078 }
3079
3080 /*
3081 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3082 * must be 1 in the restored value.
3083 */
3084 if (!is_bitwise_subset(data, *msr, -1ULL))
3085 return -EINVAL;
3086
3087 *msr = data;
3088 return 0;
3089}
3090
3091/*
3092 * Called when userspace is restoring VMX MSRs.
3093 *
3094 * Returns 0 on success, non-0 otherwise.
3095 */
3096static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3097{
3098 struct vcpu_vmx *vmx = to_vmx(vcpu);
3099
3100 switch (msr_index) {
3101 case MSR_IA32_VMX_BASIC:
3102 return vmx_restore_vmx_basic(vmx, data);
3103 case MSR_IA32_VMX_PINBASED_CTLS:
3104 case MSR_IA32_VMX_PROCBASED_CTLS:
3105 case MSR_IA32_VMX_EXIT_CTLS:
3106 case MSR_IA32_VMX_ENTRY_CTLS:
3107 /*
3108 * The "non-true" VMX capability MSRs are generated from the
3109 * "true" MSRs, so we do not support restoring them directly.
3110 *
3111 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3112 * should restore the "true" MSRs with the must-be-1 bits
3113 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3114 * DEFAULT SETTINGS".
3115 */
3116 return -EINVAL;
3117 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3118 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3119 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3120 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3121 case MSR_IA32_VMX_PROCBASED_CTLS2:
3122 return vmx_restore_control_msr(vmx, msr_index, data);
3123 case MSR_IA32_VMX_MISC:
3124 return vmx_restore_vmx_misc(vmx, data);
3125 case MSR_IA32_VMX_CR0_FIXED0:
3126 case MSR_IA32_VMX_CR4_FIXED0:
3127 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3128 case MSR_IA32_VMX_CR0_FIXED1:
3129 case MSR_IA32_VMX_CR4_FIXED1:
3130 /*
3131 * These MSRs are generated based on the vCPU's CPUID, so we
3132 * do not support restoring them directly.
3133 */
3134 return -EINVAL;
3135 case MSR_IA32_VMX_EPT_VPID_CAP:
3136 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3137 case MSR_IA32_VMX_VMCS_ENUM:
3138 vmx->nested.nested_vmx_vmcs_enum = data;
3139 return 0;
3140 default:
3141 /*
3142 * The rest of the VMX capability MSRs do not support restore.
3143 */
3144 return -EINVAL;
3145 }
3146}
3147
Jan Kiszkacae50132014-01-04 18:47:22 +01003148/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003149static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3150{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003151 struct vcpu_vmx *vmx = to_vmx(vcpu);
3152
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003153 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003154 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003155 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003156 break;
3157 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3158 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003159 *pdata = vmx_control_msr(
3160 vmx->nested.nested_vmx_pinbased_ctls_low,
3161 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003162 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3163 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003164 break;
3165 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3166 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003167 *pdata = vmx_control_msr(
3168 vmx->nested.nested_vmx_procbased_ctls_low,
3169 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003170 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3171 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003172 break;
3173 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3174 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003175 *pdata = vmx_control_msr(
3176 vmx->nested.nested_vmx_exit_ctls_low,
3177 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003178 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3179 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003180 break;
3181 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3182 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003183 *pdata = vmx_control_msr(
3184 vmx->nested.nested_vmx_entry_ctls_low,
3185 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003186 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3187 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003188 break;
3189 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003190 *pdata = vmx_control_msr(
3191 vmx->nested.nested_vmx_misc_low,
3192 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003193 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003194 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003195 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003196 break;
3197 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003198 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003199 break;
3200 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003201 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003202 break;
3203 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003204 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003205 break;
3206 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003207 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003208 break;
3209 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003210 *pdata = vmx_control_msr(
3211 vmx->nested.nested_vmx_secondary_ctls_low,
3212 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003213 break;
3214 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003215 *pdata = vmx->nested.nested_vmx_ept_caps |
3216 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003217 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003218 case MSR_IA32_VMX_VMFUNC:
3219 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3220 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003221 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003222 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003223 }
3224
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003225 return 0;
3226}
3227
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003228static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3229 uint64_t val)
3230{
3231 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3232
3233 return !(val & ~valid_bits);
3234}
3235
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003236/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237 * Reads an msr value (of 'msr_index') into 'pdata'.
3238 * Returns 0 on success, non-0 otherwise.
3239 * Assumes vcpu_load() was already called.
3240 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003241static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003242{
Avi Kivity26bb0982009-09-07 11:14:12 +03003243 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003245 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003246#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003248 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003249 break;
3250 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003251 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003252 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003253 case MSR_KERNEL_GS_BASE:
3254 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003255 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003256 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003257#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003259 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303260 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003261 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003262 break;
3263 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003264 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003265 break;
3266 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003267 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003268 break;
3269 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003270 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003271 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003272 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003273 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003274 (!msr_info->host_initiated &&
3275 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003276 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003277 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003278 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003279 case MSR_IA32_MCG_EXT_CTL:
3280 if (!msr_info->host_initiated &&
3281 !(to_vmx(vcpu)->msr_ia32_feature_control &
3282 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003283 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003284 msr_info->data = vcpu->arch.mcg_ext_ctl;
3285 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003286 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003287 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003288 break;
3289 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3290 if (!nested_vmx_allowed(vcpu))
3291 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003292 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003293 case MSR_IA32_XSS:
3294 if (!vmx_xsaves_supported())
3295 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003296 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003297 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003298 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003299 if (!msr_info->host_initiated &&
3300 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003301 return 1;
3302 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003303 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003304 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003305 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003306 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003307 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003308 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003309 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003310 }
3311
Avi Kivity6aa8b732006-12-10 02:21:36 -08003312 return 0;
3313}
3314
Jan Kiszkacae50132014-01-04 18:47:22 +01003315static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3316
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317/*
3318 * Writes msr value into into the appropriate "register".
3319 * Returns 0 on success, non-0 otherwise.
3320 * Assumes vcpu_load() was already called.
3321 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003322static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003323{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003324 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003325 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003326 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003327 u32 msr_index = msr_info->index;
3328 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003329
Avi Kivity6aa8b732006-12-10 02:21:36 -08003330 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003331 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003332 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003333 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003334#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003335 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003336 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003337 vmcs_writel(GUEST_FS_BASE, data);
3338 break;
3339 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003340 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341 vmcs_writel(GUEST_GS_BASE, data);
3342 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003343 case MSR_KERNEL_GS_BASE:
3344 vmx_load_host_state(vmx);
3345 vmx->msr_guest_kernel_gs_base = data;
3346 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003347#endif
3348 case MSR_IA32_SYSENTER_CS:
3349 vmcs_write32(GUEST_SYSENTER_CS, data);
3350 break;
3351 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003352 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003353 break;
3354 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003355 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003356 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003357 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003358 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003359 (!msr_info->host_initiated &&
3360 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003361 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003362 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003363 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003364 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003365 vmcs_write64(GUEST_BNDCFGS, data);
3366 break;
3367 case MSR_IA32_TSC:
3368 kvm_write_tsc(vcpu, msr_info);
3369 break;
3370 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003371 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003372 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3373 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003374 vmcs_write64(GUEST_IA32_PAT, data);
3375 vcpu->arch.pat = data;
3376 break;
3377 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003378 ret = kvm_set_msr_common(vcpu, msr_info);
3379 break;
Will Auldba904632012-11-29 12:42:50 -08003380 case MSR_IA32_TSC_ADJUST:
3381 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003382 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003383 case MSR_IA32_MCG_EXT_CTL:
3384 if ((!msr_info->host_initiated &&
3385 !(to_vmx(vcpu)->msr_ia32_feature_control &
3386 FEATURE_CONTROL_LMCE)) ||
3387 (data & ~MCG_EXT_CTL_LMCE_EN))
3388 return 1;
3389 vcpu->arch.mcg_ext_ctl = data;
3390 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003391 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003392 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003393 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003394 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3395 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003396 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003397 if (msr_info->host_initiated && data == 0)
3398 vmx_leave_nested(vcpu);
3399 break;
3400 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003401 if (!msr_info->host_initiated)
3402 return 1; /* they are read-only */
3403 if (!nested_vmx_allowed(vcpu))
3404 return 1;
3405 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003406 case MSR_IA32_XSS:
3407 if (!vmx_xsaves_supported())
3408 return 1;
3409 /*
3410 * The only supported bit as of Skylake is bit 8, but
3411 * it is not supported on KVM.
3412 */
3413 if (data != 0)
3414 return 1;
3415 vcpu->arch.ia32_xss = data;
3416 if (vcpu->arch.ia32_xss != host_xss)
3417 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3418 vcpu->arch.ia32_xss, host_xss);
3419 else
3420 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3421 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003422 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003423 if (!msr_info->host_initiated &&
3424 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003425 return 1;
3426 /* Check reserved bit, higher 32 bits should be zero */
3427 if ((data >> 32) != 0)
3428 return 1;
3429 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003430 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003431 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003432 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003433 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003434 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003435 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3436 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003437 ret = kvm_set_shared_msr(msr->index, msr->data,
3438 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003439 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003440 if (ret)
3441 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003442 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003443 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003444 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003445 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003446 }
3447
Eddie Dong2cc51562007-05-21 07:28:09 +03003448 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003449}
3450
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003451static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003452{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003453 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3454 switch (reg) {
3455 case VCPU_REGS_RSP:
3456 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3457 break;
3458 case VCPU_REGS_RIP:
3459 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3460 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003461 case VCPU_EXREG_PDPTR:
3462 if (enable_ept)
3463 ept_save_pdptrs(vcpu);
3464 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003465 default:
3466 break;
3467 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003468}
3469
Avi Kivity6aa8b732006-12-10 02:21:36 -08003470static __init int cpu_has_kvm_support(void)
3471{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003472 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003473}
3474
3475static __init int vmx_disabled_by_bios(void)
3476{
3477 u64 msr;
3478
3479 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003480 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003481 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003482 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3483 && tboot_enabled())
3484 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003485 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003486 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003487 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003488 && !tboot_enabled()) {
3489 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003490 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003491 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003492 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003493 /* launched w/o TXT and VMX disabled */
3494 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3495 && !tboot_enabled())
3496 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003497 }
3498
3499 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003500}
3501
Dongxiao Xu7725b892010-05-11 18:29:38 +08003502static void kvm_cpu_vmxon(u64 addr)
3503{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003504 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003505 intel_pt_handle_vmx(1);
3506
Dongxiao Xu7725b892010-05-11 18:29:38 +08003507 asm volatile (ASM_VMX_VMXON_RAX
3508 : : "a"(&addr), "m"(addr)
3509 : "memory", "cc");
3510}
3511
Radim Krčmář13a34e02014-08-28 15:13:03 +02003512static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003513{
3514 int cpu = raw_smp_processor_id();
3515 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003516 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003517
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003518 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003519 return -EBUSY;
3520
Nadav Har'Eld462b812011-05-24 15:26:10 +03003521 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003522 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3523 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003524
3525 /*
3526 * Now we can enable the vmclear operation in kdump
3527 * since the loaded_vmcss_on_cpu list on this cpu
3528 * has been initialized.
3529 *
3530 * Though the cpu is not in VMX operation now, there
3531 * is no problem to enable the vmclear operation
3532 * for the loaded_vmcss_on_cpu list is empty!
3533 */
3534 crash_enable_local_vmclear(cpu);
3535
Avi Kivity6aa8b732006-12-10 02:21:36 -08003536 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003537
3538 test_bits = FEATURE_CONTROL_LOCKED;
3539 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3540 if (tboot_enabled())
3541 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3542
3543 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003544 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003545 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3546 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003547 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02003548 if (enable_ept)
3549 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003550
3551 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552}
3553
Nadav Har'Eld462b812011-05-24 15:26:10 +03003554static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003555{
3556 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003557 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003558
Nadav Har'Eld462b812011-05-24 15:26:10 +03003559 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3560 loaded_vmcss_on_cpu_link)
3561 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003562}
3563
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003564
3565/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3566 * tricks.
3567 */
3568static void kvm_cpu_vmxoff(void)
3569{
3570 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003571
3572 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003573 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003574}
3575
Radim Krčmář13a34e02014-08-28 15:13:03 +02003576static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003577{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003578 vmclear_local_loaded_vmcss();
3579 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580}
3581
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003582static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003583 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584{
3585 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003586 u32 ctl = ctl_min | ctl_opt;
3587
3588 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3589
3590 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3591 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3592
3593 /* Ensure minimum (required) set of control bits are supported. */
3594 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003595 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003596
3597 *result = ctl;
3598 return 0;
3599}
3600
Avi Kivity110312c2010-12-21 12:54:20 +02003601static __init bool allow_1_setting(u32 msr, u32 ctl)
3602{
3603 u32 vmx_msr_low, vmx_msr_high;
3604
3605 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3606 return vmx_msr_high & ctl;
3607}
3608
Yang, Sheng002c7f72007-07-31 14:23:01 +03003609static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003610{
3611 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003612 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003613 u32 _pin_based_exec_control = 0;
3614 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003615 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003616 u32 _vmexit_control = 0;
3617 u32 _vmentry_control = 0;
3618
Raghavendra K T10166742012-02-07 23:19:20 +05303619 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003620#ifdef CONFIG_X86_64
3621 CPU_BASED_CR8_LOAD_EXITING |
3622 CPU_BASED_CR8_STORE_EXITING |
3623#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003624 CPU_BASED_CR3_LOAD_EXITING |
3625 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003626 CPU_BASED_USE_IO_BITMAPS |
3627 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003628 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003629 CPU_BASED_INVLPG_EXITING |
3630 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003631
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003632 if (!kvm_mwait_in_guest())
3633 min |= CPU_BASED_MWAIT_EXITING |
3634 CPU_BASED_MONITOR_EXITING;
3635
Sheng Yangf78e0e22007-10-29 09:40:42 +08003636 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003637 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003638 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003639 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3640 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003641 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003642#ifdef CONFIG_X86_64
3643 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3644 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3645 ~CPU_BASED_CR8_STORE_EXITING;
3646#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003647 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003648 min2 = 0;
3649 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003650 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003651 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003652 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003653 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003654 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003655 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003656 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003657 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003658 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003659 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003660 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003661 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02003662 SECONDARY_EXEC_RDSEED_EXITING |
3663 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003664 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003665 SECONDARY_EXEC_TSC_SCALING |
3666 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003667 if (adjust_vmx_controls(min2, opt2,
3668 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003669 &_cpu_based_2nd_exec_control) < 0)
3670 return -EIO;
3671 }
3672#ifndef CONFIG_X86_64
3673 if (!(_cpu_based_2nd_exec_control &
3674 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3675 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3676#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003677
3678 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3679 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003680 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003681 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3682 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003683
Sheng Yangd56f5462008-04-25 10:13:16 +08003684 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003685 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3686 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003687 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3688 CPU_BASED_CR3_STORE_EXITING |
3689 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003690 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3691 vmx_capability.ept, vmx_capability.vpid);
3692 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003693
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003694 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003695#ifdef CONFIG_X86_64
3696 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3697#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003698 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003699 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003700 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3701 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003702 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003703
Paolo Bonzini2c828782017-03-27 14:37:28 +02003704 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3705 PIN_BASED_VIRTUAL_NMIS;
3706 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003707 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3708 &_pin_based_exec_control) < 0)
3709 return -EIO;
3710
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003711 if (cpu_has_broken_vmx_preemption_timer())
3712 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003713 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003714 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003715 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3716
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003717 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003718 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003719 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3720 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003721 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003722
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003723 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003724
3725 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3726 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003727 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003728
3729#ifdef CONFIG_X86_64
3730 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3731 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003732 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003733#endif
3734
3735 /* Require Write-Back (WB) memory type for VMCS accesses. */
3736 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003737 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003738
Yang, Sheng002c7f72007-07-31 14:23:01 +03003739 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003740 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003741 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003742 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003743
Yang, Sheng002c7f72007-07-31 14:23:01 +03003744 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3745 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003746 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003747 vmcs_conf->vmexit_ctrl = _vmexit_control;
3748 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003749
Avi Kivity110312c2010-12-21 12:54:20 +02003750 cpu_has_load_ia32_efer =
3751 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3752 VM_ENTRY_LOAD_IA32_EFER)
3753 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3754 VM_EXIT_LOAD_IA32_EFER);
3755
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003756 cpu_has_load_perf_global_ctrl =
3757 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3758 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3759 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3760 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3761
3762 /*
3763 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003764 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003765 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3766 *
3767 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3768 *
3769 * AAK155 (model 26)
3770 * AAP115 (model 30)
3771 * AAT100 (model 37)
3772 * BC86,AAY89,BD102 (model 44)
3773 * BA97 (model 46)
3774 *
3775 */
3776 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3777 switch (boot_cpu_data.x86_model) {
3778 case 26:
3779 case 30:
3780 case 37:
3781 case 44:
3782 case 46:
3783 cpu_has_load_perf_global_ctrl = false;
3784 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3785 "does not work properly. Using workaround\n");
3786 break;
3787 default:
3788 break;
3789 }
3790 }
3791
Borislav Petkov782511b2016-04-04 22:25:03 +02003792 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003793 rdmsrl(MSR_IA32_XSS, host_xss);
3794
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003795 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003796}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003797
3798static struct vmcs *alloc_vmcs_cpu(int cpu)
3799{
3800 int node = cpu_to_node(cpu);
3801 struct page *pages;
3802 struct vmcs *vmcs;
3803
Vlastimil Babka96db8002015-09-08 15:03:50 -07003804 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003805 if (!pages)
3806 return NULL;
3807 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003808 memset(vmcs, 0, vmcs_config.size);
3809 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810 return vmcs;
3811}
3812
3813static struct vmcs *alloc_vmcs(void)
3814{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003815 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003816}
3817
3818static void free_vmcs(struct vmcs *vmcs)
3819{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003820 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821}
3822
Nadav Har'Eld462b812011-05-24 15:26:10 +03003823/*
3824 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3825 */
3826static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3827{
3828 if (!loaded_vmcs->vmcs)
3829 return;
3830 loaded_vmcs_clear(loaded_vmcs);
3831 free_vmcs(loaded_vmcs->vmcs);
3832 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003833 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003834}
3835
Sam Ravnborg39959582007-06-01 00:47:13 -07003836static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837{
3838 int cpu;
3839
Zachary Amsden3230bb42009-09-29 11:38:37 -10003840 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003841 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003842 per_cpu(vmxarea, cpu) = NULL;
3843 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003844}
3845
Jim Mattson85fd5142017-07-07 12:51:41 -07003846enum vmcs_field_type {
3847 VMCS_FIELD_TYPE_U16 = 0,
3848 VMCS_FIELD_TYPE_U64 = 1,
3849 VMCS_FIELD_TYPE_U32 = 2,
3850 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3851};
3852
3853static inline int vmcs_field_type(unsigned long field)
3854{
3855 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3856 return VMCS_FIELD_TYPE_U32;
3857 return (field >> 13) & 0x3 ;
3858}
3859
3860static inline int vmcs_field_readonly(unsigned long field)
3861{
3862 return (((field >> 10) & 0x3) == 1);
3863}
3864
Bandan Dasfe2b2012014-04-21 15:20:14 -04003865static void init_vmcs_shadow_fields(void)
3866{
3867 int i, j;
3868
3869 /* No checks for read only fields yet */
3870
3871 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3872 switch (shadow_read_write_fields[i]) {
3873 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003874 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003875 continue;
3876 break;
3877 default:
3878 break;
3879 }
3880
3881 if (j < i)
3882 shadow_read_write_fields[j] =
3883 shadow_read_write_fields[i];
3884 j++;
3885 }
3886 max_shadow_read_write_fields = j;
3887
3888 /* shadowed fields guest access without vmexit */
3889 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003890 unsigned long field = shadow_read_write_fields[i];
3891
3892 clear_bit(field, vmx_vmwrite_bitmap);
3893 clear_bit(field, vmx_vmread_bitmap);
3894 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3895 clear_bit(field + 1, vmx_vmwrite_bitmap);
3896 clear_bit(field + 1, vmx_vmread_bitmap);
3897 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003898 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003899 for (i = 0; i < max_shadow_read_only_fields; i++) {
3900 unsigned long field = shadow_read_only_fields[i];
3901
3902 clear_bit(field, vmx_vmread_bitmap);
3903 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3904 clear_bit(field + 1, vmx_vmread_bitmap);
3905 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003906}
3907
Avi Kivity6aa8b732006-12-10 02:21:36 -08003908static __init int alloc_kvm_area(void)
3909{
3910 int cpu;
3911
Zachary Amsden3230bb42009-09-29 11:38:37 -10003912 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913 struct vmcs *vmcs;
3914
3915 vmcs = alloc_vmcs_cpu(cpu);
3916 if (!vmcs) {
3917 free_kvm_area();
3918 return -ENOMEM;
3919 }
3920
3921 per_cpu(vmxarea, cpu) = vmcs;
3922 }
3923 return 0;
3924}
3925
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003926static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003927 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003928{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003929 if (!emulate_invalid_guest_state) {
3930 /*
3931 * CS and SS RPL should be equal during guest entry according
3932 * to VMX spec, but in reality it is not always so. Since vcpu
3933 * is in the middle of the transition from real mode to
3934 * protected mode it is safe to assume that RPL 0 is a good
3935 * default value.
3936 */
3937 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003938 save->selector &= ~SEGMENT_RPL_MASK;
3939 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003940 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003941 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003942 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943}
3944
3945static void enter_pmode(struct kvm_vcpu *vcpu)
3946{
3947 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003948 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949
Gleb Natapovd99e4152012-12-20 16:57:45 +02003950 /*
3951 * Update real mode segment cache. It may be not up-to-date if sement
3952 * register was written while vcpu was in a guest mode.
3953 */
3954 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3955 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3956 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3957 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3958 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3959 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3960
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003961 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003962
Avi Kivity2fb92db2011-04-27 19:42:18 +03003963 vmx_segment_cache_clear(vmx);
3964
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003965 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003966
3967 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003968 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3969 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970 vmcs_writel(GUEST_RFLAGS, flags);
3971
Rusty Russell66aee912007-07-17 23:34:16 +10003972 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3973 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003974
3975 update_exception_bitmap(vcpu);
3976
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003977 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3978 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3979 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3980 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3981 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3982 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003983}
3984
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003985static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003986{
Mathias Krause772e0312012-08-30 01:30:19 +02003987 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003988 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003989
Gleb Natapovd99e4152012-12-20 16:57:45 +02003990 var.dpl = 0x3;
3991 if (seg == VCPU_SREG_CS)
3992 var.type = 0x3;
3993
3994 if (!emulate_invalid_guest_state) {
3995 var.selector = var.base >> 4;
3996 var.base = var.base & 0xffff0;
3997 var.limit = 0xffff;
3998 var.g = 0;
3999 var.db = 0;
4000 var.present = 1;
4001 var.s = 1;
4002 var.l = 0;
4003 var.unusable = 0;
4004 var.type = 0x3;
4005 var.avl = 0;
4006 if (save->base & 0xf)
4007 printk_once(KERN_WARNING "kvm: segment base is not "
4008 "paragraph aligned when entering "
4009 "protected mode (seg=%d)", seg);
4010 }
4011
4012 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004013 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004014 vmcs_write32(sf->limit, var.limit);
4015 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004016}
4017
4018static void enter_rmode(struct kvm_vcpu *vcpu)
4019{
4020 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004021 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004022
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004023 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4024 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4025 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4026 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4027 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004028 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4029 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004030
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004031 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032
Gleb Natapov776e58e2011-03-13 12:34:27 +02004033 /*
4034 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004035 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004036 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004037 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004038 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4039 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004040
Avi Kivity2fb92db2011-04-27 19:42:18 +03004041 vmx_segment_cache_clear(vmx);
4042
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004043 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004044 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004045 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4046
4047 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004048 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004049
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004050 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051
4052 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004053 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054 update_exception_bitmap(vcpu);
4055
Gleb Natapovd99e4152012-12-20 16:57:45 +02004056 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4057 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4058 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4059 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4060 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4061 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004062
Eddie Dong8668a3c2007-10-10 14:26:45 +08004063 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064}
4065
Amit Shah401d10d2009-02-20 22:53:37 +05304066static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4067{
4068 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004069 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4070
4071 if (!msr)
4072 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304073
Avi Kivity44ea2b12009-09-06 15:55:37 +03004074 /*
4075 * Force kernel_gs_base reloading before EFER changes, as control
4076 * of this msr depends on is_long_mode().
4077 */
4078 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004079 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304080 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004081 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304082 msr->data = efer;
4083 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004084 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304085
4086 msr->data = efer & ~EFER_LME;
4087 }
4088 setup_msrs(vmx);
4089}
4090
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004091#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004092
4093static void enter_lmode(struct kvm_vcpu *vcpu)
4094{
4095 u32 guest_tr_ar;
4096
Avi Kivity2fb92db2011-04-27 19:42:18 +03004097 vmx_segment_cache_clear(to_vmx(vcpu));
4098
Avi Kivity6aa8b732006-12-10 02:21:36 -08004099 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004100 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004101 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4102 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004103 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004104 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4105 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004106 }
Avi Kivityda38f432010-07-06 11:30:49 +03004107 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004108}
4109
4110static void exit_lmode(struct kvm_vcpu *vcpu)
4111{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004112 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004113 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004114}
4115
4116#endif
4117
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004118static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004119{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004120 if (enable_ept) {
4121 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4122 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004123 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004124 } else {
4125 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004126 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004127}
4128
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004129static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4130{
4131 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4132}
4133
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004134static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4135{
4136 if (enable_ept)
4137 vmx_flush_tlb(vcpu);
4138}
4139
Avi Kivitye8467fd2009-12-29 18:43:06 +02004140static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4141{
4142 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4143
4144 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4145 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4146}
4147
Avi Kivityaff48ba2010-12-05 18:56:11 +02004148static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4149{
4150 if (enable_ept && is_paging(vcpu))
4151 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4152 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4153}
4154
Anthony Liguori25c4c272007-04-27 09:29:21 +03004155static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004156{
Avi Kivityfc78f512009-12-07 12:16:48 +02004157 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4158
4159 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4160 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004161}
4162
Sheng Yang14394422008-04-28 12:24:45 +08004163static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4164{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004165 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4166
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004167 if (!test_bit(VCPU_EXREG_PDPTR,
4168 (unsigned long *)&vcpu->arch.regs_dirty))
4169 return;
4170
Sheng Yang14394422008-04-28 12:24:45 +08004171 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004172 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4173 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4174 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4175 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004176 }
4177}
4178
Avi Kivity8f5d5492009-05-31 18:41:29 +03004179static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4180{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004181 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4182
Avi Kivity8f5d5492009-05-31 18:41:29 +03004183 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004184 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4185 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4186 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4187 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004188 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004189
4190 __set_bit(VCPU_EXREG_PDPTR,
4191 (unsigned long *)&vcpu->arch.regs_avail);
4192 __set_bit(VCPU_EXREG_PDPTR,
4193 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004194}
4195
David Matlack38991522016-11-29 18:14:08 -08004196static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4197{
4198 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4199 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4200 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4201
4202 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4203 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4204 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4205 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4206
4207 return fixed_bits_valid(val, fixed0, fixed1);
4208}
4209
4210static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4211{
4212 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4213 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4214
4215 return fixed_bits_valid(val, fixed0, fixed1);
4216}
4217
4218static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4219{
4220 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4221 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4222
4223 return fixed_bits_valid(val, fixed0, fixed1);
4224}
4225
4226/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4227#define nested_guest_cr4_valid nested_cr4_valid
4228#define nested_host_cr4_valid nested_cr4_valid
4229
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004230static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004231
4232static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4233 unsigned long cr0,
4234 struct kvm_vcpu *vcpu)
4235{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004236 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4237 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004238 if (!(cr0 & X86_CR0_PG)) {
4239 /* From paging/starting to nonpaging */
4240 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004241 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004242 (CPU_BASED_CR3_LOAD_EXITING |
4243 CPU_BASED_CR3_STORE_EXITING));
4244 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004245 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004246 } else if (!is_paging(vcpu)) {
4247 /* From nonpaging to paging */
4248 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004249 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004250 ~(CPU_BASED_CR3_LOAD_EXITING |
4251 CPU_BASED_CR3_STORE_EXITING));
4252 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004253 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004254 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004255
4256 if (!(cr0 & X86_CR0_WP))
4257 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004258}
4259
Avi Kivity6aa8b732006-12-10 02:21:36 -08004260static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4261{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004262 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004263 unsigned long hw_cr0;
4264
Gleb Natapov50378782013-02-04 16:00:28 +02004265 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004266 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004267 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004268 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004269 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004270
Gleb Natapov218e7632013-01-21 15:36:45 +02004271 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4272 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004273
Gleb Natapov218e7632013-01-21 15:36:45 +02004274 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4275 enter_rmode(vcpu);
4276 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004277
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004278#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004279 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004280 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004281 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004282 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283 exit_lmode(vcpu);
4284 }
4285#endif
4286
Avi Kivity089d0342009-03-23 18:26:32 +02004287 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004288 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4289
Avi Kivity6aa8b732006-12-10 02:21:36 -08004290 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004291 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004292 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004293
4294 /* depends on vcpu->arch.cr0 to be set to a new value */
4295 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296}
4297
Yu Zhang855feb62017-08-24 20:27:55 +08004298static int get_ept_level(struct kvm_vcpu *vcpu)
4299{
4300 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
4301 return 5;
4302 return 4;
4303}
4304
Peter Feiner995f00a2017-06-30 17:26:32 -07004305static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004306{
Yu Zhang855feb62017-08-24 20:27:55 +08004307 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08004308
Yu Zhang855feb62017-08-24 20:27:55 +08004309 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004310
Peter Feiner995f00a2017-06-30 17:26:32 -07004311 if (enable_ept_ad_bits &&
4312 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004313 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004314 eptp |= (root_hpa & PAGE_MASK);
4315
4316 return eptp;
4317}
4318
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4320{
Sheng Yang14394422008-04-28 12:24:45 +08004321 unsigned long guest_cr3;
4322 u64 eptp;
4323
4324 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004325 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004326 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004327 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004328 if (is_paging(vcpu) || is_guest_mode(vcpu))
4329 guest_cr3 = kvm_read_cr3(vcpu);
4330 else
4331 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004332 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004333 }
4334
Sheng Yang2384d2b2008-01-17 15:14:33 +08004335 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004336 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337}
4338
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004339static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004340{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004341 /*
4342 * Pass through host's Machine Check Enable value to hw_cr4, which
4343 * is in force while we are in guest mode. Do not let guests control
4344 * this bit, even if host CR4.MCE == 0.
4345 */
4346 unsigned long hw_cr4 =
4347 (cr4_read_shadow() & X86_CR4_MCE) |
4348 (cr4 & ~X86_CR4_MCE) |
4349 (to_vmx(vcpu)->rmode.vm86_active ?
4350 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004351
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004352 if (cr4 & X86_CR4_VMXE) {
4353 /*
4354 * To use VMXON (and later other VMX instructions), a guest
4355 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4356 * So basically the check on whether to allow nested VMX
4357 * is here.
4358 */
4359 if (!nested_vmx_allowed(vcpu))
4360 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004361 }
David Matlack38991522016-11-29 18:14:08 -08004362
4363 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004364 return 1;
4365
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004366 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004367 if (enable_ept) {
4368 if (!is_paging(vcpu)) {
4369 hw_cr4 &= ~X86_CR4_PAE;
4370 hw_cr4 |= X86_CR4_PSE;
4371 } else if (!(cr4 & X86_CR4_PAE)) {
4372 hw_cr4 &= ~X86_CR4_PAE;
4373 }
4374 }
Sheng Yang14394422008-04-28 12:24:45 +08004375
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004376 if (!enable_unrestricted_guest && !is_paging(vcpu))
4377 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004378 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4379 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4380 * to be manually disabled when guest switches to non-paging
4381 * mode.
4382 *
4383 * If !enable_unrestricted_guest, the CPU is always running
4384 * with CR0.PG=1 and CR4 needs to be modified.
4385 * If enable_unrestricted_guest, the CPU automatically
4386 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004387 */
Huaitong Handdba2622016-03-22 16:51:15 +08004388 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004389
Sheng Yang14394422008-04-28 12:24:45 +08004390 vmcs_writel(CR4_READ_SHADOW, cr4);
4391 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004392 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004393}
4394
Avi Kivity6aa8b732006-12-10 02:21:36 -08004395static void vmx_get_segment(struct kvm_vcpu *vcpu,
4396 struct kvm_segment *var, int seg)
4397{
Avi Kivitya9179492011-01-03 14:28:52 +02004398 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004399 u32 ar;
4400
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004401 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004402 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004403 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004404 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004405 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004406 var->base = vmx_read_guest_seg_base(vmx, seg);
4407 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4408 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004409 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004410 var->base = vmx_read_guest_seg_base(vmx, seg);
4411 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4412 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4413 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004414 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004415 var->type = ar & 15;
4416 var->s = (ar >> 4) & 1;
4417 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004418 /*
4419 * Some userspaces do not preserve unusable property. Since usable
4420 * segment has to be present according to VMX spec we can use present
4421 * property to amend userspace bug by making unusable segment always
4422 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4423 * segment as unusable.
4424 */
4425 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004426 var->avl = (ar >> 12) & 1;
4427 var->l = (ar >> 13) & 1;
4428 var->db = (ar >> 14) & 1;
4429 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004430}
4431
Avi Kivitya9179492011-01-03 14:28:52 +02004432static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4433{
Avi Kivitya9179492011-01-03 14:28:52 +02004434 struct kvm_segment s;
4435
4436 if (to_vmx(vcpu)->rmode.vm86_active) {
4437 vmx_get_segment(vcpu, &s, seg);
4438 return s.base;
4439 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004440 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004441}
4442
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004443static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004444{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004445 struct vcpu_vmx *vmx = to_vmx(vcpu);
4446
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004447 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004448 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004449 else {
4450 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004451 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004452 }
Avi Kivity69c73022011-03-07 15:26:44 +02004453}
4454
Avi Kivity653e3102007-05-07 10:55:37 +03004455static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457 u32 ar;
4458
Avi Kivityf0495f92012-06-07 17:06:10 +03004459 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004460 ar = 1 << 16;
4461 else {
4462 ar = var->type & 15;
4463 ar |= (var->s & 1) << 4;
4464 ar |= (var->dpl & 3) << 5;
4465 ar |= (var->present & 1) << 7;
4466 ar |= (var->avl & 1) << 12;
4467 ar |= (var->l & 1) << 13;
4468 ar |= (var->db & 1) << 14;
4469 ar |= (var->g & 1) << 15;
4470 }
Avi Kivity653e3102007-05-07 10:55:37 +03004471
4472 return ar;
4473}
4474
4475static void vmx_set_segment(struct kvm_vcpu *vcpu,
4476 struct kvm_segment *var, int seg)
4477{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004478 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004479 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004480
Avi Kivity2fb92db2011-04-27 19:42:18 +03004481 vmx_segment_cache_clear(vmx);
4482
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004483 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4484 vmx->rmode.segs[seg] = *var;
4485 if (seg == VCPU_SREG_TR)
4486 vmcs_write16(sf->selector, var->selector);
4487 else if (var->s)
4488 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004489 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004490 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004491
Avi Kivity653e3102007-05-07 10:55:37 +03004492 vmcs_writel(sf->base, var->base);
4493 vmcs_write32(sf->limit, var->limit);
4494 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004495
4496 /*
4497 * Fix the "Accessed" bit in AR field of segment registers for older
4498 * qemu binaries.
4499 * IA32 arch specifies that at the time of processor reset the
4500 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004501 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004502 * state vmexit when "unrestricted guest" mode is turned on.
4503 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4504 * tree. Newer qemu binaries with that qemu fix would not need this
4505 * kvm hack.
4506 */
4507 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004508 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004509
Gleb Natapovf924d662012-12-12 19:10:55 +02004510 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004511
4512out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004513 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004514}
4515
Avi Kivity6aa8b732006-12-10 02:21:36 -08004516static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4517{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004518 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004519
4520 *db = (ar >> 14) & 1;
4521 *l = (ar >> 13) & 1;
4522}
4523
Gleb Natapov89a27f42010-02-16 10:51:48 +02004524static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004525{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004526 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4527 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004528}
4529
Gleb Natapov89a27f42010-02-16 10:51:48 +02004530static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004531{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004532 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4533 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004534}
4535
Gleb Natapov89a27f42010-02-16 10:51:48 +02004536static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004537{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004538 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4539 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004540}
4541
Gleb Natapov89a27f42010-02-16 10:51:48 +02004542static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004543{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004544 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4545 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004546}
4547
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004548static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4549{
4550 struct kvm_segment var;
4551 u32 ar;
4552
4553 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004554 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004555 if (seg == VCPU_SREG_CS)
4556 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004557 ar = vmx_segment_access_rights(&var);
4558
4559 if (var.base != (var.selector << 4))
4560 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004561 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004562 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004563 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004564 return false;
4565
4566 return true;
4567}
4568
4569static bool code_segment_valid(struct kvm_vcpu *vcpu)
4570{
4571 struct kvm_segment cs;
4572 unsigned int cs_rpl;
4573
4574 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004575 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004576
Avi Kivity1872a3f2009-01-04 23:26:52 +02004577 if (cs.unusable)
4578 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004579 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004580 return false;
4581 if (!cs.s)
4582 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004583 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004584 if (cs.dpl > cs_rpl)
4585 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004586 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004587 if (cs.dpl != cs_rpl)
4588 return false;
4589 }
4590 if (!cs.present)
4591 return false;
4592
4593 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4594 return true;
4595}
4596
4597static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4598{
4599 struct kvm_segment ss;
4600 unsigned int ss_rpl;
4601
4602 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004603 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004604
Avi Kivity1872a3f2009-01-04 23:26:52 +02004605 if (ss.unusable)
4606 return true;
4607 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004608 return false;
4609 if (!ss.s)
4610 return false;
4611 if (ss.dpl != ss_rpl) /* DPL != RPL */
4612 return false;
4613 if (!ss.present)
4614 return false;
4615
4616 return true;
4617}
4618
4619static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4620{
4621 struct kvm_segment var;
4622 unsigned int rpl;
4623
4624 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004625 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004626
Avi Kivity1872a3f2009-01-04 23:26:52 +02004627 if (var.unusable)
4628 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004629 if (!var.s)
4630 return false;
4631 if (!var.present)
4632 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004633 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004634 if (var.dpl < rpl) /* DPL < RPL */
4635 return false;
4636 }
4637
4638 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4639 * rights flags
4640 */
4641 return true;
4642}
4643
4644static bool tr_valid(struct kvm_vcpu *vcpu)
4645{
4646 struct kvm_segment tr;
4647
4648 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4649
Avi Kivity1872a3f2009-01-04 23:26:52 +02004650 if (tr.unusable)
4651 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004652 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004653 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004654 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004655 return false;
4656 if (!tr.present)
4657 return false;
4658
4659 return true;
4660}
4661
4662static bool ldtr_valid(struct kvm_vcpu *vcpu)
4663{
4664 struct kvm_segment ldtr;
4665
4666 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4667
Avi Kivity1872a3f2009-01-04 23:26:52 +02004668 if (ldtr.unusable)
4669 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004670 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004671 return false;
4672 if (ldtr.type != 2)
4673 return false;
4674 if (!ldtr.present)
4675 return false;
4676
4677 return true;
4678}
4679
4680static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4681{
4682 struct kvm_segment cs, ss;
4683
4684 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4685 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4686
Nadav Amitb32a9912015-03-29 16:33:04 +03004687 return ((cs.selector & SEGMENT_RPL_MASK) ==
4688 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004689}
4690
4691/*
4692 * Check if guest state is valid. Returns true if valid, false if
4693 * not.
4694 * We assume that registers are always usable
4695 */
4696static bool guest_state_valid(struct kvm_vcpu *vcpu)
4697{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004698 if (enable_unrestricted_guest)
4699 return true;
4700
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004701 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004702 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004703 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4704 return false;
4705 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4706 return false;
4707 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4708 return false;
4709 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4710 return false;
4711 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4712 return false;
4713 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4714 return false;
4715 } else {
4716 /* protected mode guest state checks */
4717 if (!cs_ss_rpl_check(vcpu))
4718 return false;
4719 if (!code_segment_valid(vcpu))
4720 return false;
4721 if (!stack_segment_valid(vcpu))
4722 return false;
4723 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4724 return false;
4725 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4726 return false;
4727 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4728 return false;
4729 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4730 return false;
4731 if (!tr_valid(vcpu))
4732 return false;
4733 if (!ldtr_valid(vcpu))
4734 return false;
4735 }
4736 /* TODO:
4737 * - Add checks on RIP
4738 * - Add checks on RFLAGS
4739 */
4740
4741 return true;
4742}
4743
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004744static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4745{
4746 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4747}
4748
Mike Dayd77c26f2007-10-08 09:02:08 -04004749static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004750{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004751 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004752 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004753 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004754
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004755 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004756 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004757 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4758 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004759 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004760 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004761 r = kvm_write_guest_page(kvm, fn++, &data,
4762 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004763 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004764 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004765 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4766 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004767 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004768 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4769 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004770 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004771 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004772 r = kvm_write_guest_page(kvm, fn, &data,
4773 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4774 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004775out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004776 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004777 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004778}
4779
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004780static int init_rmode_identity_map(struct kvm *kvm)
4781{
Tang Chenf51770e2014-09-16 18:41:59 +08004782 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004783 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004784 u32 tmp;
4785
Tang Chena255d472014-09-16 18:41:58 +08004786 /* Protect kvm->arch.ept_identity_pagetable_done. */
4787 mutex_lock(&kvm->slots_lock);
4788
Tang Chenf51770e2014-09-16 18:41:59 +08004789 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004790 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004791
David Hildenbrandd8a6e362017-08-24 20:51:34 +02004792 if (!kvm->arch.ept_identity_map_addr)
4793 kvm->arch.ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004794 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004795
David Hildenbrandd8a6e362017-08-24 20:51:34 +02004796 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4797 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08004798 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004799 goto out2;
4800
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004801 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004802 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4803 if (r < 0)
4804 goto out;
4805 /* Set up identity-mapping pagetable for EPT in real mode */
4806 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4807 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4808 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4809 r = kvm_write_guest_page(kvm, identity_map_pfn,
4810 &tmp, i * sizeof(tmp), sizeof(tmp));
4811 if (r < 0)
4812 goto out;
4813 }
4814 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004815
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004816out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004817 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004818
4819out2:
4820 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004821 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004822}
4823
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824static void seg_setup(int seg)
4825{
Mathias Krause772e0312012-08-30 01:30:19 +02004826 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004827 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004828
4829 vmcs_write16(sf->selector, 0);
4830 vmcs_writel(sf->base, 0);
4831 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004832 ar = 0x93;
4833 if (seg == VCPU_SREG_CS)
4834 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004835
4836 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004837}
4838
Sheng Yangf78e0e22007-10-29 09:40:42 +08004839static int alloc_apic_access_page(struct kvm *kvm)
4840{
Xiao Guangrong44841412012-09-07 14:14:20 +08004841 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004842 int r = 0;
4843
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004844 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004845 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004846 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004847 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4848 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004849 if (r)
4850 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004851
Tang Chen73a6d942014-09-11 13:38:00 +08004852 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004853 if (is_error_page(page)) {
4854 r = -EFAULT;
4855 goto out;
4856 }
4857
Tang Chenc24ae0d2014-09-24 15:57:58 +08004858 /*
4859 * Do not pin the page in memory, so that memory hot-unplug
4860 * is able to migrate it.
4861 */
4862 put_page(page);
4863 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004864out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004865 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004866 return r;
4867}
4868
Wanpeng Li991e7a02015-09-16 17:30:05 +08004869static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004870{
4871 int vpid;
4872
Avi Kivity919818a2009-03-23 18:01:29 +02004873 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004874 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004875 spin_lock(&vmx_vpid_lock);
4876 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004877 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004878 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004879 else
4880 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004881 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004882 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004883}
4884
Wanpeng Li991e7a02015-09-16 17:30:05 +08004885static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004886{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004887 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004888 return;
4889 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004890 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004891 spin_unlock(&vmx_vpid_lock);
4892}
4893
Yang Zhang8d146952013-01-25 10:18:50 +08004894#define MSR_TYPE_R 1
4895#define MSR_TYPE_W 2
4896static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4897 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004898{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004899 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004900
4901 if (!cpu_has_vmx_msr_bitmap())
4902 return;
4903
4904 /*
4905 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4906 * have the write-low and read-high bitmap offsets the wrong way round.
4907 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4908 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004909 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004910 if (type & MSR_TYPE_R)
4911 /* read-low */
4912 __clear_bit(msr, msr_bitmap + 0x000 / f);
4913
4914 if (type & MSR_TYPE_W)
4915 /* write-low */
4916 __clear_bit(msr, msr_bitmap + 0x800 / f);
4917
Sheng Yang25c5f222008-03-28 13:18:56 +08004918 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4919 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004920 if (type & MSR_TYPE_R)
4921 /* read-high */
4922 __clear_bit(msr, msr_bitmap + 0x400 / f);
4923
4924 if (type & MSR_TYPE_W)
4925 /* write-high */
4926 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4927
4928 }
4929}
4930
Wincy Vanf2b93282015-02-03 23:56:03 +08004931/*
4932 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4933 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4934 */
4935static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4936 unsigned long *msr_bitmap_nested,
4937 u32 msr, int type)
4938{
4939 int f = sizeof(unsigned long);
4940
4941 if (!cpu_has_vmx_msr_bitmap()) {
4942 WARN_ON(1);
4943 return;
4944 }
4945
4946 /*
4947 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4948 * have the write-low and read-high bitmap offsets the wrong way round.
4949 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4950 */
4951 if (msr <= 0x1fff) {
4952 if (type & MSR_TYPE_R &&
4953 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4954 /* read-low */
4955 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4956
4957 if (type & MSR_TYPE_W &&
4958 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4959 /* write-low */
4960 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4961
4962 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4963 msr &= 0x1fff;
4964 if (type & MSR_TYPE_R &&
4965 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4966 /* read-high */
4967 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4968
4969 if (type & MSR_TYPE_W &&
4970 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4971 /* write-high */
4972 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4973
4974 }
4975}
4976
Avi Kivity58972972009-02-24 22:26:47 +02004977static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4978{
4979 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004980 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4981 msr, MSR_TYPE_R | MSR_TYPE_W);
4982 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4983 msr, MSR_TYPE_R | MSR_TYPE_W);
4984}
4985
Radim Krčmář2e69f862016-09-29 22:41:32 +02004986static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004987{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004988 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08004989 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004990 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08004991 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004992 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004993 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004994 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004995 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004996 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004997 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004998 }
Avi Kivity58972972009-02-24 22:26:47 +02004999}
5000
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005001static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005002{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005003 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005004}
5005
David Matlackc9f04402017-08-01 14:00:40 -07005006static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5007{
5008 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5009 gfn_t gfn;
5010
5011 /*
5012 * Don't need to mark the APIC access page dirty; it is never
5013 * written to by the CPU during APIC virtualization.
5014 */
5015
5016 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5017 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5018 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5019 }
5020
5021 if (nested_cpu_has_posted_intr(vmcs12)) {
5022 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5023 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5024 }
5025}
5026
5027
David Hildenbrand6342c502017-01-25 11:58:58 +01005028static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005029{
5030 struct vcpu_vmx *vmx = to_vmx(vcpu);
5031 int max_irr;
5032 void *vapic_page;
5033 u16 status;
5034
David Matlackc9f04402017-08-01 14:00:40 -07005035 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5036 return;
Wincy Van705699a2015-02-03 23:58:17 +08005037
David Matlackc9f04402017-08-01 14:00:40 -07005038 vmx->nested.pi_pending = false;
5039 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5040 return;
Wincy Van705699a2015-02-03 23:58:17 +08005041
David Matlackc9f04402017-08-01 14:00:40 -07005042 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5043 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005044 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005045 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5046 kunmap(vmx->nested.virtual_apic_page);
5047
5048 status = vmcs_read16(GUEST_INTR_STATUS);
5049 if ((u8)max_irr > ((u8)status & 0xff)) {
5050 status &= ~0xff;
5051 status |= (u8)max_irr;
5052 vmcs_write16(GUEST_INTR_STATUS, status);
5053 }
5054 }
David Matlackc9f04402017-08-01 14:00:40 -07005055
5056 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005057}
5058
Wincy Van06a55242017-04-28 13:13:59 +08005059static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5060 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005061{
5062#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005063 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5064
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005065 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005066 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005067 * The vector of interrupt to be delivered to vcpu had
5068 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08005069 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005070 * Following cases will be reached in this block, and
5071 * we always send a notification event in all cases as
5072 * explained below.
5073 *
5074 * Case 1: vcpu keeps in non-root mode. Sending a
5075 * notification event posts the interrupt to vcpu.
5076 *
5077 * Case 2: vcpu exits to root mode and is still
5078 * runnable. PIR will be synced to vIRR before the
5079 * next vcpu entry. Sending a notification event in
5080 * this case has no effect, as vcpu is not in root
5081 * mode.
5082 *
5083 * Case 3: vcpu exits to root mode and is blocked.
5084 * vcpu_block() has already synced PIR to vIRR and
5085 * never blocks vcpu if vIRR is not cleared. Therefore,
5086 * a blocked vcpu here does not wait for any requested
5087 * interrupts in PIR, and sending a notification event
5088 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08005089 */
Feng Wu28b835d2015-09-18 22:29:54 +08005090
Wincy Van06a55242017-04-28 13:13:59 +08005091 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005092 return true;
5093 }
5094#endif
5095 return false;
5096}
5097
Wincy Van705699a2015-02-03 23:58:17 +08005098static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5099 int vector)
5100{
5101 struct vcpu_vmx *vmx = to_vmx(vcpu);
5102
5103 if (is_guest_mode(vcpu) &&
5104 vector == vmx->nested.posted_intr_nv) {
5105 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005106 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005107 /*
5108 * If a posted intr is not recognized by hardware,
5109 * we will accomplish it in the next vmentry.
5110 */
5111 vmx->nested.pi_pending = true;
5112 kvm_make_request(KVM_REQ_EVENT, vcpu);
5113 return 0;
5114 }
5115 return -1;
5116}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005117/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005118 * Send interrupt to vcpu via posted interrupt way.
5119 * 1. If target vcpu is running(non-root mode), send posted interrupt
5120 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5121 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5122 * interrupt from PIR in next vmentry.
5123 */
5124static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5125{
5126 struct vcpu_vmx *vmx = to_vmx(vcpu);
5127 int r;
5128
Wincy Van705699a2015-02-03 23:58:17 +08005129 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5130 if (!r)
5131 return;
5132
Yang Zhanga20ed542013-04-11 19:25:15 +08005133 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5134 return;
5135
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005136 /* If a previous notification has sent the IPI, nothing to do. */
5137 if (pi_test_and_set_on(&vmx->pi_desc))
5138 return;
5139
Wincy Van06a55242017-04-28 13:13:59 +08005140 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005141 kvm_vcpu_kick(vcpu);
5142}
5143
Avi Kivity6aa8b732006-12-10 02:21:36 -08005144/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005145 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5146 * will not change in the lifetime of the guest.
5147 * Note that host-state that does change is set elsewhere. E.g., host-state
5148 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5149 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005150static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005151{
5152 u32 low32, high32;
5153 unsigned long tmpl;
5154 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005155 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005156
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005157 cr0 = read_cr0();
5158 WARN_ON(cr0 & X86_CR0_TS);
5159 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005160
5161 /*
5162 * Save the most likely value for this task's CR3 in the VMCS.
5163 * We can't use __get_current_cr3_fast() because we're not atomic.
5164 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005165 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005166 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Ladi Prosek44889942017-09-22 07:53:15 +02005167 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005168
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005169 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005170 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005171 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Ladi Prosek44889942017-09-22 07:53:15 +02005172 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005173
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005174 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005175#ifdef CONFIG_X86_64
5176 /*
5177 * Load null selectors, so we can avoid reloading them in
5178 * __vmx_load_host_state(), in case userspace uses the null selectors
5179 * too (the expected case).
5180 */
5181 vmcs_write16(HOST_DS_SELECTOR, 0);
5182 vmcs_write16(HOST_ES_SELECTOR, 0);
5183#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005184 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5185 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005186#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005187 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5188 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5189
Juergen Gross87930012017-09-04 12:25:27 +02005190 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005191 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005192 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005193
Avi Kivity83287ea422012-09-16 15:10:57 +03005194 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005195
5196 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5197 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5198 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5199 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5200
5201 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5202 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5203 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5204 }
5205}
5206
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005207static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5208{
5209 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5210 if (enable_ept)
5211 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005212 if (is_guest_mode(&vmx->vcpu))
5213 vmx->vcpu.arch.cr4_guest_owned_bits &=
5214 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005215 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5216}
5217
Yang Zhang01e439b2013-04-11 19:25:12 +08005218static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5219{
5220 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5221
Andrey Smetanind62caab2015-11-10 15:36:33 +03005222 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005223 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005224 /* Enable the preemption timer dynamically */
5225 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005226 return pin_based_exec_ctrl;
5227}
5228
Andrey Smetanind62caab2015-11-10 15:36:33 +03005229static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5230{
5231 struct vcpu_vmx *vmx = to_vmx(vcpu);
5232
5233 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005234 if (cpu_has_secondary_exec_ctrls()) {
5235 if (kvm_vcpu_apicv_active(vcpu))
5236 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5237 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5238 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5239 else
5240 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5241 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5242 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5243 }
5244
5245 if (cpu_has_vmx_msr_bitmap())
5246 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005247}
5248
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005249static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5250{
5251 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005252
5253 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5254 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5255
Paolo Bonzini35754c92015-07-29 12:05:37 +02005256 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005257 exec_control &= ~CPU_BASED_TPR_SHADOW;
5258#ifdef CONFIG_X86_64
5259 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5260 CPU_BASED_CR8_LOAD_EXITING;
5261#endif
5262 }
5263 if (!enable_ept)
5264 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5265 CPU_BASED_CR3_LOAD_EXITING |
5266 CPU_BASED_INVLPG_EXITING;
5267 return exec_control;
5268}
5269
Jim Mattson45ec3682017-08-23 16:32:04 -07005270static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005271{
Jim Mattson45ec3682017-08-23 16:32:04 -07005272 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005273 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005274}
5275
Jim Mattson75f4fc82017-08-23 16:32:03 -07005276static bool vmx_rdseed_supported(void)
5277{
5278 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005279 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005280}
5281
Paolo Bonzini80154d72017-08-24 13:55:35 +02005282static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005283{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005284 struct kvm_vcpu *vcpu = &vmx->vcpu;
5285
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005286 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005287 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005288 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5289 if (vmx->vpid == 0)
5290 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5291 if (!enable_ept) {
5292 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5293 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005294 /* Enable INVPCID for non-ept guests may cause performance regression. */
5295 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005296 }
5297 if (!enable_unrestricted_guest)
5298 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5299 if (!ple_gap)
5300 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005301 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005302 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5303 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005304 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005305 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5306 (handle_vmptrld).
5307 We can NOT enable shadow_vmcs here because we don't have yet
5308 a current VMCS12
5309 */
5310 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005311
5312 if (!enable_pml)
5313 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005314
Paolo Bonzini3db13482017-08-24 14:48:03 +02005315 if (vmx_xsaves_supported()) {
5316 /* Exposing XSAVES only when XSAVE is exposed */
5317 bool xsaves_enabled =
5318 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
5319 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
5320
5321 if (!xsaves_enabled)
5322 exec_control &= ~SECONDARY_EXEC_XSAVES;
5323
5324 if (nested) {
5325 if (xsaves_enabled)
5326 vmx->nested.nested_vmx_secondary_ctls_high |=
5327 SECONDARY_EXEC_XSAVES;
5328 else
5329 vmx->nested.nested_vmx_secondary_ctls_high &=
5330 ~SECONDARY_EXEC_XSAVES;
5331 }
5332 }
5333
Paolo Bonzini80154d72017-08-24 13:55:35 +02005334 if (vmx_rdtscp_supported()) {
5335 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5336 if (!rdtscp_enabled)
5337 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5338
5339 if (nested) {
5340 if (rdtscp_enabled)
5341 vmx->nested.nested_vmx_secondary_ctls_high |=
5342 SECONDARY_EXEC_RDTSCP;
5343 else
5344 vmx->nested.nested_vmx_secondary_ctls_high &=
5345 ~SECONDARY_EXEC_RDTSCP;
5346 }
5347 }
5348
5349 if (vmx_invpcid_supported()) {
5350 /* Exposing INVPCID only when PCID is exposed */
5351 bool invpcid_enabled =
5352 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5353 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5354
5355 if (!invpcid_enabled) {
5356 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5357 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5358 }
5359
5360 if (nested) {
5361 if (invpcid_enabled)
5362 vmx->nested.nested_vmx_secondary_ctls_high |=
5363 SECONDARY_EXEC_ENABLE_INVPCID;
5364 else
5365 vmx->nested.nested_vmx_secondary_ctls_high &=
5366 ~SECONDARY_EXEC_ENABLE_INVPCID;
5367 }
5368 }
5369
Jim Mattson45ec3682017-08-23 16:32:04 -07005370 if (vmx_rdrand_supported()) {
5371 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
5372 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005373 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005374
5375 if (nested) {
5376 if (rdrand_enabled)
5377 vmx->nested.nested_vmx_secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005378 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005379 else
5380 vmx->nested.nested_vmx_secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005381 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005382 }
5383 }
5384
Jim Mattson75f4fc82017-08-23 16:32:03 -07005385 if (vmx_rdseed_supported()) {
5386 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
5387 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005388 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005389
5390 if (nested) {
5391 if (rdseed_enabled)
5392 vmx->nested.nested_vmx_secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005393 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005394 else
5395 vmx->nested.nested_vmx_secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005396 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005397 }
5398 }
5399
Paolo Bonzini80154d72017-08-24 13:55:35 +02005400 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005401}
5402
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005403static void ept_set_mmio_spte_mask(void)
5404{
5405 /*
5406 * EPT Misconfigurations can be generated if the value of bits 2:0
5407 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005408 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005409 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5410 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005411}
5412
Wanpeng Lif53cd632014-12-02 19:14:58 +08005413#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005414/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005415 * Sets up the vmcs for emulated real mode.
5416 */
David Hildenbrand12d79912017-08-24 20:51:26 +02005417static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005418{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005419#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005420 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005421#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005422 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005423
Avi Kivity6aa8b732006-12-10 02:21:36 -08005424 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005425 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5426 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005427
Abel Gordon4607c2d2013-04-18 14:35:55 +03005428 if (enable_shadow_vmcs) {
5429 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5430 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5431 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005432 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005433 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005434
Avi Kivity6aa8b732006-12-10 02:21:36 -08005435 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5436
Avi Kivity6aa8b732006-12-10 02:21:36 -08005437 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005438 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005439 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005440
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005441 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005442
Dan Williamsdfa169b2016-06-02 11:17:24 -07005443 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005444 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005445 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005446 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005447 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005448
Andrey Smetanind62caab2015-11-10 15:36:33 +03005449 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005450 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5451 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5452 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5453 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5454
5455 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005456
Li RongQing0bcf2612015-12-03 13:29:34 +08005457 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005458 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005459 }
5460
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005461 if (ple_gap) {
5462 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005463 vmx->ple_window = ple_window;
5464 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005465 }
5466
Xiao Guangrongc3707952011-07-12 03:28:04 +08005467 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5468 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005469 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5470
Avi Kivity9581d442010-10-19 16:46:55 +02005471 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5472 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005473 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005474#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005475 rdmsrl(MSR_FS_BASE, a);
5476 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5477 rdmsrl(MSR_GS_BASE, a);
5478 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5479#else
5480 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5481 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5482#endif
5483
Bandan Das2a499e42017-08-03 15:54:41 -04005484 if (cpu_has_vmx_vmfunc())
5485 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5486
Eddie Dong2cc51562007-05-21 07:28:09 +03005487 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5488 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005489 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005490 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005491 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005492
Radim Krčmář74545702015-04-27 15:11:25 +02005493 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5494 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005495
Paolo Bonzini03916db2014-07-24 14:21:57 +02005496 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005497 u32 index = vmx_msr_index[i];
5498 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005499 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005500
5501 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5502 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005503 if (wrmsr_safe(index, data_low, data_high) < 0)
5504 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005505 vmx->guest_msrs[j].index = i;
5506 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005507 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005508 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005509 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005510
Gleb Natapov2961e8762013-11-25 15:37:13 +02005511
5512 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005513
5514 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005515 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005516
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005517 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5518 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5519
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005520 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005521
Wanpeng Lif53cd632014-12-02 19:14:58 +08005522 if (vmx_xsaves_supported())
5523 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5524
Peter Feiner4e595162016-07-07 14:49:58 -07005525 if (enable_pml) {
5526 ASSERT(vmx->pml_pg);
5527 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5528 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5529 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005530}
5531
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005532static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005533{
5534 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005535 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005536 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005537
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005538 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005539
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005540 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005541 kvm_set_cr8(vcpu, 0);
5542
5543 if (!init_event) {
5544 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5545 MSR_IA32_APICBASE_ENABLE;
5546 if (kvm_vcpu_is_reset_bsp(vcpu))
5547 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5548 apic_base_msr.host_initiated = true;
5549 kvm_set_apic_base(vcpu, &apic_base_msr);
5550 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005551
Avi Kivity2fb92db2011-04-27 19:42:18 +03005552 vmx_segment_cache_clear(vmx);
5553
Avi Kivity5706be02008-08-20 15:07:31 +03005554 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005555 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005556 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005557
5558 seg_setup(VCPU_SREG_DS);
5559 seg_setup(VCPU_SREG_ES);
5560 seg_setup(VCPU_SREG_FS);
5561 seg_setup(VCPU_SREG_GS);
5562 seg_setup(VCPU_SREG_SS);
5563
5564 vmcs_write16(GUEST_TR_SELECTOR, 0);
5565 vmcs_writel(GUEST_TR_BASE, 0);
5566 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5567 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5568
5569 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5570 vmcs_writel(GUEST_LDTR_BASE, 0);
5571 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5572 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5573
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005574 if (!init_event) {
5575 vmcs_write32(GUEST_SYSENTER_CS, 0);
5576 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5577 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5578 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5579 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005580
5581 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005582 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005583
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005584 vmcs_writel(GUEST_GDTR_BASE, 0);
5585 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5586
5587 vmcs_writel(GUEST_IDTR_BASE, 0);
5588 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5589
Anthony Liguori443381a2010-12-06 10:53:38 -06005590 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005591 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005592 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07005593 if (kvm_mpx_supported())
5594 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005595
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005596 setup_msrs(vmx);
5597
Avi Kivity6aa8b732006-12-10 02:21:36 -08005598 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5599
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005600 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005601 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005602 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005603 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005604 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005605 vmcs_write32(TPR_THRESHOLD, 0);
5606 }
5607
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005608 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005609
Andrey Smetanind62caab2015-11-10 15:36:33 +03005610 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005611 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5612
Sheng Yang2384d2b2008-01-17 15:14:33 +08005613 if (vmx->vpid != 0)
5614 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5615
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005616 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005617 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005618 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005619 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005620 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005621
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005622 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005623
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005624 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005625}
5626
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005627/*
5628 * In nested virtualization, check if L1 asked to exit on external interrupts.
5629 * For most existing hypervisors, this will always return true.
5630 */
5631static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5632{
5633 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5634 PIN_BASED_EXT_INTR_MASK;
5635}
5636
Bandan Das77b0f5d2014-04-19 18:17:45 -04005637/*
5638 * In nested virtualization, check if L1 has set
5639 * VM_EXIT_ACK_INTR_ON_EXIT
5640 */
5641static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5642{
5643 return get_vmcs12(vcpu)->vm_exit_controls &
5644 VM_EXIT_ACK_INTR_ON_EXIT;
5645}
5646
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005647static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5648{
5649 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5650 PIN_BASED_NMI_EXITING;
5651}
5652
Jan Kiszkac9a79532014-03-07 20:03:15 +01005653static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005654{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005655 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5656 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005657}
5658
Jan Kiszkac9a79532014-03-07 20:03:15 +01005659static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005660{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005661 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005662 enable_irq_window(vcpu);
5663 return;
5664 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005665
Paolo Bonzini47c01522016-12-19 11:44:07 +01005666 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5667 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005668}
5669
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005670static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005671{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005672 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005673 uint32_t intr;
5674 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005675
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005676 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005677
Avi Kivityfa89a812008-09-01 15:57:51 +03005678 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005679 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005680 int inc_eip = 0;
5681 if (vcpu->arch.interrupt.soft)
5682 inc_eip = vcpu->arch.event_exit_inst_len;
5683 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005684 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005685 return;
5686 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005687 intr = irq | INTR_INFO_VALID_MASK;
5688 if (vcpu->arch.interrupt.soft) {
5689 intr |= INTR_TYPE_SOFT_INTR;
5690 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5691 vmx->vcpu.arch.event_exit_inst_len);
5692 } else
5693 intr |= INTR_TYPE_EXT_INTR;
5694 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005695}
5696
Sheng Yangf08864b2008-05-15 18:23:25 +08005697static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5698{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005699 struct vcpu_vmx *vmx = to_vmx(vcpu);
5700
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005701 ++vcpu->stat.nmi_injections;
5702 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005703
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005704 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005705 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005706 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005707 return;
5708 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005709
Sheng Yangf08864b2008-05-15 18:23:25 +08005710 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5711 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005712}
5713
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005714static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5715{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005716 struct vcpu_vmx *vmx = to_vmx(vcpu);
5717 bool masked;
5718
5719 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005720 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005721 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5722 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5723 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005724}
5725
5726static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5727{
5728 struct vcpu_vmx *vmx = to_vmx(vcpu);
5729
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005730 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005731 if (masked)
5732 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5733 GUEST_INTR_STATE_NMI);
5734 else
5735 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5736 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005737}
5738
Jan Kiszka2505dc92013-04-14 12:12:47 +02005739static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5740{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005741 if (to_vmx(vcpu)->nested.nested_run_pending)
5742 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005743
Jan Kiszka2505dc92013-04-14 12:12:47 +02005744 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5745 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5746 | GUEST_INTR_STATE_NMI));
5747}
5748
Gleb Natapov78646122009-03-23 12:12:11 +02005749static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5750{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005751 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5752 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005753 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5754 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005755}
5756
Izik Eiduscbc94022007-10-25 00:29:55 +02005757static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5758{
5759 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005760
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005761 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5762 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005763 if (ret)
5764 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005765 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005766 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005767}
5768
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005769static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005770{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005771 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005772 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005773 /*
5774 * Update instruction length as we may reinject the exception
5775 * from user space while in guest debugging mode.
5776 */
5777 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5778 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005779 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005780 return false;
5781 /* fall through */
5782 case DB_VECTOR:
5783 if (vcpu->guest_debug &
5784 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5785 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005786 /* fall through */
5787 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005788 case OF_VECTOR:
5789 case BR_VECTOR:
5790 case UD_VECTOR:
5791 case DF_VECTOR:
5792 case SS_VECTOR:
5793 case GP_VECTOR:
5794 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005795 return true;
5796 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005797 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005798 return false;
5799}
5800
5801static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5802 int vec, u32 err_code)
5803{
5804 /*
5805 * Instruction with address size override prefix opcode 0x67
5806 * Cause the #SS fault with 0 error code in VM86 mode.
5807 */
5808 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5809 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5810 if (vcpu->arch.halt_request) {
5811 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005812 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005813 }
5814 return 1;
5815 }
5816 return 0;
5817 }
5818
5819 /*
5820 * Forward all other exceptions that are valid in real mode.
5821 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5822 * the required debugging infrastructure rework.
5823 */
5824 kvm_queue_exception(vcpu, vec);
5825 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005826}
5827
Andi Kleena0861c02009-06-08 17:37:09 +08005828/*
5829 * Trigger machine check on the host. We assume all the MSRs are already set up
5830 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5831 * We pass a fake environment to the machine check handler because we want
5832 * the guest to be always treated like user space, no matter what context
5833 * it used internally.
5834 */
5835static void kvm_machine_check(void)
5836{
5837#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5838 struct pt_regs regs = {
5839 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5840 .flags = X86_EFLAGS_IF,
5841 };
5842
5843 do_machine_check(&regs, 0);
5844#endif
5845}
5846
Avi Kivity851ba692009-08-24 11:10:17 +03005847static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005848{
5849 /* already handled by vcpu_run */
5850 return 1;
5851}
5852
Avi Kivity851ba692009-08-24 11:10:17 +03005853static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005854{
Avi Kivity1155f762007-11-22 11:30:47 +02005855 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005856 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005857 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005858 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859 u32 vect_info;
5860 enum emulation_result er;
5861
Avi Kivity1155f762007-11-22 11:30:47 +02005862 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005863 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005864
Andi Kleena0861c02009-06-08 17:37:09 +08005865 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005866 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005867
Jim Mattsonef85b672016-12-12 11:01:37 -08005868 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005869 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005870
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005871 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005872 if (is_guest_mode(vcpu)) {
5873 kvm_queue_exception(vcpu, UD_VECTOR);
5874 return 1;
5875 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005876 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005877 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005878 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005879 return 1;
5880 }
5881
Avi Kivity6aa8b732006-12-10 02:21:36 -08005882 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005883 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005884 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005885
5886 /*
5887 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5888 * MMIO, it is better to report an internal error.
5889 * See the comments in vmx_handle_exit.
5890 */
5891 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5892 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5893 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5894 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005895 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005896 vcpu->run->internal.data[0] = vect_info;
5897 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005898 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005899 return 0;
5900 }
5901
Avi Kivity6aa8b732006-12-10 02:21:36 -08005902 if (is_page_fault(intr_info)) {
5903 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005904 /* EPT won't cause page fault directly */
5905 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02005906 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005907 }
5908
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005909 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005910
5911 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5912 return handle_rmode_exception(vcpu, ex_no, error_code);
5913
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005914 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005915 case AC_VECTOR:
5916 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5917 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005918 case DB_VECTOR:
5919 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5920 if (!(vcpu->guest_debug &
5921 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005922 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005923 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005924 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5925 skip_emulated_instruction(vcpu);
5926
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005927 kvm_queue_exception(vcpu, DB_VECTOR);
5928 return 1;
5929 }
5930 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5931 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5932 /* fall through */
5933 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005934 /*
5935 * Update instruction length as we may reinject #BP from
5936 * user space while in guest debugging mode. Reading it for
5937 * #DB as well causes no harm, it is not used in that case.
5938 */
5939 vmx->vcpu.arch.event_exit_inst_len =
5940 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005941 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005942 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005943 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5944 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005945 break;
5946 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005947 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5948 kvm_run->ex.exception = ex_no;
5949 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005950 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005951 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005952 return 0;
5953}
5954
Avi Kivity851ba692009-08-24 11:10:17 +03005955static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005956{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005957 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005958 return 1;
5959}
5960
Avi Kivity851ba692009-08-24 11:10:17 +03005961static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005962{
Avi Kivity851ba692009-08-24 11:10:17 +03005963 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005964 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005965 return 0;
5966}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967
Avi Kivity851ba692009-08-24 11:10:17 +03005968static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005969{
He, Qingbfdaab02007-09-12 14:18:28 +08005970 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005971 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005972 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005973
He, Qingbfdaab02007-09-12 14:18:28 +08005974 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005975 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005976 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005977
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005978 ++vcpu->stat.io_exits;
5979
5980 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005981 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005982
5983 port = exit_qualification >> 16;
5984 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005985
Kyle Huey6affcbe2016-11-29 12:40:40 -08005986 ret = kvm_skip_emulated_instruction(vcpu);
5987
5988 /*
5989 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5990 * KVM_EXIT_DEBUG here.
5991 */
5992 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005993}
5994
Ingo Molnar102d8322007-02-19 14:37:47 +02005995static void
5996vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5997{
5998 /*
5999 * Patch in the VMCALL instruction:
6000 */
6001 hypercall[0] = 0x0f;
6002 hypercall[1] = 0x01;
6003 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006004}
6005
Guo Chao0fa06072012-06-28 15:16:19 +08006006/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006007static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6008{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006009 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006010 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6011 unsigned long orig_val = val;
6012
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006013 /*
6014 * We get here when L2 changed cr0 in a way that did not change
6015 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006016 * but did change L0 shadowed bits. So we first calculate the
6017 * effective cr0 value that L1 would like to write into the
6018 * hardware. It consists of the L2-owned bits from the new
6019 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006020 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006021 val = (val & ~vmcs12->cr0_guest_host_mask) |
6022 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6023
David Matlack38991522016-11-29 18:14:08 -08006024 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006025 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006026
6027 if (kvm_set_cr0(vcpu, val))
6028 return 1;
6029 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006030 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006031 } else {
6032 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006033 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006034 return 1;
David Matlack38991522016-11-29 18:14:08 -08006035
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006036 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006037 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006038}
6039
6040static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6041{
6042 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006043 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6044 unsigned long orig_val = val;
6045
6046 /* analogously to handle_set_cr0 */
6047 val = (val & ~vmcs12->cr4_guest_host_mask) |
6048 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6049 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006050 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006051 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006052 return 0;
6053 } else
6054 return kvm_set_cr4(vcpu, val);
6055}
6056
Avi Kivity851ba692009-08-24 11:10:17 +03006057static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006058{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006059 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006060 int cr;
6061 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006062 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006063 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006064
He, Qingbfdaab02007-09-12 14:18:28 +08006065 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006066 cr = exit_qualification & 15;
6067 reg = (exit_qualification >> 8) & 15;
6068 switch ((exit_qualification >> 4) & 3) {
6069 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006070 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006071 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006072 switch (cr) {
6073 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006074 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006075 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006076 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006077 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006078 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006079 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006080 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006081 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006082 case 8: {
6083 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006084 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006085 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006086 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006087 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006088 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006089 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006090 return ret;
6091 /*
6092 * TODO: we might be squashing a
6093 * KVM_GUESTDBG_SINGLESTEP-triggered
6094 * KVM_EXIT_DEBUG here.
6095 */
Avi Kivity851ba692009-08-24 11:10:17 +03006096 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006097 return 0;
6098 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006099 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006100 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006101 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006102 WARN_ONCE(1, "Guest should always own CR0.TS");
6103 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006104 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006105 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006106 case 1: /*mov from cr*/
6107 switch (cr) {
6108 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006109 val = kvm_read_cr3(vcpu);
6110 kvm_register_write(vcpu, reg, val);
6111 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006112 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006113 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006114 val = kvm_get_cr8(vcpu);
6115 kvm_register_write(vcpu, reg, val);
6116 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006117 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006118 }
6119 break;
6120 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006121 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006122 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006123 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006124
Kyle Huey6affcbe2016-11-29 12:40:40 -08006125 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006126 default:
6127 break;
6128 }
Avi Kivity851ba692009-08-24 11:10:17 +03006129 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006130 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006131 (int)(exit_qualification >> 4) & 3, cr);
6132 return 0;
6133}
6134
Avi Kivity851ba692009-08-24 11:10:17 +03006135static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006136{
He, Qingbfdaab02007-09-12 14:18:28 +08006137 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006138 int dr, dr7, reg;
6139
6140 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6141 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6142
6143 /* First, if DR does not exist, trigger UD */
6144 if (!kvm_require_dr(vcpu, dr))
6145 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006146
Jan Kiszkaf2483412010-01-20 18:20:20 +01006147 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006148 if (!kvm_require_cpl(vcpu, 0))
6149 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006150 dr7 = vmcs_readl(GUEST_DR7);
6151 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006152 /*
6153 * As the vm-exit takes precedence over the debug trap, we
6154 * need to emulate the latter, either for the host or the
6155 * guest debugging itself.
6156 */
6157 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006158 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006159 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006160 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006161 vcpu->run->debug.arch.exception = DB_VECTOR;
6162 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006163 return 0;
6164 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006165 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006166 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006167 kvm_queue_exception(vcpu, DB_VECTOR);
6168 return 1;
6169 }
6170 }
6171
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006172 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006173 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6174 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006175
6176 /*
6177 * No more DR vmexits; force a reload of the debug registers
6178 * and reenter on this instruction. The next vmexit will
6179 * retrieve the full state of the debug registers.
6180 */
6181 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6182 return 1;
6183 }
6184
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006185 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6186 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006187 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006188
6189 if (kvm_get_dr(vcpu, dr, &val))
6190 return 1;
6191 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006192 } else
Nadav Amit57773922014-06-18 17:19:23 +03006193 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006194 return 1;
6195
Kyle Huey6affcbe2016-11-29 12:40:40 -08006196 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006197}
6198
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006199static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6200{
6201 return vcpu->arch.dr6;
6202}
6203
6204static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6205{
6206}
6207
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006208static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6209{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006210 get_debugreg(vcpu->arch.db[0], 0);
6211 get_debugreg(vcpu->arch.db[1], 1);
6212 get_debugreg(vcpu->arch.db[2], 2);
6213 get_debugreg(vcpu->arch.db[3], 3);
6214 get_debugreg(vcpu->arch.dr6, 6);
6215 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6216
6217 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006218 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006219}
6220
Gleb Natapov020df072010-04-13 10:05:23 +03006221static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6222{
6223 vmcs_writel(GUEST_DR7, val);
6224}
6225
Avi Kivity851ba692009-08-24 11:10:17 +03006226static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006227{
Kyle Huey6a908b62016-11-29 12:40:37 -08006228 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006229}
6230
Avi Kivity851ba692009-08-24 11:10:17 +03006231static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006232{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006233 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006234 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006235
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006236 msr_info.index = ecx;
6237 msr_info.host_initiated = false;
6238 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006239 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006240 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006241 return 1;
6242 }
6243
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006244 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006245
Avi Kivity6aa8b732006-12-10 02:21:36 -08006246 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006247 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6248 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006249 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006250}
6251
Avi Kivity851ba692009-08-24 11:10:17 +03006252static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006253{
Will Auld8fe8ab42012-11-29 12:42:12 -08006254 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006255 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6256 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6257 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006258
Will Auld8fe8ab42012-11-29 12:42:12 -08006259 msr.data = data;
6260 msr.index = ecx;
6261 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006262 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006263 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006264 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006265 return 1;
6266 }
6267
Avi Kivity59200272010-01-25 19:47:02 +02006268 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006269 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006270}
6271
Avi Kivity851ba692009-08-24 11:10:17 +03006272static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006273{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006274 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006275 return 1;
6276}
6277
Avi Kivity851ba692009-08-24 11:10:17 +03006278static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006279{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006280 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6281 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006282
Avi Kivity3842d132010-07-27 12:30:24 +03006283 kvm_make_request(KVM_REQ_EVENT, vcpu);
6284
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006285 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006286 return 1;
6287}
6288
Avi Kivity851ba692009-08-24 11:10:17 +03006289static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006290{
Avi Kivityd3bef152007-06-05 15:53:05 +03006291 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006292}
6293
Avi Kivity851ba692009-08-24 11:10:17 +03006294static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006295{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006296 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006297}
6298
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006299static int handle_invd(struct kvm_vcpu *vcpu)
6300{
Andre Przywara51d8b662010-12-21 11:12:02 +01006301 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006302}
6303
Avi Kivity851ba692009-08-24 11:10:17 +03006304static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006305{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006306 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006307
6308 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006309 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006310}
6311
Avi Kivityfee84b02011-11-10 14:57:25 +02006312static int handle_rdpmc(struct kvm_vcpu *vcpu)
6313{
6314 int err;
6315
6316 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006317 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006318}
6319
Avi Kivity851ba692009-08-24 11:10:17 +03006320static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006321{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006322 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006323}
6324
Dexuan Cui2acf9232010-06-10 11:27:12 +08006325static int handle_xsetbv(struct kvm_vcpu *vcpu)
6326{
6327 u64 new_bv = kvm_read_edx_eax(vcpu);
6328 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6329
6330 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006331 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006332 return 1;
6333}
6334
Wanpeng Lif53cd632014-12-02 19:14:58 +08006335static int handle_xsaves(struct kvm_vcpu *vcpu)
6336{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006337 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006338 WARN(1, "this should never happen\n");
6339 return 1;
6340}
6341
6342static int handle_xrstors(struct kvm_vcpu *vcpu)
6343{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006344 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006345 WARN(1, "this should never happen\n");
6346 return 1;
6347}
6348
Avi Kivity851ba692009-08-24 11:10:17 +03006349static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006350{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006351 if (likely(fasteoi)) {
6352 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6353 int access_type, offset;
6354
6355 access_type = exit_qualification & APIC_ACCESS_TYPE;
6356 offset = exit_qualification & APIC_ACCESS_OFFSET;
6357 /*
6358 * Sane guest uses MOV to write EOI, with written value
6359 * not cared. So make a short-circuit here by avoiding
6360 * heavy instruction emulation.
6361 */
6362 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6363 (offset == APIC_EOI)) {
6364 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006365 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006366 }
6367 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006368 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006369}
6370
Yang Zhangc7c9c562013-01-25 10:18:51 +08006371static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6372{
6373 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6374 int vector = exit_qualification & 0xff;
6375
6376 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6377 kvm_apic_set_eoi_accelerated(vcpu, vector);
6378 return 1;
6379}
6380
Yang Zhang83d4c282013-01-25 10:18:49 +08006381static int handle_apic_write(struct kvm_vcpu *vcpu)
6382{
6383 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6384 u32 offset = exit_qualification & 0xfff;
6385
6386 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6387 kvm_apic_write_nodecode(vcpu, offset);
6388 return 1;
6389}
6390
Avi Kivity851ba692009-08-24 11:10:17 +03006391static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006392{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006393 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006394 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006395 bool has_error_code = false;
6396 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006397 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006398 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006399
6400 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006401 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006402 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006403
6404 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6405
6406 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006407 if (reason == TASK_SWITCH_GATE && idt_v) {
6408 switch (type) {
6409 case INTR_TYPE_NMI_INTR:
6410 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006411 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006412 break;
6413 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006414 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006415 kvm_clear_interrupt_queue(vcpu);
6416 break;
6417 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006418 if (vmx->idt_vectoring_info &
6419 VECTORING_INFO_DELIVER_CODE_MASK) {
6420 has_error_code = true;
6421 error_code =
6422 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6423 }
6424 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006425 case INTR_TYPE_SOFT_EXCEPTION:
6426 kvm_clear_exception_queue(vcpu);
6427 break;
6428 default:
6429 break;
6430 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006431 }
Izik Eidus37817f22008-03-24 23:14:53 +02006432 tss_selector = exit_qualification;
6433
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006434 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6435 type != INTR_TYPE_EXT_INTR &&
6436 type != INTR_TYPE_NMI_INTR))
6437 skip_emulated_instruction(vcpu);
6438
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006439 if (kvm_task_switch(vcpu, tss_selector,
6440 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6441 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006442 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6443 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6444 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006445 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006446 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006447
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006448 /*
6449 * TODO: What about debug traps on tss switch?
6450 * Are we supposed to inject them and update dr6?
6451 */
6452
6453 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006454}
6455
Avi Kivity851ba692009-08-24 11:10:17 +03006456static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006457{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006458 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006459 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006460 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006461
Sheng Yangf9c617f2009-03-25 10:08:52 +08006462 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006463
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006464 /*
6465 * EPT violation happened while executing iret from NMI,
6466 * "blocked by NMI" bit has to be set before next VM entry.
6467 * There are errata that may cause this bit to not be set:
6468 * AAK134, BY25.
6469 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006470 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006471 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006472 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6473
Sheng Yang14394422008-04-28 12:24:45 +08006474 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006475 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006476
Junaid Shahid27959a42016-12-06 16:46:10 -08006477 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006478 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006479 ? PFERR_USER_MASK : 0;
6480 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006481 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006482 ? PFERR_WRITE_MASK : 0;
6483 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006484 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006485 ? PFERR_FETCH_MASK : 0;
6486 /* ept page table entry is present? */
6487 error_code |= (exit_qualification &
6488 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6489 EPT_VIOLATION_EXECUTABLE))
6490 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006491
Paolo Bonzinieebed242016-11-28 14:39:58 +01006492 error_code |= (exit_qualification & 0x100) != 0 ?
6493 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03006494
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006495 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006496 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006497}
6498
Avi Kivity851ba692009-08-24 11:10:17 +03006499static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006500{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006501 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006502 gpa_t gpa;
6503
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006504 /*
6505 * A nested guest cannot optimize MMIO vmexits, because we have an
6506 * nGPA here instead of the required GPA.
6507 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006508 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006509 if (!is_guest_mode(vcpu) &&
6510 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006511 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006512 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006513 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006514
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006515 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6516 if (ret >= 0)
6517 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006518
6519 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006520 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006521
Avi Kivity851ba692009-08-24 11:10:17 +03006522 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6523 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006524
6525 return 0;
6526}
6527
Avi Kivity851ba692009-08-24 11:10:17 +03006528static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006529{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006530 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6531 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006532 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006533 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006534
6535 return 1;
6536}
6537
Mohammed Gamal80ced182009-09-01 12:48:18 +02006538static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006539{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006540 struct vcpu_vmx *vmx = to_vmx(vcpu);
6541 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006542 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006543 u32 cpu_exec_ctrl;
6544 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006545 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006546
6547 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6548 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006549
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006550 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006551 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006552 return handle_interrupt_window(&vmx->vcpu);
6553
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006554 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006555 return 1;
6556
Gleb Natapov991eebf2013-04-11 12:10:51 +03006557 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006558
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006559 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006560 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006561 ret = 0;
6562 goto out;
6563 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006564
Avi Kivityde5f70e2012-06-12 20:22:28 +03006565 if (err != EMULATE_DONE) {
6566 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6567 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6568 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006569 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006570 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006571
Gleb Natapov8d76c492013-05-08 18:38:44 +03006572 if (vcpu->arch.halt_request) {
6573 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006574 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006575 goto out;
6576 }
6577
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006578 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006579 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006580 if (need_resched())
6581 schedule();
6582 }
6583
Mohammed Gamal80ced182009-09-01 12:48:18 +02006584out:
6585 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006586}
6587
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006588static int __grow_ple_window(int val)
6589{
6590 if (ple_window_grow < 1)
6591 return ple_window;
6592
6593 val = min(val, ple_window_actual_max);
6594
6595 if (ple_window_grow < ple_window)
6596 val *= ple_window_grow;
6597 else
6598 val += ple_window_grow;
6599
6600 return val;
6601}
6602
6603static int __shrink_ple_window(int val, int modifier, int minimum)
6604{
6605 if (modifier < 1)
6606 return ple_window;
6607
6608 if (modifier < ple_window)
6609 val /= modifier;
6610 else
6611 val -= modifier;
6612
6613 return max(val, minimum);
6614}
6615
6616static void grow_ple_window(struct kvm_vcpu *vcpu)
6617{
6618 struct vcpu_vmx *vmx = to_vmx(vcpu);
6619 int old = vmx->ple_window;
6620
6621 vmx->ple_window = __grow_ple_window(old);
6622
6623 if (vmx->ple_window != old)
6624 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006625
6626 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006627}
6628
6629static void shrink_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 = __shrink_ple_window(old,
6635 ple_window_shrink, ple_window);
6636
6637 if (vmx->ple_window != old)
6638 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006639
6640 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006641}
6642
6643/*
6644 * ple_window_actual_max is computed to be one grow_ple_window() below
6645 * ple_window_max. (See __grow_ple_window for the reason.)
6646 * This prevents overflows, because ple_window_max is int.
6647 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6648 * this process.
6649 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6650 */
6651static void update_ple_window_actual_max(void)
6652{
6653 ple_window_actual_max =
6654 __shrink_ple_window(max(ple_window_max, ple_window),
6655 ple_window_grow, INT_MIN);
6656}
6657
Feng Wubf9f6ac2015-09-18 22:29:55 +08006658/*
6659 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6660 */
6661static void wakeup_handler(void)
6662{
6663 struct kvm_vcpu *vcpu;
6664 int cpu = smp_processor_id();
6665
6666 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6667 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6668 blocked_vcpu_list) {
6669 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6670
6671 if (pi_test_on(pi_desc) == 1)
6672 kvm_vcpu_kick(vcpu);
6673 }
6674 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6675}
6676
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006677void vmx_enable_tdp(void)
6678{
6679 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6680 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6681 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6682 0ull, VMX_EPT_EXECUTABLE_MASK,
6683 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05006684 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006685
6686 ept_set_mmio_spte_mask();
6687 kvm_enable_tdp();
6688}
6689
Tiejun Chenf2c76482014-10-28 10:14:47 +08006690static __init int hardware_setup(void)
6691{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006692 int r = -ENOMEM, i, msr;
6693
6694 rdmsrl_safe(MSR_EFER, &host_efer);
6695
6696 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6697 kvm_define_shared_msr(i, vmx_msr_index[i]);
6698
Radim Krčmář23611332016-09-29 22:41:33 +02006699 for (i = 0; i < VMX_BITMAP_NR; i++) {
6700 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6701 if (!vmx_bitmap[i])
6702 goto out;
6703 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006704
6705 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006706 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6707 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6708
6709 /*
6710 * Allow direct access to the PC debug port (it is often used for I/O
6711 * delays, but the vmexits simply slow things down).
6712 */
6713 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6714 clear_bit(0x80, vmx_io_bitmap_a);
6715
6716 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6717
6718 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6719 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6720
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006721 if (setup_vmcs_config(&vmcs_config) < 0) {
6722 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006723 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006724 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006725
6726 if (boot_cpu_has(X86_FEATURE_NX))
6727 kvm_enable_efer_bits(EFER_NX);
6728
Wanpeng Li08d839c2017-03-23 05:30:08 -07006729 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6730 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006731 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006732
Tiejun Chenf2c76482014-10-28 10:14:47 +08006733 if (!cpu_has_vmx_shadow_vmcs())
6734 enable_shadow_vmcs = 0;
6735 if (enable_shadow_vmcs)
6736 init_vmcs_shadow_fields();
6737
6738 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006739 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02006740 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07006741 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006742 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006743
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006744 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006745 enable_ept_ad_bits = 0;
6746
Wanpeng Li8ad81822017-10-09 15:51:53 -07006747 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006748 enable_unrestricted_guest = 0;
6749
Paolo Bonziniad15a292015-01-30 16:18:49 +01006750 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006751 flexpriority_enabled = 0;
6752
Paolo Bonziniad15a292015-01-30 16:18:49 +01006753 /*
6754 * set_apic_access_page_addr() is used to reload apic access
6755 * page upon invalidation. No need to do anything if not
6756 * using the APIC_ACCESS_ADDR VMCS field.
6757 */
6758 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006759 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006760
6761 if (!cpu_has_vmx_tpr_shadow())
6762 kvm_x86_ops->update_cr8_intercept = NULL;
6763
6764 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6765 kvm_disable_largepages();
6766
Wanpeng Li0f107682017-09-28 18:06:24 -07006767 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006768 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07006769 ple_window = 0;
6770 ple_window_grow = 0;
6771 ple_window_max = 0;
6772 ple_window_shrink = 0;
6773 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006774
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006775 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006776 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006777 kvm_x86_ops->sync_pir_to_irr = NULL;
6778 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006779
Haozhong Zhang64903d62015-10-20 15:39:09 +08006780 if (cpu_has_vmx_tsc_scaling()) {
6781 kvm_has_tsc_control = true;
6782 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6783 kvm_tsc_scaling_ratio_frac_bits = 48;
6784 }
6785
Tiejun Chenbaa03522014-12-23 16:21:11 +08006786 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6787 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6788 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6789 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6790 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6791 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006792
Wanpeng Lic63e4562016-09-23 19:17:16 +08006793 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6794 vmx_msr_bitmap_legacy, PAGE_SIZE);
6795 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6796 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006797 memcpy(vmx_msr_bitmap_legacy_x2apic,
6798 vmx_msr_bitmap_legacy, PAGE_SIZE);
6799 memcpy(vmx_msr_bitmap_longmode_x2apic,
6800 vmx_msr_bitmap_longmode, PAGE_SIZE);
6801
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006802 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6803
Radim Krčmář40d83382016-09-29 22:41:31 +02006804 for (msr = 0x800; msr <= 0x8ff; msr++) {
6805 if (msr == 0x839 /* TMCCT */)
6806 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006807 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006808 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006809
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006810 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006811 * TPR reads and writes can be virtualized even if virtual interrupt
6812 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006813 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006814 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6815 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6816
Roman Kagan3ce424e2016-05-18 17:48:20 +03006817 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006818 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006819 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006820 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006821
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006822 if (enable_ept)
6823 vmx_enable_tdp();
6824 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006825 kvm_disable_tdp();
6826
6827 update_ple_window_actual_max();
6828
Kai Huang843e4332015-01-28 10:54:28 +08006829 /*
6830 * Only enable PML when hardware supports PML feature, and both EPT
6831 * and EPT A/D bit features are enabled -- PML depends on them to work.
6832 */
6833 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6834 enable_pml = 0;
6835
6836 if (!enable_pml) {
6837 kvm_x86_ops->slot_enable_log_dirty = NULL;
6838 kvm_x86_ops->slot_disable_log_dirty = NULL;
6839 kvm_x86_ops->flush_log_dirty = NULL;
6840 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6841 }
6842
Yunhong Jiang64672c92016-06-13 14:19:59 -07006843 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6844 u64 vmx_msr;
6845
6846 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6847 cpu_preemption_timer_multi =
6848 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6849 } else {
6850 kvm_x86_ops->set_hv_timer = NULL;
6851 kvm_x86_ops->cancel_hv_timer = NULL;
6852 }
6853
Feng Wubf9f6ac2015-09-18 22:29:55 +08006854 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6855
Ashok Rajc45dcc72016-06-22 14:59:56 +08006856 kvm_mce_cap_supported |= MCG_LMCE_P;
6857
Tiejun Chenf2c76482014-10-28 10:14:47 +08006858 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006859
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006860out:
Radim Krčmář23611332016-09-29 22:41:33 +02006861 for (i = 0; i < VMX_BITMAP_NR; i++)
6862 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006863
6864 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006865}
6866
6867static __exit void hardware_unsetup(void)
6868{
Radim Krčmář23611332016-09-29 22:41:33 +02006869 int i;
6870
6871 for (i = 0; i < VMX_BITMAP_NR; i++)
6872 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006873
Tiejun Chenf2c76482014-10-28 10:14:47 +08006874 free_kvm_area();
6875}
6876
Avi Kivity6aa8b732006-12-10 02:21:36 -08006877/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006878 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6879 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6880 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006881static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006882{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006883 if (ple_gap)
6884 grow_ple_window(vcpu);
6885
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006886 /*
6887 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6888 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6889 * never set PAUSE_EXITING and just set PLE if supported,
6890 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6891 */
6892 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006893 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006894}
6895
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006896static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006897{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006898 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006899}
6900
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006901static int handle_mwait(struct kvm_vcpu *vcpu)
6902{
6903 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6904 return handle_nop(vcpu);
6905}
6906
Jim Mattson45ec3682017-08-23 16:32:04 -07006907static int handle_invalid_op(struct kvm_vcpu *vcpu)
6908{
6909 kvm_queue_exception(vcpu, UD_VECTOR);
6910 return 1;
6911}
6912
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006913static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6914{
6915 return 1;
6916}
6917
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006918static int handle_monitor(struct kvm_vcpu *vcpu)
6919{
6920 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6921 return handle_nop(vcpu);
6922}
6923
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006924/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006925 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6926 * We could reuse a single VMCS for all the L2 guests, but we also want the
6927 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6928 * allows keeping them loaded on the processor, and in the future will allow
6929 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6930 * every entry if they never change.
6931 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6932 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6933 *
6934 * The following functions allocate and free a vmcs02 in this pool.
6935 */
6936
6937/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6938static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6939{
6940 struct vmcs02_list *item;
6941 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6942 if (item->vmptr == vmx->nested.current_vmptr) {
6943 list_move(&item->list, &vmx->nested.vmcs02_pool);
6944 return &item->vmcs02;
6945 }
6946
6947 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6948 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006949 item = list_last_entry(&vmx->nested.vmcs02_pool,
6950 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006951 item->vmptr = vmx->nested.current_vmptr;
6952 list_move(&item->list, &vmx->nested.vmcs02_pool);
6953 return &item->vmcs02;
6954 }
6955
6956 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006957 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006958 if (!item)
6959 return NULL;
6960 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006961 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006962 if (!item->vmcs02.vmcs) {
6963 kfree(item);
6964 return NULL;
6965 }
6966 loaded_vmcs_init(&item->vmcs02);
6967 item->vmptr = vmx->nested.current_vmptr;
6968 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6969 vmx->nested.vmcs02_num++;
6970 return &item->vmcs02;
6971}
6972
6973/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6974static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6975{
6976 struct vmcs02_list *item;
6977 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6978 if (item->vmptr == vmptr) {
6979 free_loaded_vmcs(&item->vmcs02);
6980 list_del(&item->list);
6981 kfree(item);
6982 vmx->nested.vmcs02_num--;
6983 return;
6984 }
6985}
6986
6987/*
6988 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006989 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6990 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006991 */
6992static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6993{
6994 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006995
6996 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006997 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006998 /*
6999 * Something will leak if the above WARN triggers. Better than
7000 * a use-after-free.
7001 */
7002 if (vmx->loaded_vmcs == &item->vmcs02)
7003 continue;
7004
7005 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007006 list_del(&item->list);
7007 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007008 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007009 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007010}
7011
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007012/*
7013 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7014 * set the success or error code of an emulated VMX instruction, as specified
7015 * by Vol 2B, VMX Instruction Reference, "Conventions".
7016 */
7017static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7018{
7019 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7020 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7021 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7022}
7023
7024static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7025{
7026 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7027 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7028 X86_EFLAGS_SF | X86_EFLAGS_OF))
7029 | X86_EFLAGS_CF);
7030}
7031
Abel Gordon145c28d2013-04-18 14:36:55 +03007032static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007033 u32 vm_instruction_error)
7034{
7035 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7036 /*
7037 * failValid writes the error number to the current VMCS, which
7038 * can't be done there isn't a current VMCS.
7039 */
7040 nested_vmx_failInvalid(vcpu);
7041 return;
7042 }
7043 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7044 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7045 X86_EFLAGS_SF | X86_EFLAGS_OF))
7046 | X86_EFLAGS_ZF);
7047 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7048 /*
7049 * We don't need to force a shadow sync because
7050 * VM_INSTRUCTION_ERROR is not shadowed
7051 */
7052}
Abel Gordon145c28d2013-04-18 14:36:55 +03007053
Wincy Vanff651cb2014-12-11 08:52:58 +03007054static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7055{
7056 /* TODO: not to reset guest simply here. */
7057 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007058 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007059}
7060
Jan Kiszkaf4124502014-03-07 20:03:13 +01007061static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7062{
7063 struct vcpu_vmx *vmx =
7064 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7065
7066 vmx->nested.preemption_timer_expired = true;
7067 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7068 kvm_vcpu_kick(&vmx->vcpu);
7069
7070 return HRTIMER_NORESTART;
7071}
7072
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007073/*
Bandan Das19677e32014-05-06 02:19:15 -04007074 * Decode the memory-address operand of a vmx instruction, as recorded on an
7075 * exit caused by such an instruction (run by a guest hypervisor).
7076 * On success, returns 0. When the operand is invalid, returns 1 and throws
7077 * #UD or #GP.
7078 */
7079static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7080 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007081 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007082{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007083 gva_t off;
7084 bool exn;
7085 struct kvm_segment s;
7086
Bandan Das19677e32014-05-06 02:19:15 -04007087 /*
7088 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7089 * Execution", on an exit, vmx_instruction_info holds most of the
7090 * addressing components of the operand. Only the displacement part
7091 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7092 * For how an actual address is calculated from all these components,
7093 * refer to Vol. 1, "Operand Addressing".
7094 */
7095 int scaling = vmx_instruction_info & 3;
7096 int addr_size = (vmx_instruction_info >> 7) & 7;
7097 bool is_reg = vmx_instruction_info & (1u << 10);
7098 int seg_reg = (vmx_instruction_info >> 15) & 7;
7099 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7100 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7101 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7102 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7103
7104 if (is_reg) {
7105 kvm_queue_exception(vcpu, UD_VECTOR);
7106 return 1;
7107 }
7108
7109 /* Addr = segment_base + offset */
7110 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007111 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007112 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007113 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007114 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007115 off += kvm_register_read(vcpu, index_reg)<<scaling;
7116 vmx_get_segment(vcpu, &s, seg_reg);
7117 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007118
7119 if (addr_size == 1) /* 32 bit */
7120 *ret &= 0xffffffff;
7121
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007122 /* Checks for #GP/#SS exceptions. */
7123 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007124 if (is_long_mode(vcpu)) {
7125 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7126 * non-canonical form. This is the only check on the memory
7127 * destination for long mode!
7128 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007129 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007130 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007131 /* Protected mode: apply checks for segment validity in the
7132 * following order:
7133 * - segment type check (#GP(0) may be thrown)
7134 * - usability check (#GP(0)/#SS(0))
7135 * - limit check (#GP(0)/#SS(0))
7136 */
7137 if (wr)
7138 /* #GP(0) if the destination operand is located in a
7139 * read-only data segment or any code segment.
7140 */
7141 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7142 else
7143 /* #GP(0) if the source operand is located in an
7144 * execute-only code segment
7145 */
7146 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007147 if (exn) {
7148 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7149 return 1;
7150 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007151 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7152 */
7153 exn = (s.unusable != 0);
7154 /* Protected mode: #GP(0)/#SS(0) if the memory
7155 * operand is outside the segment limit.
7156 */
7157 exn = exn || (off + sizeof(u64) > s.limit);
7158 }
7159 if (exn) {
7160 kvm_queue_exception_e(vcpu,
7161 seg_reg == VCPU_SREG_SS ?
7162 SS_VECTOR : GP_VECTOR,
7163 0);
7164 return 1;
7165 }
7166
Bandan Das19677e32014-05-06 02:19:15 -04007167 return 0;
7168}
7169
Radim Krčmářcbf71272017-05-19 15:48:51 +02007170static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007171{
7172 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007173 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007174
7175 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007176 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007177 return 1;
7178
Radim Krčmářcbf71272017-05-19 15:48:51 +02007179 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7180 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007181 kvm_inject_page_fault(vcpu, &e);
7182 return 1;
7183 }
7184
Bandan Das3573e222014-05-06 02:19:16 -04007185 return 0;
7186}
7187
Jim Mattsone29acc52016-11-30 12:03:43 -08007188static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7189{
7190 struct vcpu_vmx *vmx = to_vmx(vcpu);
7191 struct vmcs *shadow_vmcs;
7192
7193 if (cpu_has_vmx_msr_bitmap()) {
7194 vmx->nested.msr_bitmap =
7195 (unsigned long *)__get_free_page(GFP_KERNEL);
7196 if (!vmx->nested.msr_bitmap)
7197 goto out_msr_bitmap;
7198 }
7199
7200 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7201 if (!vmx->nested.cached_vmcs12)
7202 goto out_cached_vmcs12;
7203
7204 if (enable_shadow_vmcs) {
7205 shadow_vmcs = alloc_vmcs();
7206 if (!shadow_vmcs)
7207 goto out_shadow_vmcs;
7208 /* mark vmcs as shadow */
7209 shadow_vmcs->revision_id |= (1u << 31);
7210 /* init shadow vmcs */
7211 vmcs_clear(shadow_vmcs);
7212 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7213 }
7214
7215 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7216 vmx->nested.vmcs02_num = 0;
7217
7218 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7219 HRTIMER_MODE_REL_PINNED);
7220 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7221
7222 vmx->nested.vmxon = true;
7223 return 0;
7224
7225out_shadow_vmcs:
7226 kfree(vmx->nested.cached_vmcs12);
7227
7228out_cached_vmcs12:
7229 free_page((unsigned long)vmx->nested.msr_bitmap);
7230
7231out_msr_bitmap:
7232 return -ENOMEM;
7233}
7234
Bandan Das3573e222014-05-06 02:19:16 -04007235/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007236 * Emulate the VMXON instruction.
7237 * Currently, we just remember that VMX is active, and do not save or even
7238 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7239 * do not currently need to store anything in that guest-allocated memory
7240 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7241 * argument is different from the VMXON pointer (which the spec says they do).
7242 */
7243static int handle_vmon(struct kvm_vcpu *vcpu)
7244{
Jim Mattsone29acc52016-11-30 12:03:43 -08007245 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007246 gpa_t vmptr;
7247 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007248 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007249 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7250 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007251
Jim Mattson70f3aac2017-04-26 08:53:46 -07007252 /*
7253 * The Intel VMX Instruction Reference lists a bunch of bits that are
7254 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7255 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7256 * Otherwise, we should fail with #UD. But most faulting conditions
7257 * have already been checked by hardware, prior to the VM-exit for
7258 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7259 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007260 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007261 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007262 kvm_queue_exception(vcpu, UD_VECTOR);
7263 return 1;
7264 }
7265
Abel Gordon145c28d2013-04-18 14:36:55 +03007266 if (vmx->nested.vmxon) {
7267 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007268 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007269 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007270
Haozhong Zhang3b840802016-06-22 14:59:54 +08007271 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007272 != VMXON_NEEDED_FEATURES) {
7273 kvm_inject_gp(vcpu, 0);
7274 return 1;
7275 }
7276
Radim Krčmářcbf71272017-05-19 15:48:51 +02007277 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007278 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007279
7280 /*
7281 * SDM 3: 24.11.5
7282 * The first 4 bytes of VMXON region contain the supported
7283 * VMCS revision identifier
7284 *
7285 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7286 * which replaces physical address width with 32
7287 */
7288 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7289 nested_vmx_failInvalid(vcpu);
7290 return kvm_skip_emulated_instruction(vcpu);
7291 }
7292
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007293 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7294 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007295 nested_vmx_failInvalid(vcpu);
7296 return kvm_skip_emulated_instruction(vcpu);
7297 }
7298 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7299 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007300 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007301 nested_vmx_failInvalid(vcpu);
7302 return kvm_skip_emulated_instruction(vcpu);
7303 }
7304 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007305 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007306
7307 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007308 ret = enter_vmx_operation(vcpu);
7309 if (ret)
7310 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007311
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007312 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007313 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007314}
7315
7316/*
7317 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7318 * for running VMX instructions (except VMXON, whose prerequisites are
7319 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007320 * Note that many of these exceptions have priority over VM exits, so they
7321 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007322 */
7323static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7324{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007325 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007326 kvm_queue_exception(vcpu, UD_VECTOR);
7327 return 0;
7328 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007329 return 1;
7330}
7331
David Matlack8ca44e82017-08-01 14:00:39 -07007332static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7333{
7334 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7335 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7336}
7337
Abel Gordone7953d72013-04-18 14:37:55 +03007338static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7339{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007340 if (vmx->nested.current_vmptr == -1ull)
7341 return;
7342
Abel Gordon012f83c2013-04-18 14:39:25 +03007343 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007344 /* copy to memory all shadowed fields in case
7345 they were modified */
7346 copy_shadow_to_vmcs12(vmx);
7347 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007348 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007349 }
Wincy Van705699a2015-02-03 23:58:17 +08007350 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007351
7352 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007353 kvm_vcpu_write_guest_page(&vmx->vcpu,
7354 vmx->nested.current_vmptr >> PAGE_SHIFT,
7355 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007356
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007357 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007358}
7359
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007360/*
7361 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7362 * just stops using VMX.
7363 */
7364static void free_nested(struct vcpu_vmx *vmx)
7365{
7366 if (!vmx->nested.vmxon)
7367 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007368
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007369 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007370 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007371 vmx->nested.posted_intr_nv = -1;
7372 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007373 if (vmx->nested.msr_bitmap) {
7374 free_page((unsigned long)vmx->nested.msr_bitmap);
7375 vmx->nested.msr_bitmap = NULL;
7376 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007377 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007378 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007379 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7380 free_vmcs(vmx->vmcs01.shadow_vmcs);
7381 vmx->vmcs01.shadow_vmcs = NULL;
7382 }
David Matlack4f2777b2016-07-13 17:16:37 -07007383 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007384 /* Unpin physical memory we referred to in current vmcs02 */
7385 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007386 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007387 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007388 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007389 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007390 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007391 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007392 }
Wincy Van705699a2015-02-03 23:58:17 +08007393 if (vmx->nested.pi_desc_page) {
7394 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007395 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007396 vmx->nested.pi_desc_page = NULL;
7397 vmx->nested.pi_desc = NULL;
7398 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007399
7400 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007401}
7402
7403/* Emulate the VMXOFF instruction */
7404static int handle_vmoff(struct kvm_vcpu *vcpu)
7405{
7406 if (!nested_vmx_check_permission(vcpu))
7407 return 1;
7408 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007409 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007410 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007411}
7412
Nadav Har'El27d6c862011-05-25 23:06:59 +03007413/* Emulate the VMCLEAR instruction */
7414static int handle_vmclear(struct kvm_vcpu *vcpu)
7415{
7416 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007417 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007418 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007419
7420 if (!nested_vmx_check_permission(vcpu))
7421 return 1;
7422
Radim Krčmářcbf71272017-05-19 15:48:51 +02007423 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007424 return 1;
7425
Radim Krčmářcbf71272017-05-19 15:48:51 +02007426 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7427 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7428 return kvm_skip_emulated_instruction(vcpu);
7429 }
7430
7431 if (vmptr == vmx->nested.vmxon_ptr) {
7432 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7433 return kvm_skip_emulated_instruction(vcpu);
7434 }
7435
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007436 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007437 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007438
Jim Mattson587d7e722017-03-02 12:41:48 -08007439 kvm_vcpu_write_guest(vcpu,
7440 vmptr + offsetof(struct vmcs12, launch_state),
7441 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007442
7443 nested_free_vmcs02(vmx, vmptr);
7444
Nadav Har'El27d6c862011-05-25 23:06:59 +03007445 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007446 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007447}
7448
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007449static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7450
7451/* Emulate the VMLAUNCH instruction */
7452static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7453{
7454 return nested_vmx_run(vcpu, true);
7455}
7456
7457/* Emulate the VMRESUME instruction */
7458static int handle_vmresume(struct kvm_vcpu *vcpu)
7459{
7460
7461 return nested_vmx_run(vcpu, false);
7462}
7463
Nadav Har'El49f705c2011-05-25 23:08:30 +03007464/*
7465 * Read a vmcs12 field. Since these can have varying lengths and we return
7466 * one type, we chose the biggest type (u64) and zero-extend the return value
7467 * to that size. Note that the caller, handle_vmread, might need to use only
7468 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7469 * 64-bit fields are to be returned).
7470 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007471static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7472 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007473{
7474 short offset = vmcs_field_to_offset(field);
7475 char *p;
7476
7477 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007478 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007479
7480 p = ((char *)(get_vmcs12(vcpu))) + offset;
7481
7482 switch (vmcs_field_type(field)) {
7483 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7484 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007485 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007486 case VMCS_FIELD_TYPE_U16:
7487 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007488 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007489 case VMCS_FIELD_TYPE_U32:
7490 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007491 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007492 case VMCS_FIELD_TYPE_U64:
7493 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007494 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007495 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007496 WARN_ON(1);
7497 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007498 }
7499}
7500
Abel Gordon20b97fe2013-04-18 14:36:25 +03007501
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007502static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7503 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007504 short offset = vmcs_field_to_offset(field);
7505 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7506 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007507 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007508
7509 switch (vmcs_field_type(field)) {
7510 case VMCS_FIELD_TYPE_U16:
7511 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007512 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007513 case VMCS_FIELD_TYPE_U32:
7514 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007515 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007516 case VMCS_FIELD_TYPE_U64:
7517 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007518 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007519 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7520 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007521 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007522 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007523 WARN_ON(1);
7524 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007525 }
7526
7527}
7528
Abel Gordon16f5b902013-04-18 14:38:25 +03007529static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7530{
7531 int i;
7532 unsigned long field;
7533 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007534 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007535 const unsigned long *fields = shadow_read_write_fields;
7536 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007537
Jan Kiszka282da872014-10-08 18:05:39 +02007538 preempt_disable();
7539
Abel Gordon16f5b902013-04-18 14:38:25 +03007540 vmcs_load(shadow_vmcs);
7541
7542 for (i = 0; i < num_fields; i++) {
7543 field = fields[i];
7544 switch (vmcs_field_type(field)) {
7545 case VMCS_FIELD_TYPE_U16:
7546 field_value = vmcs_read16(field);
7547 break;
7548 case VMCS_FIELD_TYPE_U32:
7549 field_value = vmcs_read32(field);
7550 break;
7551 case VMCS_FIELD_TYPE_U64:
7552 field_value = vmcs_read64(field);
7553 break;
7554 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7555 field_value = vmcs_readl(field);
7556 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007557 default:
7558 WARN_ON(1);
7559 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007560 }
7561 vmcs12_write_any(&vmx->vcpu, field, field_value);
7562 }
7563
7564 vmcs_clear(shadow_vmcs);
7565 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007566
7567 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007568}
7569
Abel Gordonc3114422013-04-18 14:38:55 +03007570static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7571{
Mathias Krausec2bae892013-06-26 20:36:21 +02007572 const unsigned long *fields[] = {
7573 shadow_read_write_fields,
7574 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007575 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007576 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007577 max_shadow_read_write_fields,
7578 max_shadow_read_only_fields
7579 };
7580 int i, q;
7581 unsigned long field;
7582 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007583 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007584
7585 vmcs_load(shadow_vmcs);
7586
Mathias Krausec2bae892013-06-26 20:36:21 +02007587 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007588 for (i = 0; i < max_fields[q]; i++) {
7589 field = fields[q][i];
7590 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7591
7592 switch (vmcs_field_type(field)) {
7593 case VMCS_FIELD_TYPE_U16:
7594 vmcs_write16(field, (u16)field_value);
7595 break;
7596 case VMCS_FIELD_TYPE_U32:
7597 vmcs_write32(field, (u32)field_value);
7598 break;
7599 case VMCS_FIELD_TYPE_U64:
7600 vmcs_write64(field, (u64)field_value);
7601 break;
7602 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7603 vmcs_writel(field, (long)field_value);
7604 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007605 default:
7606 WARN_ON(1);
7607 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007608 }
7609 }
7610 }
7611
7612 vmcs_clear(shadow_vmcs);
7613 vmcs_load(vmx->loaded_vmcs->vmcs);
7614}
7615
Nadav Har'El49f705c2011-05-25 23:08:30 +03007616/*
7617 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7618 * used before) all generate the same failure when it is missing.
7619 */
7620static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7621{
7622 struct vcpu_vmx *vmx = to_vmx(vcpu);
7623 if (vmx->nested.current_vmptr == -1ull) {
7624 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007625 return 0;
7626 }
7627 return 1;
7628}
7629
7630static int handle_vmread(struct kvm_vcpu *vcpu)
7631{
7632 unsigned long field;
7633 u64 field_value;
7634 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7635 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7636 gva_t gva = 0;
7637
Kyle Hueyeb277562016-11-29 12:40:39 -08007638 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007639 return 1;
7640
Kyle Huey6affcbe2016-11-29 12:40:40 -08007641 if (!nested_vmx_check_vmcs12(vcpu))
7642 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007643
Nadav Har'El49f705c2011-05-25 23:08:30 +03007644 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007645 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007646 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007647 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007648 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007649 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007650 }
7651 /*
7652 * Now copy part of this value to register or memory, as requested.
7653 * Note that the number of bits actually copied is 32 or 64 depending
7654 * on the guest's mode (32 or 64 bit), not on the given field's length.
7655 */
7656 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007657 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007658 field_value);
7659 } else {
7660 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007661 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007662 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007663 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007664 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7665 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7666 }
7667
7668 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007669 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007670}
7671
7672
7673static int handle_vmwrite(struct kvm_vcpu *vcpu)
7674{
7675 unsigned long field;
7676 gva_t gva;
7677 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7678 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007679 /* The value to write might be 32 or 64 bits, depending on L1's long
7680 * mode, and eventually we need to write that into a field of several
7681 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007682 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007683 * bits into the vmcs12 field.
7684 */
7685 u64 field_value = 0;
7686 struct x86_exception e;
7687
Kyle Hueyeb277562016-11-29 12:40:39 -08007688 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007689 return 1;
7690
Kyle Huey6affcbe2016-11-29 12:40:40 -08007691 if (!nested_vmx_check_vmcs12(vcpu))
7692 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007693
Nadav Har'El49f705c2011-05-25 23:08:30 +03007694 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007695 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007696 (((vmx_instruction_info) >> 3) & 0xf));
7697 else {
7698 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007699 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007700 return 1;
7701 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007702 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007703 kvm_inject_page_fault(vcpu, &e);
7704 return 1;
7705 }
7706 }
7707
7708
Nadav Amit27e6fb52014-06-18 17:19:26 +03007709 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007710 if (vmcs_field_readonly(field)) {
7711 nested_vmx_failValid(vcpu,
7712 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007713 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007714 }
7715
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007716 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007717 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007718 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007719 }
7720
7721 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007722 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007723}
7724
Jim Mattsona8bc2842016-11-30 12:03:44 -08007725static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7726{
7727 vmx->nested.current_vmptr = vmptr;
7728 if (enable_shadow_vmcs) {
7729 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7730 SECONDARY_EXEC_SHADOW_VMCS);
7731 vmcs_write64(VMCS_LINK_POINTER,
7732 __pa(vmx->vmcs01.shadow_vmcs));
7733 vmx->nested.sync_shadow_vmcs = true;
7734 }
7735}
7736
Nadav Har'El63846662011-05-25 23:07:29 +03007737/* Emulate the VMPTRLD instruction */
7738static int handle_vmptrld(struct kvm_vcpu *vcpu)
7739{
7740 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007741 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007742
7743 if (!nested_vmx_check_permission(vcpu))
7744 return 1;
7745
Radim Krčmářcbf71272017-05-19 15:48:51 +02007746 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007747 return 1;
7748
Radim Krčmářcbf71272017-05-19 15:48:51 +02007749 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7750 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7751 return kvm_skip_emulated_instruction(vcpu);
7752 }
7753
7754 if (vmptr == vmx->nested.vmxon_ptr) {
7755 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7756 return kvm_skip_emulated_instruction(vcpu);
7757 }
7758
Nadav Har'El63846662011-05-25 23:07:29 +03007759 if (vmx->nested.current_vmptr != vmptr) {
7760 struct vmcs12 *new_vmcs12;
7761 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007762 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7763 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007764 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007765 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007766 }
7767 new_vmcs12 = kmap(page);
7768 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7769 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007770 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007771 nested_vmx_failValid(vcpu,
7772 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007773 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007774 }
Nadav Har'El63846662011-05-25 23:07:29 +03007775
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007776 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007777 /*
7778 * Load VMCS12 from guest memory since it is not already
7779 * cached.
7780 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007781 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7782 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007783 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007784
Jim Mattsona8bc2842016-11-30 12:03:44 -08007785 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007786 }
7787
7788 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007789 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007790}
7791
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007792/* Emulate the VMPTRST instruction */
7793static int handle_vmptrst(struct kvm_vcpu *vcpu)
7794{
7795 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7796 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7797 gva_t vmcs_gva;
7798 struct x86_exception e;
7799
7800 if (!nested_vmx_check_permission(vcpu))
7801 return 1;
7802
7803 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007804 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007805 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007806 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007807 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7808 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7809 sizeof(u64), &e)) {
7810 kvm_inject_page_fault(vcpu, &e);
7811 return 1;
7812 }
7813 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007814 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007815}
7816
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007817/* Emulate the INVEPT instruction */
7818static int handle_invept(struct kvm_vcpu *vcpu)
7819{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007820 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007821 u32 vmx_instruction_info, types;
7822 unsigned long type;
7823 gva_t gva;
7824 struct x86_exception e;
7825 struct {
7826 u64 eptp, gpa;
7827 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007828
Wincy Vanb9c237b2015-02-03 23:56:30 +08007829 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7830 SECONDARY_EXEC_ENABLE_EPT) ||
7831 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007832 kvm_queue_exception(vcpu, UD_VECTOR);
7833 return 1;
7834 }
7835
7836 if (!nested_vmx_check_permission(vcpu))
7837 return 1;
7838
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007839 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007840 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007841
Wincy Vanb9c237b2015-02-03 23:56:30 +08007842 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007843
Jim Mattson85c856b2016-10-26 08:38:38 -07007844 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007845 nested_vmx_failValid(vcpu,
7846 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007847 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007848 }
7849
7850 /* According to the Intel VMX instruction reference, the memory
7851 * operand is read even if it isn't needed (e.g., for type==global)
7852 */
7853 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007854 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007855 return 1;
7856 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7857 sizeof(operand), &e)) {
7858 kvm_inject_page_fault(vcpu, &e);
7859 return 1;
7860 }
7861
7862 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007863 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007864 /*
7865 * TODO: track mappings and invalidate
7866 * single context requests appropriately
7867 */
7868 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007869 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007870 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007871 nested_vmx_succeed(vcpu);
7872 break;
7873 default:
7874 BUG_ON(1);
7875 break;
7876 }
7877
Kyle Huey6affcbe2016-11-29 12:40:40 -08007878 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007879}
7880
Petr Matouseka642fc32014-09-23 20:22:30 +02007881static int handle_invvpid(struct kvm_vcpu *vcpu)
7882{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007883 struct vcpu_vmx *vmx = to_vmx(vcpu);
7884 u32 vmx_instruction_info;
7885 unsigned long type, types;
7886 gva_t gva;
7887 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007888 struct {
7889 u64 vpid;
7890 u64 gla;
7891 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007892
7893 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7894 SECONDARY_EXEC_ENABLE_VPID) ||
7895 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7896 kvm_queue_exception(vcpu, UD_VECTOR);
7897 return 1;
7898 }
7899
7900 if (!nested_vmx_check_permission(vcpu))
7901 return 1;
7902
7903 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7904 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7905
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007906 types = (vmx->nested.nested_vmx_vpid_caps &
7907 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007908
Jim Mattson85c856b2016-10-26 08:38:38 -07007909 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007910 nested_vmx_failValid(vcpu,
7911 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007912 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007913 }
7914
7915 /* according to the intel vmx instruction reference, the memory
7916 * operand is read even if it isn't needed (e.g., for type==global)
7917 */
7918 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7919 vmx_instruction_info, false, &gva))
7920 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007921 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7922 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007923 kvm_inject_page_fault(vcpu, &e);
7924 return 1;
7925 }
Jim Mattson40352602017-06-28 09:37:37 -07007926 if (operand.vpid >> 16) {
7927 nested_vmx_failValid(vcpu,
7928 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7929 return kvm_skip_emulated_instruction(vcpu);
7930 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007931
7932 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007933 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Yu Zhangfd8cb432017-08-24 20:27:56 +08007934 if (is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07007935 nested_vmx_failValid(vcpu,
7936 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7937 return kvm_skip_emulated_instruction(vcpu);
7938 }
7939 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007940 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007941 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007942 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007943 nested_vmx_failValid(vcpu,
7944 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007945 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007946 }
7947 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007948 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007949 break;
7950 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007951 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007952 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007953 }
7954
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007955 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7956 nested_vmx_succeed(vcpu);
7957
Kyle Huey6affcbe2016-11-29 12:40:40 -08007958 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007959}
7960
Kai Huang843e4332015-01-28 10:54:28 +08007961static int handle_pml_full(struct kvm_vcpu *vcpu)
7962{
7963 unsigned long exit_qualification;
7964
7965 trace_kvm_pml_full(vcpu->vcpu_id);
7966
7967 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7968
7969 /*
7970 * PML buffer FULL happened while executing iret from NMI,
7971 * "blocked by NMI" bit has to be set before next VM entry.
7972 */
7973 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007974 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7975 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7976 GUEST_INTR_STATE_NMI);
7977
7978 /*
7979 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7980 * here.., and there's no userspace involvement needed for PML.
7981 */
7982 return 1;
7983}
7984
Yunhong Jiang64672c92016-06-13 14:19:59 -07007985static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7986{
7987 kvm_lapic_expired_hv_timer(vcpu);
7988 return 1;
7989}
7990
Bandan Das41ab9372017-08-03 15:54:43 -04007991static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
7992{
7993 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04007994 int maxphyaddr = cpuid_maxphyaddr(vcpu);
7995
7996 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007997 switch (address & VMX_EPTP_MT_MASK) {
7998 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04007999 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
8000 return false;
8001 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008002 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04008003 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
8004 return false;
8005 break;
8006 default:
8007 return false;
8008 }
8009
David Hildenbrandbb97a012017-08-10 23:15:28 +02008010 /* only 4 levels page-walk length are valid */
8011 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008012 return false;
8013
8014 /* Reserved bits should not be set */
8015 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8016 return false;
8017
8018 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008019 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04008020 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
8021 return false;
8022 }
8023
8024 return true;
8025}
8026
8027static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8028 struct vmcs12 *vmcs12)
8029{
8030 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8031 u64 address;
8032 bool accessed_dirty;
8033 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8034
8035 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8036 !nested_cpu_has_ept(vmcs12))
8037 return 1;
8038
8039 if (index >= VMFUNC_EPTP_ENTRIES)
8040 return 1;
8041
8042
8043 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8044 &address, index * 8, 8))
8045 return 1;
8046
David Hildenbrandbb97a012017-08-10 23:15:28 +02008047 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008048
8049 /*
8050 * If the (L2) guest does a vmfunc to the currently
8051 * active ept pointer, we don't have to do anything else
8052 */
8053 if (vmcs12->ept_pointer != address) {
8054 if (!valid_ept_address(vcpu, address))
8055 return 1;
8056
8057 kvm_mmu_unload(vcpu);
8058 mmu->ept_ad = accessed_dirty;
8059 mmu->base_role.ad_disabled = !accessed_dirty;
8060 vmcs12->ept_pointer = address;
8061 /*
8062 * TODO: Check what's the correct approach in case
8063 * mmu reload fails. Currently, we just let the next
8064 * reload potentially fail
8065 */
8066 kvm_mmu_reload(vcpu);
8067 }
8068
8069 return 0;
8070}
8071
Bandan Das2a499e42017-08-03 15:54:41 -04008072static int handle_vmfunc(struct kvm_vcpu *vcpu)
8073{
Bandan Das27c42a12017-08-03 15:54:42 -04008074 struct vcpu_vmx *vmx = to_vmx(vcpu);
8075 struct vmcs12 *vmcs12;
8076 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8077
8078 /*
8079 * VMFUNC is only supported for nested guests, but we always enable the
8080 * secondary control for simplicity; for non-nested mode, fake that we
8081 * didn't by injecting #UD.
8082 */
8083 if (!is_guest_mode(vcpu)) {
8084 kvm_queue_exception(vcpu, UD_VECTOR);
8085 return 1;
8086 }
8087
8088 vmcs12 = get_vmcs12(vcpu);
8089 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8090 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008091
8092 switch (function) {
8093 case 0:
8094 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8095 goto fail;
8096 break;
8097 default:
8098 goto fail;
8099 }
8100 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008101
8102fail:
8103 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8104 vmcs_read32(VM_EXIT_INTR_INFO),
8105 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008106 return 1;
8107}
8108
Nadav Har'El0140cae2011-05-25 23:06:28 +03008109/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008110 * The exit handlers return 1 if the exit was handled fully and guest execution
8111 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8112 * to be done to userspace and return 0.
8113 */
Mathias Krause772e0312012-08-30 01:30:19 +02008114static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008115 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8116 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008117 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008118 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008119 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008120 [EXIT_REASON_CR_ACCESS] = handle_cr,
8121 [EXIT_REASON_DR_ACCESS] = handle_dr,
8122 [EXIT_REASON_CPUID] = handle_cpuid,
8123 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8124 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8125 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8126 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008127 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008128 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008129 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008130 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008131 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008132 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008133 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008134 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008135 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008136 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008137 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008138 [EXIT_REASON_VMOFF] = handle_vmoff,
8139 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008140 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8141 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008142 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008143 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008144 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008145 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008146 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008147 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008148 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8149 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008150 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008151 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008152 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008153 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008154 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008155 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008156 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008157 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008158 [EXIT_REASON_XSAVES] = handle_xsaves,
8159 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008160 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008161 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008162 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008163};
8164
8165static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008166 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008167
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008168static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8169 struct vmcs12 *vmcs12)
8170{
8171 unsigned long exit_qualification;
8172 gpa_t bitmap, last_bitmap;
8173 unsigned int port;
8174 int size;
8175 u8 b;
8176
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008177 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008178 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008179
8180 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8181
8182 port = exit_qualification >> 16;
8183 size = (exit_qualification & 7) + 1;
8184
8185 last_bitmap = (gpa_t)-1;
8186 b = -1;
8187
8188 while (size > 0) {
8189 if (port < 0x8000)
8190 bitmap = vmcs12->io_bitmap_a;
8191 else if (port < 0x10000)
8192 bitmap = vmcs12->io_bitmap_b;
8193 else
Joe Perches1d804d02015-03-30 16:46:09 -07008194 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008195 bitmap += (port & 0x7fff) / 8;
8196
8197 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008198 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008199 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008200 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008201 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008202
8203 port++;
8204 size--;
8205 last_bitmap = bitmap;
8206 }
8207
Joe Perches1d804d02015-03-30 16:46:09 -07008208 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008209}
8210
Nadav Har'El644d7112011-05-25 23:12:35 +03008211/*
8212 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8213 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8214 * disinterest in the current event (read or write a specific MSR) by using an
8215 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8216 */
8217static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8218 struct vmcs12 *vmcs12, u32 exit_reason)
8219{
8220 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8221 gpa_t bitmap;
8222
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008223 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008224 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008225
8226 /*
8227 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8228 * for the four combinations of read/write and low/high MSR numbers.
8229 * First we need to figure out which of the four to use:
8230 */
8231 bitmap = vmcs12->msr_bitmap;
8232 if (exit_reason == EXIT_REASON_MSR_WRITE)
8233 bitmap += 2048;
8234 if (msr_index >= 0xc0000000) {
8235 msr_index -= 0xc0000000;
8236 bitmap += 1024;
8237 }
8238
8239 /* Then read the msr_index'th bit from this bitmap: */
8240 if (msr_index < 1024*8) {
8241 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008242 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008243 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008244 return 1 & (b >> (msr_index & 7));
8245 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008246 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008247}
8248
8249/*
8250 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8251 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8252 * intercept (via guest_host_mask etc.) the current event.
8253 */
8254static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8255 struct vmcs12 *vmcs12)
8256{
8257 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8258 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008259 int reg;
8260 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008261
8262 switch ((exit_qualification >> 4) & 3) {
8263 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008264 reg = (exit_qualification >> 8) & 15;
8265 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008266 switch (cr) {
8267 case 0:
8268 if (vmcs12->cr0_guest_host_mask &
8269 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008270 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008271 break;
8272 case 3:
8273 if ((vmcs12->cr3_target_count >= 1 &&
8274 vmcs12->cr3_target_value0 == val) ||
8275 (vmcs12->cr3_target_count >= 2 &&
8276 vmcs12->cr3_target_value1 == val) ||
8277 (vmcs12->cr3_target_count >= 3 &&
8278 vmcs12->cr3_target_value2 == val) ||
8279 (vmcs12->cr3_target_count >= 4 &&
8280 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008281 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008282 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008283 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008284 break;
8285 case 4:
8286 if (vmcs12->cr4_guest_host_mask &
8287 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008288 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008289 break;
8290 case 8:
8291 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008292 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008293 break;
8294 }
8295 break;
8296 case 2: /* clts */
8297 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8298 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008299 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008300 break;
8301 case 1: /* mov from cr */
8302 switch (cr) {
8303 case 3:
8304 if (vmcs12->cpu_based_vm_exec_control &
8305 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008306 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008307 break;
8308 case 8:
8309 if (vmcs12->cpu_based_vm_exec_control &
8310 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008311 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008312 break;
8313 }
8314 break;
8315 case 3: /* lmsw */
8316 /*
8317 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8318 * cr0. Other attempted changes are ignored, with no exit.
8319 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008320 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008321 if (vmcs12->cr0_guest_host_mask & 0xe &
8322 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008323 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008324 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8325 !(vmcs12->cr0_read_shadow & 0x1) &&
8326 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008327 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008328 break;
8329 }
Joe Perches1d804d02015-03-30 16:46:09 -07008330 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008331}
8332
8333/*
8334 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8335 * should handle it ourselves in L0 (and then continue L2). Only call this
8336 * when in is_guest_mode (L2).
8337 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008338static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008339{
Nadav Har'El644d7112011-05-25 23:12:35 +03008340 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8341 struct vcpu_vmx *vmx = to_vmx(vcpu);
8342 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8343
Jim Mattson4f350c62017-09-14 16:31:44 -07008344 if (vmx->nested.nested_run_pending)
8345 return false;
8346
8347 if (unlikely(vmx->fail)) {
8348 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8349 vmcs_read32(VM_INSTRUCTION_ERROR));
8350 return true;
8351 }
Jan Kiszka542060e2014-01-04 18:47:21 +01008352
David Matlackc9f04402017-08-01 14:00:40 -07008353 /*
8354 * The host physical addresses of some pages of guest memory
8355 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8356 * may write to these pages via their host physical address while
8357 * L2 is running, bypassing any address-translation-based dirty
8358 * tracking (e.g. EPT write protection).
8359 *
8360 * Mark them dirty on every exit from L2 to prevent them from
8361 * getting out of sync with dirty tracking.
8362 */
8363 nested_mark_vmcs12_pages_dirty(vcpu);
8364
Jim Mattson4f350c62017-09-14 16:31:44 -07008365 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8366 vmcs_readl(EXIT_QUALIFICATION),
8367 vmx->idt_vectoring_info,
8368 intr_info,
8369 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8370 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03008371
8372 switch (exit_reason) {
8373 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008374 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008375 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008376 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008377 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008378 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008379 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008380 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008381 else if (is_debug(intr_info) &&
8382 vcpu->guest_debug &
8383 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8384 return false;
8385 else if (is_breakpoint(intr_info) &&
8386 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8387 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008388 return vmcs12->exception_bitmap &
8389 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8390 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008391 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008392 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008393 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008394 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008395 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008396 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008397 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008398 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008399 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008400 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008401 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008402 case EXIT_REASON_HLT:
8403 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8404 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008405 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008406 case EXIT_REASON_INVLPG:
8407 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8408 case EXIT_REASON_RDPMC:
8409 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008410 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008411 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008412 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008413 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008414 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008415 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8416 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8417 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8418 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8419 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8420 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008421 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008422 /*
8423 * VMX instructions trap unconditionally. This allows L1 to
8424 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8425 */
Joe Perches1d804d02015-03-30 16:46:09 -07008426 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008427 case EXIT_REASON_CR_ACCESS:
8428 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8429 case EXIT_REASON_DR_ACCESS:
8430 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8431 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008432 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008433 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8434 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008435 case EXIT_REASON_MSR_READ:
8436 case EXIT_REASON_MSR_WRITE:
8437 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8438 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008439 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008440 case EXIT_REASON_MWAIT_INSTRUCTION:
8441 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008442 case EXIT_REASON_MONITOR_TRAP_FLAG:
8443 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008444 case EXIT_REASON_MONITOR_INSTRUCTION:
8445 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8446 case EXIT_REASON_PAUSE_INSTRUCTION:
8447 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8448 nested_cpu_has2(vmcs12,
8449 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8450 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008451 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008452 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008453 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008454 case EXIT_REASON_APIC_ACCESS:
8455 return nested_cpu_has2(vmcs12,
8456 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008457 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008458 case EXIT_REASON_EOI_INDUCED:
8459 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008460 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008461 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008462 /*
8463 * L0 always deals with the EPT violation. If nested EPT is
8464 * used, and the nested mmu code discovers that the address is
8465 * missing in the guest EPT table (EPT12), the EPT violation
8466 * will be injected with nested_ept_inject_page_fault()
8467 */
Joe Perches1d804d02015-03-30 16:46:09 -07008468 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008469 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008470 /*
8471 * L2 never uses directly L1's EPT, but rather L0's own EPT
8472 * table (shadow on EPT) or a merged EPT table that L0 built
8473 * (EPT on EPT). So any problems with the structure of the
8474 * table is L0's fault.
8475 */
Joe Perches1d804d02015-03-30 16:46:09 -07008476 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008477 case EXIT_REASON_INVPCID:
8478 return
8479 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8480 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008481 case EXIT_REASON_WBINVD:
8482 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8483 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008484 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008485 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8486 /*
8487 * This should never happen, since it is not possible to
8488 * set XSS to a non-zero value---neither in L1 nor in L2.
8489 * If if it were, XSS would have to be checked against
8490 * the XSS exit bitmap in vmcs12.
8491 */
8492 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008493 case EXIT_REASON_PREEMPTION_TIMER:
8494 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008495 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008496 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008497 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008498 case EXIT_REASON_VMFUNC:
8499 /* VM functions are emulated through L2->L0 vmexits. */
8500 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008501 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008502 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008503 }
8504}
8505
Paolo Bonzini7313c692017-07-27 10:31:25 +02008506static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8507{
8508 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8509
8510 /*
8511 * At this point, the exit interruption info in exit_intr_info
8512 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8513 * we need to query the in-kernel LAPIC.
8514 */
8515 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8516 if ((exit_intr_info &
8517 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8518 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8519 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8520 vmcs12->vm_exit_intr_error_code =
8521 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8522 }
8523
8524 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8525 vmcs_readl(EXIT_QUALIFICATION));
8526 return 1;
8527}
8528
Avi Kivity586f9602010-11-18 13:09:54 +02008529static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8530{
8531 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8532 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8533}
8534
Kai Huanga3eaa862015-11-04 13:46:05 +08008535static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008536{
Kai Huanga3eaa862015-11-04 13:46:05 +08008537 if (vmx->pml_pg) {
8538 __free_page(vmx->pml_pg);
8539 vmx->pml_pg = NULL;
8540 }
Kai Huang843e4332015-01-28 10:54:28 +08008541}
8542
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008543static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008544{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008545 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008546 u64 *pml_buf;
8547 u16 pml_idx;
8548
8549 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8550
8551 /* Do nothing if PML buffer is empty */
8552 if (pml_idx == (PML_ENTITY_NUM - 1))
8553 return;
8554
8555 /* PML index always points to next available PML buffer entity */
8556 if (pml_idx >= PML_ENTITY_NUM)
8557 pml_idx = 0;
8558 else
8559 pml_idx++;
8560
8561 pml_buf = page_address(vmx->pml_pg);
8562 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8563 u64 gpa;
8564
8565 gpa = pml_buf[pml_idx];
8566 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008567 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008568 }
8569
8570 /* reset PML index */
8571 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8572}
8573
8574/*
8575 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8576 * Called before reporting dirty_bitmap to userspace.
8577 */
8578static void kvm_flush_pml_buffers(struct kvm *kvm)
8579{
8580 int i;
8581 struct kvm_vcpu *vcpu;
8582 /*
8583 * We only need to kick vcpu out of guest mode here, as PML buffer
8584 * is flushed at beginning of all VMEXITs, and it's obvious that only
8585 * vcpus running in guest are possible to have unflushed GPAs in PML
8586 * buffer.
8587 */
8588 kvm_for_each_vcpu(i, vcpu, kvm)
8589 kvm_vcpu_kick(vcpu);
8590}
8591
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008592static void vmx_dump_sel(char *name, uint32_t sel)
8593{
8594 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008595 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008596 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8597 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8598 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8599}
8600
8601static void vmx_dump_dtsel(char *name, uint32_t limit)
8602{
8603 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8604 name, vmcs_read32(limit),
8605 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8606}
8607
8608static void dump_vmcs(void)
8609{
8610 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8611 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8612 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8613 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8614 u32 secondary_exec_control = 0;
8615 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008616 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008617 int i, n;
8618
8619 if (cpu_has_secondary_exec_ctrls())
8620 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8621
8622 pr_err("*** Guest State ***\n");
8623 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8624 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8625 vmcs_readl(CR0_GUEST_HOST_MASK));
8626 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8627 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8628 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8629 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8630 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8631 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008632 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8633 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8634 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8635 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008636 }
8637 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8638 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8639 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8640 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8641 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8642 vmcs_readl(GUEST_SYSENTER_ESP),
8643 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8644 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8645 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8646 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8647 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8648 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8649 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8650 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8651 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8652 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8653 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8654 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8655 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008656 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8657 efer, vmcs_read64(GUEST_IA32_PAT));
8658 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8659 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008660 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8661 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008662 pr_err("PerfGlobCtl = 0x%016llx\n",
8663 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008664 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008665 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008666 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8667 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8668 vmcs_read32(GUEST_ACTIVITY_STATE));
8669 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8670 pr_err("InterruptStatus = %04x\n",
8671 vmcs_read16(GUEST_INTR_STATUS));
8672
8673 pr_err("*** Host State ***\n");
8674 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8675 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8676 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8677 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8678 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8679 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8680 vmcs_read16(HOST_TR_SELECTOR));
8681 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8682 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8683 vmcs_readl(HOST_TR_BASE));
8684 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8685 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8686 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8687 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8688 vmcs_readl(HOST_CR4));
8689 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8690 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8691 vmcs_read32(HOST_IA32_SYSENTER_CS),
8692 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8693 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008694 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8695 vmcs_read64(HOST_IA32_EFER),
8696 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008697 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008698 pr_err("PerfGlobCtl = 0x%016llx\n",
8699 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008700
8701 pr_err("*** Control State ***\n");
8702 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8703 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8704 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8705 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8706 vmcs_read32(EXCEPTION_BITMAP),
8707 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8708 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8709 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8710 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8711 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8712 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8713 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8714 vmcs_read32(VM_EXIT_INTR_INFO),
8715 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8716 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8717 pr_err(" reason=%08x qualification=%016lx\n",
8718 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8719 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8720 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8721 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008722 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008723 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008724 pr_err("TSC Multiplier = 0x%016llx\n",
8725 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008726 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8727 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8728 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8729 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8730 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008731 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008732 n = vmcs_read32(CR3_TARGET_COUNT);
8733 for (i = 0; i + 1 < n; i += 4)
8734 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8735 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8736 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8737 if (i < n)
8738 pr_err("CR3 target%u=%016lx\n",
8739 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8740 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8741 pr_err("PLE Gap=%08x Window=%08x\n",
8742 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8743 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8744 pr_err("Virtual processor ID = 0x%04x\n",
8745 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8746}
8747
Avi Kivity6aa8b732006-12-10 02:21:36 -08008748/*
8749 * The guest has exited. See if we can fix it or if we need userspace
8750 * assistance.
8751 */
Avi Kivity851ba692009-08-24 11:10:17 +03008752static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008753{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008754 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008755 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008756 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008757
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008758 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8759
Kai Huang843e4332015-01-28 10:54:28 +08008760 /*
8761 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8762 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8763 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8764 * mode as if vcpus is in root mode, the PML buffer must has been
8765 * flushed already.
8766 */
8767 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008768 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008769
Mohammed Gamal80ced182009-09-01 12:48:18 +02008770 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008771 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008772 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008773
Paolo Bonzini7313c692017-07-27 10:31:25 +02008774 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8775 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008776
Mohammed Gamal51207022010-05-31 22:40:54 +03008777 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008778 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008779 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8780 vcpu->run->fail_entry.hardware_entry_failure_reason
8781 = exit_reason;
8782 return 0;
8783 }
8784
Avi Kivity29bd8a72007-09-10 17:27:03 +03008785 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008786 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8787 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008788 = vmcs_read32(VM_INSTRUCTION_ERROR);
8789 return 0;
8790 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008791
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008792 /*
8793 * Note:
8794 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8795 * delivery event since it indicates guest is accessing MMIO.
8796 * The vm-exit can be triggered again after return to guest that
8797 * will cause infinite loop.
8798 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008799 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008800 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008801 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008802 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008803 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8804 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8805 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008806 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008807 vcpu->run->internal.data[0] = vectoring_info;
8808 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008809 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8810 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8811 vcpu->run->internal.ndata++;
8812 vcpu->run->internal.data[3] =
8813 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8814 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008815 return 0;
8816 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008817
Avi Kivity6aa8b732006-12-10 02:21:36 -08008818 if (exit_reason < kvm_vmx_max_exit_handlers
8819 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008820 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008821 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008822 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8823 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008824 kvm_queue_exception(vcpu, UD_VECTOR);
8825 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008826 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008827}
8828
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008829static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008830{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008831 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8832
8833 if (is_guest_mode(vcpu) &&
8834 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8835 return;
8836
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008837 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008838 vmcs_write32(TPR_THRESHOLD, 0);
8839 return;
8840 }
8841
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008842 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008843}
8844
Yang Zhang8d146952013-01-25 10:18:50 +08008845static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8846{
8847 u32 sec_exec_control;
8848
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008849 /* Postpone execution until vmcs01 is the current VMCS. */
8850 if (is_guest_mode(vcpu)) {
8851 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8852 return;
8853 }
8854
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008855 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008856 return;
8857
Paolo Bonzini35754c92015-07-29 12:05:37 +02008858 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008859 return;
8860
8861 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8862
8863 if (set) {
8864 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8865 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8866 } else {
8867 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8868 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008869 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008870 }
8871 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8872
8873 vmx_set_msr_bitmap(vcpu);
8874}
8875
Tang Chen38b99172014-09-24 15:57:54 +08008876static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8877{
8878 struct vcpu_vmx *vmx = to_vmx(vcpu);
8879
8880 /*
8881 * Currently we do not handle the nested case where L2 has an
8882 * APIC access page of its own; that page is still pinned.
8883 * Hence, we skip the case where the VCPU is in guest mode _and_
8884 * L1 prepared an APIC access page for L2.
8885 *
8886 * For the case where L1 and L2 share the same APIC access page
8887 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8888 * in the vmcs12), this function will only update either the vmcs01
8889 * or the vmcs02. If the former, the vmcs02 will be updated by
8890 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8891 * the next L2->L1 exit.
8892 */
8893 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008894 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008895 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008896 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008897 vmx_flush_tlb_ept_only(vcpu);
8898 }
Tang Chen38b99172014-09-24 15:57:54 +08008899}
8900
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008901static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008902{
8903 u16 status;
8904 u8 old;
8905
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008906 if (max_isr == -1)
8907 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008908
8909 status = vmcs_read16(GUEST_INTR_STATUS);
8910 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008911 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008912 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008913 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008914 vmcs_write16(GUEST_INTR_STATUS, status);
8915 }
8916}
8917
8918static void vmx_set_rvi(int vector)
8919{
8920 u16 status;
8921 u8 old;
8922
Wei Wang4114c272014-11-05 10:53:43 +08008923 if (vector == -1)
8924 vector = 0;
8925
Yang Zhangc7c9c562013-01-25 10:18:51 +08008926 status = vmcs_read16(GUEST_INTR_STATUS);
8927 old = (u8)status & 0xff;
8928 if ((u8)vector != old) {
8929 status &= ~0xff;
8930 status |= (u8)vector;
8931 vmcs_write16(GUEST_INTR_STATUS, status);
8932 }
8933}
8934
8935static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8936{
Wanpeng Li963fee12014-07-17 19:03:00 +08008937 if (!is_guest_mode(vcpu)) {
8938 vmx_set_rvi(max_irr);
8939 return;
8940 }
8941
Wei Wang4114c272014-11-05 10:53:43 +08008942 if (max_irr == -1)
8943 return;
8944
Wanpeng Li963fee12014-07-17 19:03:00 +08008945 /*
Wei Wang4114c272014-11-05 10:53:43 +08008946 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8947 * handles it.
8948 */
8949 if (nested_exit_on_intr(vcpu))
8950 return;
8951
8952 /*
8953 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008954 * is run without virtual interrupt delivery.
8955 */
8956 if (!kvm_event_needs_reinjection(vcpu) &&
8957 vmx_interrupt_allowed(vcpu)) {
8958 kvm_queue_interrupt(vcpu, max_irr, false);
8959 vmx_inject_irq(vcpu);
8960 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008961}
8962
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008963static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008964{
8965 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008966 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008967
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008968 WARN_ON(!vcpu->arch.apicv_active);
8969 if (pi_test_on(&vmx->pi_desc)) {
8970 pi_clear_on(&vmx->pi_desc);
8971 /*
8972 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8973 * But on x86 this is just a compiler barrier anyway.
8974 */
8975 smp_mb__after_atomic();
8976 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8977 } else {
8978 max_irr = kvm_lapic_find_highest_irr(vcpu);
8979 }
8980 vmx_hwapic_irr_update(vcpu, max_irr);
8981 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008982}
8983
Andrey Smetanin63086302015-11-10 15:36:32 +03008984static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008985{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008986 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008987 return;
8988
Yang Zhangc7c9c562013-01-25 10:18:51 +08008989 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8990 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8991 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8992 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8993}
8994
Paolo Bonzini967235d2016-12-19 14:03:45 +01008995static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8996{
8997 struct vcpu_vmx *vmx = to_vmx(vcpu);
8998
8999 pi_clear_on(&vmx->pi_desc);
9000 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9001}
9002
Avi Kivity51aa01d2010-07-20 14:31:20 +03009003static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009004{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009005 u32 exit_intr_info = 0;
9006 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009007
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009008 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9009 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009010 return;
9011
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009012 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9013 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9014 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009015
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009016 /* if exit due to PF check for async PF */
9017 if (is_page_fault(exit_intr_info))
9018 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9019
Andi Kleena0861c02009-06-08 17:37:09 +08009020 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009021 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9022 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009023 kvm_machine_check();
9024
Gleb Natapov20f65982009-05-11 13:35:55 +03009025 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009026 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009027 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009028 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009029 kvm_after_handle_nmi(&vmx->vcpu);
9030 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009031}
Gleb Natapov20f65982009-05-11 13:35:55 +03009032
Yang Zhanga547c6d2013-04-11 19:25:10 +08009033static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9034{
9035 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9036
Yang Zhanga547c6d2013-04-11 19:25:10 +08009037 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9038 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9039 unsigned int vector;
9040 unsigned long entry;
9041 gate_desc *desc;
9042 struct vcpu_vmx *vmx = to_vmx(vcpu);
9043#ifdef CONFIG_X86_64
9044 unsigned long tmp;
9045#endif
9046
9047 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9048 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02009049 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009050 asm volatile(
9051#ifdef CONFIG_X86_64
9052 "mov %%" _ASM_SP ", %[sp]\n\t"
9053 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9054 "push $%c[ss]\n\t"
9055 "push %[sp]\n\t"
9056#endif
9057 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009058 __ASM_SIZE(push) " $%c[cs]\n\t"
9059 "call *%[entry]\n\t"
9060 :
9061#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009062 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009063#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05009064 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08009065 :
9066 [entry]"r"(entry),
9067 [ss]"i"(__KERNEL_DS),
9068 [cs]"i"(__KERNEL_CS)
9069 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009070 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009071}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009072STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009073
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009074static bool vmx_has_high_real_mode_segbase(void)
9075{
9076 return enable_unrestricted_guest || emulate_invalid_guest_state;
9077}
9078
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009079static bool vmx_mpx_supported(void)
9080{
9081 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9082 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9083}
9084
Wanpeng Li55412b22014-12-02 19:21:30 +08009085static bool vmx_xsaves_supported(void)
9086{
9087 return vmcs_config.cpu_based_2nd_exec_ctrl &
9088 SECONDARY_EXEC_XSAVES;
9089}
9090
Avi Kivity51aa01d2010-07-20 14:31:20 +03009091static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9092{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009093 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009094 bool unblock_nmi;
9095 u8 vector;
9096 bool idtv_info_valid;
9097
9098 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009099
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009100 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02009101 return;
9102 /*
9103 * Can't use vmx->exit_intr_info since we're not sure what
9104 * the exit reason is.
9105 */
9106 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9107 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9108 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9109 /*
9110 * SDM 3: 27.7.1.2 (September 2008)
9111 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9112 * a guest IRET fault.
9113 * SDM 3: 23.2.2 (September 2008)
9114 * Bit 12 is undefined in any of the following cases:
9115 * If the VM exit sets the valid bit in the IDT-vectoring
9116 * information field.
9117 * If the VM exit is due to a double fault.
9118 */
9119 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9120 vector != DF_VECTOR && !idtv_info_valid)
9121 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9122 GUEST_INTR_STATE_NMI);
9123 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009124 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009125 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9126 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009127}
9128
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009129static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009130 u32 idt_vectoring_info,
9131 int instr_len_field,
9132 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009133{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009134 u8 vector;
9135 int type;
9136 bool idtv_info_valid;
9137
9138 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009139
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009140 vcpu->arch.nmi_injected = false;
9141 kvm_clear_exception_queue(vcpu);
9142 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009143
9144 if (!idtv_info_valid)
9145 return;
9146
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009147 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009148
Avi Kivity668f6122008-07-02 09:28:55 +03009149 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9150 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009151
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009152 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009153 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009154 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009155 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009156 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009157 * Clear bit "block by NMI" before VM entry if a NMI
9158 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009159 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009160 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009161 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009162 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009163 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009164 /* fall through */
9165 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009166 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009167 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009168 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009169 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009170 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009171 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009172 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009173 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009174 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009175 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009176 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009177 break;
9178 default:
9179 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009180 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009181}
9182
Avi Kivity83422e12010-07-20 14:43:23 +03009183static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9184{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009185 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009186 VM_EXIT_INSTRUCTION_LEN,
9187 IDT_VECTORING_ERROR_CODE);
9188}
9189
Avi Kivityb463a6f2010-07-20 15:06:17 +03009190static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9191{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009192 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009193 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9194 VM_ENTRY_INSTRUCTION_LEN,
9195 VM_ENTRY_EXCEPTION_ERROR_CODE);
9196
9197 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9198}
9199
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009200static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9201{
9202 int i, nr_msrs;
9203 struct perf_guest_switch_msr *msrs;
9204
9205 msrs = perf_guest_get_msrs(&nr_msrs);
9206
9207 if (!msrs)
9208 return;
9209
9210 for (i = 0; i < nr_msrs; i++)
9211 if (msrs[i].host == msrs[i].guest)
9212 clear_atomic_switch_msr(vmx, msrs[i].msr);
9213 else
9214 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9215 msrs[i].host);
9216}
9217
Jiang Biao33365e72016-11-03 15:03:37 +08009218static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009219{
9220 struct vcpu_vmx *vmx = to_vmx(vcpu);
9221 u64 tscl;
9222 u32 delta_tsc;
9223
9224 if (vmx->hv_deadline_tsc == -1)
9225 return;
9226
9227 tscl = rdtsc();
9228 if (vmx->hv_deadline_tsc > tscl)
9229 /* sure to be 32 bit only because checked on set_hv_timer */
9230 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9231 cpu_preemption_timer_multi);
9232 else
9233 delta_tsc = 0;
9234
9235 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9236}
9237
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009238static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009239{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009240 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009241 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009242
Avi Kivity104f2262010-11-18 13:12:52 +02009243 /* Don't enter VMX if guest state is invalid, let the exit handler
9244 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009245 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009246 return;
9247
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009248 if (vmx->ple_window_dirty) {
9249 vmx->ple_window_dirty = false;
9250 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9251 }
9252
Abel Gordon012f83c2013-04-18 14:39:25 +03009253 if (vmx->nested.sync_shadow_vmcs) {
9254 copy_vmcs12_to_shadow(vmx);
9255 vmx->nested.sync_shadow_vmcs = false;
9256 }
9257
Avi Kivity104f2262010-11-18 13:12:52 +02009258 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9259 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9260 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9261 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9262
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009263 cr3 = __get_current_cr3_fast();
Ladi Prosek44889942017-09-22 07:53:15 +02009264 if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009265 vmcs_writel(HOST_CR3, cr3);
Ladi Prosek44889942017-09-22 07:53:15 +02009266 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009267 }
9268
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009269 cr4 = cr4_read_shadow();
Ladi Prosek44889942017-09-22 07:53:15 +02009270 if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009271 vmcs_writel(HOST_CR4, cr4);
Ladi Prosek44889942017-09-22 07:53:15 +02009272 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009273 }
9274
Avi Kivity104f2262010-11-18 13:12:52 +02009275 /* When single-stepping over STI and MOV SS, we must clear the
9276 * corresponding interruptibility bits in the guest state. Otherwise
9277 * vmentry fails as it then expects bit 14 (BS) in pending debug
9278 * exceptions being set, but that's not correct for the guest debugging
9279 * case. */
9280 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9281 vmx_set_interrupt_shadow(vcpu, 0);
9282
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009283 if (static_cpu_has(X86_FEATURE_PKU) &&
9284 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
9285 vcpu->arch.pkru != vmx->host_pkru)
9286 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009287
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009288 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009289 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009290
Yunhong Jiang64672c92016-06-13 14:19:59 -07009291 vmx_arm_hv_timer(vcpu);
9292
Nadav Har'Eld462b812011-05-24 15:26:10 +03009293 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009294 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009295 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009296 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9297 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9298 "push %%" _ASM_CX " \n\t"
9299 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009300 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009301 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009302 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009303 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009304 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009305 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9306 "mov %%cr2, %%" _ASM_DX " \n\t"
9307 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009308 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009309 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009310 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009311 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009312 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009313 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009314 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9315 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9316 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9317 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9318 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9319 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009320#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009321 "mov %c[r8](%0), %%r8 \n\t"
9322 "mov %c[r9](%0), %%r9 \n\t"
9323 "mov %c[r10](%0), %%r10 \n\t"
9324 "mov %c[r11](%0), %%r11 \n\t"
9325 "mov %c[r12](%0), %%r12 \n\t"
9326 "mov %c[r13](%0), %%r13 \n\t"
9327 "mov %c[r14](%0), %%r14 \n\t"
9328 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009329#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009330 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009331
Avi Kivity6aa8b732006-12-10 02:21:36 -08009332 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009333 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009334 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009335 "jmp 2f \n\t"
9336 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9337 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009338 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009339 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009340 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009341 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9342 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9343 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9344 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9345 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9346 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9347 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009348#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009349 "mov %%r8, %c[r8](%0) \n\t"
9350 "mov %%r9, %c[r9](%0) \n\t"
9351 "mov %%r10, %c[r10](%0) \n\t"
9352 "mov %%r11, %c[r11](%0) \n\t"
9353 "mov %%r12, %c[r12](%0) \n\t"
9354 "mov %%r13, %c[r13](%0) \n\t"
9355 "mov %%r14, %c[r14](%0) \n\t"
9356 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009357#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009358 "mov %%cr2, %%" _ASM_AX " \n\t"
9359 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009360
Avi Kivityb188c81f2012-09-16 15:10:58 +03009361 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009362 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009363 ".pushsection .rodata \n\t"
9364 ".global vmx_return \n\t"
9365 "vmx_return: " _ASM_PTR " 2b \n\t"
9366 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009367 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009368 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009369 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009370 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009371 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9372 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9373 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9374 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9375 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9376 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9377 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009378#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009379 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9380 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9381 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9382 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9383 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9384 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9385 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9386 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009387#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009388 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9389 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009390 : "cc", "memory"
9391#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009392 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009393 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009394#else
9395 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009396#endif
9397 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009398
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009399 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9400 if (debugctlmsr)
9401 update_debugctlmsr(debugctlmsr);
9402
Avi Kivityaa67f602012-08-01 16:48:03 +03009403#ifndef CONFIG_X86_64
9404 /*
9405 * The sysexit path does not restore ds/es, so we must set them to
9406 * a reasonable value ourselves.
9407 *
9408 * We can't defer this to vmx_load_host_state() since that function
9409 * may be executed in interrupt context, which saves and restore segments
9410 * around it, nullifying its effect.
9411 */
9412 loadsegment(ds, __USER_DS);
9413 loadsegment(es, __USER_DS);
9414#endif
9415
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009416 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009417 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009418 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009419 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009420 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009421 vcpu->arch.regs_dirty = 0;
9422
Gleb Natapove0b890d2013-09-25 12:51:33 +03009423 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009424 * eager fpu is enabled if PKEY is supported and CR4 is switched
9425 * back on host, so it is safe to read guest PKRU from current
9426 * XSAVE.
9427 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009428 if (static_cpu_has(X86_FEATURE_PKU) &&
9429 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
9430 vcpu->arch.pkru = __read_pkru();
9431 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009432 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009433 }
9434
9435 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009436 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9437 * we did not inject a still-pending event to L1 now because of
9438 * nested_run_pending, we need to re-enable this bit.
9439 */
9440 if (vmx->nested.nested_run_pending)
9441 kvm_make_request(KVM_REQ_EVENT, vcpu);
9442
9443 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07009444 vmx->idt_vectoring_info = 0;
9445
9446 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
9447 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9448 return;
9449
9450 vmx->loaded_vmcs->launched = 1;
9451 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03009452
Avi Kivity51aa01d2010-07-20 14:31:20 +03009453 vmx_complete_atomic_exit(vmx);
9454 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009455 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009456}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009457STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009458
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009459static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009460{
9461 struct vcpu_vmx *vmx = to_vmx(vcpu);
9462 int cpu;
9463
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009464 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009465 return;
9466
9467 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009468 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009469 vmx_vcpu_put(vcpu);
9470 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009471 put_cpu();
9472}
9473
Jim Mattson2f1fe812016-07-08 15:36:06 -07009474/*
9475 * Ensure that the current vmcs of the logical processor is the
9476 * vmcs01 of the vcpu before calling free_nested().
9477 */
9478static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9479{
9480 struct vcpu_vmx *vmx = to_vmx(vcpu);
9481 int r;
9482
9483 r = vcpu_load(vcpu);
9484 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009485 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009486 free_nested(vmx);
9487 vcpu_put(vcpu);
9488}
9489
Avi Kivity6aa8b732006-12-10 02:21:36 -08009490static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9491{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009492 struct vcpu_vmx *vmx = to_vmx(vcpu);
9493
Kai Huang843e4332015-01-28 10:54:28 +08009494 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009495 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009496 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009497 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009498 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009499 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009500 kfree(vmx->guest_msrs);
9501 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009502 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009503}
9504
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009505static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009506{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009507 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009508 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009509 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009510
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009511 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009512 return ERR_PTR(-ENOMEM);
9513
Wanpeng Li991e7a02015-09-16 17:30:05 +08009514 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009515
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009516 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9517 if (err)
9518 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009519
Peter Feiner4e595162016-07-07 14:49:58 -07009520 err = -ENOMEM;
9521
9522 /*
9523 * If PML is turned on, failure on enabling PML just results in failure
9524 * of creating the vcpu, therefore we can simplify PML logic (by
9525 * avoiding dealing with cases, such as enabling PML partially on vcpus
9526 * for the guest, etc.
9527 */
9528 if (enable_pml) {
9529 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9530 if (!vmx->pml_pg)
9531 goto uninit_vcpu;
9532 }
9533
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009534 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009535 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9536 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009537
Peter Feiner4e595162016-07-07 14:49:58 -07009538 if (!vmx->guest_msrs)
9539 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009540
Nadav Har'Eld462b812011-05-24 15:26:10 +03009541 vmx->loaded_vmcs = &vmx->vmcs01;
9542 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009543 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009544 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009545 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009546 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009547
Avi Kivity15ad7142007-07-11 18:17:21 +03009548 cpu = get_cpu();
9549 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009550 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +02009551 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009552 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009553 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +02009554 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009555 err = alloc_apic_access_page(kvm);
9556 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009557 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009558 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009559
Sheng Yangb927a3c2009-07-21 10:42:48 +08009560 if (enable_ept) {
Tang Chenf51770e2014-09-16 18:41:59 +08009561 err = init_rmode_identity_map(kvm);
9562 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009563 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009564 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009565
Wanpeng Li5c614b32015-10-13 09:18:36 -07009566 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009567 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009568 vmx->nested.vpid02 = allocate_vpid();
9569 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009570
Wincy Van705699a2015-02-03 23:58:17 +08009571 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009572 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009573
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009574 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9575
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02009576 /*
9577 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
9578 * or POSTED_INTR_WAKEUP_VECTOR.
9579 */
9580 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
9581 vmx->pi_desc.sn = 1;
9582
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009583 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009584
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009585free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009586 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009587 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009588free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009589 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009590free_pml:
9591 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009592uninit_vcpu:
9593 kvm_vcpu_uninit(&vmx->vcpu);
9594free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009595 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009596 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009597 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009598}
9599
Yang, Sheng002c7f72007-07-31 14:23:01 +03009600static void __init vmx_check_processor_compat(void *rtn)
9601{
9602 struct vmcs_config vmcs_conf;
9603
9604 *(int *)rtn = 0;
9605 if (setup_vmcs_config(&vmcs_conf) < 0)
9606 *(int *)rtn = -EIO;
9607 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9608 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9609 smp_processor_id());
9610 *(int *)rtn = -EIO;
9611 }
9612}
9613
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009614static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009615{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009616 u8 cache;
9617 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009618
Sheng Yang522c68c2009-04-27 20:35:43 +08009619 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009620 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009621 * 2. EPT with VT-d:
9622 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009623 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009624 * b. VT-d with snooping control feature: snooping control feature of
9625 * VT-d engine can guarantee the cache correctness. Just set it
9626 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009627 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009628 * consistent with host MTRR
9629 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009630 if (is_mmio) {
9631 cache = MTRR_TYPE_UNCACHABLE;
9632 goto exit;
9633 }
9634
9635 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009636 ipat = VMX_EPT_IPAT_BIT;
9637 cache = MTRR_TYPE_WRBACK;
9638 goto exit;
9639 }
9640
9641 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9642 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009643 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009644 cache = MTRR_TYPE_WRBACK;
9645 else
9646 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009647 goto exit;
9648 }
9649
Xiao Guangrongff536042015-06-15 16:55:22 +08009650 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009651
9652exit:
9653 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009654}
9655
Sheng Yang17cc3932010-01-05 19:02:27 +08009656static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009657{
Sheng Yang878403b2010-01-05 19:02:29 +08009658 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9659 return PT_DIRECTORY_LEVEL;
9660 else
9661 /* For shadow and EPT supported 1GB page */
9662 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009663}
9664
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009665static void vmcs_set_secondary_exec_control(u32 new_ctl)
9666{
9667 /*
9668 * These bits in the secondary execution controls field
9669 * are dynamic, the others are mostly based on the hypervisor
9670 * architecture and the guest's CPUID. Do not touch the
9671 * dynamic bits.
9672 */
9673 u32 mask =
9674 SECONDARY_EXEC_SHADOW_VMCS |
9675 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9676 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9677
9678 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9679
9680 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9681 (new_ctl & ~mask) | (cur_ctl & mask));
9682}
9683
David Matlack8322ebb2016-11-29 18:14:09 -08009684/*
9685 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9686 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9687 */
9688static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9689{
9690 struct vcpu_vmx *vmx = to_vmx(vcpu);
9691 struct kvm_cpuid_entry2 *entry;
9692
9693 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9694 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9695
9696#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9697 if (entry && (entry->_reg & (_cpuid_mask))) \
9698 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9699} while (0)
9700
9701 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9702 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9703 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9704 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9705 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9706 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9707 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9708 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9709 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9710 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9711 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9712 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9713 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9714 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9715 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9716
9717 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9718 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9719 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9720 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9721 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9722 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9723 cr4_fixed1_update(bit(11), ecx, bit(2));
9724
9725#undef cr4_fixed1_update
9726}
9727
Sheng Yang0e851882009-12-18 16:48:46 +08009728static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9729{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009730 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009731
Paolo Bonzini80154d72017-08-24 13:55:35 +02009732 if (cpu_has_secondary_exec_ctrls()) {
9733 vmx_compute_secondary_exec_control(vmx);
9734 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009735 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009736
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009737 if (nested_vmx_allowed(vcpu))
9738 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9739 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9740 else
9741 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9742 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009743
9744 if (nested_vmx_allowed(vcpu))
9745 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009746}
9747
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009748static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9749{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009750 if (func == 1 && nested)
9751 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009752}
9753
Yang Zhang25d92082013-08-06 12:00:32 +03009754static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9755 struct x86_exception *fault)
9756{
Jan Kiszka533558b2014-01-04 18:47:20 +01009757 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009758 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009759 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009760 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009761
Bandan Dasc5f983f2017-05-05 15:25:14 -04009762 if (vmx->nested.pml_full) {
9763 exit_reason = EXIT_REASON_PML_FULL;
9764 vmx->nested.pml_full = false;
9765 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9766 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009767 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009768 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009769 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009770
9771 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009772 vmcs12->guest_physical_address = fault->address;
9773}
9774
Peter Feiner995f00a2017-06-30 17:26:32 -07009775static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9776{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009777 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009778}
9779
Nadav Har'El155a97a2013-08-05 11:07:16 +03009780/* Callbacks for nested_ept_init_mmu_context: */
9781
9782static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9783{
9784 /* return the page table to be shadowed - in our case, EPT12 */
9785 return get_vmcs12(vcpu)->ept_pointer;
9786}
9787
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009788static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009789{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009790 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009791 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009792 return 1;
9793
9794 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009795 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009796 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009797 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009798 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009799 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9800 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9801 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9802
9803 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009804 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009805}
9806
9807static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9808{
9809 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9810}
9811
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009812static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9813 u16 error_code)
9814{
9815 bool inequality, bit;
9816
9817 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9818 inequality =
9819 (error_code & vmcs12->page_fault_error_code_mask) !=
9820 vmcs12->page_fault_error_code_match;
9821 return inequality ^ bit;
9822}
9823
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009824static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9825 struct x86_exception *fault)
9826{
9827 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9828
9829 WARN_ON(!is_guest_mode(vcpu));
9830
Wanpeng Li305d0ab2017-09-28 18:16:44 -07009831 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
9832 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009833 vmcs12->vm_exit_intr_error_code = fault->error_code;
9834 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9835 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9836 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9837 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009838 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009839 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009840 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009841}
9842
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009843static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9844 struct vmcs12 *vmcs12);
9845
9846static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009847 struct vmcs12 *vmcs12)
9848{
9849 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009850 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009851 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009852
9853 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009854 /*
9855 * Translate L1 physical address to host physical
9856 * address for vmcs02. Keep the page pinned, so this
9857 * physical address remains valid. We keep a reference
9858 * to it so we can release it later.
9859 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009860 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009861 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009862 vmx->nested.apic_access_page = NULL;
9863 }
9864 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009865 /*
9866 * If translation failed, no matter: This feature asks
9867 * to exit when accessing the given address, and if it
9868 * can never be accessed, this feature won't do
9869 * anything anyway.
9870 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009871 if (!is_error_page(page)) {
9872 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009873 hpa = page_to_phys(vmx->nested.apic_access_page);
9874 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9875 } else {
9876 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9877 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9878 }
9879 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9880 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9881 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9882 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9883 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009884 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009885
9886 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009887 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009888 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009889 vmx->nested.virtual_apic_page = NULL;
9890 }
9891 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009892
9893 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009894 * If translation failed, VM entry will fail because
9895 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9896 * Failing the vm entry is _not_ what the processor
9897 * does but it's basically the only possibility we
9898 * have. We could still enter the guest if CR8 load
9899 * exits are enabled, CR8 store exits are enabled, and
9900 * virtualize APIC access is disabled; in this case
9901 * the processor would never use the TPR shadow and we
9902 * could simply clear the bit from the execution
9903 * control. But such a configuration is useless, so
9904 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009905 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009906 if (!is_error_page(page)) {
9907 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009908 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9909 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9910 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009911 }
9912
Wincy Van705699a2015-02-03 23:58:17 +08009913 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009914 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9915 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009916 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009917 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009918 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009919 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9920 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009921 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009922 vmx->nested.pi_desc_page = page;
9923 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009924 vmx->nested.pi_desc =
9925 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9926 (unsigned long)(vmcs12->posted_intr_desc_addr &
9927 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009928 vmcs_write64(POSTED_INTR_DESC_ADDR,
9929 page_to_phys(vmx->nested.pi_desc_page) +
9930 (unsigned long)(vmcs12->posted_intr_desc_addr &
9931 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009932 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009933 if (cpu_has_vmx_msr_bitmap() &&
9934 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9935 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9936 ;
9937 else
9938 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9939 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009940}
9941
Jan Kiszkaf4124502014-03-07 20:03:13 +01009942static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9943{
9944 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9945 struct vcpu_vmx *vmx = to_vmx(vcpu);
9946
9947 if (vcpu->arch.virtual_tsc_khz == 0)
9948 return;
9949
9950 /* Make sure short timeouts reliably trigger an immediate vmexit.
9951 * hrtimer_start does not guarantee this. */
9952 if (preemption_timeout <= 1) {
9953 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9954 return;
9955 }
9956
9957 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9958 preemption_timeout *= 1000000;
9959 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9960 hrtimer_start(&vmx->nested.preemption_timer,
9961 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9962}
9963
Jim Mattson56a20512017-07-06 16:33:06 -07009964static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9965 struct vmcs12 *vmcs12)
9966{
9967 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9968 return 0;
9969
9970 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9971 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9972 return -EINVAL;
9973
9974 return 0;
9975}
9976
Wincy Van3af18d92015-02-03 23:49:31 +08009977static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9978 struct vmcs12 *vmcs12)
9979{
Wincy Van3af18d92015-02-03 23:49:31 +08009980 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9981 return 0;
9982
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009983 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +08009984 return -EINVAL;
9985
9986 return 0;
9987}
9988
Jim Mattson712b12d2017-08-24 13:24:47 -07009989static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
9990 struct vmcs12 *vmcs12)
9991{
9992 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9993 return 0;
9994
9995 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
9996 return -EINVAL;
9997
9998 return 0;
9999}
10000
Wincy Van3af18d92015-02-03 23:49:31 +080010001/*
10002 * Merge L0's and L1's MSR bitmap, return false to indicate that
10003 * we do not use the hardware.
10004 */
10005static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
10006 struct vmcs12 *vmcs12)
10007{
Wincy Van82f0dd42015-02-03 23:57:18 +080010008 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010009 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010010 unsigned long *msr_bitmap_l1;
10011 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +080010012
Radim Krčmářd048c092016-08-08 20:16:22 +020010013 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +080010014 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
10015 return false;
10016
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010017 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10018 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010019 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +020010020 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010021
Radim Krčmářd048c092016-08-08 20:16:22 +020010022 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
10023
Wincy Vanf2b93282015-02-03 23:56:03 +080010024 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +080010025 if (nested_cpu_has_apic_reg_virt(vmcs12))
10026 for (msr = 0x800; msr <= 0x8ff; msr++)
10027 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010028 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +080010029 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +020010030
10031 nested_vmx_disable_intercept_for_msr(
10032 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +080010033 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
10034 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +020010035
Wincy Van608406e2015-02-03 23:57:51 +080010036 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +080010037 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010038 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010039 APIC_BASE_MSR + (APIC_EOI >> 4),
10040 MSR_TYPE_W);
10041 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010042 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010043 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
10044 MSR_TYPE_W);
10045 }
Wincy Van82f0dd42015-02-03 23:57:18 +080010046 }
Wincy Vanf2b93282015-02-03 23:56:03 +080010047 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010048 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010049
10050 return true;
10051}
10052
10053static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
10054 struct vmcs12 *vmcs12)
10055{
Wincy Van82f0dd42015-02-03 23:57:18 +080010056 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080010057 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080010058 !nested_cpu_has_vid(vmcs12) &&
10059 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080010060 return 0;
10061
10062 /*
10063 * If virtualize x2apic mode is enabled,
10064 * virtualize apic access must be disabled.
10065 */
Wincy Van82f0dd42015-02-03 23:57:18 +080010066 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
10067 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080010068 return -EINVAL;
10069
Wincy Van608406e2015-02-03 23:57:51 +080010070 /*
10071 * If virtual interrupt delivery is enabled,
10072 * we must exit on external interrupts.
10073 */
10074 if (nested_cpu_has_vid(vmcs12) &&
10075 !nested_exit_on_intr(vcpu))
10076 return -EINVAL;
10077
Wincy Van705699a2015-02-03 23:58:17 +080010078 /*
10079 * bits 15:8 should be zero in posted_intr_nv,
10080 * the descriptor address has been already checked
10081 * in nested_get_vmcs12_pages.
10082 */
10083 if (nested_cpu_has_posted_intr(vmcs12) &&
10084 (!nested_cpu_has_vid(vmcs12) ||
10085 !nested_exit_intr_ack_set(vcpu) ||
10086 vmcs12->posted_intr_nv & 0xff00))
10087 return -EINVAL;
10088
Wincy Vanf2b93282015-02-03 23:56:03 +080010089 /* tpr shadow is needed by all apicv features. */
10090 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10091 return -EINVAL;
10092
10093 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010094}
10095
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010096static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10097 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010098 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010099{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010100 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010101 u64 count, addr;
10102
10103 if (vmcs12_read_any(vcpu, count_field, &count) ||
10104 vmcs12_read_any(vcpu, addr_field, &addr)) {
10105 WARN_ON(1);
10106 return -EINVAL;
10107 }
10108 if (count == 0)
10109 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010110 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010111 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10112 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010113 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010114 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10115 addr_field, maxphyaddr, count, addr);
10116 return -EINVAL;
10117 }
10118 return 0;
10119}
10120
10121static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10122 struct vmcs12 *vmcs12)
10123{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010124 if (vmcs12->vm_exit_msr_load_count == 0 &&
10125 vmcs12->vm_exit_msr_store_count == 0 &&
10126 vmcs12->vm_entry_msr_load_count == 0)
10127 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010128 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010129 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010130 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010131 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010132 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010133 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010134 return -EINVAL;
10135 return 0;
10136}
10137
Bandan Dasc5f983f2017-05-05 15:25:14 -040010138static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10139 struct vmcs12 *vmcs12)
10140{
10141 u64 address = vmcs12->pml_address;
10142 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10143
10144 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10145 if (!nested_cpu_has_ept(vmcs12) ||
10146 !IS_ALIGNED(address, 4096) ||
10147 address >> maxphyaddr)
10148 return -EINVAL;
10149 }
10150
10151 return 0;
10152}
10153
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010154static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10155 struct vmx_msr_entry *e)
10156{
10157 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010158 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010159 return -EINVAL;
10160 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10161 e->index == MSR_IA32_UCODE_REV)
10162 return -EINVAL;
10163 if (e->reserved != 0)
10164 return -EINVAL;
10165 return 0;
10166}
10167
10168static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10169 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010170{
10171 if (e->index == MSR_FS_BASE ||
10172 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010173 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10174 nested_vmx_msr_check_common(vcpu, e))
10175 return -EINVAL;
10176 return 0;
10177}
10178
10179static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10180 struct vmx_msr_entry *e)
10181{
10182 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10183 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010184 return -EINVAL;
10185 return 0;
10186}
10187
10188/*
10189 * Load guest's/host's msr at nested entry/exit.
10190 * return 0 for success, entry index for failure.
10191 */
10192static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10193{
10194 u32 i;
10195 struct vmx_msr_entry e;
10196 struct msr_data msr;
10197
10198 msr.host_initiated = false;
10199 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010200 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10201 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010202 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010203 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10204 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010205 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010206 }
10207 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010208 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010209 "%s check failed (%u, 0x%x, 0x%x)\n",
10210 __func__, i, e.index, e.reserved);
10211 goto fail;
10212 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010213 msr.index = e.index;
10214 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010215 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010216 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010217 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10218 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010219 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010220 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010221 }
10222 return 0;
10223fail:
10224 return i + 1;
10225}
10226
10227static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10228{
10229 u32 i;
10230 struct vmx_msr_entry e;
10231
10232 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010233 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010234 if (kvm_vcpu_read_guest(vcpu,
10235 gpa + i * sizeof(e),
10236 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010237 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010238 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10239 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010240 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010241 }
10242 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010243 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010244 "%s check failed (%u, 0x%x, 0x%x)\n",
10245 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010246 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010247 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010248 msr_info.host_initiated = false;
10249 msr_info.index = e.index;
10250 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010251 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010252 "%s cannot read MSR (%u, 0x%x)\n",
10253 __func__, i, e.index);
10254 return -EINVAL;
10255 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010256 if (kvm_vcpu_write_guest(vcpu,
10257 gpa + i * sizeof(e) +
10258 offsetof(struct vmx_msr_entry, value),
10259 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010260 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010261 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010262 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010263 return -EINVAL;
10264 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010265 }
10266 return 0;
10267}
10268
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010269static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10270{
10271 unsigned long invalid_mask;
10272
10273 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10274 return (val & invalid_mask) == 0;
10275}
10276
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010277/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010278 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10279 * emulating VM entry into a guest with EPT enabled.
10280 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10281 * is assigned to entry_failure_code on failure.
10282 */
10283static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010284 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010285{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010286 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010287 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010288 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10289 return 1;
10290 }
10291
10292 /*
10293 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10294 * must not be dereferenced.
10295 */
10296 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10297 !nested_ept) {
10298 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10299 *entry_failure_code = ENTRY_FAIL_PDPTE;
10300 return 1;
10301 }
10302 }
10303
10304 vcpu->arch.cr3 = cr3;
10305 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10306 }
10307
10308 kvm_mmu_reset_context(vcpu);
10309 return 0;
10310}
10311
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010312/*
10313 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10314 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010315 * 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 +030010316 * guest in a way that will both be appropriate to L1's requests, and our
10317 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10318 * function also has additional necessary side-effects, like setting various
10319 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010320 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10321 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010322 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010323static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010324 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010325{
10326 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010327 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010328
10329 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10330 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10331 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10332 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10333 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10334 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10335 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10336 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10337 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10338 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10339 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10340 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10341 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10342 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10343 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10344 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10345 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10346 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10347 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10348 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10349 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10350 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10351 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10352 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10353 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10354 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10355 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10356 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10357 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10358 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10359 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10360 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10361 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10362 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10363 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10364 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10365
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010366 if (from_vmentry &&
10367 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010368 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10369 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10370 } else {
10371 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10372 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10373 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010374 if (from_vmentry) {
10375 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10376 vmcs12->vm_entry_intr_info_field);
10377 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10378 vmcs12->vm_entry_exception_error_code);
10379 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10380 vmcs12->vm_entry_instruction_len);
10381 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10382 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010383 vmx->loaded_vmcs->nmi_known_unmasked =
10384 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010385 } else {
10386 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10387 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010388 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010389 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010390 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10391 vmcs12->guest_pending_dbg_exceptions);
10392 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10393 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10394
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010395 if (nested_cpu_has_xsaves(vmcs12))
10396 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010397 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10398
Jan Kiszkaf4124502014-03-07 20:03:13 +010010399 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010400
Paolo Bonzini93140062016-07-06 13:23:51 +020010401 /* Preemption timer setting is only taken from vmcs01. */
10402 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10403 exec_control |= vmcs_config.pin_based_exec_ctrl;
10404 if (vmx->hv_deadline_tsc == -1)
10405 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10406
10407 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010408 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010409 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10410 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010411 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010412 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010413 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010414 }
Wincy Van705699a2015-02-03 23:58:17 +080010415
Jan Kiszkaf4124502014-03-07 20:03:13 +010010416 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010417
Jan Kiszkaf4124502014-03-07 20:03:13 +010010418 vmx->nested.preemption_timer_expired = false;
10419 if (nested_cpu_has_preemption_timer(vmcs12))
10420 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010421
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010422 /*
10423 * Whether page-faults are trapped is determined by a combination of
10424 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10425 * If enable_ept, L0 doesn't care about page faults and we should
10426 * set all of these to L1's desires. However, if !enable_ept, L0 does
10427 * care about (at least some) page faults, and because it is not easy
10428 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10429 * to exit on each and every L2 page fault. This is done by setting
10430 * MASK=MATCH=0 and (see below) EB.PF=1.
10431 * Note that below we don't need special code to set EB.PF beyond the
10432 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10433 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10434 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010435 */
10436 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10437 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10438 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10439 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10440
10441 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020010442 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080010443
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010444 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010445 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010446 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010447 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020010448 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010449 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010450 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10451 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010452 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010453 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10454 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10455 ~SECONDARY_EXEC_ENABLE_PML;
10456 exec_control |= vmcs12_exec_ctrl;
10457 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010458
Bandan Das27c42a12017-08-03 15:54:42 -040010459 /* All VMFUNCs are currently emulated through L0 vmexits. */
10460 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10461 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10462
Wincy Van608406e2015-02-03 23:57:51 +080010463 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10464 vmcs_write64(EOI_EXIT_BITMAP0,
10465 vmcs12->eoi_exit_bitmap0);
10466 vmcs_write64(EOI_EXIT_BITMAP1,
10467 vmcs12->eoi_exit_bitmap1);
10468 vmcs_write64(EOI_EXIT_BITMAP2,
10469 vmcs12->eoi_exit_bitmap2);
10470 vmcs_write64(EOI_EXIT_BITMAP3,
10471 vmcs12->eoi_exit_bitmap3);
10472 vmcs_write16(GUEST_INTR_STATUS,
10473 vmcs12->guest_intr_status);
10474 }
10475
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010476 /*
10477 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10478 * nested_get_vmcs12_pages will either fix it up or
10479 * remove the VM execution control.
10480 */
10481 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10482 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10483
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010484 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10485 }
10486
10487
10488 /*
10489 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10490 * Some constant fields are set here by vmx_set_constant_host_state().
10491 * Other fields are different per CPU, and will be set later when
10492 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10493 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010494 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010495
10496 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010497 * Set the MSR load/store lists to match L0's settings.
10498 */
10499 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10500 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10501 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10502 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10503 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10504
10505 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010506 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10507 * entry, but only if the current (host) sp changed from the value
10508 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10509 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10510 * here we just force the write to happen on entry.
10511 */
10512 vmx->host_rsp = 0;
10513
10514 exec_control = vmx_exec_control(vmx); /* L0's desires */
10515 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10516 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10517 exec_control &= ~CPU_BASED_TPR_SHADOW;
10518 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010519
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010520 /*
10521 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10522 * nested_get_vmcs12_pages can't fix it up, the illegal value
10523 * will result in a VM entry failure.
10524 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010525 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010526 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010527 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070010528 } else {
10529#ifdef CONFIG_X86_64
10530 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
10531 CPU_BASED_CR8_STORE_EXITING;
10532#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010533 }
10534
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010535 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010536 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010537 * Rather, exit every time.
10538 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010539 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10540 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10541
10542 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10543
10544 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10545 * bitwise-or of what L1 wants to trap for L2, and what we want to
10546 * trap. Note that CR0.TS also needs updating - we do this later.
10547 */
10548 update_exception_bitmap(vcpu);
10549 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10550 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10551
Nadav Har'El8049d652013-08-05 11:07:06 +030010552 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10553 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10554 * bits are further modified by vmx_set_efer() below.
10555 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010556 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010557
10558 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10559 * emulated by vmx_set_efer(), below.
10560 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010561 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010562 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10563 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010564 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10565
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010566 if (from_vmentry &&
10567 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010568 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010569 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010570 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010571 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010572 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010573
10574 set_cr4_guest_host_mask(vmx);
10575
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010576 if (from_vmentry &&
10577 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010578 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10579
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010580 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10581 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010582 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010583 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010584 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010585 if (kvm_has_tsc_control)
10586 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010587
10588 if (enable_vpid) {
10589 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010590 * There is no direct mapping between vpid02 and vpid12, the
10591 * vpid02 is per-vCPU for L0 and reused while the value of
10592 * vpid12 is changed w/ one invvpid during nested vmentry.
10593 * The vpid12 is allocated by L1 for L2, so it will not
10594 * influence global bitmap(for vpid01 and vpid02 allocation)
10595 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010596 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010597 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10598 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10599 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10600 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10601 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10602 }
10603 } else {
10604 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10605 vmx_flush_tlb(vcpu);
10606 }
10607
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010608 }
10609
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010610 if (enable_pml) {
10611 /*
10612 * Conceptually we want to copy the PML address and index from
10613 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10614 * since we always flush the log on each vmexit, this happens
10615 * to be equivalent to simply resetting the fields in vmcs02.
10616 */
10617 ASSERT(vmx->pml_pg);
10618 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10619 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10620 }
10621
Nadav Har'El155a97a2013-08-05 11:07:16 +030010622 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010623 if (nested_ept_init_mmu_context(vcpu)) {
10624 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10625 return 1;
10626 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010627 } else if (nested_cpu_has2(vmcs12,
10628 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10629 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010630 }
10631
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010632 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010633 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10634 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010635 * The CR0_READ_SHADOW is what L2 should have expected to read given
10636 * the specifications by L1; It's not enough to take
10637 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10638 * have more bits than L1 expected.
10639 */
10640 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10641 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10642
10643 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10644 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10645
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010646 if (from_vmentry &&
10647 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010648 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10649 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10650 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10651 else
10652 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10653 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10654 vmx_set_efer(vcpu, vcpu->arch.efer);
10655
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010656 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010657 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010658 entry_failure_code))
10659 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010660
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010661 if (!enable_ept)
10662 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10663
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010664 /*
10665 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10666 */
10667 if (enable_ept) {
10668 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10669 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10670 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10671 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10672 }
10673
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010674 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10675 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010676 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010677}
10678
Jim Mattsonca0bde22016-11-30 12:03:46 -080010679static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10680{
10681 struct vcpu_vmx *vmx = to_vmx(vcpu);
10682
10683 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10684 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10685 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10686
Jim Mattson56a20512017-07-06 16:33:06 -070010687 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10688 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10689
Jim Mattsonca0bde22016-11-30 12:03:46 -080010690 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10691 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10692
Jim Mattson712b12d2017-08-24 13:24:47 -070010693 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
10694 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10695
Jim Mattsonca0bde22016-11-30 12:03:46 -080010696 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10697 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10698
10699 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10700 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10701
Bandan Dasc5f983f2017-05-05 15:25:14 -040010702 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10703 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10704
Jim Mattsonca0bde22016-11-30 12:03:46 -080010705 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10706 vmx->nested.nested_vmx_procbased_ctls_low,
10707 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010708 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10709 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10710 vmx->nested.nested_vmx_secondary_ctls_low,
10711 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010712 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10713 vmx->nested.nested_vmx_pinbased_ctls_low,
10714 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10715 !vmx_control_verify(vmcs12->vm_exit_controls,
10716 vmx->nested.nested_vmx_exit_ctls_low,
10717 vmx->nested.nested_vmx_exit_ctls_high) ||
10718 !vmx_control_verify(vmcs12->vm_entry_controls,
10719 vmx->nested.nested_vmx_entry_ctls_low,
10720 vmx->nested.nested_vmx_entry_ctls_high))
10721 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10722
Bandan Das41ab9372017-08-03 15:54:43 -040010723 if (nested_cpu_has_vmfunc(vmcs12)) {
10724 if (vmcs12->vm_function_control &
10725 ~vmx->nested.nested_vmx_vmfunc_controls)
10726 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10727
10728 if (nested_cpu_has_eptp_switching(vmcs12)) {
10729 if (!nested_cpu_has_ept(vmcs12) ||
10730 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10731 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10732 }
10733 }
Bandan Das27c42a12017-08-03 15:54:42 -040010734
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010735 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10736 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10737
Jim Mattsonca0bde22016-11-30 12:03:46 -080010738 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10739 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10740 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10741 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10742
10743 return 0;
10744}
10745
10746static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10747 u32 *exit_qual)
10748{
10749 bool ia32e;
10750
10751 *exit_qual = ENTRY_FAIL_DEFAULT;
10752
10753 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10754 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10755 return 1;
10756
10757 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10758 vmcs12->vmcs_link_pointer != -1ull) {
10759 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10760 return 1;
10761 }
10762
10763 /*
10764 * If the load IA32_EFER VM-entry control is 1, the following checks
10765 * are performed on the field for the IA32_EFER MSR:
10766 * - Bits reserved in the IA32_EFER MSR must be 0.
10767 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10768 * the IA-32e mode guest VM-exit control. It must also be identical
10769 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10770 * CR0.PG) is 1.
10771 */
10772 if (to_vmx(vcpu)->nested.nested_run_pending &&
10773 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10774 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10775 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10776 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10777 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10778 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10779 return 1;
10780 }
10781
10782 /*
10783 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10784 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10785 * the values of the LMA and LME bits in the field must each be that of
10786 * the host address-space size VM-exit control.
10787 */
10788 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10789 ia32e = (vmcs12->vm_exit_controls &
10790 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10791 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10792 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10793 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10794 return 1;
10795 }
10796
10797 return 0;
10798}
10799
Jim Mattson858e25c2016-11-30 12:03:47 -080010800static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10801{
10802 struct vcpu_vmx *vmx = to_vmx(vcpu);
10803 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10804 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010805 u32 msr_entry_idx;
10806 u32 exit_qual;
10807
10808 vmcs02 = nested_get_current_vmcs02(vmx);
10809 if (!vmcs02)
10810 return -ENOMEM;
10811
10812 enter_guest_mode(vcpu);
10813
10814 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10815 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10816
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010817 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010818 vmx_segment_cache_clear(vmx);
10819
10820 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
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_INVALID_STATE, exit_qual);
10825 return 1;
10826 }
10827
10828 nested_get_vmcs12_pages(vcpu, vmcs12);
10829
10830 msr_entry_idx = nested_vmx_load_msr(vcpu,
10831 vmcs12->vm_entry_msr_load_addr,
10832 vmcs12->vm_entry_msr_load_count);
10833 if (msr_entry_idx) {
10834 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010835 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010836 nested_vmx_entry_failure(vcpu, vmcs12,
10837 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10838 return 1;
10839 }
10840
Jim Mattson858e25c2016-11-30 12:03:47 -080010841 /*
10842 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10843 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10844 * returned as far as L1 is concerned. It will only return (and set
10845 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10846 */
10847 return 0;
10848}
10849
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010850/*
10851 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10852 * for running an L2 nested guest.
10853 */
10854static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10855{
10856 struct vmcs12 *vmcs12;
10857 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010858 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010859 u32 exit_qual;
10860 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010861
Kyle Hueyeb277562016-11-29 12:40:39 -080010862 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010863 return 1;
10864
Kyle Hueyeb277562016-11-29 12:40:39 -080010865 if (!nested_vmx_check_vmcs12(vcpu))
10866 goto out;
10867
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010868 vmcs12 = get_vmcs12(vcpu);
10869
Abel Gordon012f83c2013-04-18 14:39:25 +030010870 if (enable_shadow_vmcs)
10871 copy_shadow_to_vmcs12(vmx);
10872
Nadav Har'El7c177932011-05-25 23:12:04 +030010873 /*
10874 * The nested entry process starts with enforcing various prerequisites
10875 * on vmcs12 as required by the Intel SDM, and act appropriately when
10876 * they fail: As the SDM explains, some conditions should cause the
10877 * instruction to fail, while others will cause the instruction to seem
10878 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10879 * To speed up the normal (success) code path, we should avoid checking
10880 * for misconfigurations which will anyway be caught by the processor
10881 * when using the merged vmcs02.
10882 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010883 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10884 nested_vmx_failValid(vcpu,
10885 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10886 goto out;
10887 }
10888
Nadav Har'El7c177932011-05-25 23:12:04 +030010889 if (vmcs12->launch_state == launch) {
10890 nested_vmx_failValid(vcpu,
10891 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10892 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010893 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010894 }
10895
Jim Mattsonca0bde22016-11-30 12:03:46 -080010896 ret = check_vmentry_prereqs(vcpu, vmcs12);
10897 if (ret) {
10898 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010899 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010900 }
10901
Nadav Har'El7c177932011-05-25 23:12:04 +030010902 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010903 * After this point, the trap flag no longer triggers a singlestep trap
10904 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10905 * This is not 100% correct; for performance reasons, we delegate most
10906 * of the checks on host state to the processor. If those fail,
10907 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010908 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010909 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010910
Jim Mattsonca0bde22016-11-30 12:03:46 -080010911 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10912 if (ret) {
10913 nested_vmx_entry_failure(vcpu, vmcs12,
10914 EXIT_REASON_INVALID_STATE, exit_qual);
10915 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010916 }
10917
10918 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010919 * We're finally done with prerequisite checking, and can start with
10920 * the nested entry.
10921 */
10922
Jim Mattson858e25c2016-11-30 12:03:47 -080010923 ret = enter_vmx_non_root_mode(vcpu, true);
10924 if (ret)
10925 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010926
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010927 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010928 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010929
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010930 vmx->nested.nested_run_pending = 1;
10931
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010932 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010933
10934out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010935 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010936}
10937
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010938/*
10939 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10940 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10941 * This function returns the new value we should put in vmcs12.guest_cr0.
10942 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10943 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10944 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10945 * didn't trap the bit, because if L1 did, so would L0).
10946 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10947 * been modified by L2, and L1 knows it. So just leave the old value of
10948 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10949 * isn't relevant, because if L0 traps this bit it can set it to anything.
10950 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10951 * changed these bits, and therefore they need to be updated, but L0
10952 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10953 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10954 */
10955static inline unsigned long
10956vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10957{
10958 return
10959 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10960 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10961 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10962 vcpu->arch.cr0_guest_owned_bits));
10963}
10964
10965static inline unsigned long
10966vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10967{
10968 return
10969 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10970 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10971 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10972 vcpu->arch.cr4_guest_owned_bits));
10973}
10974
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010975static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10976 struct vmcs12 *vmcs12)
10977{
10978 u32 idt_vectoring;
10979 unsigned int nr;
10980
Wanpeng Li664f8e22017-08-24 03:35:09 -070010981 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010982 nr = vcpu->arch.exception.nr;
10983 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10984
10985 if (kvm_exception_is_soft(nr)) {
10986 vmcs12->vm_exit_instruction_len =
10987 vcpu->arch.event_exit_inst_len;
10988 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10989 } else
10990 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10991
10992 if (vcpu->arch.exception.has_error_code) {
10993 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10994 vmcs12->idt_vectoring_error_code =
10995 vcpu->arch.exception.error_code;
10996 }
10997
10998 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010999 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011000 vmcs12->idt_vectoring_info_field =
11001 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
11002 } else if (vcpu->arch.interrupt.pending) {
11003 nr = vcpu->arch.interrupt.nr;
11004 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11005
11006 if (vcpu->arch.interrupt.soft) {
11007 idt_vectoring |= INTR_TYPE_SOFT_INTR;
11008 vmcs12->vm_entry_instruction_len =
11009 vcpu->arch.event_exit_inst_len;
11010 } else
11011 idt_vectoring |= INTR_TYPE_EXT_INTR;
11012
11013 vmcs12->idt_vectoring_info_field = idt_vectoring;
11014 }
11015}
11016
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011017static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
11018{
11019 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011020 unsigned long exit_qual;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011021
Wanpeng Li274bba52017-08-24 03:35:08 -070011022 if (kvm_event_needs_reinjection(vcpu))
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011023 return -EBUSY;
11024
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011025 if (vcpu->arch.exception.pending &&
11026 nested_vmx_check_exception(vcpu, &exit_qual)) {
11027 if (vmx->nested.nested_run_pending)
11028 return -EBUSY;
11029 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
11030 vcpu->arch.exception.pending = false;
11031 return 0;
11032 }
11033
Jan Kiszkaf4124502014-03-07 20:03:13 +010011034 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
11035 vmx->nested.preemption_timer_expired) {
11036 if (vmx->nested.nested_run_pending)
11037 return -EBUSY;
11038 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
11039 return 0;
11040 }
11041
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011042 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011043 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011044 return -EBUSY;
11045 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11046 NMI_VECTOR | INTR_TYPE_NMI_INTR |
11047 INTR_INFO_VALID_MASK, 0);
11048 /*
11049 * The NMI-triggered VM exit counts as injection:
11050 * clear this one and block further NMIs.
11051 */
11052 vcpu->arch.nmi_pending = 0;
11053 vmx_set_nmi_mask(vcpu, true);
11054 return 0;
11055 }
11056
11057 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
11058 nested_exit_on_intr(vcpu)) {
11059 if (vmx->nested.nested_run_pending)
11060 return -EBUSY;
11061 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080011062 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011063 }
11064
David Hildenbrand6342c502017-01-25 11:58:58 +010011065 vmx_complete_nested_posted_interrupt(vcpu);
11066 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011067}
11068
Jan Kiszkaf4124502014-03-07 20:03:13 +010011069static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
11070{
11071 ktime_t remaining =
11072 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
11073 u64 value;
11074
11075 if (ktime_to_ns(remaining) <= 0)
11076 return 0;
11077
11078 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
11079 do_div(value, 1000000);
11080 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11081}
11082
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011083/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011084 * Update the guest state fields of vmcs12 to reflect changes that
11085 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
11086 * VM-entry controls is also updated, since this is really a guest
11087 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011088 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011089static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011090{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011091 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11092 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11093
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011094 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11095 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11096 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11097
11098 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11099 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11100 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11101 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11102 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11103 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11104 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11105 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11106 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11107 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11108 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11109 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11110 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11111 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11112 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11113 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11114 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11115 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11116 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11117 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11118 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11119 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11120 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11121 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11122 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11123 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11124 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11125 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11126 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11127 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11128 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11129 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11130 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11131 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11132 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11133 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11134
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011135 vmcs12->guest_interruptibility_info =
11136 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11137 vmcs12->guest_pending_dbg_exceptions =
11138 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011139 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11140 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11141 else
11142 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011143
Jan Kiszkaf4124502014-03-07 20:03:13 +010011144 if (nested_cpu_has_preemption_timer(vmcs12)) {
11145 if (vmcs12->vm_exit_controls &
11146 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11147 vmcs12->vmx_preemption_timer_value =
11148 vmx_get_preemption_timer_value(vcpu);
11149 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11150 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011151
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011152 /*
11153 * In some cases (usually, nested EPT), L2 is allowed to change its
11154 * own CR3 without exiting. If it has changed it, we must keep it.
11155 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11156 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11157 *
11158 * Additionally, restore L2's PDPTR to vmcs12.
11159 */
11160 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011161 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011162 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11163 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11164 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11165 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11166 }
11167
Jim Mattsond281e132017-06-01 12:44:46 -070011168 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011169
Wincy Van608406e2015-02-03 23:57:51 +080011170 if (nested_cpu_has_vid(vmcs12))
11171 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11172
Jan Kiszkac18911a2013-03-13 16:06:41 +010011173 vmcs12->vm_entry_controls =
11174 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011175 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011176
Jan Kiszka2996fca2014-06-16 13:59:43 +020011177 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11178 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11179 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11180 }
11181
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011182 /* TODO: These cannot have changed unless we have MSR bitmaps and
11183 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011184 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011185 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011186 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11187 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011188 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11189 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11190 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011191 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011192 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011193}
11194
11195/*
11196 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11197 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11198 * and this function updates it to reflect the changes to the guest state while
11199 * L2 was running (and perhaps made some exits which were handled directly by L0
11200 * without going back to L1), and to reflect the exit reason.
11201 * Note that we do not have to copy here all VMCS fields, just those that
11202 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11203 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11204 * which already writes to vmcs12 directly.
11205 */
11206static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11207 u32 exit_reason, u32 exit_intr_info,
11208 unsigned long exit_qualification)
11209{
11210 /* update guest state fields: */
11211 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011212
11213 /* update exit information fields: */
11214
Jan Kiszka533558b2014-01-04 18:47:20 +010011215 vmcs12->vm_exit_reason = exit_reason;
11216 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011217 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011218
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011219 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011220 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11221 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11222
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011223 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011224 vmcs12->launch_state = 1;
11225
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011226 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11227 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011228 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011229
11230 /*
11231 * Transfer the event that L0 or L1 may wanted to inject into
11232 * L2 to IDT_VECTORING_INFO_FIELD.
11233 */
11234 vmcs12_save_pending_event(vcpu, vmcs12);
11235 }
11236
11237 /*
11238 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11239 * preserved above and would only end up incorrectly in L1.
11240 */
11241 vcpu->arch.nmi_injected = false;
11242 kvm_clear_exception_queue(vcpu);
11243 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011244}
11245
11246/*
11247 * A part of what we need to when the nested L2 guest exits and we want to
11248 * run its L1 parent, is to reset L1's guest state to the host state specified
11249 * in vmcs12.
11250 * This function is to be called not only on normal nested exit, but also on
11251 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11252 * Failures During or After Loading Guest State").
11253 * This function should be called when the active VMCS is L1's (vmcs01).
11254 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011255static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11256 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011257{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011258 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011259 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011260
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011261 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11262 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011263 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011264 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11265 else
11266 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11267 vmx_set_efer(vcpu, vcpu->arch.efer);
11268
11269 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11270 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011271 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011272 /*
11273 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011274 * actually changed, because vmx_set_cr0 refers to efer set above.
11275 *
11276 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11277 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011278 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011279 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011280 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011281
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011282 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011283 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080011284 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011285
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011286 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011287
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011288 /*
11289 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11290 * couldn't have changed.
11291 */
11292 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11293 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011294
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011295 if (!enable_ept)
11296 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11297
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011298 if (enable_vpid) {
11299 /*
11300 * Trivially support vpid by letting L2s share their parent
11301 * L1's vpid. TODO: move to a more elaborate solution, giving
11302 * each L2 its own vpid and exposing the vpid feature to L1.
11303 */
11304 vmx_flush_tlb(vcpu);
11305 }
Wincy Van06a55242017-04-28 13:13:59 +080011306 /* Restore posted intr vector. */
11307 if (nested_cpu_has_posted_intr(vmcs12))
11308 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011309
11310 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11311 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11312 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11313 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11314 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020011315 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
11316 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011317
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011318 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11319 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11320 vmcs_write64(GUEST_BNDCFGS, 0);
11321
Jan Kiszka44811c02013-08-04 17:17:27 +020011322 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011323 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011324 vcpu->arch.pat = vmcs12->host_ia32_pat;
11325 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011326 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11327 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11328 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011329
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011330 /* Set L1 segment info according to Intel SDM
11331 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11332 seg = (struct kvm_segment) {
11333 .base = 0,
11334 .limit = 0xFFFFFFFF,
11335 .selector = vmcs12->host_cs_selector,
11336 .type = 11,
11337 .present = 1,
11338 .s = 1,
11339 .g = 1
11340 };
11341 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11342 seg.l = 1;
11343 else
11344 seg.db = 1;
11345 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11346 seg = (struct kvm_segment) {
11347 .base = 0,
11348 .limit = 0xFFFFFFFF,
11349 .type = 3,
11350 .present = 1,
11351 .s = 1,
11352 .db = 1,
11353 .g = 1
11354 };
11355 seg.selector = vmcs12->host_ds_selector;
11356 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11357 seg.selector = vmcs12->host_es_selector;
11358 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11359 seg.selector = vmcs12->host_ss_selector;
11360 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11361 seg.selector = vmcs12->host_fs_selector;
11362 seg.base = vmcs12->host_fs_base;
11363 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11364 seg.selector = vmcs12->host_gs_selector;
11365 seg.base = vmcs12->host_gs_base;
11366 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11367 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011368 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011369 .limit = 0x67,
11370 .selector = vmcs12->host_tr_selector,
11371 .type = 11,
11372 .present = 1
11373 };
11374 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11375
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011376 kvm_set_dr(vcpu, 7, 0x400);
11377 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011378
Wincy Van3af18d92015-02-03 23:49:31 +080011379 if (cpu_has_vmx_msr_bitmap())
11380 vmx_set_msr_bitmap(vcpu);
11381
Wincy Vanff651cb2014-12-11 08:52:58 +030011382 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11383 vmcs12->vm_exit_msr_load_count))
11384 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011385}
11386
11387/*
11388 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11389 * and modify vmcs12 to make it see what it would expect to see there if
11390 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11391 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011392static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11393 u32 exit_intr_info,
11394 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011395{
11396 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011397 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
11398
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011399 /* trying to cancel vmlaunch/vmresume is a bug */
11400 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11401
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011402 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070011403 * The only expected VM-instruction error is "VM entry with
11404 * invalid control field(s)." Anything else indicates a
11405 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011406 */
Jim Mattson4f350c62017-09-14 16:31:44 -070011407 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
11408 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
11409
11410 leave_guest_mode(vcpu);
11411
11412 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011413 if (exit_reason == -1)
11414 sync_vmcs12(vcpu, vmcs12);
11415 else
11416 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11417 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070011418
11419 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11420 vmcs12->vm_exit_msr_store_count))
11421 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040011422 }
11423
Jim Mattson4f350c62017-09-14 16:31:44 -070011424 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011425 vm_entry_controls_reset_shadow(vmx);
11426 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011427 vmx_segment_cache_clear(vmx);
11428
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011429 /* if no vmcs02 cache requested, remove the one we used */
11430 if (VMCS02_POOL_SIZE == 0)
11431 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
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
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011481 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030011482 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011483
11484 /* in case we halted in L2 */
11485 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070011486
11487 if (likely(!vmx->fail)) {
11488 /*
11489 * TODO: SDM says that with acknowledge interrupt on
11490 * exit, bit 31 of the VM-exit interrupt information
11491 * (valid interrupt) is always set to 1 on
11492 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
11493 * need kvm_cpu_has_interrupt(). See the commit
11494 * message for details.
11495 */
11496 if (nested_exit_intr_ack_set(vcpu) &&
11497 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11498 kvm_cpu_has_interrupt(vcpu)) {
11499 int irq = kvm_cpu_get_interrupt(vcpu);
11500 WARN_ON(irq < 0);
11501 vmcs12->vm_exit_intr_info = irq |
11502 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11503 }
11504
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011505 if (exit_reason != -1)
11506 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11507 vmcs12->exit_qualification,
11508 vmcs12->idt_vectoring_info_field,
11509 vmcs12->vm_exit_intr_info,
11510 vmcs12->vm_exit_intr_error_code,
11511 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070011512
11513 load_vmcs12_host_state(vcpu, vmcs12);
11514
11515 return;
11516 }
11517
11518 /*
11519 * After an early L2 VM-entry failure, we're now back
11520 * in L1 which thinks it just finished a VMLAUNCH or
11521 * VMRESUME instruction, so we need to set the failure
11522 * flag and the VM-instruction error field of the VMCS
11523 * accordingly.
11524 */
11525 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
11526 /*
11527 * The emulated instruction was already skipped in
11528 * nested_vmx_run, but the updated RIP was never
11529 * written back to the vmcs01.
11530 */
11531 skip_emulated_instruction(vcpu);
11532 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011533}
11534
Nadav Har'El7c177932011-05-25 23:12:04 +030011535/*
Jan Kiszka42124922014-01-04 18:47:19 +010011536 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11537 */
11538static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11539{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011540 if (is_guest_mode(vcpu)) {
11541 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011542 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011543 }
Jan Kiszka42124922014-01-04 18:47:19 +010011544 free_nested(to_vmx(vcpu));
11545}
11546
11547/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011548 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11549 * 23.7 "VM-entry failures during or after loading guest state" (this also
11550 * lists the acceptable exit-reason and exit-qualification parameters).
11551 * It should only be called before L2 actually succeeded to run, and when
11552 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11553 */
11554static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11555 struct vmcs12 *vmcs12,
11556 u32 reason, unsigned long qualification)
11557{
11558 load_vmcs12_host_state(vcpu, vmcs12);
11559 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11560 vmcs12->exit_qualification = qualification;
11561 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011562 if (enable_shadow_vmcs)
11563 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011564}
11565
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011566static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11567 struct x86_instruction_info *info,
11568 enum x86_intercept_stage stage)
11569{
11570 return X86EMUL_CONTINUE;
11571}
11572
Yunhong Jiang64672c92016-06-13 14:19:59 -070011573#ifdef CONFIG_X86_64
11574/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11575static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11576 u64 divisor, u64 *result)
11577{
11578 u64 low = a << shift, high = a >> (64 - shift);
11579
11580 /* To avoid the overflow on divq */
11581 if (high >= divisor)
11582 return 1;
11583
11584 /* Low hold the result, high hold rem which is discarded */
11585 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11586 "rm" (divisor), "0" (low), "1" (high));
11587 *result = low;
11588
11589 return 0;
11590}
11591
11592static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11593{
11594 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011595 u64 tscl = rdtsc();
11596 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11597 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011598
11599 /* Convert to host delta tsc if tsc scaling is enabled */
11600 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11601 u64_shl_div_u64(delta_tsc,
11602 kvm_tsc_scaling_ratio_frac_bits,
11603 vcpu->arch.tsc_scaling_ratio,
11604 &delta_tsc))
11605 return -ERANGE;
11606
11607 /*
11608 * If the delta tsc can't fit in the 32 bit after the multi shift,
11609 * we can't use the preemption timer.
11610 * It's possible that it fits on later vmentries, but checking
11611 * on every vmentry is costly so we just use an hrtimer.
11612 */
11613 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11614 return -ERANGE;
11615
11616 vmx->hv_deadline_tsc = tscl + delta_tsc;
11617 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11618 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011619
11620 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011621}
11622
11623static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11624{
11625 struct vcpu_vmx *vmx = to_vmx(vcpu);
11626 vmx->hv_deadline_tsc = -1;
11627 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11628 PIN_BASED_VMX_PREEMPTION_TIMER);
11629}
11630#endif
11631
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011632static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011633{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011634 if (ple_gap)
11635 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011636}
11637
Kai Huang843e4332015-01-28 10:54:28 +080011638static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11639 struct kvm_memory_slot *slot)
11640{
11641 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11642 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11643}
11644
11645static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11646 struct kvm_memory_slot *slot)
11647{
11648 kvm_mmu_slot_set_dirty(kvm, slot);
11649}
11650
11651static void vmx_flush_log_dirty(struct kvm *kvm)
11652{
11653 kvm_flush_pml_buffers(kvm);
11654}
11655
Bandan Dasc5f983f2017-05-05 15:25:14 -040011656static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11657{
11658 struct vmcs12 *vmcs12;
11659 struct vcpu_vmx *vmx = to_vmx(vcpu);
11660 gpa_t gpa;
11661 struct page *page = NULL;
11662 u64 *pml_address;
11663
11664 if (is_guest_mode(vcpu)) {
11665 WARN_ON_ONCE(vmx->nested.pml_full);
11666
11667 /*
11668 * Check if PML is enabled for the nested guest.
11669 * Whether eptp bit 6 is set is already checked
11670 * as part of A/D emulation.
11671 */
11672 vmcs12 = get_vmcs12(vcpu);
11673 if (!nested_cpu_has_pml(vmcs12))
11674 return 0;
11675
Dan Carpenter47698862017-05-10 22:43:17 +030011676 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011677 vmx->nested.pml_full = true;
11678 return 1;
11679 }
11680
11681 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11682
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011683 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11684 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011685 return 0;
11686
11687 pml_address = kmap(page);
11688 pml_address[vmcs12->guest_pml_index--] = gpa;
11689 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011690 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011691 }
11692
11693 return 0;
11694}
11695
Kai Huang843e4332015-01-28 10:54:28 +080011696static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11697 struct kvm_memory_slot *memslot,
11698 gfn_t offset, unsigned long mask)
11699{
11700 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11701}
11702
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011703static void __pi_post_block(struct kvm_vcpu *vcpu)
11704{
11705 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11706 struct pi_desc old, new;
11707 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011708
11709 do {
11710 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011711 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
11712 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011713
11714 dest = cpu_physical_id(vcpu->cpu);
11715
11716 if (x2apic_enabled())
11717 new.ndst = dest;
11718 else
11719 new.ndst = (dest << 8) & 0xFF00;
11720
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011721 /* set 'NV' to 'notification vector' */
11722 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011723 } while (cmpxchg64(&pi_desc->control, old.control,
11724 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011725
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011726 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
11727 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011728 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011729 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011730 vcpu->pre_pcpu = -1;
11731 }
11732}
11733
Feng Wuefc64402015-09-18 22:29:51 +080011734/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011735 * This routine does the following things for vCPU which is going
11736 * to be blocked if VT-d PI is enabled.
11737 * - Store the vCPU to the wakeup list, so when interrupts happen
11738 * we can find the right vCPU to wake up.
11739 * - Change the Posted-interrupt descriptor as below:
11740 * 'NDST' <-- vcpu->pre_pcpu
11741 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11742 * - If 'ON' is set during this process, which means at least one
11743 * interrupt is posted for this vCPU, we cannot block it, in
11744 * this case, return 1, otherwise, return 0.
11745 *
11746 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011747static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011748{
Feng Wubf9f6ac2015-09-18 22:29:55 +080011749 unsigned int dest;
11750 struct pi_desc old, new;
11751 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11752
11753 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011754 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11755 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011756 return 0;
11757
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011758 WARN_ON(irqs_disabled());
11759 local_irq_disable();
11760 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
11761 vcpu->pre_pcpu = vcpu->cpu;
11762 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11763 list_add_tail(&vcpu->blocked_vcpu_list,
11764 &per_cpu(blocked_vcpu_on_cpu,
11765 vcpu->pre_pcpu));
11766 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11767 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080011768
11769 do {
11770 old.control = new.control = pi_desc->control;
11771
Feng Wubf9f6ac2015-09-18 22:29:55 +080011772 WARN((pi_desc->sn == 1),
11773 "Warning: SN field of posted-interrupts "
11774 "is set before blocking\n");
11775
11776 /*
11777 * Since vCPU can be preempted during this process,
11778 * vcpu->cpu could be different with pre_pcpu, we
11779 * need to set pre_pcpu as the destination of wakeup
11780 * notification event, then we can find the right vCPU
11781 * to wakeup in wakeup handler if interrupts happen
11782 * when the vCPU is in blocked state.
11783 */
11784 dest = cpu_physical_id(vcpu->pre_pcpu);
11785
11786 if (x2apic_enabled())
11787 new.ndst = dest;
11788 else
11789 new.ndst = (dest << 8) & 0xFF00;
11790
11791 /* set 'NV' to 'wakeup vector' */
11792 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011793 } while (cmpxchg64(&pi_desc->control, old.control,
11794 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011795
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011796 /* We should not block the vCPU if an interrupt is posted for it. */
11797 if (pi_test_on(pi_desc) == 1)
11798 __pi_post_block(vcpu);
11799
11800 local_irq_enable();
11801 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011802}
11803
Yunhong Jiangbc225122016-06-13 14:19:58 -070011804static int vmx_pre_block(struct kvm_vcpu *vcpu)
11805{
11806 if (pi_pre_block(vcpu))
11807 return 1;
11808
Yunhong Jiang64672c92016-06-13 14:19:59 -070011809 if (kvm_lapic_hv_timer_in_use(vcpu))
11810 kvm_lapic_switch_to_sw_timer(vcpu);
11811
Yunhong Jiangbc225122016-06-13 14:19:58 -070011812 return 0;
11813}
11814
11815static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011816{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011817 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011818 return;
11819
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011820 WARN_ON(irqs_disabled());
11821 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011822 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011823 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080011824}
11825
Yunhong Jiangbc225122016-06-13 14:19:58 -070011826static void vmx_post_block(struct kvm_vcpu *vcpu)
11827{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011828 if (kvm_x86_ops->set_hv_timer)
11829 kvm_lapic_switch_to_hv_timer(vcpu);
11830
Yunhong Jiangbc225122016-06-13 14:19:58 -070011831 pi_post_block(vcpu);
11832}
11833
Feng Wubf9f6ac2015-09-18 22:29:55 +080011834/*
Feng Wuefc64402015-09-18 22:29:51 +080011835 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11836 *
11837 * @kvm: kvm
11838 * @host_irq: host irq of the interrupt
11839 * @guest_irq: gsi of the interrupt
11840 * @set: set or unset PI
11841 * returns 0 on success, < 0 on failure
11842 */
11843static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11844 uint32_t guest_irq, bool set)
11845{
11846 struct kvm_kernel_irq_routing_entry *e;
11847 struct kvm_irq_routing_table *irq_rt;
11848 struct kvm_lapic_irq irq;
11849 struct kvm_vcpu *vcpu;
11850 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011851 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080011852
11853 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011854 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11855 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011856 return 0;
11857
11858 idx = srcu_read_lock(&kvm->irq_srcu);
11859 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011860 if (guest_irq >= irq_rt->nr_rt_entries ||
11861 hlist_empty(&irq_rt->map[guest_irq])) {
11862 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
11863 guest_irq, irq_rt->nr_rt_entries);
11864 goto out;
11865 }
Feng Wuefc64402015-09-18 22:29:51 +080011866
11867 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11868 if (e->type != KVM_IRQ_ROUTING_MSI)
11869 continue;
11870 /*
11871 * VT-d PI cannot support posting multicast/broadcast
11872 * interrupts to a vCPU, we still use interrupt remapping
11873 * for these kind of interrupts.
11874 *
11875 * For lowest-priority interrupts, we only support
11876 * those with single CPU as the destination, e.g. user
11877 * configures the interrupts via /proc/irq or uses
11878 * irqbalance to make the interrupts single-CPU.
11879 *
11880 * We will support full lowest-priority interrupt later.
11881 */
11882
Radim Krčmář371313132016-07-12 22:09:27 +020011883 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011884 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11885 /*
11886 * Make sure the IRTE is in remapped mode if
11887 * we don't handle it in posted mode.
11888 */
11889 ret = irq_set_vcpu_affinity(host_irq, NULL);
11890 if (ret < 0) {
11891 printk(KERN_INFO
11892 "failed to back to remapped mode, irq: %u\n",
11893 host_irq);
11894 goto out;
11895 }
11896
Feng Wuefc64402015-09-18 22:29:51 +080011897 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011898 }
Feng Wuefc64402015-09-18 22:29:51 +080011899
11900 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11901 vcpu_info.vector = irq.vector;
11902
Feng Wub6ce9782016-01-25 16:53:35 +080011903 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011904 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11905
11906 if (set)
11907 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080011908 else
Feng Wuefc64402015-09-18 22:29:51 +080011909 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080011910
11911 if (ret < 0) {
11912 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11913 __func__);
11914 goto out;
11915 }
11916 }
11917
11918 ret = 0;
11919out:
11920 srcu_read_unlock(&kvm->irq_srcu, idx);
11921 return ret;
11922}
11923
Ashok Rajc45dcc72016-06-22 14:59:56 +080011924static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11925{
11926 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11927 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11928 FEATURE_CONTROL_LMCE;
11929 else
11930 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11931 ~FEATURE_CONTROL_LMCE;
11932}
11933
Ladi Prosek72d7b372017-10-11 16:54:41 +020011934static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
11935{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011936 /* we need a nested vmexit to enter SMM, postpone if run is pending */
11937 if (to_vmx(vcpu)->nested.nested_run_pending)
11938 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020011939 return 1;
11940}
11941
Ladi Prosek0234bf82017-10-11 16:54:40 +020011942static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
11943{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011944 struct vcpu_vmx *vmx = to_vmx(vcpu);
11945
11946 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
11947 if (vmx->nested.smm.guest_mode)
11948 nested_vmx_vmexit(vcpu, -1, 0, 0);
11949
11950 vmx->nested.smm.vmxon = vmx->nested.vmxon;
11951 vmx->nested.vmxon = false;
Ladi Prosek0234bf82017-10-11 16:54:40 +020011952 return 0;
11953}
11954
11955static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
11956{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011957 struct vcpu_vmx *vmx = to_vmx(vcpu);
11958 int ret;
11959
11960 if (vmx->nested.smm.vmxon) {
11961 vmx->nested.vmxon = true;
11962 vmx->nested.smm.vmxon = false;
11963 }
11964
11965 if (vmx->nested.smm.guest_mode) {
11966 vcpu->arch.hflags &= ~HF_SMM_MASK;
11967 ret = enter_vmx_non_root_mode(vcpu, false);
11968 vcpu->arch.hflags |= HF_SMM_MASK;
11969 if (ret)
11970 return ret;
11971
11972 vmx->nested.smm.guest_mode = false;
11973 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020011974 return 0;
11975}
11976
Ladi Prosekcc3d9672017-10-17 16:02:39 +020011977static int enable_smi_window(struct kvm_vcpu *vcpu)
11978{
11979 return 0;
11980}
11981
Kees Cook404f6aa2016-08-08 16:29:06 -070011982static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011983 .cpu_has_kvm_support = cpu_has_kvm_support,
11984 .disabled_by_bios = vmx_disabled_by_bios,
11985 .hardware_setup = hardware_setup,
11986 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011987 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011988 .hardware_enable = hardware_enable,
11989 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011990 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011991 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011992
11993 .vcpu_create = vmx_create_vcpu,
11994 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011995 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011996
Avi Kivity04d2cc72007-09-10 18:10:54 +030011997 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011998 .vcpu_load = vmx_vcpu_load,
11999 .vcpu_put = vmx_vcpu_put,
12000
Paolo Bonzinia96036b2015-11-10 11:55:36 +010012001 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012002 .get_msr = vmx_get_msr,
12003 .set_msr = vmx_set_msr,
12004 .get_segment_base = vmx_get_segment_base,
12005 .get_segment = vmx_get_segment,
12006 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020012007 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012008 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020012009 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020012010 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030012011 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012012 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012013 .set_cr3 = vmx_set_cr3,
12014 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012015 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012016 .get_idt = vmx_get_idt,
12017 .set_idt = vmx_set_idt,
12018 .get_gdt = vmx_get_gdt,
12019 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010012020 .get_dr6 = vmx_get_dr6,
12021 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030012022 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010012023 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030012024 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012025 .get_rflags = vmx_get_rflags,
12026 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080012027
Avi Kivity6aa8b732006-12-10 02:21:36 -080012028 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012029
Avi Kivity6aa8b732006-12-10 02:21:36 -080012030 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020012031 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012032 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040012033 .set_interrupt_shadow = vmx_set_interrupt_shadow,
12034 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020012035 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030012036 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012037 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020012038 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030012039 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020012040 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012041 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010012042 .get_nmi_mask = vmx_get_nmi_mask,
12043 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012044 .enable_nmi_window = enable_nmi_window,
12045 .enable_irq_window = enable_irq_window,
12046 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080012047 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080012048 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030012049 .get_enable_apicv = vmx_get_enable_apicv,
12050 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012051 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010012052 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012053 .hwapic_irr_update = vmx_hwapic_irr_update,
12054 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080012055 .sync_pir_to_irr = vmx_sync_pir_to_irr,
12056 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012057
Izik Eiduscbc94022007-10-25 00:29:55 +020012058 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080012059 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080012060 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012061
Avi Kivity586f9602010-11-18 13:09:54 +020012062 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020012063
Sheng Yang17cc3932010-01-05 19:02:27 +080012064 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080012065
12066 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080012067
12068 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000012069 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020012070
12071 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080012072
12073 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012074
12075 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020012076
12077 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012078
12079 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080012080 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000012081 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080012082 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012083
12084 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012085
12086 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080012087
12088 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
12089 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
12090 .flush_log_dirty = vmx_flush_log_dirty,
12091 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040012092 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020012093
Feng Wubf9f6ac2015-09-18 22:29:55 +080012094 .pre_block = vmx_pre_block,
12095 .post_block = vmx_post_block,
12096
Wei Huang25462f7f2015-06-19 15:45:05 +020012097 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080012098
12099 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070012100
12101#ifdef CONFIG_X86_64
12102 .set_hv_timer = vmx_set_hv_timer,
12103 .cancel_hv_timer = vmx_cancel_hv_timer,
12104#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080012105
12106 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012107
Ladi Prosek72d7b372017-10-11 16:54:41 +020012108 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012109 .pre_enter_smm = vmx_pre_enter_smm,
12110 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020012111 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012112};
12113
12114static int __init vmx_init(void)
12115{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012116 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
12117 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030012118 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012119 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080012120
Dave Young2965faa2015-09-09 15:38:55 -070012121#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012122 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
12123 crash_vmclear_local_loaded_vmcss);
12124#endif
12125
He, Qingfdef3ad2007-04-30 09:45:24 +030012126 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080012127}
12128
12129static void __exit vmx_exit(void)
12130{
Dave Young2965faa2015-09-09 15:38:55 -070012131#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053012132 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012133 synchronize_rcu();
12134#endif
12135
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080012136 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080012137}
12138
12139module_init(vmx_init)
12140module_exit(vmx_exit)