blob: 7fffdd4446cf477bb6af80062cc80d03382edbd0 [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;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300489};
490
Yang Zhang01e439b2013-04-11 19:25:12 +0800491#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800492#define POSTED_INTR_SN 1
493
Yang Zhang01e439b2013-04-11 19:25:12 +0800494/* Posted-Interrupt Descriptor */
495struct pi_desc {
496 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800497 union {
498 struct {
499 /* bit 256 - Outstanding Notification */
500 u16 on : 1,
501 /* bit 257 - Suppress Notification */
502 sn : 1,
503 /* bit 271:258 - Reserved */
504 rsvd_1 : 14;
505 /* bit 279:272 - Notification Vector */
506 u8 nv;
507 /* bit 287:280 - Reserved */
508 u8 rsvd_2;
509 /* bit 319:288 - Notification Destination */
510 u32 ndst;
511 };
512 u64 control;
513 };
514 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800515} __aligned(64);
516
Yang Zhanga20ed542013-04-11 19:25:15 +0800517static bool pi_test_and_set_on(struct pi_desc *pi_desc)
518{
519 return test_and_set_bit(POSTED_INTR_ON,
520 (unsigned long *)&pi_desc->control);
521}
522
523static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
524{
525 return test_and_clear_bit(POSTED_INTR_ON,
526 (unsigned long *)&pi_desc->control);
527}
528
529static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
530{
531 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
532}
533
Feng Wuebbfc762015-09-18 22:29:46 +0800534static inline void pi_clear_sn(struct pi_desc *pi_desc)
535{
536 return clear_bit(POSTED_INTR_SN,
537 (unsigned long *)&pi_desc->control);
538}
539
540static inline void pi_set_sn(struct pi_desc *pi_desc)
541{
542 return set_bit(POSTED_INTR_SN,
543 (unsigned long *)&pi_desc->control);
544}
545
Paolo Bonziniad361092016-09-20 16:15:05 +0200546static inline void pi_clear_on(struct pi_desc *pi_desc)
547{
548 clear_bit(POSTED_INTR_ON,
549 (unsigned long *)&pi_desc->control);
550}
551
Feng Wuebbfc762015-09-18 22:29:46 +0800552static inline int pi_test_on(struct pi_desc *pi_desc)
553{
554 return test_bit(POSTED_INTR_ON,
555 (unsigned long *)&pi_desc->control);
556}
557
558static inline int pi_test_sn(struct pi_desc *pi_desc)
559{
560 return test_bit(POSTED_INTR_SN,
561 (unsigned long *)&pi_desc->control);
562}
563
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400564struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000565 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300566 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300567 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300568 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200569 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200570 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300571 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400572 int nmsrs;
573 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800574 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400575#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300576 u64 msr_host_kernel_gs_base;
577 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400578#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200579 u32 vm_entry_controls_shadow;
580 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200581 u32 secondary_exec_control;
582
Nadav Har'Eld462b812011-05-24 15:26:10 +0300583 /*
584 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
585 * non-nested (L1) guest, it always points to vmcs01. For a nested
586 * guest (L2), it points to a different VMCS.
587 */
588 struct loaded_vmcs vmcs01;
589 struct loaded_vmcs *loaded_vmcs;
590 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300591 struct msr_autoload {
592 unsigned nr;
593 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
594 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
595 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400596 struct {
597 int loaded;
598 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300599#ifdef CONFIG_X86_64
600 u16 ds_sel, es_sel;
601#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200602 int gs_ldt_reload_needed;
603 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000604 u64 msr_host_bndcfgs;
Mike Dayd77c26f2007-10-08 09:02:08 -0400605 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200606 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300607 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300608 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300609 struct kvm_segment segs[8];
610 } rmode;
611 struct {
612 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300613 struct kvm_save_segment {
614 u16 selector;
615 unsigned long base;
616 u32 limit;
617 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300618 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300619 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800620 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300621 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200622
Andi Kleena0861c02009-06-08 17:37:09 +0800623 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800624
Yang Zhang01e439b2013-04-11 19:25:12 +0800625 /* Posted interrupt descriptor */
626 struct pi_desc pi_desc;
627
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300628 /* Support for a guest hypervisor (nested VMX) */
629 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200630
631 /* Dynamic PLE window. */
632 int ple_window;
633 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800634
635 /* Support for PML */
636#define PML_ENTITY_NUM 512
637 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800638
Yunhong Jiang64672c92016-06-13 14:19:59 -0700639 /* apic deadline value in host tsc */
640 u64 hv_deadline_tsc;
641
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800642 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800643
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800644 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800645
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800646 /*
647 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
648 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
649 * in msr_ia32_feature_control_valid_bits.
650 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800651 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800652 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400653};
654
Avi Kivity2fb92db2011-04-27 19:42:18 +0300655enum segment_cache_field {
656 SEG_FIELD_SEL = 0,
657 SEG_FIELD_BASE = 1,
658 SEG_FIELD_LIMIT = 2,
659 SEG_FIELD_AR = 3,
660
661 SEG_FIELD_NR = 4
662};
663
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400664static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
665{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000666 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400667}
668
Feng Wuefc64402015-09-18 22:29:51 +0800669static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
670{
671 return &(to_vmx(vcpu)->pi_desc);
672}
673
Nadav Har'El22bd0352011-05-25 23:05:57 +0300674#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
675#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
676#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
677 [number##_HIGH] = VMCS12_OFFSET(name)+4
678
Abel Gordon4607c2d2013-04-18 14:35:55 +0300679
Bandan Dasfe2b2012014-04-21 15:20:14 -0400680static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300681 /*
682 * We do NOT shadow fields that are modified when L0
683 * traps and emulates any vmx instruction (e.g. VMPTRLD,
684 * VMXON...) executed by L1.
685 * For example, VM_INSTRUCTION_ERROR is read
686 * by L1 if a vmx instruction fails (part of the error path).
687 * Note the code assumes this logic. If for some reason
688 * we start shadowing these fields then we need to
689 * force a shadow sync when L0 emulates vmx instructions
690 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
691 * by nested_vmx_failValid)
692 */
693 VM_EXIT_REASON,
694 VM_EXIT_INTR_INFO,
695 VM_EXIT_INSTRUCTION_LEN,
696 IDT_VECTORING_INFO_FIELD,
697 IDT_VECTORING_ERROR_CODE,
698 VM_EXIT_INTR_ERROR_CODE,
699 EXIT_QUALIFICATION,
700 GUEST_LINEAR_ADDRESS,
701 GUEST_PHYSICAL_ADDRESS
702};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400703static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300704 ARRAY_SIZE(shadow_read_only_fields);
705
Bandan Dasfe2b2012014-04-21 15:20:14 -0400706static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800707 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300708 GUEST_RIP,
709 GUEST_RSP,
710 GUEST_CR0,
711 GUEST_CR3,
712 GUEST_CR4,
713 GUEST_INTERRUPTIBILITY_INFO,
714 GUEST_RFLAGS,
715 GUEST_CS_SELECTOR,
716 GUEST_CS_AR_BYTES,
717 GUEST_CS_LIMIT,
718 GUEST_CS_BASE,
719 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100720 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300721 CR0_GUEST_HOST_MASK,
722 CR0_READ_SHADOW,
723 CR4_READ_SHADOW,
724 TSC_OFFSET,
725 EXCEPTION_BITMAP,
726 CPU_BASED_VM_EXEC_CONTROL,
727 VM_ENTRY_EXCEPTION_ERROR_CODE,
728 VM_ENTRY_INTR_INFO_FIELD,
729 VM_ENTRY_INSTRUCTION_LEN,
730 VM_ENTRY_EXCEPTION_ERROR_CODE,
731 HOST_FS_BASE,
732 HOST_GS_BASE,
733 HOST_FS_SELECTOR,
734 HOST_GS_SELECTOR
735};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400736static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300737 ARRAY_SIZE(shadow_read_write_fields);
738
Mathias Krause772e0312012-08-30 01:30:19 +0200739static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300740 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800741 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300742 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
743 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
744 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
745 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
746 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
747 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
748 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
749 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800750 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400751 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300752 FIELD(HOST_ES_SELECTOR, host_es_selector),
753 FIELD(HOST_CS_SELECTOR, host_cs_selector),
754 FIELD(HOST_SS_SELECTOR, host_ss_selector),
755 FIELD(HOST_DS_SELECTOR, host_ds_selector),
756 FIELD(HOST_FS_SELECTOR, host_fs_selector),
757 FIELD(HOST_GS_SELECTOR, host_gs_selector),
758 FIELD(HOST_TR_SELECTOR, host_tr_selector),
759 FIELD64(IO_BITMAP_A, io_bitmap_a),
760 FIELD64(IO_BITMAP_B, io_bitmap_b),
761 FIELD64(MSR_BITMAP, msr_bitmap),
762 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
763 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
764 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
765 FIELD64(TSC_OFFSET, tsc_offset),
766 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
767 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800768 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400769 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300770 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800771 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
772 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
773 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
774 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400775 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800776 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300777 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
778 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400779 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300780 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
781 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
782 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
783 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
784 FIELD64(GUEST_PDPTR0, guest_pdptr0),
785 FIELD64(GUEST_PDPTR1, guest_pdptr1),
786 FIELD64(GUEST_PDPTR2, guest_pdptr2),
787 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100788 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300789 FIELD64(HOST_IA32_PAT, host_ia32_pat),
790 FIELD64(HOST_IA32_EFER, host_ia32_efer),
791 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
792 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
793 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
794 FIELD(EXCEPTION_BITMAP, exception_bitmap),
795 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
796 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
797 FIELD(CR3_TARGET_COUNT, cr3_target_count),
798 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
799 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
800 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
801 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
802 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
803 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
804 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
805 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
806 FIELD(TPR_THRESHOLD, tpr_threshold),
807 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
808 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
809 FIELD(VM_EXIT_REASON, vm_exit_reason),
810 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
811 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
812 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
813 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
814 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
815 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
816 FIELD(GUEST_ES_LIMIT, guest_es_limit),
817 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
818 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
819 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
820 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
821 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
822 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
823 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
824 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
825 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
826 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
827 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
828 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
829 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
830 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
831 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
832 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
833 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
834 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
835 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
836 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
837 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100838 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300839 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
840 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
841 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
842 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
843 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
844 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
845 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
846 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
847 FIELD(EXIT_QUALIFICATION, exit_qualification),
848 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
849 FIELD(GUEST_CR0, guest_cr0),
850 FIELD(GUEST_CR3, guest_cr3),
851 FIELD(GUEST_CR4, guest_cr4),
852 FIELD(GUEST_ES_BASE, guest_es_base),
853 FIELD(GUEST_CS_BASE, guest_cs_base),
854 FIELD(GUEST_SS_BASE, guest_ss_base),
855 FIELD(GUEST_DS_BASE, guest_ds_base),
856 FIELD(GUEST_FS_BASE, guest_fs_base),
857 FIELD(GUEST_GS_BASE, guest_gs_base),
858 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
859 FIELD(GUEST_TR_BASE, guest_tr_base),
860 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
861 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
862 FIELD(GUEST_DR7, guest_dr7),
863 FIELD(GUEST_RSP, guest_rsp),
864 FIELD(GUEST_RIP, guest_rip),
865 FIELD(GUEST_RFLAGS, guest_rflags),
866 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
867 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
868 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
869 FIELD(HOST_CR0, host_cr0),
870 FIELD(HOST_CR3, host_cr3),
871 FIELD(HOST_CR4, host_cr4),
872 FIELD(HOST_FS_BASE, host_fs_base),
873 FIELD(HOST_GS_BASE, host_gs_base),
874 FIELD(HOST_TR_BASE, host_tr_base),
875 FIELD(HOST_GDTR_BASE, host_gdtr_base),
876 FIELD(HOST_IDTR_BASE, host_idtr_base),
877 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
878 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
879 FIELD(HOST_RSP, host_rsp),
880 FIELD(HOST_RIP, host_rip),
881};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300882
883static inline short vmcs_field_to_offset(unsigned long field)
884{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100885 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
886
887 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
888 vmcs_field_to_offset_table[field] == 0)
889 return -ENOENT;
890
Nadav Har'El22bd0352011-05-25 23:05:57 +0300891 return vmcs_field_to_offset_table[field];
892}
893
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300894static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
895{
David Matlack4f2777b2016-07-13 17:16:37 -0700896 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300897}
898
Peter Feiner995f00a2017-06-30 17:26:32 -0700899static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300900static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700901static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800902static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200903static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300904static void vmx_set_segment(struct kvm_vcpu *vcpu,
905 struct kvm_segment *var, int seg);
906static void vmx_get_segment(struct kvm_vcpu *vcpu,
907 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200908static bool guest_state_valid(struct kvm_vcpu *vcpu);
909static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300910static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300911static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800912static int alloc_identity_pagetable(struct kvm *kvm);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200913static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
914static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
915static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
916 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300917
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918static DEFINE_PER_CPU(struct vmcs *, vmxarea);
919static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300920/*
921 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
922 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
923 */
924static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925
Feng Wubf9f6ac2015-09-18 22:29:55 +0800926/*
927 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
928 * can find which vCPU should be waken up.
929 */
930static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
931static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
932
Radim Krčmář23611332016-09-29 22:41:33 +0200933enum {
934 VMX_IO_BITMAP_A,
935 VMX_IO_BITMAP_B,
936 VMX_MSR_BITMAP_LEGACY,
937 VMX_MSR_BITMAP_LONGMODE,
938 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
939 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
940 VMX_MSR_BITMAP_LEGACY_X2APIC,
941 VMX_MSR_BITMAP_LONGMODE_X2APIC,
942 VMX_VMREAD_BITMAP,
943 VMX_VMWRITE_BITMAP,
944 VMX_BITMAP_NR
945};
946
947static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
948
949#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
950#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
951#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
952#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
953#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
954#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
955#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
956#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
957#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
958#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300959
Avi Kivity110312c2010-12-21 12:54:20 +0200960static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200961static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200962
Sheng Yang2384d2b2008-01-17 15:14:33 +0800963static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
964static DEFINE_SPINLOCK(vmx_vpid_lock);
965
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300966static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967 int size;
968 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300969 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300971 u32 pin_based_exec_ctrl;
972 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800973 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300974 u32 vmexit_ctrl;
975 u32 vmentry_ctrl;
976} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977
Hannes Ederefff9e52008-11-28 17:02:06 +0100978static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800979 u32 ept;
980 u32 vpid;
981} vmx_capability;
982
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983#define VMX_SEGMENT_FIELD(seg) \
984 [VCPU_SREG_##seg] = { \
985 .selector = GUEST_##seg##_SELECTOR, \
986 .base = GUEST_##seg##_BASE, \
987 .limit = GUEST_##seg##_LIMIT, \
988 .ar_bytes = GUEST_##seg##_AR_BYTES, \
989 }
990
Mathias Krause772e0312012-08-30 01:30:19 +0200991static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 unsigned selector;
993 unsigned base;
994 unsigned limit;
995 unsigned ar_bytes;
996} kvm_vmx_segment_fields[] = {
997 VMX_SEGMENT_FIELD(CS),
998 VMX_SEGMENT_FIELD(DS),
999 VMX_SEGMENT_FIELD(ES),
1000 VMX_SEGMENT_FIELD(FS),
1001 VMX_SEGMENT_FIELD(GS),
1002 VMX_SEGMENT_FIELD(SS),
1003 VMX_SEGMENT_FIELD(TR),
1004 VMX_SEGMENT_FIELD(LDTR),
1005};
1006
Avi Kivity26bb0982009-09-07 11:14:12 +03001007static u64 host_efer;
1008
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001009static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1010
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001011/*
Brian Gerst8c065852010-07-17 09:03:26 -04001012 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001013 * away by decrementing the array size.
1014 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001016#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001017 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001019 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021
Jan Kiszka5bb16012016-02-09 20:14:21 +01001022static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
1024 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1025 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001026 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1027}
1028
Jan Kiszka6f054852016-02-09 20:15:18 +01001029static inline bool is_debug(u32 intr_info)
1030{
1031 return is_exception_n(intr_info, DB_VECTOR);
1032}
1033
1034static inline bool is_breakpoint(u32 intr_info)
1035{
1036 return is_exception_n(intr_info, BP_VECTOR);
1037}
1038
Jan Kiszka5bb16012016-02-09 20:14:21 +01001039static inline bool is_page_fault(u32 intr_info)
1040{
1041 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042}
1043
Gui Jianfeng31299942010-03-15 17:29:09 +08001044static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001045{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001046 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001047}
1048
Gui Jianfeng31299942010-03-15 17:29:09 +08001049static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001050{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001051 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001052}
1053
Gui Jianfeng31299942010-03-15 17:29:09 +08001054static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055{
1056 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1057 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1058}
1059
Gui Jianfeng31299942010-03-15 17:29:09 +08001060static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001061{
1062 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1063 INTR_INFO_VALID_MASK)) ==
1064 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1065}
1066
Gui Jianfeng31299942010-03-15 17:29:09 +08001067static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001068{
Sheng Yang04547152009-04-01 15:52:31 +08001069 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001070}
1071
Gui Jianfeng31299942010-03-15 17:29:09 +08001072static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001073{
Sheng Yang04547152009-04-01 15:52:31 +08001074 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001075}
1076
Paolo Bonzini35754c92015-07-29 12:05:37 +02001077static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001078{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001079 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080}
1081
Gui Jianfeng31299942010-03-15 17:29:09 +08001082static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001083{
Sheng Yang04547152009-04-01 15:52:31 +08001084 return vmcs_config.cpu_based_exec_ctrl &
1085 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001086}
1087
Avi Kivity774ead32007-12-26 13:57:04 +02001088static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001089{
Sheng Yang04547152009-04-01 15:52:31 +08001090 return vmcs_config.cpu_based_2nd_exec_ctrl &
1091 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1092}
1093
Yang Zhang8d146952013-01-25 10:18:50 +08001094static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1095{
1096 return vmcs_config.cpu_based_2nd_exec_ctrl &
1097 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1098}
1099
Yang Zhang83d4c282013-01-25 10:18:49 +08001100static inline bool cpu_has_vmx_apic_register_virt(void)
1101{
1102 return vmcs_config.cpu_based_2nd_exec_ctrl &
1103 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1104}
1105
Yang Zhangc7c9c562013-01-25 10:18:51 +08001106static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1107{
1108 return vmcs_config.cpu_based_2nd_exec_ctrl &
1109 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1110}
1111
Yunhong Jiang64672c92016-06-13 14:19:59 -07001112/*
1113 * Comment's format: document - errata name - stepping - processor name.
1114 * Refer from
1115 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1116 */
1117static u32 vmx_preemption_cpu_tfms[] = {
1118/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11190x000206E6,
1120/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1121/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1122/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11230x00020652,
1124/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11250x00020655,
1126/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1127/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1128/*
1129 * 320767.pdf - AAP86 - B1 -
1130 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1131 */
11320x000106E5,
1133/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11340x000106A0,
1135/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11360x000106A1,
1137/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11380x000106A4,
1139 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1140 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1141 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11420x000106A5,
1143};
1144
1145static inline bool cpu_has_broken_vmx_preemption_timer(void)
1146{
1147 u32 eax = cpuid_eax(0x00000001), i;
1148
1149 /* Clear the reserved bits */
1150 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001151 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001152 if (eax == vmx_preemption_cpu_tfms[i])
1153 return true;
1154
1155 return false;
1156}
1157
1158static inline bool cpu_has_vmx_preemption_timer(void)
1159{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001160 return vmcs_config.pin_based_exec_ctrl &
1161 PIN_BASED_VMX_PREEMPTION_TIMER;
1162}
1163
Yang Zhang01e439b2013-04-11 19:25:12 +08001164static inline bool cpu_has_vmx_posted_intr(void)
1165{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001166 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1167 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001168}
1169
1170static inline bool cpu_has_vmx_apicv(void)
1171{
1172 return cpu_has_vmx_apic_register_virt() &&
1173 cpu_has_vmx_virtual_intr_delivery() &&
1174 cpu_has_vmx_posted_intr();
1175}
1176
Sheng Yang04547152009-04-01 15:52:31 +08001177static inline bool cpu_has_vmx_flexpriority(void)
1178{
1179 return cpu_has_vmx_tpr_shadow() &&
1180 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001181}
1182
Marcelo Tosattie7997942009-06-11 12:07:40 -03001183static inline bool cpu_has_vmx_ept_execute_only(void)
1184{
Gui Jianfeng31299942010-03-15 17:29:09 +08001185 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001186}
1187
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188static inline bool cpu_has_vmx_ept_2m_page(void)
1189{
Gui Jianfeng31299942010-03-15 17:29:09 +08001190 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001191}
1192
Sheng Yang878403b2010-01-05 19:02:29 +08001193static inline bool cpu_has_vmx_ept_1g_page(void)
1194{
Gui Jianfeng31299942010-03-15 17:29:09 +08001195 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001196}
1197
Sheng Yang4bc9b982010-06-02 14:05:24 +08001198static inline bool cpu_has_vmx_ept_4levels(void)
1199{
1200 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1201}
1202
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001203static inline bool cpu_has_vmx_ept_mt_wb(void)
1204{
1205 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1206}
1207
Yu Zhang855feb62017-08-24 20:27:55 +08001208static inline bool cpu_has_vmx_ept_5levels(void)
1209{
1210 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1211}
1212
Xudong Hao83c3a332012-05-28 19:33:35 +08001213static inline bool cpu_has_vmx_ept_ad_bits(void)
1214{
1215 return vmx_capability.ept & VMX_EPT_AD_BIT;
1216}
1217
Gui Jianfeng31299942010-03-15 17:29:09 +08001218static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001219{
Gui Jianfeng31299942010-03-15 17:29:09 +08001220 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001221}
1222
Gui Jianfeng31299942010-03-15 17:29:09 +08001223static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001224{
Gui Jianfeng31299942010-03-15 17:29:09 +08001225 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001226}
1227
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001228static inline bool cpu_has_vmx_invvpid_single(void)
1229{
1230 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1231}
1232
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001233static inline bool cpu_has_vmx_invvpid_global(void)
1234{
1235 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1236}
1237
Wanpeng Li08d839c2017-03-23 05:30:08 -07001238static inline bool cpu_has_vmx_invvpid(void)
1239{
1240 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1241}
1242
Gui Jianfeng31299942010-03-15 17:29:09 +08001243static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001244{
Sheng Yang04547152009-04-01 15:52:31 +08001245 return vmcs_config.cpu_based_2nd_exec_ctrl &
1246 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001247}
1248
Gui Jianfeng31299942010-03-15 17:29:09 +08001249static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001250{
1251 return vmcs_config.cpu_based_2nd_exec_ctrl &
1252 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1253}
1254
Gui Jianfeng31299942010-03-15 17:29:09 +08001255static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001256{
1257 return vmcs_config.cpu_based_2nd_exec_ctrl &
1258 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1259}
1260
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001261static inline bool cpu_has_vmx_basic_inout(void)
1262{
1263 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1264}
1265
Paolo Bonzini35754c92015-07-29 12:05:37 +02001266static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001267{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001268 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001269}
1270
Gui Jianfeng31299942010-03-15 17:29:09 +08001271static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001272{
Sheng Yang04547152009-04-01 15:52:31 +08001273 return vmcs_config.cpu_based_2nd_exec_ctrl &
1274 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001275}
1276
Gui Jianfeng31299942010-03-15 17:29:09 +08001277static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001278{
1279 return vmcs_config.cpu_based_2nd_exec_ctrl &
1280 SECONDARY_EXEC_RDTSCP;
1281}
1282
Mao, Junjiead756a12012-07-02 01:18:48 +00001283static inline bool cpu_has_vmx_invpcid(void)
1284{
1285 return vmcs_config.cpu_based_2nd_exec_ctrl &
1286 SECONDARY_EXEC_ENABLE_INVPCID;
1287}
1288
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001289static inline bool cpu_has_vmx_wbinvd_exit(void)
1290{
1291 return vmcs_config.cpu_based_2nd_exec_ctrl &
1292 SECONDARY_EXEC_WBINVD_EXITING;
1293}
1294
Abel Gordonabc4fc52013-04-18 14:35:25 +03001295static inline bool cpu_has_vmx_shadow_vmcs(void)
1296{
1297 u64 vmx_msr;
1298 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1299 /* check if the cpu supports writing r/o exit information fields */
1300 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1301 return false;
1302
1303 return vmcs_config.cpu_based_2nd_exec_ctrl &
1304 SECONDARY_EXEC_SHADOW_VMCS;
1305}
1306
Kai Huang843e4332015-01-28 10:54:28 +08001307static inline bool cpu_has_vmx_pml(void)
1308{
1309 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1310}
1311
Haozhong Zhang64903d62015-10-20 15:39:09 +08001312static inline bool cpu_has_vmx_tsc_scaling(void)
1313{
1314 return vmcs_config.cpu_based_2nd_exec_ctrl &
1315 SECONDARY_EXEC_TSC_SCALING;
1316}
1317
Bandan Das2a499e42017-08-03 15:54:41 -04001318static inline bool cpu_has_vmx_vmfunc(void)
1319{
1320 return vmcs_config.cpu_based_2nd_exec_ctrl &
1321 SECONDARY_EXEC_ENABLE_VMFUNC;
1322}
1323
Sheng Yang04547152009-04-01 15:52:31 +08001324static inline bool report_flexpriority(void)
1325{
1326 return flexpriority_enabled;
1327}
1328
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001329static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1330{
1331 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1332}
1333
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001334static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1335{
1336 return vmcs12->cpu_based_vm_exec_control & bit;
1337}
1338
1339static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1340{
1341 return (vmcs12->cpu_based_vm_exec_control &
1342 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1343 (vmcs12->secondary_vm_exec_control & bit);
1344}
1345
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001346static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001347{
1348 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1349}
1350
Jan Kiszkaf4124502014-03-07 20:03:13 +01001351static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1352{
1353 return vmcs12->pin_based_vm_exec_control &
1354 PIN_BASED_VMX_PREEMPTION_TIMER;
1355}
1356
Nadav Har'El155a97a2013-08-05 11:07:16 +03001357static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1358{
1359 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1360}
1361
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001362static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1363{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001364 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001365}
1366
Bandan Dasc5f983f2017-05-05 15:25:14 -04001367static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1368{
1369 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1370}
1371
Wincy Vanf2b93282015-02-03 23:56:03 +08001372static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1373{
1374 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1375}
1376
Wanpeng Li5c614b32015-10-13 09:18:36 -07001377static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1378{
1379 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1380}
1381
Wincy Van82f0dd42015-02-03 23:57:18 +08001382static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1383{
1384 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1385}
1386
Wincy Van608406e2015-02-03 23:57:51 +08001387static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1388{
1389 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1390}
1391
Wincy Van705699a2015-02-03 23:58:17 +08001392static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1393{
1394 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1395}
1396
Bandan Das27c42a12017-08-03 15:54:42 -04001397static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1398{
1399 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1400}
1401
Bandan Das41ab9372017-08-03 15:54:43 -04001402static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1403{
1404 return nested_cpu_has_vmfunc(vmcs12) &&
1405 (vmcs12->vm_function_control &
1406 VMX_VMFUNC_EPTP_SWITCHING);
1407}
1408
Jim Mattsonef85b672016-12-12 11:01:37 -08001409static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001410{
1411 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001412 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001413}
1414
Jan Kiszka533558b2014-01-04 18:47:20 +01001415static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1416 u32 exit_intr_info,
1417 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001418static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1419 struct vmcs12 *vmcs12,
1420 u32 reason, unsigned long qualification);
1421
Rusty Russell8b9cf982007-07-30 16:31:43 +10001422static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001423{
1424 int i;
1425
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001426 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001427 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001428 return i;
1429 return -1;
1430}
1431
Sheng Yang2384d2b2008-01-17 15:14:33 +08001432static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1433{
1434 struct {
1435 u64 vpid : 16;
1436 u64 rsvd : 48;
1437 u64 gva;
1438 } operand = { vpid, 0, gva };
1439
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001440 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001441 /* CF==1 or ZF==1 --> rc = -1 */
1442 "; ja 1f ; ud2 ; 1:"
1443 : : "a"(&operand), "c"(ext) : "cc", "memory");
1444}
1445
Sheng Yang14394422008-04-28 12:24:45 +08001446static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1447{
1448 struct {
1449 u64 eptp, gpa;
1450 } operand = {eptp, gpa};
1451
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001452 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001453 /* CF==1 or ZF==1 --> rc = -1 */
1454 "; ja 1f ; ud2 ; 1:\n"
1455 : : "a" (&operand), "c" (ext) : "cc", "memory");
1456}
1457
Avi Kivity26bb0982009-09-07 11:14:12 +03001458static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001459{
1460 int i;
1461
Rusty Russell8b9cf982007-07-30 16:31:43 +10001462 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001463 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001464 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001465 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001466}
1467
Avi Kivity6aa8b732006-12-10 02:21:36 -08001468static void vmcs_clear(struct vmcs *vmcs)
1469{
1470 u64 phys_addr = __pa(vmcs);
1471 u8 error;
1472
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001473 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001474 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475 : "cc", "memory");
1476 if (error)
1477 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1478 vmcs, phys_addr);
1479}
1480
Nadav Har'Eld462b812011-05-24 15:26:10 +03001481static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1482{
1483 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001484 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1485 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001486 loaded_vmcs->cpu = -1;
1487 loaded_vmcs->launched = 0;
1488}
1489
Dongxiao Xu7725b892010-05-11 18:29:38 +08001490static void vmcs_load(struct vmcs *vmcs)
1491{
1492 u64 phys_addr = __pa(vmcs);
1493 u8 error;
1494
1495 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001496 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001497 : "cc", "memory");
1498 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001499 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001500 vmcs, phys_addr);
1501}
1502
Dave Young2965faa2015-09-09 15:38:55 -07001503#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001504/*
1505 * This bitmap is used to indicate whether the vmclear
1506 * operation is enabled on all cpus. All disabled by
1507 * default.
1508 */
1509static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1510
1511static inline void crash_enable_local_vmclear(int cpu)
1512{
1513 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1514}
1515
1516static inline void crash_disable_local_vmclear(int cpu)
1517{
1518 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1519}
1520
1521static inline int crash_local_vmclear_enabled(int cpu)
1522{
1523 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1524}
1525
1526static void crash_vmclear_local_loaded_vmcss(void)
1527{
1528 int cpu = raw_smp_processor_id();
1529 struct loaded_vmcs *v;
1530
1531 if (!crash_local_vmclear_enabled(cpu))
1532 return;
1533
1534 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1535 loaded_vmcss_on_cpu_link)
1536 vmcs_clear(v->vmcs);
1537}
1538#else
1539static inline void crash_enable_local_vmclear(int cpu) { }
1540static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001541#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001542
Nadav Har'Eld462b812011-05-24 15:26:10 +03001543static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001544{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001545 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001546 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547
Nadav Har'Eld462b812011-05-24 15:26:10 +03001548 if (loaded_vmcs->cpu != cpu)
1549 return; /* vcpu migration can race with cpu offline */
1550 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001552 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001553 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001554
1555 /*
1556 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1557 * is before setting loaded_vmcs->vcpu to -1 which is done in
1558 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1559 * then adds the vmcs into percpu list before it is deleted.
1560 */
1561 smp_wmb();
1562
Nadav Har'Eld462b812011-05-24 15:26:10 +03001563 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001564 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565}
1566
Nadav Har'Eld462b812011-05-24 15:26:10 +03001567static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001568{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001569 int cpu = loaded_vmcs->cpu;
1570
1571 if (cpu != -1)
1572 smp_call_function_single(cpu,
1573 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001574}
1575
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001576static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001577{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001578 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001579 return;
1580
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001581 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001582 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001583}
1584
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001585static inline void vpid_sync_vcpu_global(void)
1586{
1587 if (cpu_has_vmx_invvpid_global())
1588 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1589}
1590
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001591static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001592{
1593 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001594 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001595 else
1596 vpid_sync_vcpu_global();
1597}
1598
Sheng Yang14394422008-04-28 12:24:45 +08001599static inline void ept_sync_global(void)
1600{
David Hildenbrandf5f51582017-08-24 20:51:30 +02001601 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08001602}
1603
1604static inline void ept_sync_context(u64 eptp)
1605{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02001606 if (cpu_has_vmx_invept_context())
1607 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1608 else
1609 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08001610}
1611
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001612static __always_inline void vmcs_check16(unsigned long field)
1613{
1614 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1615 "16-bit accessor invalid for 64-bit field");
1616 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1617 "16-bit accessor invalid for 64-bit high field");
1618 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1619 "16-bit accessor invalid for 32-bit high field");
1620 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1621 "16-bit accessor invalid for natural width field");
1622}
1623
1624static __always_inline void vmcs_check32(unsigned long field)
1625{
1626 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1627 "32-bit accessor invalid for 16-bit field");
1628 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1629 "32-bit accessor invalid for natural width field");
1630}
1631
1632static __always_inline void vmcs_check64(unsigned long field)
1633{
1634 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1635 "64-bit accessor invalid for 16-bit field");
1636 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1637 "64-bit accessor invalid for 64-bit high field");
1638 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1639 "64-bit accessor invalid for 32-bit field");
1640 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1641 "64-bit accessor invalid for natural width field");
1642}
1643
1644static __always_inline void vmcs_checkl(unsigned long field)
1645{
1646 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1647 "Natural width accessor invalid for 16-bit field");
1648 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1649 "Natural width accessor invalid for 64-bit field");
1650 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1651 "Natural width accessor invalid for 64-bit high field");
1652 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1653 "Natural width accessor invalid for 32-bit field");
1654}
1655
1656static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001657{
Avi Kivity5e520e62011-05-15 10:13:12 -04001658 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001659
Avi Kivity5e520e62011-05-15 10:13:12 -04001660 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1661 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001662 return value;
1663}
1664
Avi Kivity96304212011-05-15 10:13:13 -04001665static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001666{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001667 vmcs_check16(field);
1668 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669}
1670
Avi Kivity96304212011-05-15 10:13:13 -04001671static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001673 vmcs_check32(field);
1674 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001675}
1676
Avi Kivity96304212011-05-15 10:13:13 -04001677static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001679 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001680#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001681 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001683 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684#endif
1685}
1686
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001687static __always_inline unsigned long vmcs_readl(unsigned long field)
1688{
1689 vmcs_checkl(field);
1690 return __vmcs_readl(field);
1691}
1692
Avi Kivitye52de1b2007-01-05 16:36:56 -08001693static noinline void vmwrite_error(unsigned long field, unsigned long value)
1694{
1695 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1696 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1697 dump_stack();
1698}
1699
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001700static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701{
1702 u8 error;
1703
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001704 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001705 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001706 if (unlikely(error))
1707 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708}
1709
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001710static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001712 vmcs_check16(field);
1713 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714}
1715
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001716static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001717{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001718 vmcs_check32(field);
1719 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001720}
1721
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001722static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001723{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001724 vmcs_check64(field);
1725 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001726#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001727 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001728 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001729#endif
1730}
1731
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001732static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001733{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001734 vmcs_checkl(field);
1735 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001736}
1737
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001738static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001739{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001740 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1741 "vmcs_clear_bits does not support 64-bit fields");
1742 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1743}
1744
1745static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1746{
1747 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1748 "vmcs_set_bits does not support 64-bit fields");
1749 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001750}
1751
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001752static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1753{
1754 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1755}
1756
Gleb Natapov2961e8762013-11-25 15:37:13 +02001757static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1758{
1759 vmcs_write32(VM_ENTRY_CONTROLS, val);
1760 vmx->vm_entry_controls_shadow = val;
1761}
1762
1763static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1764{
1765 if (vmx->vm_entry_controls_shadow != val)
1766 vm_entry_controls_init(vmx, val);
1767}
1768
1769static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1770{
1771 return vmx->vm_entry_controls_shadow;
1772}
1773
1774
1775static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1776{
1777 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1778}
1779
1780static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1781{
1782 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1783}
1784
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001785static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1786{
1787 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1788}
1789
Gleb Natapov2961e8762013-11-25 15:37:13 +02001790static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1791{
1792 vmcs_write32(VM_EXIT_CONTROLS, val);
1793 vmx->vm_exit_controls_shadow = val;
1794}
1795
1796static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1797{
1798 if (vmx->vm_exit_controls_shadow != val)
1799 vm_exit_controls_init(vmx, val);
1800}
1801
1802static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1803{
1804 return vmx->vm_exit_controls_shadow;
1805}
1806
1807
1808static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1809{
1810 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1811}
1812
1813static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1814{
1815 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1816}
1817
Avi Kivity2fb92db2011-04-27 19:42:18 +03001818static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1819{
1820 vmx->segment_cache.bitmask = 0;
1821}
1822
1823static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1824 unsigned field)
1825{
1826 bool ret;
1827 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1828
1829 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1830 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1831 vmx->segment_cache.bitmask = 0;
1832 }
1833 ret = vmx->segment_cache.bitmask & mask;
1834 vmx->segment_cache.bitmask |= mask;
1835 return ret;
1836}
1837
1838static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1839{
1840 u16 *p = &vmx->segment_cache.seg[seg].selector;
1841
1842 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1843 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1844 return *p;
1845}
1846
1847static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1848{
1849 ulong *p = &vmx->segment_cache.seg[seg].base;
1850
1851 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1852 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1853 return *p;
1854}
1855
1856static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1857{
1858 u32 *p = &vmx->segment_cache.seg[seg].limit;
1859
1860 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1861 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1862 return *p;
1863}
1864
1865static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1866{
1867 u32 *p = &vmx->segment_cache.seg[seg].ar;
1868
1869 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1870 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1871 return *p;
1872}
1873
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001874static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1875{
1876 u32 eb;
1877
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001878 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001879 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001880 if ((vcpu->guest_debug &
1881 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1882 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1883 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001884 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001885 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001886 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001887 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001888
1889 /* When we are running a nested L2 guest and L1 specified for it a
1890 * certain exception bitmap, we must trap the same exceptions and pass
1891 * them to L1. When running L2, we will only handle the exceptions
1892 * specified above if L1 did not want them.
1893 */
1894 if (is_guest_mode(vcpu))
1895 eb |= get_vmcs12(vcpu)->exception_bitmap;
1896
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001897 vmcs_write32(EXCEPTION_BITMAP, eb);
1898}
1899
Gleb Natapov2961e8762013-11-25 15:37:13 +02001900static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1901 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001902{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001903 vm_entry_controls_clearbit(vmx, entry);
1904 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001905}
1906
Avi Kivity61d2ef22010-04-28 16:40:38 +03001907static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1908{
1909 unsigned i;
1910 struct msr_autoload *m = &vmx->msr_autoload;
1911
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001912 switch (msr) {
1913 case MSR_EFER:
1914 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001915 clear_atomic_switch_msr_special(vmx,
1916 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001917 VM_EXIT_LOAD_IA32_EFER);
1918 return;
1919 }
1920 break;
1921 case MSR_CORE_PERF_GLOBAL_CTRL:
1922 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001923 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001924 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1925 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1926 return;
1927 }
1928 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001929 }
1930
Avi Kivity61d2ef22010-04-28 16:40:38 +03001931 for (i = 0; i < m->nr; ++i)
1932 if (m->guest[i].index == msr)
1933 break;
1934
1935 if (i == m->nr)
1936 return;
1937 --m->nr;
1938 m->guest[i] = m->guest[m->nr];
1939 m->host[i] = m->host[m->nr];
1940 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1941 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1942}
1943
Gleb Natapov2961e8762013-11-25 15:37:13 +02001944static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1945 unsigned long entry, unsigned long exit,
1946 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1947 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001948{
1949 vmcs_write64(guest_val_vmcs, guest_val);
1950 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001951 vm_entry_controls_setbit(vmx, entry);
1952 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001953}
1954
Avi Kivity61d2ef22010-04-28 16:40:38 +03001955static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1956 u64 guest_val, u64 host_val)
1957{
1958 unsigned i;
1959 struct msr_autoload *m = &vmx->msr_autoload;
1960
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001961 switch (msr) {
1962 case MSR_EFER:
1963 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001964 add_atomic_switch_msr_special(vmx,
1965 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001966 VM_EXIT_LOAD_IA32_EFER,
1967 GUEST_IA32_EFER,
1968 HOST_IA32_EFER,
1969 guest_val, host_val);
1970 return;
1971 }
1972 break;
1973 case MSR_CORE_PERF_GLOBAL_CTRL:
1974 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001975 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001976 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1977 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1978 GUEST_IA32_PERF_GLOBAL_CTRL,
1979 HOST_IA32_PERF_GLOBAL_CTRL,
1980 guest_val, host_val);
1981 return;
1982 }
1983 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001984 case MSR_IA32_PEBS_ENABLE:
1985 /* PEBS needs a quiescent period after being disabled (to write
1986 * a record). Disabling PEBS through VMX MSR swapping doesn't
1987 * provide that period, so a CPU could write host's record into
1988 * guest's memory.
1989 */
1990 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001991 }
1992
Avi Kivity61d2ef22010-04-28 16:40:38 +03001993 for (i = 0; i < m->nr; ++i)
1994 if (m->guest[i].index == msr)
1995 break;
1996
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001997 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001998 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001999 "Can't add msr %x\n", msr);
2000 return;
2001 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002002 ++m->nr;
2003 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2004 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2005 }
2006
2007 m->guest[i].index = msr;
2008 m->guest[i].value = guest_val;
2009 m->host[i].index = msr;
2010 m->host[i].value = host_val;
2011}
2012
Avi Kivity92c0d902009-10-29 11:00:16 +02002013static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002014{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002015 u64 guest_efer = vmx->vcpu.arch.efer;
2016 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002017
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002018 if (!enable_ept) {
2019 /*
2020 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2021 * host CPUID is more efficient than testing guest CPUID
2022 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2023 */
2024 if (boot_cpu_has(X86_FEATURE_SMEP))
2025 guest_efer |= EFER_NX;
2026 else if (!(guest_efer & EFER_NX))
2027 ignore_bits |= EFER_NX;
2028 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002029
Avi Kivity51c6cf62007-08-29 03:48:05 +03002030 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002031 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002032 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002033 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002034#ifdef CONFIG_X86_64
2035 ignore_bits |= EFER_LMA | EFER_LME;
2036 /* SCE is meaningful only in long mode on Intel */
2037 if (guest_efer & EFER_LMA)
2038 ignore_bits &= ~(u64)EFER_SCE;
2039#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002040
2041 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002042
2043 /*
2044 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2045 * On CPUs that support "load IA32_EFER", always switch EFER
2046 * atomically, since it's faster than switching it manually.
2047 */
2048 if (cpu_has_load_ia32_efer ||
2049 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002050 if (!(guest_efer & EFER_LMA))
2051 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002052 if (guest_efer != host_efer)
2053 add_atomic_switch_msr(vmx, MSR_EFER,
2054 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002055 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002056 } else {
2057 guest_efer &= ~ignore_bits;
2058 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002059
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002060 vmx->guest_msrs[efer_offset].data = guest_efer;
2061 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2062
2063 return true;
2064 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002065}
2066
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002067#ifdef CONFIG_X86_32
2068/*
2069 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2070 * VMCS rather than the segment table. KVM uses this helper to figure
2071 * out the current bases to poke them into the VMCS before entry.
2072 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002073static unsigned long segment_base(u16 selector)
2074{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002075 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002076 unsigned long v;
2077
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002078 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002079 return 0;
2080
Thomas Garnier45fc8752017-03-14 10:05:08 -07002081 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002082
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002083 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002084 u16 ldt_selector = kvm_read_ldt();
2085
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002086 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002087 return 0;
2088
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002089 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002090 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002091 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002092 return v;
2093}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002094#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002095
Avi Kivity04d2cc72007-09-10 18:10:54 +03002096static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002097{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002098 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002099 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002100
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002101 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002102 return;
2103
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002104 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002105 /*
2106 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2107 * allow segment selectors with cpl > 0 or ti == 1.
2108 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002109 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002110 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002111 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002112 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002113 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002114 vmx->host_state.fs_reload_needed = 0;
2115 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002116 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002117 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002118 }
Avi Kivity9581d442010-10-19 16:46:55 +02002119 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002120 if (!(vmx->host_state.gs_sel & 7))
2121 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002122 else {
2123 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002124 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002125 }
2126
2127#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002128 savesegment(ds, vmx->host_state.ds_sel);
2129 savesegment(es, vmx->host_state.es_sel);
2130#endif
2131
2132#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002133 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2134 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2135#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002136 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2137 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002138#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002139
2140#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002141 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2142 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002143 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002144#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002145 if (boot_cpu_has(X86_FEATURE_MPX))
2146 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002147 for (i = 0; i < vmx->save_nmsrs; ++i)
2148 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002149 vmx->guest_msrs[i].data,
2150 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002151}
2152
Avi Kivitya9b21b62008-06-24 11:48:49 +03002153static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002154{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002155 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002156 return;
2157
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002158 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002159 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002160#ifdef CONFIG_X86_64
2161 if (is_long_mode(&vmx->vcpu))
2162 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2163#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002164 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002165 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002166#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002167 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002168#else
2169 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002170#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002171 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002172 if (vmx->host_state.fs_reload_needed)
2173 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002174#ifdef CONFIG_X86_64
2175 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2176 loadsegment(ds, vmx->host_state.ds_sel);
2177 loadsegment(es, vmx->host_state.es_sel);
2178 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002179#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002180 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002181#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002182 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002183#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002184 if (vmx->host_state.msr_host_bndcfgs)
2185 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002186 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002187}
2188
Avi Kivitya9b21b62008-06-24 11:48:49 +03002189static void vmx_load_host_state(struct vcpu_vmx *vmx)
2190{
2191 preempt_disable();
2192 __vmx_load_host_state(vmx);
2193 preempt_enable();
2194}
2195
Feng Wu28b835d2015-09-18 22:29:54 +08002196static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2197{
2198 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2199 struct pi_desc old, new;
2200 unsigned int dest;
2201
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002202 /*
2203 * In case of hot-plug or hot-unplug, we may have to undo
2204 * vmx_vcpu_pi_put even if there is no assigned device. And we
2205 * always keep PI.NDST up to date for simplicity: it makes the
2206 * code easier, and CPU migration is not a fast path.
2207 */
2208 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08002209 return;
2210
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002211 /*
2212 * First handle the simple case where no cmpxchg is necessary; just
2213 * allow posting non-urgent interrupts.
2214 *
2215 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
2216 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
2217 * expects the VCPU to be on the blocked_vcpu_list that matches
2218 * PI.NDST.
2219 */
2220 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
2221 vcpu->cpu == cpu) {
2222 pi_clear_sn(pi_desc);
2223 return;
2224 }
2225
2226 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08002227 do {
2228 old.control = new.control = pi_desc->control;
2229
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002230 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08002231
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002232 if (x2apic_enabled())
2233 new.ndst = dest;
2234 else
2235 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08002236
Feng Wu28b835d2015-09-18 22:29:54 +08002237 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02002238 } while (cmpxchg64(&pi_desc->control, old.control,
2239 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08002240}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002241
Peter Feinerc95ba922016-08-17 09:36:47 -07002242static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2243{
2244 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2245 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2246}
2247
Avi Kivity6aa8b732006-12-10 02:21:36 -08002248/*
2249 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2250 * vcpu mutex is already taken.
2251 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002252static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002254 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002255 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002257 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002258 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002259 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002260 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002261
2262 /*
2263 * Read loaded_vmcs->cpu should be before fetching
2264 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2265 * See the comments in __loaded_vmcs_clear().
2266 */
2267 smp_rmb();
2268
Nadav Har'Eld462b812011-05-24 15:26:10 +03002269 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2270 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002271 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002272 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002273 }
2274
2275 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2276 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2277 vmcs_load(vmx->loaded_vmcs->vmcs);
2278 }
2279
2280 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002281 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002282 unsigned long sysenter_esp;
2283
2284 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002285
Avi Kivity6aa8b732006-12-10 02:21:36 -08002286 /*
2287 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002288 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002290 vmcs_writel(HOST_TR_BASE,
2291 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002292 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002294 /*
2295 * VM exits change the host TR limit to 0x67 after a VM
2296 * exit. This is okay, since 0x67 covers everything except
2297 * the IO bitmap and have have code to handle the IO bitmap
2298 * being lost after a VM exit.
2299 */
2300 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2301
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2303 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002304
Nadav Har'Eld462b812011-05-24 15:26:10 +03002305 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 }
Feng Wu28b835d2015-09-18 22:29:54 +08002307
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002308 /* Setup TSC multiplier */
2309 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002310 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2311 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002312
Feng Wu28b835d2015-09-18 22:29:54 +08002313 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002314 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002315}
2316
2317static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2318{
2319 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2320
2321 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002322 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2323 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002324 return;
2325
2326 /* Set SN when the vCPU is preempted */
2327 if (vcpu->preempted)
2328 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329}
2330
2331static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2332{
Feng Wu28b835d2015-09-18 22:29:54 +08002333 vmx_vcpu_pi_put(vcpu);
2334
Avi Kivitya9b21b62008-06-24 11:48:49 +03002335 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336}
2337
Wanpeng Lif244dee2017-07-20 01:11:54 -07002338static bool emulation_required(struct kvm_vcpu *vcpu)
2339{
2340 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2341}
2342
Avi Kivityedcafe32009-12-30 18:07:40 +02002343static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2344
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002345/*
2346 * Return the cr0 value that a nested guest would read. This is a combination
2347 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2348 * its hypervisor (cr0_read_shadow).
2349 */
2350static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2351{
2352 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2353 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2354}
2355static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2356{
2357 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2358 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2359}
2360
Avi Kivity6aa8b732006-12-10 02:21:36 -08002361static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2362{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002363 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002364
Avi Kivity6de12732011-03-07 12:51:22 +02002365 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2366 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2367 rflags = vmcs_readl(GUEST_RFLAGS);
2368 if (to_vmx(vcpu)->rmode.vm86_active) {
2369 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2370 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2371 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2372 }
2373 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002374 }
Avi Kivity6de12732011-03-07 12:51:22 +02002375 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002376}
2377
2378static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2379{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002380 unsigned long old_rflags = vmx_get_rflags(vcpu);
2381
Avi Kivity6de12732011-03-07 12:51:22 +02002382 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2383 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002384 if (to_vmx(vcpu)->rmode.vm86_active) {
2385 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002386 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002387 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002389
2390 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2391 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392}
2393
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002394static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002395{
2396 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2397 int ret = 0;
2398
2399 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002400 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002401 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002402 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002403
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002404 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002405}
2406
2407static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2408{
2409 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2410 u32 interruptibility = interruptibility_old;
2411
2412 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2413
Jan Kiszka48005f62010-02-19 19:38:07 +01002414 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002415 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002416 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002417 interruptibility |= GUEST_INTR_STATE_STI;
2418
2419 if ((interruptibility != interruptibility_old))
2420 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2421}
2422
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2424{
2425 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002427 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002428 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002429 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002430
Glauber Costa2809f5d2009-05-12 16:21:05 -04002431 /* skipping an emulated instruction also counts */
2432 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002433}
2434
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002435static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2436 unsigned long exit_qual)
2437{
2438 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2439 unsigned int nr = vcpu->arch.exception.nr;
2440 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2441
2442 if (vcpu->arch.exception.has_error_code) {
2443 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2444 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2445 }
2446
2447 if (kvm_exception_is_soft(nr))
2448 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2449 else
2450 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2451
2452 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2453 vmx_get_nmi_mask(vcpu))
2454 intr_info |= INTR_INFO_UNBLOCK_NMI;
2455
2456 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2457}
2458
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002459/*
2460 * KVM wants to inject page-faults which it got to the guest. This function
2461 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002462 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002463static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002464{
2465 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002466 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002467
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002468 if (nr == PF_VECTOR) {
2469 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002470 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002471 return 1;
2472 }
2473 /*
2474 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2475 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2476 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2477 * can be written only when inject_pending_event runs. This should be
2478 * conditional on a new capability---if the capability is disabled,
2479 * kvm_multiple_exception would write the ancillary information to
2480 * CR2 or DR6, for backwards ABI-compatibility.
2481 */
2482 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2483 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002484 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002485 return 1;
2486 }
2487 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002488 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002489 if (nr == DB_VECTOR)
2490 *exit_qual = vcpu->arch.dr6;
2491 else
2492 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002493 return 1;
2494 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002495 }
2496
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002497 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002498}
2499
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002500static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002501{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002502 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002503 unsigned nr = vcpu->arch.exception.nr;
2504 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002505 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002506 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002507
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002508 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002509 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002510 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2511 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002512
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002513 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002514 int inc_eip = 0;
2515 if (kvm_exception_is_soft(nr))
2516 inc_eip = vcpu->arch.event_exit_inst_len;
2517 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002518 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002519 return;
2520 }
2521
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002522 if (kvm_exception_is_soft(nr)) {
2523 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2524 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002525 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2526 } else
2527 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2528
2529 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002530}
2531
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002532static bool vmx_rdtscp_supported(void)
2533{
2534 return cpu_has_vmx_rdtscp();
2535}
2536
Mao, Junjiead756a12012-07-02 01:18:48 +00002537static bool vmx_invpcid_supported(void)
2538{
2539 return cpu_has_vmx_invpcid() && enable_ept;
2540}
2541
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542/*
Eddie Donga75beee2007-05-17 18:55:15 +03002543 * Swap MSR entry in host/guest MSR entry array.
2544 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002545static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002546{
Avi Kivity26bb0982009-09-07 11:14:12 +03002547 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002548
2549 tmp = vmx->guest_msrs[to];
2550 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2551 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002552}
2553
Yang Zhang8d146952013-01-25 10:18:50 +08002554static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2555{
2556 unsigned long *msr_bitmap;
2557
Wincy Van670125b2015-03-04 14:31:56 +08002558 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002559 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002560 else if (cpu_has_secondary_exec_ctrls() &&
2561 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2562 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002563 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2564 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002565 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2566 else
2567 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2568 } else {
2569 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002570 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2571 else
2572 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002573 }
Yang Zhang8d146952013-01-25 10:18:50 +08002574 } else {
2575 if (is_long_mode(vcpu))
2576 msr_bitmap = vmx_msr_bitmap_longmode;
2577 else
2578 msr_bitmap = vmx_msr_bitmap_legacy;
2579 }
2580
2581 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2582}
2583
Eddie Donga75beee2007-05-17 18:55:15 +03002584/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002585 * Set up the vmcs to automatically save and restore system
2586 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2587 * mode, as fiddling with msrs is very expensive.
2588 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002589static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002590{
Avi Kivity26bb0982009-09-07 11:14:12 +03002591 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002592
Eddie Donga75beee2007-05-17 18:55:15 +03002593 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002594#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002595 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002596 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002597 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002598 move_msr_up(vmx, index, save_nmsrs++);
2599 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002600 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002601 move_msr_up(vmx, index, save_nmsrs++);
2602 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002603 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002604 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002605 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002606 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002607 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002608 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002609 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002610 * if efer.sce is enabled.
2611 */
Brian Gerst8c065852010-07-17 09:03:26 -04002612 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002613 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002614 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002615 }
Eddie Donga75beee2007-05-17 18:55:15 +03002616#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002617 index = __find_msr_index(vmx, MSR_EFER);
2618 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002619 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002620
Avi Kivity26bb0982009-09-07 11:14:12 +03002621 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002622
Yang Zhang8d146952013-01-25 10:18:50 +08002623 if (cpu_has_vmx_msr_bitmap())
2624 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002625}
2626
2627/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002629 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2630 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002632static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633{
2634 u64 host_tsc, tsc_offset;
2635
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002636 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002638 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639}
2640
2641/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002642 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002644static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002646 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002647 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002648 * We're here if L1 chose not to trap WRMSR to TSC. According
2649 * to the spec, this should set L1's TSC; The offset that L1
2650 * set for L2 remains unchanged, and still needs to be added
2651 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002652 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002653 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002654 /* recalculate vmcs02.TSC_OFFSET: */
2655 vmcs12 = get_vmcs12(vcpu);
2656 vmcs_write64(TSC_OFFSET, offset +
2657 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2658 vmcs12->tsc_offset : 0));
2659 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002660 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2661 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002662 vmcs_write64(TSC_OFFSET, offset);
2663 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664}
2665
Nadav Har'El801d3422011-05-25 23:02:23 +03002666/*
2667 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2668 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2669 * all guests if the "nested" module option is off, and can also be disabled
2670 * for a single guest by disabling its VMX cpuid bit.
2671 */
2672static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2673{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002674 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002675}
2676
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002678 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2679 * returned for the various VMX controls MSRs when nested VMX is enabled.
2680 * The same values should also be used to verify that vmcs12 control fields are
2681 * valid during nested entry from L1 to L2.
2682 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2683 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2684 * bit in the high half is on if the corresponding bit in the control field
2685 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002686 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002687static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002688{
2689 /*
2690 * Note that as a general rule, the high half of the MSRs (bits in
2691 * the control fields which may be 1) should be initialized by the
2692 * intersection of the underlying hardware's MSR (i.e., features which
2693 * can be supported) and the list of features we want to expose -
2694 * because they are known to be properly supported in our code.
2695 * Also, usually, the low half of the MSRs (bits which must be 1) can
2696 * be set to 0, meaning that L1 may turn off any of these bits. The
2697 * reason is that if one of these bits is necessary, it will appear
2698 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2699 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002700 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002701 * These rules have exceptions below.
2702 */
2703
2704 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002705 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002706 vmx->nested.nested_vmx_pinbased_ctls_low,
2707 vmx->nested.nested_vmx_pinbased_ctls_high);
2708 vmx->nested.nested_vmx_pinbased_ctls_low |=
2709 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2710 vmx->nested.nested_vmx_pinbased_ctls_high &=
2711 PIN_BASED_EXT_INTR_MASK |
2712 PIN_BASED_NMI_EXITING |
2713 PIN_BASED_VIRTUAL_NMIS;
2714 vmx->nested.nested_vmx_pinbased_ctls_high |=
2715 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002716 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002717 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002718 vmx->nested.nested_vmx_pinbased_ctls_high |=
2719 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002720
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002721 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002722 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002723 vmx->nested.nested_vmx_exit_ctls_low,
2724 vmx->nested.nested_vmx_exit_ctls_high);
2725 vmx->nested.nested_vmx_exit_ctls_low =
2726 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002727
Wincy Vanb9c237b2015-02-03 23:56:30 +08002728 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002729#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002730 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002731#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002732 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002733 vmx->nested.nested_vmx_exit_ctls_high |=
2734 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002735 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002736 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2737
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002738 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002739 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002740
Jan Kiszka2996fca2014-06-16 13:59:43 +02002741 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002742 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002743
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002744 /* entry controls */
2745 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002746 vmx->nested.nested_vmx_entry_ctls_low,
2747 vmx->nested.nested_vmx_entry_ctls_high);
2748 vmx->nested.nested_vmx_entry_ctls_low =
2749 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2750 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002751#ifdef CONFIG_X86_64
2752 VM_ENTRY_IA32E_MODE |
2753#endif
2754 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002755 vmx->nested.nested_vmx_entry_ctls_high |=
2756 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002757 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002759
Jan Kiszka2996fca2014-06-16 13:59:43 +02002760 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002761 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002762
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002763 /* cpu-based controls */
2764 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002765 vmx->nested.nested_vmx_procbased_ctls_low,
2766 vmx->nested.nested_vmx_procbased_ctls_high);
2767 vmx->nested.nested_vmx_procbased_ctls_low =
2768 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2769 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002770 CPU_BASED_VIRTUAL_INTR_PENDING |
2771 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002772 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2773 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2774 CPU_BASED_CR3_STORE_EXITING |
2775#ifdef CONFIG_X86_64
2776 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2777#endif
2778 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002779 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2780 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2781 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2782 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002783 /*
2784 * We can allow some features even when not supported by the
2785 * hardware. For example, L1 can specify an MSR bitmap - and we
2786 * can use it to avoid exits to L1 - even when L0 runs L2
2787 * without MSR bitmaps.
2788 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002789 vmx->nested.nested_vmx_procbased_ctls_high |=
2790 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002791 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002792
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002793 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002794 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002795 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2796
Paolo Bonzini80154d72017-08-24 13:55:35 +02002797 /*
2798 * secondary cpu-based controls. Do not include those that
2799 * depend on CPUID bits, they are added later by vmx_cpuid_update.
2800 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002801 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002802 vmx->nested.nested_vmx_secondary_ctls_low,
2803 vmx->nested.nested_vmx_secondary_ctls_high);
2804 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2805 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002806 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002807 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002808 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002809 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002810 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02002811 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002812
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002813 if (enable_ept) {
2814 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002815 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002816 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002817 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002818 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002819 if (cpu_has_vmx_ept_execute_only())
2820 vmx->nested.nested_vmx_ept_caps |=
2821 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002822 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002823 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002824 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2825 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002826 if (enable_ept_ad_bits) {
2827 vmx->nested.nested_vmx_secondary_ctls_high |=
2828 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002829 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002830 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002831 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002832 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002833
Bandan Das27c42a12017-08-03 15:54:42 -04002834 if (cpu_has_vmx_vmfunc()) {
2835 vmx->nested.nested_vmx_secondary_ctls_high |=
2836 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002837 /*
2838 * Advertise EPTP switching unconditionally
2839 * since we emulate it
2840 */
2841 vmx->nested.nested_vmx_vmfunc_controls =
2842 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002843 }
2844
Paolo Bonzinief697a72016-03-18 16:58:38 +01002845 /*
2846 * Old versions of KVM use the single-context version without
2847 * checking for support, so declare that it is supported even
2848 * though it is treated as global context. The alternative is
2849 * not failing the single-context invvpid, and it is worse.
2850 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002851 if (enable_vpid) {
2852 vmx->nested.nested_vmx_secondary_ctls_high |=
2853 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002854 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002855 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002856 } else
Wanpeng Li089d7b62015-10-13 09:18:37 -07002857 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002858
Radim Krčmář0790ec12015-03-17 14:02:32 +01002859 if (enable_unrestricted_guest)
2860 vmx->nested.nested_vmx_secondary_ctls_high |=
2861 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2862
Jan Kiszkac18911a2013-03-13 16:06:41 +01002863 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002864 rdmsr(MSR_IA32_VMX_MISC,
2865 vmx->nested.nested_vmx_misc_low,
2866 vmx->nested.nested_vmx_misc_high);
2867 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2868 vmx->nested.nested_vmx_misc_low |=
2869 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002870 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002871 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002872
2873 /*
2874 * This MSR reports some information about VMX support. We
2875 * should return information about the VMX we emulate for the
2876 * guest, and the VMCS structure we give it - not about the
2877 * VMX support of the underlying hardware.
2878 */
2879 vmx->nested.nested_vmx_basic =
2880 VMCS12_REVISION |
2881 VMX_BASIC_TRUE_CTLS |
2882 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2883 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2884
2885 if (cpu_has_vmx_basic_inout())
2886 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2887
2888 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002889 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002890 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2891 * We picked the standard core2 setting.
2892 */
2893#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2894#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2895 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002896 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002897
2898 /* These MSRs specify bits which the guest must keep fixed off. */
2899 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2900 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002901
2902 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2903 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002904}
2905
David Matlack38991522016-11-29 18:14:08 -08002906/*
2907 * if fixed0[i] == 1: val[i] must be 1
2908 * if fixed1[i] == 0: val[i] must be 0
2909 */
2910static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2911{
2912 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002913}
2914
2915static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2916{
David Matlack38991522016-11-29 18:14:08 -08002917 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002918}
2919
2920static inline u64 vmx_control_msr(u32 low, u32 high)
2921{
2922 return low | ((u64)high << 32);
2923}
2924
David Matlack62cc6b9d2016-11-29 18:14:07 -08002925static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2926{
2927 superset &= mask;
2928 subset &= mask;
2929
2930 return (superset | subset) == superset;
2931}
2932
2933static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2934{
2935 const u64 feature_and_reserved =
2936 /* feature (except bit 48; see below) */
2937 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2938 /* reserved */
2939 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2940 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2941
2942 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2943 return -EINVAL;
2944
2945 /*
2946 * KVM does not emulate a version of VMX that constrains physical
2947 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2948 */
2949 if (data & BIT_ULL(48))
2950 return -EINVAL;
2951
2952 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2953 vmx_basic_vmcs_revision_id(data))
2954 return -EINVAL;
2955
2956 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2957 return -EINVAL;
2958
2959 vmx->nested.nested_vmx_basic = data;
2960 return 0;
2961}
2962
2963static int
2964vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2965{
2966 u64 supported;
2967 u32 *lowp, *highp;
2968
2969 switch (msr_index) {
2970 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2971 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2972 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2973 break;
2974 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2975 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2976 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2977 break;
2978 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2979 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2980 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2981 break;
2982 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2983 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2984 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2985 break;
2986 case MSR_IA32_VMX_PROCBASED_CTLS2:
2987 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2988 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
2989 break;
2990 default:
2991 BUG();
2992 }
2993
2994 supported = vmx_control_msr(*lowp, *highp);
2995
2996 /* Check must-be-1 bits are still 1. */
2997 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
2998 return -EINVAL;
2999
3000 /* Check must-be-0 bits are still 0. */
3001 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3002 return -EINVAL;
3003
3004 *lowp = data;
3005 *highp = data >> 32;
3006 return 0;
3007}
3008
3009static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3010{
3011 const u64 feature_and_reserved_bits =
3012 /* feature */
3013 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3014 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3015 /* reserved */
3016 GENMASK_ULL(13, 9) | BIT_ULL(31);
3017 u64 vmx_misc;
3018
3019 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3020 vmx->nested.nested_vmx_misc_high);
3021
3022 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3023 return -EINVAL;
3024
3025 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3026 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3027 vmx_misc_preemption_timer_rate(data) !=
3028 vmx_misc_preemption_timer_rate(vmx_misc))
3029 return -EINVAL;
3030
3031 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3032 return -EINVAL;
3033
3034 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3035 return -EINVAL;
3036
3037 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3038 return -EINVAL;
3039
3040 vmx->nested.nested_vmx_misc_low = data;
3041 vmx->nested.nested_vmx_misc_high = data >> 32;
3042 return 0;
3043}
3044
3045static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3046{
3047 u64 vmx_ept_vpid_cap;
3048
3049 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3050 vmx->nested.nested_vmx_vpid_caps);
3051
3052 /* Every bit is either reserved or a feature bit. */
3053 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3054 return -EINVAL;
3055
3056 vmx->nested.nested_vmx_ept_caps = data;
3057 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3058 return 0;
3059}
3060
3061static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3062{
3063 u64 *msr;
3064
3065 switch (msr_index) {
3066 case MSR_IA32_VMX_CR0_FIXED0:
3067 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3068 break;
3069 case MSR_IA32_VMX_CR4_FIXED0:
3070 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3071 break;
3072 default:
3073 BUG();
3074 }
3075
3076 /*
3077 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3078 * must be 1 in the restored value.
3079 */
3080 if (!is_bitwise_subset(data, *msr, -1ULL))
3081 return -EINVAL;
3082
3083 *msr = data;
3084 return 0;
3085}
3086
3087/*
3088 * Called when userspace is restoring VMX MSRs.
3089 *
3090 * Returns 0 on success, non-0 otherwise.
3091 */
3092static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3093{
3094 struct vcpu_vmx *vmx = to_vmx(vcpu);
3095
3096 switch (msr_index) {
3097 case MSR_IA32_VMX_BASIC:
3098 return vmx_restore_vmx_basic(vmx, data);
3099 case MSR_IA32_VMX_PINBASED_CTLS:
3100 case MSR_IA32_VMX_PROCBASED_CTLS:
3101 case MSR_IA32_VMX_EXIT_CTLS:
3102 case MSR_IA32_VMX_ENTRY_CTLS:
3103 /*
3104 * The "non-true" VMX capability MSRs are generated from the
3105 * "true" MSRs, so we do not support restoring them directly.
3106 *
3107 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3108 * should restore the "true" MSRs with the must-be-1 bits
3109 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3110 * DEFAULT SETTINGS".
3111 */
3112 return -EINVAL;
3113 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3114 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3115 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3116 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3117 case MSR_IA32_VMX_PROCBASED_CTLS2:
3118 return vmx_restore_control_msr(vmx, msr_index, data);
3119 case MSR_IA32_VMX_MISC:
3120 return vmx_restore_vmx_misc(vmx, data);
3121 case MSR_IA32_VMX_CR0_FIXED0:
3122 case MSR_IA32_VMX_CR4_FIXED0:
3123 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3124 case MSR_IA32_VMX_CR0_FIXED1:
3125 case MSR_IA32_VMX_CR4_FIXED1:
3126 /*
3127 * These MSRs are generated based on the vCPU's CPUID, so we
3128 * do not support restoring them directly.
3129 */
3130 return -EINVAL;
3131 case MSR_IA32_VMX_EPT_VPID_CAP:
3132 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3133 case MSR_IA32_VMX_VMCS_ENUM:
3134 vmx->nested.nested_vmx_vmcs_enum = data;
3135 return 0;
3136 default:
3137 /*
3138 * The rest of the VMX capability MSRs do not support restore.
3139 */
3140 return -EINVAL;
3141 }
3142}
3143
Jan Kiszkacae50132014-01-04 18:47:22 +01003144/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003145static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3146{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003147 struct vcpu_vmx *vmx = to_vmx(vcpu);
3148
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003149 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003150 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003151 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003152 break;
3153 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3154 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003155 *pdata = vmx_control_msr(
3156 vmx->nested.nested_vmx_pinbased_ctls_low,
3157 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003158 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3159 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003160 break;
3161 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3162 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003163 *pdata = vmx_control_msr(
3164 vmx->nested.nested_vmx_procbased_ctls_low,
3165 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003166 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3167 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003168 break;
3169 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3170 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003171 *pdata = vmx_control_msr(
3172 vmx->nested.nested_vmx_exit_ctls_low,
3173 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003174 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3175 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003176 break;
3177 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3178 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003179 *pdata = vmx_control_msr(
3180 vmx->nested.nested_vmx_entry_ctls_low,
3181 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003182 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3183 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003184 break;
3185 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003186 *pdata = vmx_control_msr(
3187 vmx->nested.nested_vmx_misc_low,
3188 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003189 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003190 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003191 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003192 break;
3193 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003194 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003195 break;
3196 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003197 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003198 break;
3199 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003200 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003201 break;
3202 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003203 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003204 break;
3205 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003206 *pdata = vmx_control_msr(
3207 vmx->nested.nested_vmx_secondary_ctls_low,
3208 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003209 break;
3210 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003211 *pdata = vmx->nested.nested_vmx_ept_caps |
3212 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003213 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003214 case MSR_IA32_VMX_VMFUNC:
3215 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3216 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003217 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003218 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003219 }
3220
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003221 return 0;
3222}
3223
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003224static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3225 uint64_t val)
3226{
3227 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3228
3229 return !(val & ~valid_bits);
3230}
3231
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003232/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003233 * Reads an msr value (of 'msr_index') into 'pdata'.
3234 * Returns 0 on success, non-0 otherwise.
3235 * Assumes vcpu_load() was already called.
3236 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003237static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238{
Avi Kivity26bb0982009-09-07 11:14:12 +03003239 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003241 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003242#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003244 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245 break;
3246 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003247 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003249 case MSR_KERNEL_GS_BASE:
3250 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003251 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003252 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003253#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003254 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003255 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303256 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003257 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258 break;
3259 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003260 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003261 break;
3262 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003263 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003264 break;
3265 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003266 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003267 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003268 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003269 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003270 (!msr_info->host_initiated &&
3271 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003272 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003273 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003274 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003275 case MSR_IA32_MCG_EXT_CTL:
3276 if (!msr_info->host_initiated &&
3277 !(to_vmx(vcpu)->msr_ia32_feature_control &
3278 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003279 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003280 msr_info->data = vcpu->arch.mcg_ext_ctl;
3281 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003282 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003283 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003284 break;
3285 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3286 if (!nested_vmx_allowed(vcpu))
3287 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003288 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003289 case MSR_IA32_XSS:
3290 if (!vmx_xsaves_supported())
3291 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003292 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003293 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003294 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003295 if (!msr_info->host_initiated &&
3296 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003297 return 1;
3298 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003299 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003300 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003301 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003302 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003303 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003304 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003305 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003306 }
3307
Avi Kivity6aa8b732006-12-10 02:21:36 -08003308 return 0;
3309}
3310
Jan Kiszkacae50132014-01-04 18:47:22 +01003311static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3312
Avi Kivity6aa8b732006-12-10 02:21:36 -08003313/*
3314 * Writes msr value into into the appropriate "register".
3315 * Returns 0 on success, non-0 otherwise.
3316 * Assumes vcpu_load() was already called.
3317 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003318static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003320 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003321 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003322 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003323 u32 msr_index = msr_info->index;
3324 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003325
Avi Kivity6aa8b732006-12-10 02:21:36 -08003326 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003327 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003328 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003329 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003330#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003332 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003333 vmcs_writel(GUEST_FS_BASE, data);
3334 break;
3335 case MSR_GS_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_GS_BASE, data);
3338 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003339 case MSR_KERNEL_GS_BASE:
3340 vmx_load_host_state(vmx);
3341 vmx->msr_guest_kernel_gs_base = data;
3342 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343#endif
3344 case MSR_IA32_SYSENTER_CS:
3345 vmcs_write32(GUEST_SYSENTER_CS, data);
3346 break;
3347 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003348 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349 break;
3350 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003351 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003352 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003353 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003354 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003355 (!msr_info->host_initiated &&
3356 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003357 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003358 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003359 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003361 vmcs_write64(GUEST_BNDCFGS, data);
3362 break;
3363 case MSR_IA32_TSC:
3364 kvm_write_tsc(vcpu, msr_info);
3365 break;
3366 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003367 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003368 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3369 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003370 vmcs_write64(GUEST_IA32_PAT, data);
3371 vcpu->arch.pat = data;
3372 break;
3373 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003374 ret = kvm_set_msr_common(vcpu, msr_info);
3375 break;
Will Auldba904632012-11-29 12:42:50 -08003376 case MSR_IA32_TSC_ADJUST:
3377 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003378 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003379 case MSR_IA32_MCG_EXT_CTL:
3380 if ((!msr_info->host_initiated &&
3381 !(to_vmx(vcpu)->msr_ia32_feature_control &
3382 FEATURE_CONTROL_LMCE)) ||
3383 (data & ~MCG_EXT_CTL_LMCE_EN))
3384 return 1;
3385 vcpu->arch.mcg_ext_ctl = data;
3386 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003387 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003388 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003389 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003390 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3391 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003392 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003393 if (msr_info->host_initiated && data == 0)
3394 vmx_leave_nested(vcpu);
3395 break;
3396 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003397 if (!msr_info->host_initiated)
3398 return 1; /* they are read-only */
3399 if (!nested_vmx_allowed(vcpu))
3400 return 1;
3401 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003402 case MSR_IA32_XSS:
3403 if (!vmx_xsaves_supported())
3404 return 1;
3405 /*
3406 * The only supported bit as of Skylake is bit 8, but
3407 * it is not supported on KVM.
3408 */
3409 if (data != 0)
3410 return 1;
3411 vcpu->arch.ia32_xss = data;
3412 if (vcpu->arch.ia32_xss != host_xss)
3413 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3414 vcpu->arch.ia32_xss, host_xss);
3415 else
3416 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3417 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003418 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003419 if (!msr_info->host_initiated &&
3420 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003421 return 1;
3422 /* Check reserved bit, higher 32 bits should be zero */
3423 if ((data >> 32) != 0)
3424 return 1;
3425 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003426 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003427 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003428 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003429 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003430 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003431 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3432 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003433 ret = kvm_set_shared_msr(msr->index, msr->data,
3434 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003435 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003436 if (ret)
3437 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003438 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003439 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003440 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003441 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003442 }
3443
Eddie Dong2cc51562007-05-21 07:28:09 +03003444 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003445}
3446
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003447static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003448{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003449 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3450 switch (reg) {
3451 case VCPU_REGS_RSP:
3452 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3453 break;
3454 case VCPU_REGS_RIP:
3455 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3456 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003457 case VCPU_EXREG_PDPTR:
3458 if (enable_ept)
3459 ept_save_pdptrs(vcpu);
3460 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003461 default:
3462 break;
3463 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003464}
3465
Avi Kivity6aa8b732006-12-10 02:21:36 -08003466static __init int cpu_has_kvm_support(void)
3467{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003468 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003469}
3470
3471static __init int vmx_disabled_by_bios(void)
3472{
3473 u64 msr;
3474
3475 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003476 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003477 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003478 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3479 && tboot_enabled())
3480 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003481 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003482 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003483 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003484 && !tboot_enabled()) {
3485 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003486 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003487 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003488 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003489 /* launched w/o TXT and VMX disabled */
3490 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3491 && !tboot_enabled())
3492 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003493 }
3494
3495 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003496}
3497
Dongxiao Xu7725b892010-05-11 18:29:38 +08003498static void kvm_cpu_vmxon(u64 addr)
3499{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003500 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003501 intel_pt_handle_vmx(1);
3502
Dongxiao Xu7725b892010-05-11 18:29:38 +08003503 asm volatile (ASM_VMX_VMXON_RAX
3504 : : "a"(&addr), "m"(addr)
3505 : "memory", "cc");
3506}
3507
Radim Krčmář13a34e02014-08-28 15:13:03 +02003508static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509{
3510 int cpu = raw_smp_processor_id();
3511 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003512 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003513
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003514 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003515 return -EBUSY;
3516
Nadav Har'Eld462b812011-05-24 15:26:10 +03003517 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003518 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3519 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003520
3521 /*
3522 * Now we can enable the vmclear operation in kdump
3523 * since the loaded_vmcss_on_cpu list on this cpu
3524 * has been initialized.
3525 *
3526 * Though the cpu is not in VMX operation now, there
3527 * is no problem to enable the vmclear operation
3528 * for the loaded_vmcss_on_cpu list is empty!
3529 */
3530 crash_enable_local_vmclear(cpu);
3531
Avi Kivity6aa8b732006-12-10 02:21:36 -08003532 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003533
3534 test_bits = FEATURE_CONTROL_LOCKED;
3535 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3536 if (tboot_enabled())
3537 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3538
3539 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003540 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003541 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3542 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003543 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02003544 if (enable_ept)
3545 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003546
3547 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003548}
3549
Nadav Har'Eld462b812011-05-24 15:26:10 +03003550static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003551{
3552 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003553 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003554
Nadav Har'Eld462b812011-05-24 15:26:10 +03003555 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3556 loaded_vmcss_on_cpu_link)
3557 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003558}
3559
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003560
3561/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3562 * tricks.
3563 */
3564static void kvm_cpu_vmxoff(void)
3565{
3566 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003567
3568 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003569 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003570}
3571
Radim Krčmář13a34e02014-08-28 15:13:03 +02003572static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003573{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003574 vmclear_local_loaded_vmcss();
3575 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003576}
3577
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003578static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003579 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580{
3581 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003582 u32 ctl = ctl_min | ctl_opt;
3583
3584 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3585
3586 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3587 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3588
3589 /* Ensure minimum (required) set of control bits are supported. */
3590 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003591 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003592
3593 *result = ctl;
3594 return 0;
3595}
3596
Avi Kivity110312c2010-12-21 12:54:20 +02003597static __init bool allow_1_setting(u32 msr, u32 ctl)
3598{
3599 u32 vmx_msr_low, vmx_msr_high;
3600
3601 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3602 return vmx_msr_high & ctl;
3603}
3604
Yang, Sheng002c7f72007-07-31 14:23:01 +03003605static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003606{
3607 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003608 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003609 u32 _pin_based_exec_control = 0;
3610 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003611 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003612 u32 _vmexit_control = 0;
3613 u32 _vmentry_control = 0;
3614
Raghavendra K T10166742012-02-07 23:19:20 +05303615 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003616#ifdef CONFIG_X86_64
3617 CPU_BASED_CR8_LOAD_EXITING |
3618 CPU_BASED_CR8_STORE_EXITING |
3619#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003620 CPU_BASED_CR3_LOAD_EXITING |
3621 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003622 CPU_BASED_USE_IO_BITMAPS |
3623 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003624 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003625 CPU_BASED_INVLPG_EXITING |
3626 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003627
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003628 if (!kvm_mwait_in_guest())
3629 min |= CPU_BASED_MWAIT_EXITING |
3630 CPU_BASED_MONITOR_EXITING;
3631
Sheng Yangf78e0e22007-10-29 09:40:42 +08003632 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003633 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003634 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003635 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3636 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003637 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003638#ifdef CONFIG_X86_64
3639 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3640 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3641 ~CPU_BASED_CR8_STORE_EXITING;
3642#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003643 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003644 min2 = 0;
3645 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003646 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003647 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003648 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003649 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003650 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003651 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003652 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003653 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003654 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003655 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003656 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003657 SECONDARY_EXEC_XSAVES |
Jim Mattson75f4fc82017-08-23 16:32:03 -07003658 SECONDARY_EXEC_RDSEED |
Jim Mattson45ec3682017-08-23 16:32:04 -07003659 SECONDARY_EXEC_RDRAND |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003660 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003661 SECONDARY_EXEC_TSC_SCALING |
3662 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003663 if (adjust_vmx_controls(min2, opt2,
3664 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003665 &_cpu_based_2nd_exec_control) < 0)
3666 return -EIO;
3667 }
3668#ifndef CONFIG_X86_64
3669 if (!(_cpu_based_2nd_exec_control &
3670 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3671 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3672#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003673
3674 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3675 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003676 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003677 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3678 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003679
Sheng Yangd56f5462008-04-25 10:13:16 +08003680 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003681 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3682 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003683 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3684 CPU_BASED_CR3_STORE_EXITING |
3685 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003686 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3687 vmx_capability.ept, vmx_capability.vpid);
3688 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003689
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003690 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003691#ifdef CONFIG_X86_64
3692 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3693#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003694 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003695 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003696 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3697 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003698 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003699
Paolo Bonzini2c828782017-03-27 14:37:28 +02003700 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3701 PIN_BASED_VIRTUAL_NMIS;
3702 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003703 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3704 &_pin_based_exec_control) < 0)
3705 return -EIO;
3706
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003707 if (cpu_has_broken_vmx_preemption_timer())
3708 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003709 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003710 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003711 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3712
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003713 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003714 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003715 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3716 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003717 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003718
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003719 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003720
3721 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3722 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003723 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003724
3725#ifdef CONFIG_X86_64
3726 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3727 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003728 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003729#endif
3730
3731 /* Require Write-Back (WB) memory type for VMCS accesses. */
3732 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003733 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003734
Yang, Sheng002c7f72007-07-31 14:23:01 +03003735 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003736 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003737 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003738 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003739
Yang, Sheng002c7f72007-07-31 14:23:01 +03003740 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3741 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003742 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003743 vmcs_conf->vmexit_ctrl = _vmexit_control;
3744 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003745
Avi Kivity110312c2010-12-21 12:54:20 +02003746 cpu_has_load_ia32_efer =
3747 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3748 VM_ENTRY_LOAD_IA32_EFER)
3749 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3750 VM_EXIT_LOAD_IA32_EFER);
3751
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003752 cpu_has_load_perf_global_ctrl =
3753 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3754 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3755 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3756 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3757
3758 /*
3759 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003760 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003761 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3762 *
3763 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3764 *
3765 * AAK155 (model 26)
3766 * AAP115 (model 30)
3767 * AAT100 (model 37)
3768 * BC86,AAY89,BD102 (model 44)
3769 * BA97 (model 46)
3770 *
3771 */
3772 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3773 switch (boot_cpu_data.x86_model) {
3774 case 26:
3775 case 30:
3776 case 37:
3777 case 44:
3778 case 46:
3779 cpu_has_load_perf_global_ctrl = false;
3780 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3781 "does not work properly. Using workaround\n");
3782 break;
3783 default:
3784 break;
3785 }
3786 }
3787
Borislav Petkov782511b2016-04-04 22:25:03 +02003788 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003789 rdmsrl(MSR_IA32_XSS, host_xss);
3790
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003791 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003792}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003793
3794static struct vmcs *alloc_vmcs_cpu(int cpu)
3795{
3796 int node = cpu_to_node(cpu);
3797 struct page *pages;
3798 struct vmcs *vmcs;
3799
Vlastimil Babka96db8002015-09-08 15:03:50 -07003800 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003801 if (!pages)
3802 return NULL;
3803 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003804 memset(vmcs, 0, vmcs_config.size);
3805 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003806 return vmcs;
3807}
3808
3809static struct vmcs *alloc_vmcs(void)
3810{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003811 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812}
3813
3814static void free_vmcs(struct vmcs *vmcs)
3815{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003816 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003817}
3818
Nadav Har'Eld462b812011-05-24 15:26:10 +03003819/*
3820 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3821 */
3822static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3823{
3824 if (!loaded_vmcs->vmcs)
3825 return;
3826 loaded_vmcs_clear(loaded_vmcs);
3827 free_vmcs(loaded_vmcs->vmcs);
3828 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003829 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003830}
3831
Sam Ravnborg39959582007-06-01 00:47:13 -07003832static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003833{
3834 int cpu;
3835
Zachary Amsden3230bb42009-09-29 11:38:37 -10003836 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003838 per_cpu(vmxarea, cpu) = NULL;
3839 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003840}
3841
Jim Mattson85fd5142017-07-07 12:51:41 -07003842enum vmcs_field_type {
3843 VMCS_FIELD_TYPE_U16 = 0,
3844 VMCS_FIELD_TYPE_U64 = 1,
3845 VMCS_FIELD_TYPE_U32 = 2,
3846 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3847};
3848
3849static inline int vmcs_field_type(unsigned long field)
3850{
3851 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3852 return VMCS_FIELD_TYPE_U32;
3853 return (field >> 13) & 0x3 ;
3854}
3855
3856static inline int vmcs_field_readonly(unsigned long field)
3857{
3858 return (((field >> 10) & 0x3) == 1);
3859}
3860
Bandan Dasfe2b2012014-04-21 15:20:14 -04003861static void init_vmcs_shadow_fields(void)
3862{
3863 int i, j;
3864
3865 /* No checks for read only fields yet */
3866
3867 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3868 switch (shadow_read_write_fields[i]) {
3869 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003870 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003871 continue;
3872 break;
3873 default:
3874 break;
3875 }
3876
3877 if (j < i)
3878 shadow_read_write_fields[j] =
3879 shadow_read_write_fields[i];
3880 j++;
3881 }
3882 max_shadow_read_write_fields = j;
3883
3884 /* shadowed fields guest access without vmexit */
3885 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003886 unsigned long field = shadow_read_write_fields[i];
3887
3888 clear_bit(field, vmx_vmwrite_bitmap);
3889 clear_bit(field, vmx_vmread_bitmap);
3890 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3891 clear_bit(field + 1, vmx_vmwrite_bitmap);
3892 clear_bit(field + 1, vmx_vmread_bitmap);
3893 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003894 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003895 for (i = 0; i < max_shadow_read_only_fields; i++) {
3896 unsigned long field = shadow_read_only_fields[i];
3897
3898 clear_bit(field, vmx_vmread_bitmap);
3899 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3900 clear_bit(field + 1, vmx_vmread_bitmap);
3901 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003902}
3903
Avi Kivity6aa8b732006-12-10 02:21:36 -08003904static __init int alloc_kvm_area(void)
3905{
3906 int cpu;
3907
Zachary Amsden3230bb42009-09-29 11:38:37 -10003908 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909 struct vmcs *vmcs;
3910
3911 vmcs = alloc_vmcs_cpu(cpu);
3912 if (!vmcs) {
3913 free_kvm_area();
3914 return -ENOMEM;
3915 }
3916
3917 per_cpu(vmxarea, cpu) = vmcs;
3918 }
3919 return 0;
3920}
3921
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003922static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003923 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003925 if (!emulate_invalid_guest_state) {
3926 /*
3927 * CS and SS RPL should be equal during guest entry according
3928 * to VMX spec, but in reality it is not always so. Since vcpu
3929 * is in the middle of the transition from real mode to
3930 * protected mode it is safe to assume that RPL 0 is a good
3931 * default value.
3932 */
3933 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003934 save->selector &= ~SEGMENT_RPL_MASK;
3935 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003936 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003938 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939}
3940
3941static void enter_pmode(struct kvm_vcpu *vcpu)
3942{
3943 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003944 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945
Gleb Natapovd99e4152012-12-20 16:57:45 +02003946 /*
3947 * Update real mode segment cache. It may be not up-to-date if sement
3948 * register was written while vcpu was in a guest mode.
3949 */
3950 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3951 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3952 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3953 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3954 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3955 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3956
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003957 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003958
Avi Kivity2fb92db2011-04-27 19:42:18 +03003959 vmx_segment_cache_clear(vmx);
3960
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003961 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003962
3963 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003964 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3965 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003966 vmcs_writel(GUEST_RFLAGS, flags);
3967
Rusty Russell66aee912007-07-17 23:34:16 +10003968 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3969 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970
3971 update_exception_bitmap(vcpu);
3972
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003973 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3974 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3975 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3976 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3977 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3978 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003979}
3980
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003981static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003982{
Mathias Krause772e0312012-08-30 01:30:19 +02003983 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003984 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003985
Gleb Natapovd99e4152012-12-20 16:57:45 +02003986 var.dpl = 0x3;
3987 if (seg == VCPU_SREG_CS)
3988 var.type = 0x3;
3989
3990 if (!emulate_invalid_guest_state) {
3991 var.selector = var.base >> 4;
3992 var.base = var.base & 0xffff0;
3993 var.limit = 0xffff;
3994 var.g = 0;
3995 var.db = 0;
3996 var.present = 1;
3997 var.s = 1;
3998 var.l = 0;
3999 var.unusable = 0;
4000 var.type = 0x3;
4001 var.avl = 0;
4002 if (save->base & 0xf)
4003 printk_once(KERN_WARNING "kvm: segment base is not "
4004 "paragraph aligned when entering "
4005 "protected mode (seg=%d)", seg);
4006 }
4007
4008 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004009 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004010 vmcs_write32(sf->limit, var.limit);
4011 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004012}
4013
4014static void enter_rmode(struct kvm_vcpu *vcpu)
4015{
4016 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004017 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004018
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004019 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4020 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4021 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4022 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4023 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004024 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4025 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004026
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004027 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004028
Gleb Natapov776e58e2011-03-13 12:34:27 +02004029 /*
4030 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004031 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004032 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004033 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004034 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4035 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004036
Avi Kivity2fb92db2011-04-27 19:42:18 +03004037 vmx_segment_cache_clear(vmx);
4038
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004039 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004040 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004041 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4042
4043 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004044 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004045
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004046 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004047
4048 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004049 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050 update_exception_bitmap(vcpu);
4051
Gleb Natapovd99e4152012-12-20 16:57:45 +02004052 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4053 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4054 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4055 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4056 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4057 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004058
Eddie Dong8668a3c2007-10-10 14:26:45 +08004059 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004060}
4061
Amit Shah401d10d2009-02-20 22:53:37 +05304062static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4063{
4064 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004065 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4066
4067 if (!msr)
4068 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304069
Avi Kivity44ea2b12009-09-06 15:55:37 +03004070 /*
4071 * Force kernel_gs_base reloading before EFER changes, as control
4072 * of this msr depends on is_long_mode().
4073 */
4074 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004075 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304076 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004077 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304078 msr->data = efer;
4079 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004080 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304081
4082 msr->data = efer & ~EFER_LME;
4083 }
4084 setup_msrs(vmx);
4085}
4086
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004087#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004088
4089static void enter_lmode(struct kvm_vcpu *vcpu)
4090{
4091 u32 guest_tr_ar;
4092
Avi Kivity2fb92db2011-04-27 19:42:18 +03004093 vmx_segment_cache_clear(to_vmx(vcpu));
4094
Avi Kivity6aa8b732006-12-10 02:21:36 -08004095 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004096 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004097 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4098 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004099 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004100 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4101 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004102 }
Avi Kivityda38f432010-07-06 11:30:49 +03004103 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004104}
4105
4106static void exit_lmode(struct kvm_vcpu *vcpu)
4107{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004108 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004109 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004110}
4111
4112#endif
4113
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004114static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004115{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004116 if (enable_ept) {
4117 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4118 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004119 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004120 } else {
4121 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004122 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004123}
4124
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004125static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4126{
4127 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4128}
4129
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004130static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4131{
4132 if (enable_ept)
4133 vmx_flush_tlb(vcpu);
4134}
4135
Avi Kivitye8467fd2009-12-29 18:43:06 +02004136static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4137{
4138 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4139
4140 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4141 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4142}
4143
Avi Kivityaff48ba2010-12-05 18:56:11 +02004144static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4145{
4146 if (enable_ept && is_paging(vcpu))
4147 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4148 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4149}
4150
Anthony Liguori25c4c272007-04-27 09:29:21 +03004151static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004152{
Avi Kivityfc78f512009-12-07 12:16:48 +02004153 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4154
4155 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4156 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004157}
4158
Sheng Yang14394422008-04-28 12:24:45 +08004159static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4160{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004161 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4162
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004163 if (!test_bit(VCPU_EXREG_PDPTR,
4164 (unsigned long *)&vcpu->arch.regs_dirty))
4165 return;
4166
Sheng Yang14394422008-04-28 12:24:45 +08004167 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004168 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4169 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4170 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4171 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004172 }
4173}
4174
Avi Kivity8f5d5492009-05-31 18:41:29 +03004175static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4176{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004177 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4178
Avi Kivity8f5d5492009-05-31 18:41:29 +03004179 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004180 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4181 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4182 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4183 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004184 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004185
4186 __set_bit(VCPU_EXREG_PDPTR,
4187 (unsigned long *)&vcpu->arch.regs_avail);
4188 __set_bit(VCPU_EXREG_PDPTR,
4189 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004190}
4191
David Matlack38991522016-11-29 18:14:08 -08004192static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4193{
4194 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4195 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4196 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4197
4198 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4199 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4200 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4201 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4202
4203 return fixed_bits_valid(val, fixed0, fixed1);
4204}
4205
4206static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4207{
4208 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4209 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4210
4211 return fixed_bits_valid(val, fixed0, fixed1);
4212}
4213
4214static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4215{
4216 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4217 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4218
4219 return fixed_bits_valid(val, fixed0, fixed1);
4220}
4221
4222/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4223#define nested_guest_cr4_valid nested_cr4_valid
4224#define nested_host_cr4_valid nested_cr4_valid
4225
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004226static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004227
4228static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4229 unsigned long cr0,
4230 struct kvm_vcpu *vcpu)
4231{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004232 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4233 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004234 if (!(cr0 & X86_CR0_PG)) {
4235 /* From paging/starting to nonpaging */
4236 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004237 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004238 (CPU_BASED_CR3_LOAD_EXITING |
4239 CPU_BASED_CR3_STORE_EXITING));
4240 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004241 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004242 } else if (!is_paging(vcpu)) {
4243 /* From nonpaging to paging */
4244 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004245 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004246 ~(CPU_BASED_CR3_LOAD_EXITING |
4247 CPU_BASED_CR3_STORE_EXITING));
4248 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004249 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004250 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004251
4252 if (!(cr0 & X86_CR0_WP))
4253 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004254}
4255
Avi Kivity6aa8b732006-12-10 02:21:36 -08004256static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4257{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004258 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004259 unsigned long hw_cr0;
4260
Gleb Natapov50378782013-02-04 16:00:28 +02004261 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004262 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004263 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004264 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004265 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004266
Gleb Natapov218e7632013-01-21 15:36:45 +02004267 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4268 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004269
Gleb Natapov218e7632013-01-21 15:36:45 +02004270 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4271 enter_rmode(vcpu);
4272 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004273
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004274#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004275 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004276 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004277 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004278 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004279 exit_lmode(vcpu);
4280 }
4281#endif
4282
Avi Kivity089d0342009-03-23 18:26:32 +02004283 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004284 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4285
Avi Kivity6aa8b732006-12-10 02:21:36 -08004286 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004287 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004288 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004289
4290 /* depends on vcpu->arch.cr0 to be set to a new value */
4291 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004292}
4293
Yu Zhang855feb62017-08-24 20:27:55 +08004294static int get_ept_level(struct kvm_vcpu *vcpu)
4295{
4296 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
4297 return 5;
4298 return 4;
4299}
4300
Peter Feiner995f00a2017-06-30 17:26:32 -07004301static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004302{
Yu Zhang855feb62017-08-24 20:27:55 +08004303 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08004304
Yu Zhang855feb62017-08-24 20:27:55 +08004305 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004306
Peter Feiner995f00a2017-06-30 17:26:32 -07004307 if (enable_ept_ad_bits &&
4308 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004309 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004310 eptp |= (root_hpa & PAGE_MASK);
4311
4312 return eptp;
4313}
4314
Avi Kivity6aa8b732006-12-10 02:21:36 -08004315static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4316{
Sheng Yang14394422008-04-28 12:24:45 +08004317 unsigned long guest_cr3;
4318 u64 eptp;
4319
4320 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004321 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004322 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004323 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004324 if (is_paging(vcpu) || is_guest_mode(vcpu))
4325 guest_cr3 = kvm_read_cr3(vcpu);
4326 else
4327 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004328 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004329 }
4330
Sheng Yang2384d2b2008-01-17 15:14:33 +08004331 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004332 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333}
4334
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004335static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004336{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004337 /*
4338 * Pass through host's Machine Check Enable value to hw_cr4, which
4339 * is in force while we are in guest mode. Do not let guests control
4340 * this bit, even if host CR4.MCE == 0.
4341 */
4342 unsigned long hw_cr4 =
4343 (cr4_read_shadow() & X86_CR4_MCE) |
4344 (cr4 & ~X86_CR4_MCE) |
4345 (to_vmx(vcpu)->rmode.vm86_active ?
4346 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004347
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004348 if (cr4 & X86_CR4_VMXE) {
4349 /*
4350 * To use VMXON (and later other VMX instructions), a guest
4351 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4352 * So basically the check on whether to allow nested VMX
4353 * is here.
4354 */
4355 if (!nested_vmx_allowed(vcpu))
4356 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004357 }
David Matlack38991522016-11-29 18:14:08 -08004358
4359 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004360 return 1;
4361
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004362 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004363 if (enable_ept) {
4364 if (!is_paging(vcpu)) {
4365 hw_cr4 &= ~X86_CR4_PAE;
4366 hw_cr4 |= X86_CR4_PSE;
4367 } else if (!(cr4 & X86_CR4_PAE)) {
4368 hw_cr4 &= ~X86_CR4_PAE;
4369 }
4370 }
Sheng Yang14394422008-04-28 12:24:45 +08004371
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004372 if (!enable_unrestricted_guest && !is_paging(vcpu))
4373 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004374 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4375 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4376 * to be manually disabled when guest switches to non-paging
4377 * mode.
4378 *
4379 * If !enable_unrestricted_guest, the CPU is always running
4380 * with CR0.PG=1 and CR4 needs to be modified.
4381 * If enable_unrestricted_guest, the CPU automatically
4382 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004383 */
Huaitong Handdba2622016-03-22 16:51:15 +08004384 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004385
Sheng Yang14394422008-04-28 12:24:45 +08004386 vmcs_writel(CR4_READ_SHADOW, cr4);
4387 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004388 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004389}
4390
Avi Kivity6aa8b732006-12-10 02:21:36 -08004391static void vmx_get_segment(struct kvm_vcpu *vcpu,
4392 struct kvm_segment *var, int seg)
4393{
Avi Kivitya9179492011-01-03 14:28:52 +02004394 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004395 u32 ar;
4396
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004397 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004398 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004399 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004400 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004401 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004402 var->base = vmx_read_guest_seg_base(vmx, seg);
4403 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4404 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004405 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004406 var->base = vmx_read_guest_seg_base(vmx, seg);
4407 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4408 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4409 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004410 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004411 var->type = ar & 15;
4412 var->s = (ar >> 4) & 1;
4413 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004414 /*
4415 * Some userspaces do not preserve unusable property. Since usable
4416 * segment has to be present according to VMX spec we can use present
4417 * property to amend userspace bug by making unusable segment always
4418 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4419 * segment as unusable.
4420 */
4421 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004422 var->avl = (ar >> 12) & 1;
4423 var->l = (ar >> 13) & 1;
4424 var->db = (ar >> 14) & 1;
4425 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004426}
4427
Avi Kivitya9179492011-01-03 14:28:52 +02004428static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4429{
Avi Kivitya9179492011-01-03 14:28:52 +02004430 struct kvm_segment s;
4431
4432 if (to_vmx(vcpu)->rmode.vm86_active) {
4433 vmx_get_segment(vcpu, &s, seg);
4434 return s.base;
4435 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004436 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004437}
4438
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004439static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004440{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004441 struct vcpu_vmx *vmx = to_vmx(vcpu);
4442
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004443 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004444 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004445 else {
4446 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004447 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004448 }
Avi Kivity69c73022011-03-07 15:26:44 +02004449}
4450
Avi Kivity653e3102007-05-07 10:55:37 +03004451static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453 u32 ar;
4454
Avi Kivityf0495f92012-06-07 17:06:10 +03004455 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456 ar = 1 << 16;
4457 else {
4458 ar = var->type & 15;
4459 ar |= (var->s & 1) << 4;
4460 ar |= (var->dpl & 3) << 5;
4461 ar |= (var->present & 1) << 7;
4462 ar |= (var->avl & 1) << 12;
4463 ar |= (var->l & 1) << 13;
4464 ar |= (var->db & 1) << 14;
4465 ar |= (var->g & 1) << 15;
4466 }
Avi Kivity653e3102007-05-07 10:55:37 +03004467
4468 return ar;
4469}
4470
4471static void vmx_set_segment(struct kvm_vcpu *vcpu,
4472 struct kvm_segment *var, int seg)
4473{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004474 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004475 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004476
Avi Kivity2fb92db2011-04-27 19:42:18 +03004477 vmx_segment_cache_clear(vmx);
4478
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004479 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4480 vmx->rmode.segs[seg] = *var;
4481 if (seg == VCPU_SREG_TR)
4482 vmcs_write16(sf->selector, var->selector);
4483 else if (var->s)
4484 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004485 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004486 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004487
Avi Kivity653e3102007-05-07 10:55:37 +03004488 vmcs_writel(sf->base, var->base);
4489 vmcs_write32(sf->limit, var->limit);
4490 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004491
4492 /*
4493 * Fix the "Accessed" bit in AR field of segment registers for older
4494 * qemu binaries.
4495 * IA32 arch specifies that at the time of processor reset the
4496 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004497 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004498 * state vmexit when "unrestricted guest" mode is turned on.
4499 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4500 * tree. Newer qemu binaries with that qemu fix would not need this
4501 * kvm hack.
4502 */
4503 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004504 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004505
Gleb Natapovf924d662012-12-12 19:10:55 +02004506 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004507
4508out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004509 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004510}
4511
Avi Kivity6aa8b732006-12-10 02:21:36 -08004512static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4513{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004514 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004515
4516 *db = (ar >> 14) & 1;
4517 *l = (ar >> 13) & 1;
4518}
4519
Gleb Natapov89a27f42010-02-16 10:51:48 +02004520static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004521{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004522 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4523 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004524}
4525
Gleb Natapov89a27f42010-02-16 10:51:48 +02004526static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004527{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004528 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4529 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004530}
4531
Gleb Natapov89a27f42010-02-16 10:51:48 +02004532static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004533{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004534 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4535 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004536}
4537
Gleb Natapov89a27f42010-02-16 10:51:48 +02004538static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004539{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004540 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4541 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004542}
4543
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004544static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4545{
4546 struct kvm_segment var;
4547 u32 ar;
4548
4549 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004550 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004551 if (seg == VCPU_SREG_CS)
4552 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004553 ar = vmx_segment_access_rights(&var);
4554
4555 if (var.base != (var.selector << 4))
4556 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004557 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004558 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004559 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004560 return false;
4561
4562 return true;
4563}
4564
4565static bool code_segment_valid(struct kvm_vcpu *vcpu)
4566{
4567 struct kvm_segment cs;
4568 unsigned int cs_rpl;
4569
4570 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004571 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004572
Avi Kivity1872a3f2009-01-04 23:26:52 +02004573 if (cs.unusable)
4574 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004575 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004576 return false;
4577 if (!cs.s)
4578 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004579 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004580 if (cs.dpl > cs_rpl)
4581 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004582 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004583 if (cs.dpl != cs_rpl)
4584 return false;
4585 }
4586 if (!cs.present)
4587 return false;
4588
4589 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4590 return true;
4591}
4592
4593static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4594{
4595 struct kvm_segment ss;
4596 unsigned int ss_rpl;
4597
4598 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004599 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004600
Avi Kivity1872a3f2009-01-04 23:26:52 +02004601 if (ss.unusable)
4602 return true;
4603 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004604 return false;
4605 if (!ss.s)
4606 return false;
4607 if (ss.dpl != ss_rpl) /* DPL != RPL */
4608 return false;
4609 if (!ss.present)
4610 return false;
4611
4612 return true;
4613}
4614
4615static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4616{
4617 struct kvm_segment var;
4618 unsigned int rpl;
4619
4620 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004621 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004622
Avi Kivity1872a3f2009-01-04 23:26:52 +02004623 if (var.unusable)
4624 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004625 if (!var.s)
4626 return false;
4627 if (!var.present)
4628 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004629 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004630 if (var.dpl < rpl) /* DPL < RPL */
4631 return false;
4632 }
4633
4634 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4635 * rights flags
4636 */
4637 return true;
4638}
4639
4640static bool tr_valid(struct kvm_vcpu *vcpu)
4641{
4642 struct kvm_segment tr;
4643
4644 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4645
Avi Kivity1872a3f2009-01-04 23:26:52 +02004646 if (tr.unusable)
4647 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004648 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004649 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004650 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004651 return false;
4652 if (!tr.present)
4653 return false;
4654
4655 return true;
4656}
4657
4658static bool ldtr_valid(struct kvm_vcpu *vcpu)
4659{
4660 struct kvm_segment ldtr;
4661
4662 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4663
Avi Kivity1872a3f2009-01-04 23:26:52 +02004664 if (ldtr.unusable)
4665 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004666 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004667 return false;
4668 if (ldtr.type != 2)
4669 return false;
4670 if (!ldtr.present)
4671 return false;
4672
4673 return true;
4674}
4675
4676static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4677{
4678 struct kvm_segment cs, ss;
4679
4680 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4681 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4682
Nadav Amitb32a9912015-03-29 16:33:04 +03004683 return ((cs.selector & SEGMENT_RPL_MASK) ==
4684 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004685}
4686
4687/*
4688 * Check if guest state is valid. Returns true if valid, false if
4689 * not.
4690 * We assume that registers are always usable
4691 */
4692static bool guest_state_valid(struct kvm_vcpu *vcpu)
4693{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004694 if (enable_unrestricted_guest)
4695 return true;
4696
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004697 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004698 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004699 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4700 return false;
4701 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4702 return false;
4703 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4704 return false;
4705 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4706 return false;
4707 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4708 return false;
4709 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4710 return false;
4711 } else {
4712 /* protected mode guest state checks */
4713 if (!cs_ss_rpl_check(vcpu))
4714 return false;
4715 if (!code_segment_valid(vcpu))
4716 return false;
4717 if (!stack_segment_valid(vcpu))
4718 return false;
4719 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4720 return false;
4721 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4722 return false;
4723 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4724 return false;
4725 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4726 return false;
4727 if (!tr_valid(vcpu))
4728 return false;
4729 if (!ldtr_valid(vcpu))
4730 return false;
4731 }
4732 /* TODO:
4733 * - Add checks on RIP
4734 * - Add checks on RFLAGS
4735 */
4736
4737 return true;
4738}
4739
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004740static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4741{
4742 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4743}
4744
Mike Dayd77c26f2007-10-08 09:02:08 -04004745static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004746{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004747 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004748 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004749 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004750
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004751 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004752 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004753 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4754 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004755 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004756 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004757 r = kvm_write_guest_page(kvm, fn++, &data,
4758 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004759 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004760 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004761 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4762 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004763 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004764 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4765 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004766 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004767 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004768 r = kvm_write_guest_page(kvm, fn, &data,
4769 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4770 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004771out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004772 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004773 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004774}
4775
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004776static int init_rmode_identity_map(struct kvm *kvm)
4777{
Tang Chenf51770e2014-09-16 18:41:59 +08004778 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004779 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004780 u32 tmp;
4781
Avi Kivity089d0342009-03-23 18:26:32 +02004782 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004783 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004784
4785 /* Protect kvm->arch.ept_identity_pagetable_done. */
4786 mutex_lock(&kvm->slots_lock);
4787
Tang Chenf51770e2014-09-16 18:41:59 +08004788 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004789 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004790
Sheng Yangb927a3c2009-07-21 10:42:48 +08004791 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004792
4793 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004794 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004795 goto out2;
4796
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004797 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004798 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4799 if (r < 0)
4800 goto out;
4801 /* Set up identity-mapping pagetable for EPT in real mode */
4802 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4803 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4804 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4805 r = kvm_write_guest_page(kvm, identity_map_pfn,
4806 &tmp, i * sizeof(tmp), sizeof(tmp));
4807 if (r < 0)
4808 goto out;
4809 }
4810 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004811
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004812out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004813 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004814
4815out2:
4816 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004817 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004818}
4819
Avi Kivity6aa8b732006-12-10 02:21:36 -08004820static void seg_setup(int seg)
4821{
Mathias Krause772e0312012-08-30 01:30:19 +02004822 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004823 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824
4825 vmcs_write16(sf->selector, 0);
4826 vmcs_writel(sf->base, 0);
4827 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004828 ar = 0x93;
4829 if (seg == VCPU_SREG_CS)
4830 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004831
4832 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004833}
4834
Sheng Yangf78e0e22007-10-29 09:40:42 +08004835static int alloc_apic_access_page(struct kvm *kvm)
4836{
Xiao Guangrong44841412012-09-07 14:14:20 +08004837 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004838 int r = 0;
4839
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004840 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004841 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004842 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004843 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4844 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004845 if (r)
4846 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004847
Tang Chen73a6d942014-09-11 13:38:00 +08004848 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004849 if (is_error_page(page)) {
4850 r = -EFAULT;
4851 goto out;
4852 }
4853
Tang Chenc24ae0d2014-09-24 15:57:58 +08004854 /*
4855 * Do not pin the page in memory, so that memory hot-unplug
4856 * is able to migrate it.
4857 */
4858 put_page(page);
4859 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004860out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004861 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004862 return r;
4863}
4864
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004865static int alloc_identity_pagetable(struct kvm *kvm)
4866{
Tang Chena255d472014-09-16 18:41:58 +08004867 /* Called with kvm->slots_lock held. */
4868
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004869 int r = 0;
4870
Tang Chena255d472014-09-16 18:41:58 +08004871 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4872
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004873 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4874 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004875
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004876 return r;
4877}
4878
Wanpeng Li991e7a02015-09-16 17:30:05 +08004879static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004880{
4881 int vpid;
4882
Avi Kivity919818a2009-03-23 18:01:29 +02004883 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004884 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004885 spin_lock(&vmx_vpid_lock);
4886 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004887 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004888 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004889 else
4890 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004891 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004892 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004893}
4894
Wanpeng Li991e7a02015-09-16 17:30:05 +08004895static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004896{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004897 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004898 return;
4899 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004900 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004901 spin_unlock(&vmx_vpid_lock);
4902}
4903
Yang Zhang8d146952013-01-25 10:18:50 +08004904#define MSR_TYPE_R 1
4905#define MSR_TYPE_W 2
4906static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4907 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004908{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004909 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004910
4911 if (!cpu_has_vmx_msr_bitmap())
4912 return;
4913
4914 /*
4915 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4916 * have the write-low and read-high bitmap offsets the wrong way round.
4917 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4918 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004919 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004920 if (type & MSR_TYPE_R)
4921 /* read-low */
4922 __clear_bit(msr, msr_bitmap + 0x000 / f);
4923
4924 if (type & MSR_TYPE_W)
4925 /* write-low */
4926 __clear_bit(msr, msr_bitmap + 0x800 / f);
4927
Sheng Yang25c5f222008-03-28 13:18:56 +08004928 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4929 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004930 if (type & MSR_TYPE_R)
4931 /* read-high */
4932 __clear_bit(msr, msr_bitmap + 0x400 / f);
4933
4934 if (type & MSR_TYPE_W)
4935 /* write-high */
4936 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4937
4938 }
4939}
4940
Wincy Vanf2b93282015-02-03 23:56:03 +08004941/*
4942 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4943 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4944 */
4945static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4946 unsigned long *msr_bitmap_nested,
4947 u32 msr, int type)
4948{
4949 int f = sizeof(unsigned long);
4950
4951 if (!cpu_has_vmx_msr_bitmap()) {
4952 WARN_ON(1);
4953 return;
4954 }
4955
4956 /*
4957 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4958 * have the write-low and read-high bitmap offsets the wrong way round.
4959 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4960 */
4961 if (msr <= 0x1fff) {
4962 if (type & MSR_TYPE_R &&
4963 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4964 /* read-low */
4965 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4966
4967 if (type & MSR_TYPE_W &&
4968 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4969 /* write-low */
4970 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4971
4972 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4973 msr &= 0x1fff;
4974 if (type & MSR_TYPE_R &&
4975 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4976 /* read-high */
4977 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4978
4979 if (type & MSR_TYPE_W &&
4980 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4981 /* write-high */
4982 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4983
4984 }
4985}
4986
Avi Kivity58972972009-02-24 22:26:47 +02004987static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4988{
4989 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004990 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4991 msr, MSR_TYPE_R | MSR_TYPE_W);
4992 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4993 msr, MSR_TYPE_R | MSR_TYPE_W);
4994}
4995
Radim Krčmář2e69f862016-09-29 22:41:32 +02004996static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004997{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004998 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08004999 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005000 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08005001 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005002 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005003 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005004 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005005 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005006 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005007 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005008 }
Avi Kivity58972972009-02-24 22:26:47 +02005009}
5010
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005011static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005012{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005013 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005014}
5015
David Matlackc9f04402017-08-01 14:00:40 -07005016static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5017{
5018 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5019 gfn_t gfn;
5020
5021 /*
5022 * Don't need to mark the APIC access page dirty; it is never
5023 * written to by the CPU during APIC virtualization.
5024 */
5025
5026 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5027 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5028 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5029 }
5030
5031 if (nested_cpu_has_posted_intr(vmcs12)) {
5032 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5033 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5034 }
5035}
5036
5037
David Hildenbrand6342c502017-01-25 11:58:58 +01005038static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005039{
5040 struct vcpu_vmx *vmx = to_vmx(vcpu);
5041 int max_irr;
5042 void *vapic_page;
5043 u16 status;
5044
David Matlackc9f04402017-08-01 14:00:40 -07005045 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5046 return;
Wincy Van705699a2015-02-03 23:58:17 +08005047
David Matlackc9f04402017-08-01 14:00:40 -07005048 vmx->nested.pi_pending = false;
5049 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5050 return;
Wincy Van705699a2015-02-03 23:58:17 +08005051
David Matlackc9f04402017-08-01 14:00:40 -07005052 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5053 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005054 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005055 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5056 kunmap(vmx->nested.virtual_apic_page);
5057
5058 status = vmcs_read16(GUEST_INTR_STATUS);
5059 if ((u8)max_irr > ((u8)status & 0xff)) {
5060 status &= ~0xff;
5061 status |= (u8)max_irr;
5062 vmcs_write16(GUEST_INTR_STATUS, status);
5063 }
5064 }
David Matlackc9f04402017-08-01 14:00:40 -07005065
5066 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005067}
5068
Wincy Van06a55242017-04-28 13:13:59 +08005069static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5070 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005071{
5072#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005073 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5074
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005075 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005076 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005077 * The vector of interrupt to be delivered to vcpu had
5078 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08005079 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005080 * Following cases will be reached in this block, and
5081 * we always send a notification event in all cases as
5082 * explained below.
5083 *
5084 * Case 1: vcpu keeps in non-root mode. Sending a
5085 * notification event posts the interrupt to vcpu.
5086 *
5087 * Case 2: vcpu exits to root mode and is still
5088 * runnable. PIR will be synced to vIRR before the
5089 * next vcpu entry. Sending a notification event in
5090 * this case has no effect, as vcpu is not in root
5091 * mode.
5092 *
5093 * Case 3: vcpu exits to root mode and is blocked.
5094 * vcpu_block() has already synced PIR to vIRR and
5095 * never blocks vcpu if vIRR is not cleared. Therefore,
5096 * a blocked vcpu here does not wait for any requested
5097 * interrupts in PIR, and sending a notification event
5098 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08005099 */
Feng Wu28b835d2015-09-18 22:29:54 +08005100
Wincy Van06a55242017-04-28 13:13:59 +08005101 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005102 return true;
5103 }
5104#endif
5105 return false;
5106}
5107
Wincy Van705699a2015-02-03 23:58:17 +08005108static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5109 int vector)
5110{
5111 struct vcpu_vmx *vmx = to_vmx(vcpu);
5112
5113 if (is_guest_mode(vcpu) &&
5114 vector == vmx->nested.posted_intr_nv) {
5115 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005116 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005117 /*
5118 * If a posted intr is not recognized by hardware,
5119 * we will accomplish it in the next vmentry.
5120 */
5121 vmx->nested.pi_pending = true;
5122 kvm_make_request(KVM_REQ_EVENT, vcpu);
5123 return 0;
5124 }
5125 return -1;
5126}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005127/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005128 * Send interrupt to vcpu via posted interrupt way.
5129 * 1. If target vcpu is running(non-root mode), send posted interrupt
5130 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5131 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5132 * interrupt from PIR in next vmentry.
5133 */
5134static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5135{
5136 struct vcpu_vmx *vmx = to_vmx(vcpu);
5137 int r;
5138
Wincy Van705699a2015-02-03 23:58:17 +08005139 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5140 if (!r)
5141 return;
5142
Yang Zhanga20ed542013-04-11 19:25:15 +08005143 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5144 return;
5145
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005146 /* If a previous notification has sent the IPI, nothing to do. */
5147 if (pi_test_and_set_on(&vmx->pi_desc))
5148 return;
5149
Wincy Van06a55242017-04-28 13:13:59 +08005150 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005151 kvm_vcpu_kick(vcpu);
5152}
5153
Avi Kivity6aa8b732006-12-10 02:21:36 -08005154/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005155 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5156 * will not change in the lifetime of the guest.
5157 * Note that host-state that does change is set elsewhere. E.g., host-state
5158 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5159 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005160static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005161{
5162 u32 low32, high32;
5163 unsigned long tmpl;
5164 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005165 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005166
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005167 cr0 = read_cr0();
5168 WARN_ON(cr0 & X86_CR0_TS);
5169 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005170
5171 /*
5172 * Save the most likely value for this task's CR3 in the VMCS.
5173 * We can't use __get_current_cr3_fast() because we're not atomic.
5174 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005175 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005176 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Ladi Prosek44889942017-09-22 07:53:15 +02005177 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005178
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005179 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005180 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005181 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Ladi Prosek44889942017-09-22 07:53:15 +02005182 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005183
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005184 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005185#ifdef CONFIG_X86_64
5186 /*
5187 * Load null selectors, so we can avoid reloading them in
5188 * __vmx_load_host_state(), in case userspace uses the null selectors
5189 * too (the expected case).
5190 */
5191 vmcs_write16(HOST_DS_SELECTOR, 0);
5192 vmcs_write16(HOST_ES_SELECTOR, 0);
5193#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005194 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5195 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005196#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005197 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5198 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5199
Juergen Gross87930012017-09-04 12:25:27 +02005200 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005201 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005202 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005203
Avi Kivity83287ea422012-09-16 15:10:57 +03005204 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005205
5206 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5207 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5208 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5209 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5210
5211 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5212 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5213 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5214 }
5215}
5216
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005217static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5218{
5219 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5220 if (enable_ept)
5221 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005222 if (is_guest_mode(&vmx->vcpu))
5223 vmx->vcpu.arch.cr4_guest_owned_bits &=
5224 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005225 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5226}
5227
Yang Zhang01e439b2013-04-11 19:25:12 +08005228static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5229{
5230 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5231
Andrey Smetanind62caab2015-11-10 15:36:33 +03005232 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005233 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005234 /* Enable the preemption timer dynamically */
5235 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005236 return pin_based_exec_ctrl;
5237}
5238
Andrey Smetanind62caab2015-11-10 15:36:33 +03005239static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5240{
5241 struct vcpu_vmx *vmx = to_vmx(vcpu);
5242
5243 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005244 if (cpu_has_secondary_exec_ctrls()) {
5245 if (kvm_vcpu_apicv_active(vcpu))
5246 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5247 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5248 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5249 else
5250 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5251 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5252 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5253 }
5254
5255 if (cpu_has_vmx_msr_bitmap())
5256 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005257}
5258
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005259static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5260{
5261 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005262
5263 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5264 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5265
Paolo Bonzini35754c92015-07-29 12:05:37 +02005266 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005267 exec_control &= ~CPU_BASED_TPR_SHADOW;
5268#ifdef CONFIG_X86_64
5269 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5270 CPU_BASED_CR8_LOAD_EXITING;
5271#endif
5272 }
5273 if (!enable_ept)
5274 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5275 CPU_BASED_CR3_LOAD_EXITING |
5276 CPU_BASED_INVLPG_EXITING;
5277 return exec_control;
5278}
5279
Jim Mattson45ec3682017-08-23 16:32:04 -07005280static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005281{
Jim Mattson45ec3682017-08-23 16:32:04 -07005282 return vmcs_config.cpu_based_2nd_exec_ctrl &
5283 SECONDARY_EXEC_RDRAND;
5284}
5285
Jim Mattson75f4fc82017-08-23 16:32:03 -07005286static bool vmx_rdseed_supported(void)
5287{
5288 return vmcs_config.cpu_based_2nd_exec_ctrl &
5289 SECONDARY_EXEC_RDSEED;
5290}
5291
Paolo Bonzini80154d72017-08-24 13:55:35 +02005292static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005293{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005294 struct kvm_vcpu *vcpu = &vmx->vcpu;
5295
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005296 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005297 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005298 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5299 if (vmx->vpid == 0)
5300 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5301 if (!enable_ept) {
5302 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5303 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005304 /* Enable INVPCID for non-ept guests may cause performance regression. */
5305 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005306 }
5307 if (!enable_unrestricted_guest)
5308 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5309 if (!ple_gap)
5310 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005311 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005312 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5313 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005314 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005315 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5316 (handle_vmptrld).
5317 We can NOT enable shadow_vmcs here because we don't have yet
5318 a current VMCS12
5319 */
5320 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005321
5322 if (!enable_pml)
5323 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005324
Paolo Bonzini3db13482017-08-24 14:48:03 +02005325 if (vmx_xsaves_supported()) {
5326 /* Exposing XSAVES only when XSAVE is exposed */
5327 bool xsaves_enabled =
5328 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
5329 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
5330
5331 if (!xsaves_enabled)
5332 exec_control &= ~SECONDARY_EXEC_XSAVES;
5333
5334 if (nested) {
5335 if (xsaves_enabled)
5336 vmx->nested.nested_vmx_secondary_ctls_high |=
5337 SECONDARY_EXEC_XSAVES;
5338 else
5339 vmx->nested.nested_vmx_secondary_ctls_high &=
5340 ~SECONDARY_EXEC_XSAVES;
5341 }
5342 }
5343
Paolo Bonzini80154d72017-08-24 13:55:35 +02005344 if (vmx_rdtscp_supported()) {
5345 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5346 if (!rdtscp_enabled)
5347 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5348
5349 if (nested) {
5350 if (rdtscp_enabled)
5351 vmx->nested.nested_vmx_secondary_ctls_high |=
5352 SECONDARY_EXEC_RDTSCP;
5353 else
5354 vmx->nested.nested_vmx_secondary_ctls_high &=
5355 ~SECONDARY_EXEC_RDTSCP;
5356 }
5357 }
5358
5359 if (vmx_invpcid_supported()) {
5360 /* Exposing INVPCID only when PCID is exposed */
5361 bool invpcid_enabled =
5362 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5363 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5364
5365 if (!invpcid_enabled) {
5366 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5367 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5368 }
5369
5370 if (nested) {
5371 if (invpcid_enabled)
5372 vmx->nested.nested_vmx_secondary_ctls_high |=
5373 SECONDARY_EXEC_ENABLE_INVPCID;
5374 else
5375 vmx->nested.nested_vmx_secondary_ctls_high &=
5376 ~SECONDARY_EXEC_ENABLE_INVPCID;
5377 }
5378 }
5379
Jim Mattson45ec3682017-08-23 16:32:04 -07005380 if (vmx_rdrand_supported()) {
5381 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
5382 if (rdrand_enabled)
5383 exec_control &= ~SECONDARY_EXEC_RDRAND;
5384
5385 if (nested) {
5386 if (rdrand_enabled)
5387 vmx->nested.nested_vmx_secondary_ctls_high |=
5388 SECONDARY_EXEC_RDRAND;
5389 else
5390 vmx->nested.nested_vmx_secondary_ctls_high &=
5391 ~SECONDARY_EXEC_RDRAND;
5392 }
5393 }
5394
Jim Mattson75f4fc82017-08-23 16:32:03 -07005395 if (vmx_rdseed_supported()) {
5396 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
5397 if (rdseed_enabled)
5398 exec_control &= ~SECONDARY_EXEC_RDSEED;
5399
5400 if (nested) {
5401 if (rdseed_enabled)
5402 vmx->nested.nested_vmx_secondary_ctls_high |=
5403 SECONDARY_EXEC_RDSEED;
5404 else
5405 vmx->nested.nested_vmx_secondary_ctls_high &=
5406 ~SECONDARY_EXEC_RDSEED;
5407 }
5408 }
5409
Paolo Bonzini80154d72017-08-24 13:55:35 +02005410 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005411}
5412
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005413static void ept_set_mmio_spte_mask(void)
5414{
5415 /*
5416 * EPT Misconfigurations can be generated if the value of bits 2:0
5417 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005418 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005419 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5420 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005421}
5422
Wanpeng Lif53cd632014-12-02 19:14:58 +08005423#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005424/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005425 * Sets up the vmcs for emulated real mode.
5426 */
David Hildenbrand12d79912017-08-24 20:51:26 +02005427static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005428{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005429#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005430 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005431#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005432 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005433
Avi Kivity6aa8b732006-12-10 02:21:36 -08005434 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005435 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5436 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005437
Abel Gordon4607c2d2013-04-18 14:35:55 +03005438 if (enable_shadow_vmcs) {
5439 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5440 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5441 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005442 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005443 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005444
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5446
Avi Kivity6aa8b732006-12-10 02:21:36 -08005447 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005448 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005449 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005450
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005451 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005452
Dan Williamsdfa169b2016-06-02 11:17:24 -07005453 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005454 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005455 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005456 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005457 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005458
Andrey Smetanind62caab2015-11-10 15:36:33 +03005459 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005460 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5461 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5462 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5463 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5464
5465 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005466
Li RongQing0bcf2612015-12-03 13:29:34 +08005467 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005468 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005469 }
5470
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005471 if (ple_gap) {
5472 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005473 vmx->ple_window = ple_window;
5474 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005475 }
5476
Xiao Guangrongc3707952011-07-12 03:28:04 +08005477 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5478 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005479 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5480
Avi Kivity9581d442010-10-19 16:46:55 +02005481 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5482 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005483 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005484#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005485 rdmsrl(MSR_FS_BASE, a);
5486 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5487 rdmsrl(MSR_GS_BASE, a);
5488 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5489#else
5490 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5491 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5492#endif
5493
Bandan Das2a499e42017-08-03 15:54:41 -04005494 if (cpu_has_vmx_vmfunc())
5495 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5496
Eddie Dong2cc51562007-05-21 07:28:09 +03005497 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5498 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005499 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005500 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005501 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005502
Radim Krčmář74545702015-04-27 15:11:25 +02005503 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5504 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005505
Paolo Bonzini03916db2014-07-24 14:21:57 +02005506 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005507 u32 index = vmx_msr_index[i];
5508 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005509 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005510
5511 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5512 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005513 if (wrmsr_safe(index, data_low, data_high) < 0)
5514 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005515 vmx->guest_msrs[j].index = i;
5516 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005517 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005518 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005519 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005520
Gleb Natapov2961e8762013-11-25 15:37:13 +02005521
5522 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005523
5524 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005525 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005526
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005527 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5528 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5529
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005530 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005531
Wanpeng Lif53cd632014-12-02 19:14:58 +08005532 if (vmx_xsaves_supported())
5533 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5534
Peter Feiner4e595162016-07-07 14:49:58 -07005535 if (enable_pml) {
5536 ASSERT(vmx->pml_pg);
5537 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5538 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5539 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005540}
5541
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005542static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005543{
5544 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005545 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005546 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005547
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005548 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005549
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005550 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005551 kvm_set_cr8(vcpu, 0);
5552
5553 if (!init_event) {
5554 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5555 MSR_IA32_APICBASE_ENABLE;
5556 if (kvm_vcpu_is_reset_bsp(vcpu))
5557 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5558 apic_base_msr.host_initiated = true;
5559 kvm_set_apic_base(vcpu, &apic_base_msr);
5560 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005561
Avi Kivity2fb92db2011-04-27 19:42:18 +03005562 vmx_segment_cache_clear(vmx);
5563
Avi Kivity5706be02008-08-20 15:07:31 +03005564 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005565 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005566 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005567
5568 seg_setup(VCPU_SREG_DS);
5569 seg_setup(VCPU_SREG_ES);
5570 seg_setup(VCPU_SREG_FS);
5571 seg_setup(VCPU_SREG_GS);
5572 seg_setup(VCPU_SREG_SS);
5573
5574 vmcs_write16(GUEST_TR_SELECTOR, 0);
5575 vmcs_writel(GUEST_TR_BASE, 0);
5576 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5577 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5578
5579 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5580 vmcs_writel(GUEST_LDTR_BASE, 0);
5581 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5582 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5583
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005584 if (!init_event) {
5585 vmcs_write32(GUEST_SYSENTER_CS, 0);
5586 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5587 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5588 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5589 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005590
5591 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005592 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005593
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005594 vmcs_writel(GUEST_GDTR_BASE, 0);
5595 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5596
5597 vmcs_writel(GUEST_IDTR_BASE, 0);
5598 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5599
Anthony Liguori443381a2010-12-06 10:53:38 -06005600 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005601 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005602 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005603
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005604 setup_msrs(vmx);
5605
Avi Kivity6aa8b732006-12-10 02:21:36 -08005606 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5607
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005608 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005609 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005610 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005611 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005612 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005613 vmcs_write32(TPR_THRESHOLD, 0);
5614 }
5615
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005616 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005617
Andrey Smetanind62caab2015-11-10 15:36:33 +03005618 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005619 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5620
Sheng Yang2384d2b2008-01-17 15:14:33 +08005621 if (vmx->vpid != 0)
5622 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5623
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005624 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005625 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005626 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005627 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005628 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005629
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005630 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005631
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005632 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005633}
5634
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005635/*
5636 * In nested virtualization, check if L1 asked to exit on external interrupts.
5637 * For most existing hypervisors, this will always return true.
5638 */
5639static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5640{
5641 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5642 PIN_BASED_EXT_INTR_MASK;
5643}
5644
Bandan Das77b0f5d2014-04-19 18:17:45 -04005645/*
5646 * In nested virtualization, check if L1 has set
5647 * VM_EXIT_ACK_INTR_ON_EXIT
5648 */
5649static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5650{
5651 return get_vmcs12(vcpu)->vm_exit_controls &
5652 VM_EXIT_ACK_INTR_ON_EXIT;
5653}
5654
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005655static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5656{
5657 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5658 PIN_BASED_NMI_EXITING;
5659}
5660
Jan Kiszkac9a79532014-03-07 20:03:15 +01005661static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005662{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005663 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5664 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005665}
5666
Jan Kiszkac9a79532014-03-07 20:03:15 +01005667static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005668{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005669 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005670 enable_irq_window(vcpu);
5671 return;
5672 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005673
Paolo Bonzini47c01522016-12-19 11:44:07 +01005674 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5675 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005676}
5677
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005678static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005679{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005680 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005681 uint32_t intr;
5682 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005683
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005684 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005685
Avi Kivityfa89a812008-09-01 15:57:51 +03005686 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005687 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005688 int inc_eip = 0;
5689 if (vcpu->arch.interrupt.soft)
5690 inc_eip = vcpu->arch.event_exit_inst_len;
5691 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005692 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005693 return;
5694 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005695 intr = irq | INTR_INFO_VALID_MASK;
5696 if (vcpu->arch.interrupt.soft) {
5697 intr |= INTR_TYPE_SOFT_INTR;
5698 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5699 vmx->vcpu.arch.event_exit_inst_len);
5700 } else
5701 intr |= INTR_TYPE_EXT_INTR;
5702 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005703}
5704
Sheng Yangf08864b2008-05-15 18:23:25 +08005705static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5706{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005707 struct vcpu_vmx *vmx = to_vmx(vcpu);
5708
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005709 ++vcpu->stat.nmi_injections;
5710 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005711
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005712 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005713 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005714 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005715 return;
5716 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005717
Sheng Yangf08864b2008-05-15 18:23:25 +08005718 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5719 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005720}
5721
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005722static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5723{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005724 struct vcpu_vmx *vmx = to_vmx(vcpu);
5725 bool masked;
5726
5727 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005728 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005729 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5730 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5731 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005732}
5733
5734static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5735{
5736 struct vcpu_vmx *vmx = to_vmx(vcpu);
5737
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005738 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005739 if (masked)
5740 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5741 GUEST_INTR_STATE_NMI);
5742 else
5743 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5744 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005745}
5746
Jan Kiszka2505dc92013-04-14 12:12:47 +02005747static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5748{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005749 if (to_vmx(vcpu)->nested.nested_run_pending)
5750 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005751
Jan Kiszka2505dc92013-04-14 12:12:47 +02005752 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5753 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5754 | GUEST_INTR_STATE_NMI));
5755}
5756
Gleb Natapov78646122009-03-23 12:12:11 +02005757static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5758{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005759 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5760 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005761 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5762 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005763}
5764
Izik Eiduscbc94022007-10-25 00:29:55 +02005765static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5766{
5767 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005768
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005769 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5770 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005771 if (ret)
5772 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005773 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005774 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005775}
5776
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005777static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005778{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005779 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005780 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005781 /*
5782 * Update instruction length as we may reinject the exception
5783 * from user space while in guest debugging mode.
5784 */
5785 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5786 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005787 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005788 return false;
5789 /* fall through */
5790 case DB_VECTOR:
5791 if (vcpu->guest_debug &
5792 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5793 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005794 /* fall through */
5795 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005796 case OF_VECTOR:
5797 case BR_VECTOR:
5798 case UD_VECTOR:
5799 case DF_VECTOR:
5800 case SS_VECTOR:
5801 case GP_VECTOR:
5802 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005803 return true;
5804 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005805 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005806 return false;
5807}
5808
5809static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5810 int vec, u32 err_code)
5811{
5812 /*
5813 * Instruction with address size override prefix opcode 0x67
5814 * Cause the #SS fault with 0 error code in VM86 mode.
5815 */
5816 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5817 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5818 if (vcpu->arch.halt_request) {
5819 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005820 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005821 }
5822 return 1;
5823 }
5824 return 0;
5825 }
5826
5827 /*
5828 * Forward all other exceptions that are valid in real mode.
5829 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5830 * the required debugging infrastructure rework.
5831 */
5832 kvm_queue_exception(vcpu, vec);
5833 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005834}
5835
Andi Kleena0861c02009-06-08 17:37:09 +08005836/*
5837 * Trigger machine check on the host. We assume all the MSRs are already set up
5838 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5839 * We pass a fake environment to the machine check handler because we want
5840 * the guest to be always treated like user space, no matter what context
5841 * it used internally.
5842 */
5843static void kvm_machine_check(void)
5844{
5845#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5846 struct pt_regs regs = {
5847 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5848 .flags = X86_EFLAGS_IF,
5849 };
5850
5851 do_machine_check(&regs, 0);
5852#endif
5853}
5854
Avi Kivity851ba692009-08-24 11:10:17 +03005855static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005856{
5857 /* already handled by vcpu_run */
5858 return 1;
5859}
5860
Avi Kivity851ba692009-08-24 11:10:17 +03005861static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005862{
Avi Kivity1155f762007-11-22 11:30:47 +02005863 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005864 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005865 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005866 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005867 u32 vect_info;
5868 enum emulation_result er;
5869
Avi Kivity1155f762007-11-22 11:30:47 +02005870 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005871 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005872
Andi Kleena0861c02009-06-08 17:37:09 +08005873 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005874 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005875
Jim Mattsonef85b672016-12-12 11:01:37 -08005876 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005877 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005878
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005879 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005880 if (is_guest_mode(vcpu)) {
5881 kvm_queue_exception(vcpu, UD_VECTOR);
5882 return 1;
5883 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005884 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005885 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005886 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005887 return 1;
5888 }
5889
Avi Kivity6aa8b732006-12-10 02:21:36 -08005890 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005891 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005892 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005893
5894 /*
5895 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5896 * MMIO, it is better to report an internal error.
5897 * See the comments in vmx_handle_exit.
5898 */
5899 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5900 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5901 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5902 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005903 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005904 vcpu->run->internal.data[0] = vect_info;
5905 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005906 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005907 return 0;
5908 }
5909
Avi Kivity6aa8b732006-12-10 02:21:36 -08005910 if (is_page_fault(intr_info)) {
5911 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005912 /* EPT won't cause page fault directly */
5913 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
5914 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0,
5915 true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005916 }
5917
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005918 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005919
5920 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5921 return handle_rmode_exception(vcpu, ex_no, error_code);
5922
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005923 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005924 case AC_VECTOR:
5925 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5926 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005927 case DB_VECTOR:
5928 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5929 if (!(vcpu->guest_debug &
5930 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005931 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005932 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005933 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5934 skip_emulated_instruction(vcpu);
5935
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005936 kvm_queue_exception(vcpu, DB_VECTOR);
5937 return 1;
5938 }
5939 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5940 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5941 /* fall through */
5942 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005943 /*
5944 * Update instruction length as we may reinject #BP from
5945 * user space while in guest debugging mode. Reading it for
5946 * #DB as well causes no harm, it is not used in that case.
5947 */
5948 vmx->vcpu.arch.event_exit_inst_len =
5949 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005950 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005951 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005952 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5953 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005954 break;
5955 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005956 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5957 kvm_run->ex.exception = ex_no;
5958 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005959 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005960 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005961 return 0;
5962}
5963
Avi Kivity851ba692009-08-24 11:10:17 +03005964static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005965{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005966 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967 return 1;
5968}
5969
Avi Kivity851ba692009-08-24 11:10:17 +03005970static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005971{
Avi Kivity851ba692009-08-24 11:10:17 +03005972 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005973 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005974 return 0;
5975}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005976
Avi Kivity851ba692009-08-24 11:10:17 +03005977static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005978{
He, Qingbfdaab02007-09-12 14:18:28 +08005979 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005980 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005981 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005982
He, Qingbfdaab02007-09-12 14:18:28 +08005983 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005984 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005985 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005986
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005987 ++vcpu->stat.io_exits;
5988
5989 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005990 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005991
5992 port = exit_qualification >> 16;
5993 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005994
Kyle Huey6affcbe2016-11-29 12:40:40 -08005995 ret = kvm_skip_emulated_instruction(vcpu);
5996
5997 /*
5998 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5999 * KVM_EXIT_DEBUG here.
6000 */
6001 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006002}
6003
Ingo Molnar102d8322007-02-19 14:37:47 +02006004static void
6005vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
6006{
6007 /*
6008 * Patch in the VMCALL instruction:
6009 */
6010 hypercall[0] = 0x0f;
6011 hypercall[1] = 0x01;
6012 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006013}
6014
Guo Chao0fa06072012-06-28 15:16:19 +08006015/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006016static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6017{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006018 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006019 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6020 unsigned long orig_val = val;
6021
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006022 /*
6023 * We get here when L2 changed cr0 in a way that did not change
6024 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006025 * but did change L0 shadowed bits. So we first calculate the
6026 * effective cr0 value that L1 would like to write into the
6027 * hardware. It consists of the L2-owned bits from the new
6028 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006029 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006030 val = (val & ~vmcs12->cr0_guest_host_mask) |
6031 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6032
David Matlack38991522016-11-29 18:14:08 -08006033 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006034 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006035
6036 if (kvm_set_cr0(vcpu, val))
6037 return 1;
6038 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006039 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006040 } else {
6041 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006042 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006043 return 1;
David Matlack38991522016-11-29 18:14:08 -08006044
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006045 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006046 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006047}
6048
6049static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6050{
6051 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006052 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6053 unsigned long orig_val = val;
6054
6055 /* analogously to handle_set_cr0 */
6056 val = (val & ~vmcs12->cr4_guest_host_mask) |
6057 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6058 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006059 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006060 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006061 return 0;
6062 } else
6063 return kvm_set_cr4(vcpu, val);
6064}
6065
Avi Kivity851ba692009-08-24 11:10:17 +03006066static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006067{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006068 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006069 int cr;
6070 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006071 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006072 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006073
He, Qingbfdaab02007-09-12 14:18:28 +08006074 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006075 cr = exit_qualification & 15;
6076 reg = (exit_qualification >> 8) & 15;
6077 switch ((exit_qualification >> 4) & 3) {
6078 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006079 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006080 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006081 switch (cr) {
6082 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006083 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006084 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006085 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006086 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006087 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006088 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006089 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006090 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006091 case 8: {
6092 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006093 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006094 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006095 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006096 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006097 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006098 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006099 return ret;
6100 /*
6101 * TODO: we might be squashing a
6102 * KVM_GUESTDBG_SINGLESTEP-triggered
6103 * KVM_EXIT_DEBUG here.
6104 */
Avi Kivity851ba692009-08-24 11:10:17 +03006105 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006106 return 0;
6107 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006108 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006109 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006110 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006111 WARN_ONCE(1, "Guest should always own CR0.TS");
6112 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006113 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006114 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006115 case 1: /*mov from cr*/
6116 switch (cr) {
6117 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006118 val = kvm_read_cr3(vcpu);
6119 kvm_register_write(vcpu, reg, val);
6120 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006121 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006122 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006123 val = kvm_get_cr8(vcpu);
6124 kvm_register_write(vcpu, reg, val);
6125 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006126 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006127 }
6128 break;
6129 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006130 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006131 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006132 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006133
Kyle Huey6affcbe2016-11-29 12:40:40 -08006134 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006135 default:
6136 break;
6137 }
Avi Kivity851ba692009-08-24 11:10:17 +03006138 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006139 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006140 (int)(exit_qualification >> 4) & 3, cr);
6141 return 0;
6142}
6143
Avi Kivity851ba692009-08-24 11:10:17 +03006144static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006145{
He, Qingbfdaab02007-09-12 14:18:28 +08006146 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006147 int dr, dr7, reg;
6148
6149 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6150 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6151
6152 /* First, if DR does not exist, trigger UD */
6153 if (!kvm_require_dr(vcpu, dr))
6154 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006155
Jan Kiszkaf2483412010-01-20 18:20:20 +01006156 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006157 if (!kvm_require_cpl(vcpu, 0))
6158 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006159 dr7 = vmcs_readl(GUEST_DR7);
6160 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006161 /*
6162 * As the vm-exit takes precedence over the debug trap, we
6163 * need to emulate the latter, either for the host or the
6164 * guest debugging itself.
6165 */
6166 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006167 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006168 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006169 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006170 vcpu->run->debug.arch.exception = DB_VECTOR;
6171 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006172 return 0;
6173 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006174 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006175 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006176 kvm_queue_exception(vcpu, DB_VECTOR);
6177 return 1;
6178 }
6179 }
6180
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006181 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006182 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6183 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006184
6185 /*
6186 * No more DR vmexits; force a reload of the debug registers
6187 * and reenter on this instruction. The next vmexit will
6188 * retrieve the full state of the debug registers.
6189 */
6190 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6191 return 1;
6192 }
6193
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006194 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6195 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006196 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006197
6198 if (kvm_get_dr(vcpu, dr, &val))
6199 return 1;
6200 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006201 } else
Nadav Amit57773922014-06-18 17:19:23 +03006202 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006203 return 1;
6204
Kyle Huey6affcbe2016-11-29 12:40:40 -08006205 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006206}
6207
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006208static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6209{
6210 return vcpu->arch.dr6;
6211}
6212
6213static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6214{
6215}
6216
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006217static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6218{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006219 get_debugreg(vcpu->arch.db[0], 0);
6220 get_debugreg(vcpu->arch.db[1], 1);
6221 get_debugreg(vcpu->arch.db[2], 2);
6222 get_debugreg(vcpu->arch.db[3], 3);
6223 get_debugreg(vcpu->arch.dr6, 6);
6224 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6225
6226 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006227 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006228}
6229
Gleb Natapov020df072010-04-13 10:05:23 +03006230static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6231{
6232 vmcs_writel(GUEST_DR7, val);
6233}
6234
Avi Kivity851ba692009-08-24 11:10:17 +03006235static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006236{
Kyle Huey6a908b62016-11-29 12:40:37 -08006237 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006238}
6239
Avi Kivity851ba692009-08-24 11:10:17 +03006240static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006241{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006242 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006243 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006244
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006245 msr_info.index = ecx;
6246 msr_info.host_initiated = false;
6247 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006248 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006249 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006250 return 1;
6251 }
6252
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006253 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006254
Avi Kivity6aa8b732006-12-10 02:21:36 -08006255 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006256 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6257 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006258 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006259}
6260
Avi Kivity851ba692009-08-24 11:10:17 +03006261static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006262{
Will Auld8fe8ab42012-11-29 12:42:12 -08006263 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006264 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6265 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6266 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006267
Will Auld8fe8ab42012-11-29 12:42:12 -08006268 msr.data = data;
6269 msr.index = ecx;
6270 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006271 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006272 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006273 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006274 return 1;
6275 }
6276
Avi Kivity59200272010-01-25 19:47:02 +02006277 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006278 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006279}
6280
Avi Kivity851ba692009-08-24 11:10:17 +03006281static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006282{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006283 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006284 return 1;
6285}
6286
Avi Kivity851ba692009-08-24 11:10:17 +03006287static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006288{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006289 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6290 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006291
Avi Kivity3842d132010-07-27 12:30:24 +03006292 kvm_make_request(KVM_REQ_EVENT, vcpu);
6293
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006294 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006295 return 1;
6296}
6297
Avi Kivity851ba692009-08-24 11:10:17 +03006298static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006299{
Avi Kivityd3bef152007-06-05 15:53:05 +03006300 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006301}
6302
Avi Kivity851ba692009-08-24 11:10:17 +03006303static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006304{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006305 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006306}
6307
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006308static int handle_invd(struct kvm_vcpu *vcpu)
6309{
Andre Przywara51d8b662010-12-21 11:12:02 +01006310 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006311}
6312
Avi Kivity851ba692009-08-24 11:10:17 +03006313static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006314{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006315 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006316
6317 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006318 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006319}
6320
Avi Kivityfee84b02011-11-10 14:57:25 +02006321static int handle_rdpmc(struct kvm_vcpu *vcpu)
6322{
6323 int err;
6324
6325 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006326 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006327}
6328
Avi Kivity851ba692009-08-24 11:10:17 +03006329static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006330{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006331 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006332}
6333
Dexuan Cui2acf9232010-06-10 11:27:12 +08006334static int handle_xsetbv(struct kvm_vcpu *vcpu)
6335{
6336 u64 new_bv = kvm_read_edx_eax(vcpu);
6337 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6338
6339 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006340 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006341 return 1;
6342}
6343
Wanpeng Lif53cd632014-12-02 19:14:58 +08006344static int handle_xsaves(struct kvm_vcpu *vcpu)
6345{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006346 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006347 WARN(1, "this should never happen\n");
6348 return 1;
6349}
6350
6351static int handle_xrstors(struct kvm_vcpu *vcpu)
6352{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006353 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006354 WARN(1, "this should never happen\n");
6355 return 1;
6356}
6357
Avi Kivity851ba692009-08-24 11:10:17 +03006358static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006359{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006360 if (likely(fasteoi)) {
6361 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6362 int access_type, offset;
6363
6364 access_type = exit_qualification & APIC_ACCESS_TYPE;
6365 offset = exit_qualification & APIC_ACCESS_OFFSET;
6366 /*
6367 * Sane guest uses MOV to write EOI, with written value
6368 * not cared. So make a short-circuit here by avoiding
6369 * heavy instruction emulation.
6370 */
6371 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6372 (offset == APIC_EOI)) {
6373 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006374 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006375 }
6376 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006377 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006378}
6379
Yang Zhangc7c9c562013-01-25 10:18:51 +08006380static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6381{
6382 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6383 int vector = exit_qualification & 0xff;
6384
6385 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6386 kvm_apic_set_eoi_accelerated(vcpu, vector);
6387 return 1;
6388}
6389
Yang Zhang83d4c282013-01-25 10:18:49 +08006390static int handle_apic_write(struct kvm_vcpu *vcpu)
6391{
6392 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6393 u32 offset = exit_qualification & 0xfff;
6394
6395 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6396 kvm_apic_write_nodecode(vcpu, offset);
6397 return 1;
6398}
6399
Avi Kivity851ba692009-08-24 11:10:17 +03006400static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006401{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006402 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006403 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006404 bool has_error_code = false;
6405 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006406 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006407 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006408
6409 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006410 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006411 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006412
6413 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6414
6415 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006416 if (reason == TASK_SWITCH_GATE && idt_v) {
6417 switch (type) {
6418 case INTR_TYPE_NMI_INTR:
6419 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006420 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006421 break;
6422 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006423 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006424 kvm_clear_interrupt_queue(vcpu);
6425 break;
6426 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006427 if (vmx->idt_vectoring_info &
6428 VECTORING_INFO_DELIVER_CODE_MASK) {
6429 has_error_code = true;
6430 error_code =
6431 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6432 }
6433 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006434 case INTR_TYPE_SOFT_EXCEPTION:
6435 kvm_clear_exception_queue(vcpu);
6436 break;
6437 default:
6438 break;
6439 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006440 }
Izik Eidus37817f22008-03-24 23:14:53 +02006441 tss_selector = exit_qualification;
6442
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006443 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6444 type != INTR_TYPE_EXT_INTR &&
6445 type != INTR_TYPE_NMI_INTR))
6446 skip_emulated_instruction(vcpu);
6447
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006448 if (kvm_task_switch(vcpu, tss_selector,
6449 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6450 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006451 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6452 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6453 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006454 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006455 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006456
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006457 /*
6458 * TODO: What about debug traps on tss switch?
6459 * Are we supposed to inject them and update dr6?
6460 */
6461
6462 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006463}
6464
Avi Kivity851ba692009-08-24 11:10:17 +03006465static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006466{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006467 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006468 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006469 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006470
Sheng Yangf9c617f2009-03-25 10:08:52 +08006471 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006472
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006473 /*
6474 * EPT violation happened while executing iret from NMI,
6475 * "blocked by NMI" bit has to be set before next VM entry.
6476 * There are errata that may cause this bit to not be set:
6477 * AAK134, BY25.
6478 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006479 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006480 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006481 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6482
Sheng Yang14394422008-04-28 12:24:45 +08006483 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006484 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006485
Junaid Shahid27959a42016-12-06 16:46:10 -08006486 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006487 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006488 ? PFERR_USER_MASK : 0;
6489 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006490 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006491 ? PFERR_WRITE_MASK : 0;
6492 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006493 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006494 ? PFERR_FETCH_MASK : 0;
6495 /* ept page table entry is present? */
6496 error_code |= (exit_qualification &
6497 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6498 EPT_VIOLATION_EXECUTABLE))
6499 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006500
Paolo Bonzinieebed242016-11-28 14:39:58 +01006501 error_code |= (exit_qualification & 0x100) != 0 ?
6502 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03006503
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006504 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006505 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006506}
6507
Avi Kivity851ba692009-08-24 11:10:17 +03006508static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006509{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006510 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006511 gpa_t gpa;
6512
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006513 /*
6514 * A nested guest cannot optimize MMIO vmexits, because we have an
6515 * nGPA here instead of the required GPA.
6516 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006517 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006518 if (!is_guest_mode(vcpu) &&
6519 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006520 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006521 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006522 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006523
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006524 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6525 if (ret >= 0)
6526 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006527
6528 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006529 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006530
Avi Kivity851ba692009-08-24 11:10:17 +03006531 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6532 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006533
6534 return 0;
6535}
6536
Avi Kivity851ba692009-08-24 11:10:17 +03006537static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006538{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006539 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6540 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006541 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006542 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006543
6544 return 1;
6545}
6546
Mohammed Gamal80ced182009-09-01 12:48:18 +02006547static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006548{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006549 struct vcpu_vmx *vmx = to_vmx(vcpu);
6550 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006551 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006552 u32 cpu_exec_ctrl;
6553 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006554 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006555
6556 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6557 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006558
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006559 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006560 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006561 return handle_interrupt_window(&vmx->vcpu);
6562
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006563 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006564 return 1;
6565
Gleb Natapov991eebf2013-04-11 12:10:51 +03006566 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006567
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006568 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006569 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006570 ret = 0;
6571 goto out;
6572 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006573
Avi Kivityde5f70e2012-06-12 20:22:28 +03006574 if (err != EMULATE_DONE) {
6575 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6576 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6577 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006578 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006579 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006580
Gleb Natapov8d76c492013-05-08 18:38:44 +03006581 if (vcpu->arch.halt_request) {
6582 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006583 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006584 goto out;
6585 }
6586
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006587 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006588 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006589 if (need_resched())
6590 schedule();
6591 }
6592
Mohammed Gamal80ced182009-09-01 12:48:18 +02006593out:
6594 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006595}
6596
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006597static int __grow_ple_window(int val)
6598{
6599 if (ple_window_grow < 1)
6600 return ple_window;
6601
6602 val = min(val, ple_window_actual_max);
6603
6604 if (ple_window_grow < ple_window)
6605 val *= ple_window_grow;
6606 else
6607 val += ple_window_grow;
6608
6609 return val;
6610}
6611
6612static int __shrink_ple_window(int val, int modifier, int minimum)
6613{
6614 if (modifier < 1)
6615 return ple_window;
6616
6617 if (modifier < ple_window)
6618 val /= modifier;
6619 else
6620 val -= modifier;
6621
6622 return max(val, minimum);
6623}
6624
6625static void grow_ple_window(struct kvm_vcpu *vcpu)
6626{
6627 struct vcpu_vmx *vmx = to_vmx(vcpu);
6628 int old = vmx->ple_window;
6629
6630 vmx->ple_window = __grow_ple_window(old);
6631
6632 if (vmx->ple_window != old)
6633 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006634
6635 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006636}
6637
6638static void shrink_ple_window(struct kvm_vcpu *vcpu)
6639{
6640 struct vcpu_vmx *vmx = to_vmx(vcpu);
6641 int old = vmx->ple_window;
6642
6643 vmx->ple_window = __shrink_ple_window(old,
6644 ple_window_shrink, ple_window);
6645
6646 if (vmx->ple_window != old)
6647 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006648
6649 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006650}
6651
6652/*
6653 * ple_window_actual_max is computed to be one grow_ple_window() below
6654 * ple_window_max. (See __grow_ple_window for the reason.)
6655 * This prevents overflows, because ple_window_max is int.
6656 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6657 * this process.
6658 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6659 */
6660static void update_ple_window_actual_max(void)
6661{
6662 ple_window_actual_max =
6663 __shrink_ple_window(max(ple_window_max, ple_window),
6664 ple_window_grow, INT_MIN);
6665}
6666
Feng Wubf9f6ac2015-09-18 22:29:55 +08006667/*
6668 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6669 */
6670static void wakeup_handler(void)
6671{
6672 struct kvm_vcpu *vcpu;
6673 int cpu = smp_processor_id();
6674
6675 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6676 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6677 blocked_vcpu_list) {
6678 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6679
6680 if (pi_test_on(pi_desc) == 1)
6681 kvm_vcpu_kick(vcpu);
6682 }
6683 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6684}
6685
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006686void vmx_enable_tdp(void)
6687{
6688 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6689 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6690 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6691 0ull, VMX_EPT_EXECUTABLE_MASK,
6692 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05006693 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006694
6695 ept_set_mmio_spte_mask();
6696 kvm_enable_tdp();
6697}
6698
Tiejun Chenf2c76482014-10-28 10:14:47 +08006699static __init int hardware_setup(void)
6700{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006701 int r = -ENOMEM, i, msr;
6702
6703 rdmsrl_safe(MSR_EFER, &host_efer);
6704
6705 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6706 kvm_define_shared_msr(i, vmx_msr_index[i]);
6707
Radim Krčmář23611332016-09-29 22:41:33 +02006708 for (i = 0; i < VMX_BITMAP_NR; i++) {
6709 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6710 if (!vmx_bitmap[i])
6711 goto out;
6712 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006713
6714 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006715 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6716 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6717
6718 /*
6719 * Allow direct access to the PC debug port (it is often used for I/O
6720 * delays, but the vmexits simply slow things down).
6721 */
6722 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6723 clear_bit(0x80, vmx_io_bitmap_a);
6724
6725 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6726
6727 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6728 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6729
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006730 if (setup_vmcs_config(&vmcs_config) < 0) {
6731 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006732 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006733 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006734
6735 if (boot_cpu_has(X86_FEATURE_NX))
6736 kvm_enable_efer_bits(EFER_NX);
6737
Wanpeng Li08d839c2017-03-23 05:30:08 -07006738 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6739 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006740 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006741
Tiejun Chenf2c76482014-10-28 10:14:47 +08006742 if (!cpu_has_vmx_shadow_vmcs())
6743 enable_shadow_vmcs = 0;
6744 if (enable_shadow_vmcs)
6745 init_vmcs_shadow_fields();
6746
6747 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006748 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02006749 !cpu_has_vmx_ept_mt_wb() ||
6750 !cpu_has_vmx_invept_global()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006751 enable_ept = 0;
6752 enable_unrestricted_guest = 0;
6753 enable_ept_ad_bits = 0;
6754 }
6755
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006756 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006757 enable_ept_ad_bits = 0;
6758
6759 if (!cpu_has_vmx_unrestricted_guest())
6760 enable_unrestricted_guest = 0;
6761
Paolo Bonziniad15a292015-01-30 16:18:49 +01006762 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006763 flexpriority_enabled = 0;
6764
Paolo Bonziniad15a292015-01-30 16:18:49 +01006765 /*
6766 * set_apic_access_page_addr() is used to reload apic access
6767 * page upon invalidation. No need to do anything if not
6768 * using the APIC_ACCESS_ADDR VMCS field.
6769 */
6770 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006771 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006772
6773 if (!cpu_has_vmx_tpr_shadow())
6774 kvm_x86_ops->update_cr8_intercept = NULL;
6775
6776 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6777 kvm_disable_largepages();
6778
Wanpeng Li0f107682017-09-28 18:06:24 -07006779 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006780 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07006781 ple_window = 0;
6782 ple_window_grow = 0;
6783 ple_window_max = 0;
6784 ple_window_shrink = 0;
6785 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006786
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006787 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006788 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006789 kvm_x86_ops->sync_pir_to_irr = NULL;
6790 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006791
Haozhong Zhang64903d62015-10-20 15:39:09 +08006792 if (cpu_has_vmx_tsc_scaling()) {
6793 kvm_has_tsc_control = true;
6794 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6795 kvm_tsc_scaling_ratio_frac_bits = 48;
6796 }
6797
Tiejun Chenbaa03522014-12-23 16:21:11 +08006798 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6799 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6800 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6801 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6802 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6803 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006804
Wanpeng Lic63e4562016-09-23 19:17:16 +08006805 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6806 vmx_msr_bitmap_legacy, PAGE_SIZE);
6807 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6808 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006809 memcpy(vmx_msr_bitmap_legacy_x2apic,
6810 vmx_msr_bitmap_legacy, PAGE_SIZE);
6811 memcpy(vmx_msr_bitmap_longmode_x2apic,
6812 vmx_msr_bitmap_longmode, PAGE_SIZE);
6813
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006814 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6815
Radim Krčmář40d83382016-09-29 22:41:31 +02006816 for (msr = 0x800; msr <= 0x8ff; msr++) {
6817 if (msr == 0x839 /* TMCCT */)
6818 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006819 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006820 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006821
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006822 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006823 * TPR reads and writes can be virtualized even if virtual interrupt
6824 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006825 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006826 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6827 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6828
Roman Kagan3ce424e2016-05-18 17:48:20 +03006829 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006830 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006831 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006832 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006833
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006834 if (enable_ept)
6835 vmx_enable_tdp();
6836 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006837 kvm_disable_tdp();
6838
6839 update_ple_window_actual_max();
6840
Kai Huang843e4332015-01-28 10:54:28 +08006841 /*
6842 * Only enable PML when hardware supports PML feature, and both EPT
6843 * and EPT A/D bit features are enabled -- PML depends on them to work.
6844 */
6845 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6846 enable_pml = 0;
6847
6848 if (!enable_pml) {
6849 kvm_x86_ops->slot_enable_log_dirty = NULL;
6850 kvm_x86_ops->slot_disable_log_dirty = NULL;
6851 kvm_x86_ops->flush_log_dirty = NULL;
6852 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6853 }
6854
Yunhong Jiang64672c92016-06-13 14:19:59 -07006855 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6856 u64 vmx_msr;
6857
6858 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6859 cpu_preemption_timer_multi =
6860 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6861 } else {
6862 kvm_x86_ops->set_hv_timer = NULL;
6863 kvm_x86_ops->cancel_hv_timer = NULL;
6864 }
6865
Feng Wubf9f6ac2015-09-18 22:29:55 +08006866 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6867
Ashok Rajc45dcc72016-06-22 14:59:56 +08006868 kvm_mce_cap_supported |= MCG_LMCE_P;
6869
Tiejun Chenf2c76482014-10-28 10:14:47 +08006870 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006871
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006872out:
Radim Krčmář23611332016-09-29 22:41:33 +02006873 for (i = 0; i < VMX_BITMAP_NR; i++)
6874 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006875
6876 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006877}
6878
6879static __exit void hardware_unsetup(void)
6880{
Radim Krčmář23611332016-09-29 22:41:33 +02006881 int i;
6882
6883 for (i = 0; i < VMX_BITMAP_NR; i++)
6884 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006885
Tiejun Chenf2c76482014-10-28 10:14:47 +08006886 free_kvm_area();
6887}
6888
Avi Kivity6aa8b732006-12-10 02:21:36 -08006889/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006890 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6891 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6892 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006893static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006894{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006895 if (ple_gap)
6896 grow_ple_window(vcpu);
6897
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006898 /*
6899 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6900 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6901 * never set PAUSE_EXITING and just set PLE if supported,
6902 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6903 */
6904 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006905 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006906}
6907
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006908static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006909{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006910 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006911}
6912
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006913static int handle_mwait(struct kvm_vcpu *vcpu)
6914{
6915 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6916 return handle_nop(vcpu);
6917}
6918
Jim Mattson45ec3682017-08-23 16:32:04 -07006919static int handle_invalid_op(struct kvm_vcpu *vcpu)
6920{
6921 kvm_queue_exception(vcpu, UD_VECTOR);
6922 return 1;
6923}
6924
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006925static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6926{
6927 return 1;
6928}
6929
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006930static int handle_monitor(struct kvm_vcpu *vcpu)
6931{
6932 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6933 return handle_nop(vcpu);
6934}
6935
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006936/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006937 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6938 * We could reuse a single VMCS for all the L2 guests, but we also want the
6939 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6940 * allows keeping them loaded on the processor, and in the future will allow
6941 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6942 * every entry if they never change.
6943 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6944 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6945 *
6946 * The following functions allocate and free a vmcs02 in this pool.
6947 */
6948
6949/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6950static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6951{
6952 struct vmcs02_list *item;
6953 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6954 if (item->vmptr == vmx->nested.current_vmptr) {
6955 list_move(&item->list, &vmx->nested.vmcs02_pool);
6956 return &item->vmcs02;
6957 }
6958
6959 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6960 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006961 item = list_last_entry(&vmx->nested.vmcs02_pool,
6962 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006963 item->vmptr = vmx->nested.current_vmptr;
6964 list_move(&item->list, &vmx->nested.vmcs02_pool);
6965 return &item->vmcs02;
6966 }
6967
6968 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006969 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006970 if (!item)
6971 return NULL;
6972 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006973 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006974 if (!item->vmcs02.vmcs) {
6975 kfree(item);
6976 return NULL;
6977 }
6978 loaded_vmcs_init(&item->vmcs02);
6979 item->vmptr = vmx->nested.current_vmptr;
6980 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6981 vmx->nested.vmcs02_num++;
6982 return &item->vmcs02;
6983}
6984
6985/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6986static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6987{
6988 struct vmcs02_list *item;
6989 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6990 if (item->vmptr == vmptr) {
6991 free_loaded_vmcs(&item->vmcs02);
6992 list_del(&item->list);
6993 kfree(item);
6994 vmx->nested.vmcs02_num--;
6995 return;
6996 }
6997}
6998
6999/*
7000 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007001 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
7002 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007003 */
7004static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
7005{
7006 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007007
7008 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007009 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007010 /*
7011 * Something will leak if the above WARN triggers. Better than
7012 * a use-after-free.
7013 */
7014 if (vmx->loaded_vmcs == &item->vmcs02)
7015 continue;
7016
7017 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007018 list_del(&item->list);
7019 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007020 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007021 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007022}
7023
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007024/*
7025 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7026 * set the success or error code of an emulated VMX instruction, as specified
7027 * by Vol 2B, VMX Instruction Reference, "Conventions".
7028 */
7029static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7030{
7031 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7032 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7033 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7034}
7035
7036static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7037{
7038 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7039 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7040 X86_EFLAGS_SF | X86_EFLAGS_OF))
7041 | X86_EFLAGS_CF);
7042}
7043
Abel Gordon145c28d2013-04-18 14:36:55 +03007044static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007045 u32 vm_instruction_error)
7046{
7047 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7048 /*
7049 * failValid writes the error number to the current VMCS, which
7050 * can't be done there isn't a current VMCS.
7051 */
7052 nested_vmx_failInvalid(vcpu);
7053 return;
7054 }
7055 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7056 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7057 X86_EFLAGS_SF | X86_EFLAGS_OF))
7058 | X86_EFLAGS_ZF);
7059 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7060 /*
7061 * We don't need to force a shadow sync because
7062 * VM_INSTRUCTION_ERROR is not shadowed
7063 */
7064}
Abel Gordon145c28d2013-04-18 14:36:55 +03007065
Wincy Vanff651cb2014-12-11 08:52:58 +03007066static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7067{
7068 /* TODO: not to reset guest simply here. */
7069 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007070 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007071}
7072
Jan Kiszkaf4124502014-03-07 20:03:13 +01007073static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7074{
7075 struct vcpu_vmx *vmx =
7076 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7077
7078 vmx->nested.preemption_timer_expired = true;
7079 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7080 kvm_vcpu_kick(&vmx->vcpu);
7081
7082 return HRTIMER_NORESTART;
7083}
7084
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007085/*
Bandan Das19677e32014-05-06 02:19:15 -04007086 * Decode the memory-address operand of a vmx instruction, as recorded on an
7087 * exit caused by such an instruction (run by a guest hypervisor).
7088 * On success, returns 0. When the operand is invalid, returns 1 and throws
7089 * #UD or #GP.
7090 */
7091static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7092 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007093 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007094{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007095 gva_t off;
7096 bool exn;
7097 struct kvm_segment s;
7098
Bandan Das19677e32014-05-06 02:19:15 -04007099 /*
7100 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7101 * Execution", on an exit, vmx_instruction_info holds most of the
7102 * addressing components of the operand. Only the displacement part
7103 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7104 * For how an actual address is calculated from all these components,
7105 * refer to Vol. 1, "Operand Addressing".
7106 */
7107 int scaling = vmx_instruction_info & 3;
7108 int addr_size = (vmx_instruction_info >> 7) & 7;
7109 bool is_reg = vmx_instruction_info & (1u << 10);
7110 int seg_reg = (vmx_instruction_info >> 15) & 7;
7111 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7112 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7113 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7114 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7115
7116 if (is_reg) {
7117 kvm_queue_exception(vcpu, UD_VECTOR);
7118 return 1;
7119 }
7120
7121 /* Addr = segment_base + offset */
7122 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007123 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007124 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007125 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007126 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007127 off += kvm_register_read(vcpu, index_reg)<<scaling;
7128 vmx_get_segment(vcpu, &s, seg_reg);
7129 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007130
7131 if (addr_size == 1) /* 32 bit */
7132 *ret &= 0xffffffff;
7133
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007134 /* Checks for #GP/#SS exceptions. */
7135 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007136 if (is_long_mode(vcpu)) {
7137 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7138 * non-canonical form. This is the only check on the memory
7139 * destination for long mode!
7140 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007141 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007142 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007143 /* Protected mode: apply checks for segment validity in the
7144 * following order:
7145 * - segment type check (#GP(0) may be thrown)
7146 * - usability check (#GP(0)/#SS(0))
7147 * - limit check (#GP(0)/#SS(0))
7148 */
7149 if (wr)
7150 /* #GP(0) if the destination operand is located in a
7151 * read-only data segment or any code segment.
7152 */
7153 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7154 else
7155 /* #GP(0) if the source operand is located in an
7156 * execute-only code segment
7157 */
7158 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007159 if (exn) {
7160 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7161 return 1;
7162 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007163 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7164 */
7165 exn = (s.unusable != 0);
7166 /* Protected mode: #GP(0)/#SS(0) if the memory
7167 * operand is outside the segment limit.
7168 */
7169 exn = exn || (off + sizeof(u64) > s.limit);
7170 }
7171 if (exn) {
7172 kvm_queue_exception_e(vcpu,
7173 seg_reg == VCPU_SREG_SS ?
7174 SS_VECTOR : GP_VECTOR,
7175 0);
7176 return 1;
7177 }
7178
Bandan Das19677e32014-05-06 02:19:15 -04007179 return 0;
7180}
7181
Radim Krčmářcbf71272017-05-19 15:48:51 +02007182static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007183{
7184 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007185 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007186
7187 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007188 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007189 return 1;
7190
Radim Krčmářcbf71272017-05-19 15:48:51 +02007191 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7192 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007193 kvm_inject_page_fault(vcpu, &e);
7194 return 1;
7195 }
7196
Bandan Das3573e222014-05-06 02:19:16 -04007197 return 0;
7198}
7199
Jim Mattsone29acc52016-11-30 12:03:43 -08007200static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7201{
7202 struct vcpu_vmx *vmx = to_vmx(vcpu);
7203 struct vmcs *shadow_vmcs;
7204
7205 if (cpu_has_vmx_msr_bitmap()) {
7206 vmx->nested.msr_bitmap =
7207 (unsigned long *)__get_free_page(GFP_KERNEL);
7208 if (!vmx->nested.msr_bitmap)
7209 goto out_msr_bitmap;
7210 }
7211
7212 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7213 if (!vmx->nested.cached_vmcs12)
7214 goto out_cached_vmcs12;
7215
7216 if (enable_shadow_vmcs) {
7217 shadow_vmcs = alloc_vmcs();
7218 if (!shadow_vmcs)
7219 goto out_shadow_vmcs;
7220 /* mark vmcs as shadow */
7221 shadow_vmcs->revision_id |= (1u << 31);
7222 /* init shadow vmcs */
7223 vmcs_clear(shadow_vmcs);
7224 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7225 }
7226
7227 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7228 vmx->nested.vmcs02_num = 0;
7229
7230 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7231 HRTIMER_MODE_REL_PINNED);
7232 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7233
7234 vmx->nested.vmxon = true;
7235 return 0;
7236
7237out_shadow_vmcs:
7238 kfree(vmx->nested.cached_vmcs12);
7239
7240out_cached_vmcs12:
7241 free_page((unsigned long)vmx->nested.msr_bitmap);
7242
7243out_msr_bitmap:
7244 return -ENOMEM;
7245}
7246
Bandan Das3573e222014-05-06 02:19:16 -04007247/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007248 * Emulate the VMXON instruction.
7249 * Currently, we just remember that VMX is active, and do not save or even
7250 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7251 * do not currently need to store anything in that guest-allocated memory
7252 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7253 * argument is different from the VMXON pointer (which the spec says they do).
7254 */
7255static int handle_vmon(struct kvm_vcpu *vcpu)
7256{
Jim Mattsone29acc52016-11-30 12:03:43 -08007257 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007258 gpa_t vmptr;
7259 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007260 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007261 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7262 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007263
Jim Mattson70f3aac2017-04-26 08:53:46 -07007264 /*
7265 * The Intel VMX Instruction Reference lists a bunch of bits that are
7266 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7267 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7268 * Otherwise, we should fail with #UD. But most faulting conditions
7269 * have already been checked by hardware, prior to the VM-exit for
7270 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7271 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007272 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007273 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007274 kvm_queue_exception(vcpu, UD_VECTOR);
7275 return 1;
7276 }
7277
Abel Gordon145c28d2013-04-18 14:36:55 +03007278 if (vmx->nested.vmxon) {
7279 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007280 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007281 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007282
Haozhong Zhang3b840802016-06-22 14:59:54 +08007283 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007284 != VMXON_NEEDED_FEATURES) {
7285 kvm_inject_gp(vcpu, 0);
7286 return 1;
7287 }
7288
Radim Krčmářcbf71272017-05-19 15:48:51 +02007289 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007290 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007291
7292 /*
7293 * SDM 3: 24.11.5
7294 * The first 4 bytes of VMXON region contain the supported
7295 * VMCS revision identifier
7296 *
7297 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7298 * which replaces physical address width with 32
7299 */
7300 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7301 nested_vmx_failInvalid(vcpu);
7302 return kvm_skip_emulated_instruction(vcpu);
7303 }
7304
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007305 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7306 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007307 nested_vmx_failInvalid(vcpu);
7308 return kvm_skip_emulated_instruction(vcpu);
7309 }
7310 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7311 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007312 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007313 nested_vmx_failInvalid(vcpu);
7314 return kvm_skip_emulated_instruction(vcpu);
7315 }
7316 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007317 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007318
7319 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007320 ret = enter_vmx_operation(vcpu);
7321 if (ret)
7322 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007323
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007324 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007325 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007326}
7327
7328/*
7329 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7330 * for running VMX instructions (except VMXON, whose prerequisites are
7331 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007332 * Note that many of these exceptions have priority over VM exits, so they
7333 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007334 */
7335static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7336{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007337 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007338 kvm_queue_exception(vcpu, UD_VECTOR);
7339 return 0;
7340 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007341 return 1;
7342}
7343
David Matlack8ca44e82017-08-01 14:00:39 -07007344static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7345{
7346 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7347 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7348}
7349
Abel Gordone7953d72013-04-18 14:37:55 +03007350static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7351{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007352 if (vmx->nested.current_vmptr == -1ull)
7353 return;
7354
Abel Gordon012f83c2013-04-18 14:39:25 +03007355 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007356 /* copy to memory all shadowed fields in case
7357 they were modified */
7358 copy_shadow_to_vmcs12(vmx);
7359 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007360 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007361 }
Wincy Van705699a2015-02-03 23:58:17 +08007362 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007363
7364 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007365 kvm_vcpu_write_guest_page(&vmx->vcpu,
7366 vmx->nested.current_vmptr >> PAGE_SHIFT,
7367 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007368
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007369 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007370}
7371
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007372/*
7373 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7374 * just stops using VMX.
7375 */
7376static void free_nested(struct vcpu_vmx *vmx)
7377{
7378 if (!vmx->nested.vmxon)
7379 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007380
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007381 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007382 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007383 vmx->nested.posted_intr_nv = -1;
7384 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007385 if (vmx->nested.msr_bitmap) {
7386 free_page((unsigned long)vmx->nested.msr_bitmap);
7387 vmx->nested.msr_bitmap = NULL;
7388 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007389 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007390 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007391 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7392 free_vmcs(vmx->vmcs01.shadow_vmcs);
7393 vmx->vmcs01.shadow_vmcs = NULL;
7394 }
David Matlack4f2777b2016-07-13 17:16:37 -07007395 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007396 /* Unpin physical memory we referred to in current vmcs02 */
7397 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007398 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007399 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007400 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007401 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007402 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007403 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007404 }
Wincy Van705699a2015-02-03 23:58:17 +08007405 if (vmx->nested.pi_desc_page) {
7406 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007407 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007408 vmx->nested.pi_desc_page = NULL;
7409 vmx->nested.pi_desc = NULL;
7410 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007411
7412 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007413}
7414
7415/* Emulate the VMXOFF instruction */
7416static int handle_vmoff(struct kvm_vcpu *vcpu)
7417{
7418 if (!nested_vmx_check_permission(vcpu))
7419 return 1;
7420 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007421 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007422 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007423}
7424
Nadav Har'El27d6c862011-05-25 23:06:59 +03007425/* Emulate the VMCLEAR instruction */
7426static int handle_vmclear(struct kvm_vcpu *vcpu)
7427{
7428 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007429 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007430 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007431
7432 if (!nested_vmx_check_permission(vcpu))
7433 return 1;
7434
Radim Krčmářcbf71272017-05-19 15:48:51 +02007435 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007436 return 1;
7437
Radim Krčmářcbf71272017-05-19 15:48:51 +02007438 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7439 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7440 return kvm_skip_emulated_instruction(vcpu);
7441 }
7442
7443 if (vmptr == vmx->nested.vmxon_ptr) {
7444 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7445 return kvm_skip_emulated_instruction(vcpu);
7446 }
7447
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007448 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007449 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007450
Jim Mattson587d7e722017-03-02 12:41:48 -08007451 kvm_vcpu_write_guest(vcpu,
7452 vmptr + offsetof(struct vmcs12, launch_state),
7453 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007454
7455 nested_free_vmcs02(vmx, vmptr);
7456
Nadav Har'El27d6c862011-05-25 23:06:59 +03007457 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007458 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007459}
7460
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007461static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7462
7463/* Emulate the VMLAUNCH instruction */
7464static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7465{
7466 return nested_vmx_run(vcpu, true);
7467}
7468
7469/* Emulate the VMRESUME instruction */
7470static int handle_vmresume(struct kvm_vcpu *vcpu)
7471{
7472
7473 return nested_vmx_run(vcpu, false);
7474}
7475
Nadav Har'El49f705c2011-05-25 23:08:30 +03007476/*
7477 * Read a vmcs12 field. Since these can have varying lengths and we return
7478 * one type, we chose the biggest type (u64) and zero-extend the return value
7479 * to that size. Note that the caller, handle_vmread, might need to use only
7480 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7481 * 64-bit fields are to be returned).
7482 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007483static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7484 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007485{
7486 short offset = vmcs_field_to_offset(field);
7487 char *p;
7488
7489 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007490 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007491
7492 p = ((char *)(get_vmcs12(vcpu))) + offset;
7493
7494 switch (vmcs_field_type(field)) {
7495 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7496 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007497 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007498 case VMCS_FIELD_TYPE_U16:
7499 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007500 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007501 case VMCS_FIELD_TYPE_U32:
7502 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007503 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007504 case VMCS_FIELD_TYPE_U64:
7505 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007506 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007507 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007508 WARN_ON(1);
7509 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007510 }
7511}
7512
Abel Gordon20b97fe2013-04-18 14:36:25 +03007513
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007514static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7515 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007516 short offset = vmcs_field_to_offset(field);
7517 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7518 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007519 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007520
7521 switch (vmcs_field_type(field)) {
7522 case VMCS_FIELD_TYPE_U16:
7523 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007524 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007525 case VMCS_FIELD_TYPE_U32:
7526 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007527 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007528 case VMCS_FIELD_TYPE_U64:
7529 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007530 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007531 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7532 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007533 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007534 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007535 WARN_ON(1);
7536 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007537 }
7538
7539}
7540
Abel Gordon16f5b902013-04-18 14:38:25 +03007541static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7542{
7543 int i;
7544 unsigned long field;
7545 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007546 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007547 const unsigned long *fields = shadow_read_write_fields;
7548 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007549
Jan Kiszka282da872014-10-08 18:05:39 +02007550 preempt_disable();
7551
Abel Gordon16f5b902013-04-18 14:38:25 +03007552 vmcs_load(shadow_vmcs);
7553
7554 for (i = 0; i < num_fields; i++) {
7555 field = fields[i];
7556 switch (vmcs_field_type(field)) {
7557 case VMCS_FIELD_TYPE_U16:
7558 field_value = vmcs_read16(field);
7559 break;
7560 case VMCS_FIELD_TYPE_U32:
7561 field_value = vmcs_read32(field);
7562 break;
7563 case VMCS_FIELD_TYPE_U64:
7564 field_value = vmcs_read64(field);
7565 break;
7566 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7567 field_value = vmcs_readl(field);
7568 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007569 default:
7570 WARN_ON(1);
7571 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007572 }
7573 vmcs12_write_any(&vmx->vcpu, field, field_value);
7574 }
7575
7576 vmcs_clear(shadow_vmcs);
7577 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007578
7579 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007580}
7581
Abel Gordonc3114422013-04-18 14:38:55 +03007582static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7583{
Mathias Krausec2bae892013-06-26 20:36:21 +02007584 const unsigned long *fields[] = {
7585 shadow_read_write_fields,
7586 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007587 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007588 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007589 max_shadow_read_write_fields,
7590 max_shadow_read_only_fields
7591 };
7592 int i, q;
7593 unsigned long field;
7594 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007595 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007596
7597 vmcs_load(shadow_vmcs);
7598
Mathias Krausec2bae892013-06-26 20:36:21 +02007599 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007600 for (i = 0; i < max_fields[q]; i++) {
7601 field = fields[q][i];
7602 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7603
7604 switch (vmcs_field_type(field)) {
7605 case VMCS_FIELD_TYPE_U16:
7606 vmcs_write16(field, (u16)field_value);
7607 break;
7608 case VMCS_FIELD_TYPE_U32:
7609 vmcs_write32(field, (u32)field_value);
7610 break;
7611 case VMCS_FIELD_TYPE_U64:
7612 vmcs_write64(field, (u64)field_value);
7613 break;
7614 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7615 vmcs_writel(field, (long)field_value);
7616 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007617 default:
7618 WARN_ON(1);
7619 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007620 }
7621 }
7622 }
7623
7624 vmcs_clear(shadow_vmcs);
7625 vmcs_load(vmx->loaded_vmcs->vmcs);
7626}
7627
Nadav Har'El49f705c2011-05-25 23:08:30 +03007628/*
7629 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7630 * used before) all generate the same failure when it is missing.
7631 */
7632static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7633{
7634 struct vcpu_vmx *vmx = to_vmx(vcpu);
7635 if (vmx->nested.current_vmptr == -1ull) {
7636 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007637 return 0;
7638 }
7639 return 1;
7640}
7641
7642static int handle_vmread(struct kvm_vcpu *vcpu)
7643{
7644 unsigned long field;
7645 u64 field_value;
7646 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7647 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7648 gva_t gva = 0;
7649
Kyle Hueyeb277562016-11-29 12:40:39 -08007650 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007651 return 1;
7652
Kyle Huey6affcbe2016-11-29 12:40:40 -08007653 if (!nested_vmx_check_vmcs12(vcpu))
7654 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007655
Nadav Har'El49f705c2011-05-25 23:08:30 +03007656 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007657 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007658 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007659 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007660 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007661 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007662 }
7663 /*
7664 * Now copy part of this value to register or memory, as requested.
7665 * Note that the number of bits actually copied is 32 or 64 depending
7666 * on the guest's mode (32 or 64 bit), not on the given field's length.
7667 */
7668 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007669 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007670 field_value);
7671 } else {
7672 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007673 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007674 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007675 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007676 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7677 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7678 }
7679
7680 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007681 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007682}
7683
7684
7685static int handle_vmwrite(struct kvm_vcpu *vcpu)
7686{
7687 unsigned long field;
7688 gva_t gva;
7689 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7690 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007691 /* The value to write might be 32 or 64 bits, depending on L1's long
7692 * mode, and eventually we need to write that into a field of several
7693 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007694 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007695 * bits into the vmcs12 field.
7696 */
7697 u64 field_value = 0;
7698 struct x86_exception e;
7699
Kyle Hueyeb277562016-11-29 12:40:39 -08007700 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007701 return 1;
7702
Kyle Huey6affcbe2016-11-29 12:40:40 -08007703 if (!nested_vmx_check_vmcs12(vcpu))
7704 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007705
Nadav Har'El49f705c2011-05-25 23:08:30 +03007706 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007707 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007708 (((vmx_instruction_info) >> 3) & 0xf));
7709 else {
7710 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007711 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007712 return 1;
7713 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007714 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007715 kvm_inject_page_fault(vcpu, &e);
7716 return 1;
7717 }
7718 }
7719
7720
Nadav Amit27e6fb52014-06-18 17:19:26 +03007721 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007722 if (vmcs_field_readonly(field)) {
7723 nested_vmx_failValid(vcpu,
7724 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007725 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007726 }
7727
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007728 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007729 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007730 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007731 }
7732
7733 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007734 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007735}
7736
Jim Mattsona8bc2842016-11-30 12:03:44 -08007737static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7738{
7739 vmx->nested.current_vmptr = vmptr;
7740 if (enable_shadow_vmcs) {
7741 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7742 SECONDARY_EXEC_SHADOW_VMCS);
7743 vmcs_write64(VMCS_LINK_POINTER,
7744 __pa(vmx->vmcs01.shadow_vmcs));
7745 vmx->nested.sync_shadow_vmcs = true;
7746 }
7747}
7748
Nadav Har'El63846662011-05-25 23:07:29 +03007749/* Emulate the VMPTRLD instruction */
7750static int handle_vmptrld(struct kvm_vcpu *vcpu)
7751{
7752 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007753 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007754
7755 if (!nested_vmx_check_permission(vcpu))
7756 return 1;
7757
Radim Krčmářcbf71272017-05-19 15:48:51 +02007758 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007759 return 1;
7760
Radim Krčmářcbf71272017-05-19 15:48:51 +02007761 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7762 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7763 return kvm_skip_emulated_instruction(vcpu);
7764 }
7765
7766 if (vmptr == vmx->nested.vmxon_ptr) {
7767 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7768 return kvm_skip_emulated_instruction(vcpu);
7769 }
7770
Nadav Har'El63846662011-05-25 23:07:29 +03007771 if (vmx->nested.current_vmptr != vmptr) {
7772 struct vmcs12 *new_vmcs12;
7773 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007774 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7775 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007776 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007777 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007778 }
7779 new_vmcs12 = kmap(page);
7780 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7781 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007782 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007783 nested_vmx_failValid(vcpu,
7784 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007785 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007786 }
Nadav Har'El63846662011-05-25 23:07:29 +03007787
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007788 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007789 /*
7790 * Load VMCS12 from guest memory since it is not already
7791 * cached.
7792 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007793 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7794 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007795 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007796
Jim Mattsona8bc2842016-11-30 12:03:44 -08007797 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007798 }
7799
7800 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007801 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007802}
7803
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007804/* Emulate the VMPTRST instruction */
7805static int handle_vmptrst(struct kvm_vcpu *vcpu)
7806{
7807 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7808 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7809 gva_t vmcs_gva;
7810 struct x86_exception e;
7811
7812 if (!nested_vmx_check_permission(vcpu))
7813 return 1;
7814
7815 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007816 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007817 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007818 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007819 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7820 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7821 sizeof(u64), &e)) {
7822 kvm_inject_page_fault(vcpu, &e);
7823 return 1;
7824 }
7825 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007826 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007827}
7828
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007829/* Emulate the INVEPT instruction */
7830static int handle_invept(struct kvm_vcpu *vcpu)
7831{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007832 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007833 u32 vmx_instruction_info, types;
7834 unsigned long type;
7835 gva_t gva;
7836 struct x86_exception e;
7837 struct {
7838 u64 eptp, gpa;
7839 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007840
Wincy Vanb9c237b2015-02-03 23:56:30 +08007841 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7842 SECONDARY_EXEC_ENABLE_EPT) ||
7843 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007844 kvm_queue_exception(vcpu, UD_VECTOR);
7845 return 1;
7846 }
7847
7848 if (!nested_vmx_check_permission(vcpu))
7849 return 1;
7850
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007851 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007852 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007853
Wincy Vanb9c237b2015-02-03 23:56:30 +08007854 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007855
Jim Mattson85c856b2016-10-26 08:38:38 -07007856 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007857 nested_vmx_failValid(vcpu,
7858 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007859 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007860 }
7861
7862 /* According to the Intel VMX instruction reference, the memory
7863 * operand is read even if it isn't needed (e.g., for type==global)
7864 */
7865 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007866 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007867 return 1;
7868 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7869 sizeof(operand), &e)) {
7870 kvm_inject_page_fault(vcpu, &e);
7871 return 1;
7872 }
7873
7874 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007875 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007876 /*
7877 * TODO: track mappings and invalidate
7878 * single context requests appropriately
7879 */
7880 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007881 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007882 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007883 nested_vmx_succeed(vcpu);
7884 break;
7885 default:
7886 BUG_ON(1);
7887 break;
7888 }
7889
Kyle Huey6affcbe2016-11-29 12:40:40 -08007890 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007891}
7892
Petr Matouseka642fc32014-09-23 20:22:30 +02007893static int handle_invvpid(struct kvm_vcpu *vcpu)
7894{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007895 struct vcpu_vmx *vmx = to_vmx(vcpu);
7896 u32 vmx_instruction_info;
7897 unsigned long type, types;
7898 gva_t gva;
7899 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007900 struct {
7901 u64 vpid;
7902 u64 gla;
7903 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007904
7905 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7906 SECONDARY_EXEC_ENABLE_VPID) ||
7907 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7908 kvm_queue_exception(vcpu, UD_VECTOR);
7909 return 1;
7910 }
7911
7912 if (!nested_vmx_check_permission(vcpu))
7913 return 1;
7914
7915 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7916 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7917
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007918 types = (vmx->nested.nested_vmx_vpid_caps &
7919 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007920
Jim Mattson85c856b2016-10-26 08:38:38 -07007921 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007922 nested_vmx_failValid(vcpu,
7923 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007924 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007925 }
7926
7927 /* according to the intel vmx instruction reference, the memory
7928 * operand is read even if it isn't needed (e.g., for type==global)
7929 */
7930 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7931 vmx_instruction_info, false, &gva))
7932 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007933 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7934 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007935 kvm_inject_page_fault(vcpu, &e);
7936 return 1;
7937 }
Jim Mattson40352602017-06-28 09:37:37 -07007938 if (operand.vpid >> 16) {
7939 nested_vmx_failValid(vcpu,
7940 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7941 return kvm_skip_emulated_instruction(vcpu);
7942 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007943
7944 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007945 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Yu Zhangfd8cb432017-08-24 20:27:56 +08007946 if (is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07007947 nested_vmx_failValid(vcpu,
7948 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7949 return kvm_skip_emulated_instruction(vcpu);
7950 }
7951 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007952 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007953 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007954 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007955 nested_vmx_failValid(vcpu,
7956 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007957 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007958 }
7959 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007960 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007961 break;
7962 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007963 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007964 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007965 }
7966
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007967 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7968 nested_vmx_succeed(vcpu);
7969
Kyle Huey6affcbe2016-11-29 12:40:40 -08007970 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007971}
7972
Kai Huang843e4332015-01-28 10:54:28 +08007973static int handle_pml_full(struct kvm_vcpu *vcpu)
7974{
7975 unsigned long exit_qualification;
7976
7977 trace_kvm_pml_full(vcpu->vcpu_id);
7978
7979 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7980
7981 /*
7982 * PML buffer FULL happened while executing iret from NMI,
7983 * "blocked by NMI" bit has to be set before next VM entry.
7984 */
7985 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007986 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7987 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7988 GUEST_INTR_STATE_NMI);
7989
7990 /*
7991 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7992 * here.., and there's no userspace involvement needed for PML.
7993 */
7994 return 1;
7995}
7996
Yunhong Jiang64672c92016-06-13 14:19:59 -07007997static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7998{
7999 kvm_lapic_expired_hv_timer(vcpu);
8000 return 1;
8001}
8002
Bandan Das41ab9372017-08-03 15:54:43 -04008003static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
8004{
8005 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04008006 int maxphyaddr = cpuid_maxphyaddr(vcpu);
8007
8008 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008009 switch (address & VMX_EPTP_MT_MASK) {
8010 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04008011 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
8012 return false;
8013 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008014 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04008015 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
8016 return false;
8017 break;
8018 default:
8019 return false;
8020 }
8021
David Hildenbrandbb97a012017-08-10 23:15:28 +02008022 /* only 4 levels page-walk length are valid */
8023 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008024 return false;
8025
8026 /* Reserved bits should not be set */
8027 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8028 return false;
8029
8030 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008031 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04008032 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
8033 return false;
8034 }
8035
8036 return true;
8037}
8038
8039static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8040 struct vmcs12 *vmcs12)
8041{
8042 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8043 u64 address;
8044 bool accessed_dirty;
8045 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8046
8047 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8048 !nested_cpu_has_ept(vmcs12))
8049 return 1;
8050
8051 if (index >= VMFUNC_EPTP_ENTRIES)
8052 return 1;
8053
8054
8055 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8056 &address, index * 8, 8))
8057 return 1;
8058
David Hildenbrandbb97a012017-08-10 23:15:28 +02008059 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008060
8061 /*
8062 * If the (L2) guest does a vmfunc to the currently
8063 * active ept pointer, we don't have to do anything else
8064 */
8065 if (vmcs12->ept_pointer != address) {
8066 if (!valid_ept_address(vcpu, address))
8067 return 1;
8068
8069 kvm_mmu_unload(vcpu);
8070 mmu->ept_ad = accessed_dirty;
8071 mmu->base_role.ad_disabled = !accessed_dirty;
8072 vmcs12->ept_pointer = address;
8073 /*
8074 * TODO: Check what's the correct approach in case
8075 * mmu reload fails. Currently, we just let the next
8076 * reload potentially fail
8077 */
8078 kvm_mmu_reload(vcpu);
8079 }
8080
8081 return 0;
8082}
8083
Bandan Das2a499e42017-08-03 15:54:41 -04008084static int handle_vmfunc(struct kvm_vcpu *vcpu)
8085{
Bandan Das27c42a12017-08-03 15:54:42 -04008086 struct vcpu_vmx *vmx = to_vmx(vcpu);
8087 struct vmcs12 *vmcs12;
8088 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8089
8090 /*
8091 * VMFUNC is only supported for nested guests, but we always enable the
8092 * secondary control for simplicity; for non-nested mode, fake that we
8093 * didn't by injecting #UD.
8094 */
8095 if (!is_guest_mode(vcpu)) {
8096 kvm_queue_exception(vcpu, UD_VECTOR);
8097 return 1;
8098 }
8099
8100 vmcs12 = get_vmcs12(vcpu);
8101 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8102 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008103
8104 switch (function) {
8105 case 0:
8106 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8107 goto fail;
8108 break;
8109 default:
8110 goto fail;
8111 }
8112 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008113
8114fail:
8115 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8116 vmcs_read32(VM_EXIT_INTR_INFO),
8117 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008118 return 1;
8119}
8120
Nadav Har'El0140cae2011-05-25 23:06:28 +03008121/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008122 * The exit handlers return 1 if the exit was handled fully and guest execution
8123 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8124 * to be done to userspace and return 0.
8125 */
Mathias Krause772e0312012-08-30 01:30:19 +02008126static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008127 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8128 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008129 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008130 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008131 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008132 [EXIT_REASON_CR_ACCESS] = handle_cr,
8133 [EXIT_REASON_DR_ACCESS] = handle_dr,
8134 [EXIT_REASON_CPUID] = handle_cpuid,
8135 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8136 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8137 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8138 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008139 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008140 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008141 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008142 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008143 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008144 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008145 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008146 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008147 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008148 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008149 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008150 [EXIT_REASON_VMOFF] = handle_vmoff,
8151 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008152 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8153 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008154 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008155 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008156 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008157 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008158 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008159 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008160 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8161 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008162 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008163 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008164 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008165 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008166 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008167 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008168 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008169 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008170 [EXIT_REASON_XSAVES] = handle_xsaves,
8171 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008172 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008173 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008174 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008175};
8176
8177static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008178 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008179
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008180static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8181 struct vmcs12 *vmcs12)
8182{
8183 unsigned long exit_qualification;
8184 gpa_t bitmap, last_bitmap;
8185 unsigned int port;
8186 int size;
8187 u8 b;
8188
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008189 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008190 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008191
8192 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8193
8194 port = exit_qualification >> 16;
8195 size = (exit_qualification & 7) + 1;
8196
8197 last_bitmap = (gpa_t)-1;
8198 b = -1;
8199
8200 while (size > 0) {
8201 if (port < 0x8000)
8202 bitmap = vmcs12->io_bitmap_a;
8203 else if (port < 0x10000)
8204 bitmap = vmcs12->io_bitmap_b;
8205 else
Joe Perches1d804d02015-03-30 16:46:09 -07008206 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008207 bitmap += (port & 0x7fff) / 8;
8208
8209 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008210 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008211 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008212 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008213 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008214
8215 port++;
8216 size--;
8217 last_bitmap = bitmap;
8218 }
8219
Joe Perches1d804d02015-03-30 16:46:09 -07008220 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008221}
8222
Nadav Har'El644d7112011-05-25 23:12:35 +03008223/*
8224 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8225 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8226 * disinterest in the current event (read or write a specific MSR) by using an
8227 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8228 */
8229static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8230 struct vmcs12 *vmcs12, u32 exit_reason)
8231{
8232 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8233 gpa_t bitmap;
8234
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008235 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008236 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008237
8238 /*
8239 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8240 * for the four combinations of read/write and low/high MSR numbers.
8241 * First we need to figure out which of the four to use:
8242 */
8243 bitmap = vmcs12->msr_bitmap;
8244 if (exit_reason == EXIT_REASON_MSR_WRITE)
8245 bitmap += 2048;
8246 if (msr_index >= 0xc0000000) {
8247 msr_index -= 0xc0000000;
8248 bitmap += 1024;
8249 }
8250
8251 /* Then read the msr_index'th bit from this bitmap: */
8252 if (msr_index < 1024*8) {
8253 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008254 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008255 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008256 return 1 & (b >> (msr_index & 7));
8257 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008258 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008259}
8260
8261/*
8262 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8263 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8264 * intercept (via guest_host_mask etc.) the current event.
8265 */
8266static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8267 struct vmcs12 *vmcs12)
8268{
8269 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8270 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008271 int reg;
8272 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008273
8274 switch ((exit_qualification >> 4) & 3) {
8275 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008276 reg = (exit_qualification >> 8) & 15;
8277 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008278 switch (cr) {
8279 case 0:
8280 if (vmcs12->cr0_guest_host_mask &
8281 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008282 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008283 break;
8284 case 3:
8285 if ((vmcs12->cr3_target_count >= 1 &&
8286 vmcs12->cr3_target_value0 == val) ||
8287 (vmcs12->cr3_target_count >= 2 &&
8288 vmcs12->cr3_target_value1 == val) ||
8289 (vmcs12->cr3_target_count >= 3 &&
8290 vmcs12->cr3_target_value2 == val) ||
8291 (vmcs12->cr3_target_count >= 4 &&
8292 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008293 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008294 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008295 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008296 break;
8297 case 4:
8298 if (vmcs12->cr4_guest_host_mask &
8299 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008300 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008301 break;
8302 case 8:
8303 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008304 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008305 break;
8306 }
8307 break;
8308 case 2: /* clts */
8309 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8310 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008311 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008312 break;
8313 case 1: /* mov from cr */
8314 switch (cr) {
8315 case 3:
8316 if (vmcs12->cpu_based_vm_exec_control &
8317 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008318 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008319 break;
8320 case 8:
8321 if (vmcs12->cpu_based_vm_exec_control &
8322 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008323 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008324 break;
8325 }
8326 break;
8327 case 3: /* lmsw */
8328 /*
8329 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8330 * cr0. Other attempted changes are ignored, with no exit.
8331 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008332 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008333 if (vmcs12->cr0_guest_host_mask & 0xe &
8334 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008335 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008336 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8337 !(vmcs12->cr0_read_shadow & 0x1) &&
8338 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008339 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008340 break;
8341 }
Joe Perches1d804d02015-03-30 16:46:09 -07008342 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008343}
8344
8345/*
8346 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8347 * should handle it ourselves in L0 (and then continue L2). Only call this
8348 * when in is_guest_mode (L2).
8349 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008350static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008351{
Nadav Har'El644d7112011-05-25 23:12:35 +03008352 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8353 struct vcpu_vmx *vmx = to_vmx(vcpu);
8354 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8355
Jim Mattson4f350c62017-09-14 16:31:44 -07008356 if (vmx->nested.nested_run_pending)
8357 return false;
8358
8359 if (unlikely(vmx->fail)) {
8360 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8361 vmcs_read32(VM_INSTRUCTION_ERROR));
8362 return true;
8363 }
Jan Kiszka542060e2014-01-04 18:47:21 +01008364
David Matlackc9f04402017-08-01 14:00:40 -07008365 /*
8366 * The host physical addresses of some pages of guest memory
8367 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8368 * may write to these pages via their host physical address while
8369 * L2 is running, bypassing any address-translation-based dirty
8370 * tracking (e.g. EPT write protection).
8371 *
8372 * Mark them dirty on every exit from L2 to prevent them from
8373 * getting out of sync with dirty tracking.
8374 */
8375 nested_mark_vmcs12_pages_dirty(vcpu);
8376
Jim Mattson4f350c62017-09-14 16:31:44 -07008377 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8378 vmcs_readl(EXIT_QUALIFICATION),
8379 vmx->idt_vectoring_info,
8380 intr_info,
8381 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8382 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03008383
8384 switch (exit_reason) {
8385 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008386 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008387 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008388 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008389 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008390 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008391 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008392 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008393 else if (is_debug(intr_info) &&
8394 vcpu->guest_debug &
8395 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8396 return false;
8397 else if (is_breakpoint(intr_info) &&
8398 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8399 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008400 return vmcs12->exception_bitmap &
8401 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8402 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008403 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008404 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008405 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008406 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008407 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008408 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008409 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008410 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008411 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008412 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008413 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008414 case EXIT_REASON_HLT:
8415 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8416 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008417 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008418 case EXIT_REASON_INVLPG:
8419 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8420 case EXIT_REASON_RDPMC:
8421 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008422 case EXIT_REASON_RDRAND:
8423 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND);
8424 case EXIT_REASON_RDSEED:
8425 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008426 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008427 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8428 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8429 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8430 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8431 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8432 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008433 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008434 /*
8435 * VMX instructions trap unconditionally. This allows L1 to
8436 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8437 */
Joe Perches1d804d02015-03-30 16:46:09 -07008438 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008439 case EXIT_REASON_CR_ACCESS:
8440 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8441 case EXIT_REASON_DR_ACCESS:
8442 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8443 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008444 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008445 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8446 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008447 case EXIT_REASON_MSR_READ:
8448 case EXIT_REASON_MSR_WRITE:
8449 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8450 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008451 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008452 case EXIT_REASON_MWAIT_INSTRUCTION:
8453 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008454 case EXIT_REASON_MONITOR_TRAP_FLAG:
8455 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008456 case EXIT_REASON_MONITOR_INSTRUCTION:
8457 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8458 case EXIT_REASON_PAUSE_INSTRUCTION:
8459 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8460 nested_cpu_has2(vmcs12,
8461 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8462 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008463 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008464 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008465 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008466 case EXIT_REASON_APIC_ACCESS:
8467 return nested_cpu_has2(vmcs12,
8468 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008469 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008470 case EXIT_REASON_EOI_INDUCED:
8471 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008472 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008473 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008474 /*
8475 * L0 always deals with the EPT violation. If nested EPT is
8476 * used, and the nested mmu code discovers that the address is
8477 * missing in the guest EPT table (EPT12), the EPT violation
8478 * will be injected with nested_ept_inject_page_fault()
8479 */
Joe Perches1d804d02015-03-30 16:46:09 -07008480 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008481 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008482 /*
8483 * L2 never uses directly L1's EPT, but rather L0's own EPT
8484 * table (shadow on EPT) or a merged EPT table that L0 built
8485 * (EPT on EPT). So any problems with the structure of the
8486 * table is L0's fault.
8487 */
Joe Perches1d804d02015-03-30 16:46:09 -07008488 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008489 case EXIT_REASON_INVPCID:
8490 return
8491 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8492 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008493 case EXIT_REASON_WBINVD:
8494 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8495 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008496 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008497 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8498 /*
8499 * This should never happen, since it is not possible to
8500 * set XSS to a non-zero value---neither in L1 nor in L2.
8501 * If if it were, XSS would have to be checked against
8502 * the XSS exit bitmap in vmcs12.
8503 */
8504 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008505 case EXIT_REASON_PREEMPTION_TIMER:
8506 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008507 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008508 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008509 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008510 case EXIT_REASON_VMFUNC:
8511 /* VM functions are emulated through L2->L0 vmexits. */
8512 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008513 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008514 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008515 }
8516}
8517
Paolo Bonzini7313c692017-07-27 10:31:25 +02008518static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8519{
8520 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8521
8522 /*
8523 * At this point, the exit interruption info in exit_intr_info
8524 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8525 * we need to query the in-kernel LAPIC.
8526 */
8527 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8528 if ((exit_intr_info &
8529 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8530 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8531 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8532 vmcs12->vm_exit_intr_error_code =
8533 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8534 }
8535
8536 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8537 vmcs_readl(EXIT_QUALIFICATION));
8538 return 1;
8539}
8540
Avi Kivity586f9602010-11-18 13:09:54 +02008541static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8542{
8543 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8544 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8545}
8546
Kai Huanga3eaa862015-11-04 13:46:05 +08008547static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008548{
Kai Huanga3eaa862015-11-04 13:46:05 +08008549 if (vmx->pml_pg) {
8550 __free_page(vmx->pml_pg);
8551 vmx->pml_pg = NULL;
8552 }
Kai Huang843e4332015-01-28 10:54:28 +08008553}
8554
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008555static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008556{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008557 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008558 u64 *pml_buf;
8559 u16 pml_idx;
8560
8561 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8562
8563 /* Do nothing if PML buffer is empty */
8564 if (pml_idx == (PML_ENTITY_NUM - 1))
8565 return;
8566
8567 /* PML index always points to next available PML buffer entity */
8568 if (pml_idx >= PML_ENTITY_NUM)
8569 pml_idx = 0;
8570 else
8571 pml_idx++;
8572
8573 pml_buf = page_address(vmx->pml_pg);
8574 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8575 u64 gpa;
8576
8577 gpa = pml_buf[pml_idx];
8578 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008579 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008580 }
8581
8582 /* reset PML index */
8583 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8584}
8585
8586/*
8587 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8588 * Called before reporting dirty_bitmap to userspace.
8589 */
8590static void kvm_flush_pml_buffers(struct kvm *kvm)
8591{
8592 int i;
8593 struct kvm_vcpu *vcpu;
8594 /*
8595 * We only need to kick vcpu out of guest mode here, as PML buffer
8596 * is flushed at beginning of all VMEXITs, and it's obvious that only
8597 * vcpus running in guest are possible to have unflushed GPAs in PML
8598 * buffer.
8599 */
8600 kvm_for_each_vcpu(i, vcpu, kvm)
8601 kvm_vcpu_kick(vcpu);
8602}
8603
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008604static void vmx_dump_sel(char *name, uint32_t sel)
8605{
8606 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008607 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008608 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8609 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8610 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8611}
8612
8613static void vmx_dump_dtsel(char *name, uint32_t limit)
8614{
8615 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8616 name, vmcs_read32(limit),
8617 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8618}
8619
8620static void dump_vmcs(void)
8621{
8622 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8623 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8624 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8625 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8626 u32 secondary_exec_control = 0;
8627 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008628 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008629 int i, n;
8630
8631 if (cpu_has_secondary_exec_ctrls())
8632 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8633
8634 pr_err("*** Guest State ***\n");
8635 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8636 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8637 vmcs_readl(CR0_GUEST_HOST_MASK));
8638 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8639 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8640 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8641 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8642 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8643 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008644 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8645 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8646 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8647 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008648 }
8649 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8650 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8651 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8652 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8653 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8654 vmcs_readl(GUEST_SYSENTER_ESP),
8655 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8656 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8657 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8658 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8659 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8660 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8661 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8662 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8663 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8664 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8665 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8666 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8667 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008668 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8669 efer, vmcs_read64(GUEST_IA32_PAT));
8670 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8671 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008672 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8673 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008674 pr_err("PerfGlobCtl = 0x%016llx\n",
8675 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008676 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008677 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008678 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8679 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8680 vmcs_read32(GUEST_ACTIVITY_STATE));
8681 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8682 pr_err("InterruptStatus = %04x\n",
8683 vmcs_read16(GUEST_INTR_STATUS));
8684
8685 pr_err("*** Host State ***\n");
8686 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8687 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8688 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8689 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8690 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8691 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8692 vmcs_read16(HOST_TR_SELECTOR));
8693 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8694 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8695 vmcs_readl(HOST_TR_BASE));
8696 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8697 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8698 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8699 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8700 vmcs_readl(HOST_CR4));
8701 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8702 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8703 vmcs_read32(HOST_IA32_SYSENTER_CS),
8704 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8705 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008706 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8707 vmcs_read64(HOST_IA32_EFER),
8708 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008709 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008710 pr_err("PerfGlobCtl = 0x%016llx\n",
8711 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008712
8713 pr_err("*** Control State ***\n");
8714 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8715 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8716 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8717 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8718 vmcs_read32(EXCEPTION_BITMAP),
8719 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8720 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8721 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8722 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8723 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8724 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8725 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8726 vmcs_read32(VM_EXIT_INTR_INFO),
8727 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8728 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8729 pr_err(" reason=%08x qualification=%016lx\n",
8730 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8731 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8732 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8733 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008734 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008735 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008736 pr_err("TSC Multiplier = 0x%016llx\n",
8737 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008738 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8739 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8740 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8741 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8742 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008743 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008744 n = vmcs_read32(CR3_TARGET_COUNT);
8745 for (i = 0; i + 1 < n; i += 4)
8746 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8747 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8748 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8749 if (i < n)
8750 pr_err("CR3 target%u=%016lx\n",
8751 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8752 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8753 pr_err("PLE Gap=%08x Window=%08x\n",
8754 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8755 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8756 pr_err("Virtual processor ID = 0x%04x\n",
8757 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8758}
8759
Avi Kivity6aa8b732006-12-10 02:21:36 -08008760/*
8761 * The guest has exited. See if we can fix it or if we need userspace
8762 * assistance.
8763 */
Avi Kivity851ba692009-08-24 11:10:17 +03008764static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008765{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008766 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008767 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008768 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008769
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008770 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8771
Kai Huang843e4332015-01-28 10:54:28 +08008772 /*
8773 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8774 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8775 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8776 * mode as if vcpus is in root mode, the PML buffer must has been
8777 * flushed already.
8778 */
8779 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008780 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008781
Mohammed Gamal80ced182009-09-01 12:48:18 +02008782 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008783 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008784 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008785
Paolo Bonzini7313c692017-07-27 10:31:25 +02008786 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8787 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008788
Mohammed Gamal51207022010-05-31 22:40:54 +03008789 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008790 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008791 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8792 vcpu->run->fail_entry.hardware_entry_failure_reason
8793 = exit_reason;
8794 return 0;
8795 }
8796
Avi Kivity29bd8a72007-09-10 17:27:03 +03008797 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008798 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8799 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008800 = vmcs_read32(VM_INSTRUCTION_ERROR);
8801 return 0;
8802 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008803
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008804 /*
8805 * Note:
8806 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8807 * delivery event since it indicates guest is accessing MMIO.
8808 * The vm-exit can be triggered again after return to guest that
8809 * will cause infinite loop.
8810 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008811 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008812 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008813 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008814 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008815 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8816 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8817 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008818 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008819 vcpu->run->internal.data[0] = vectoring_info;
8820 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008821 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8822 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8823 vcpu->run->internal.ndata++;
8824 vcpu->run->internal.data[3] =
8825 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8826 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008827 return 0;
8828 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008829
Avi Kivity6aa8b732006-12-10 02:21:36 -08008830 if (exit_reason < kvm_vmx_max_exit_handlers
8831 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008832 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008833 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008834 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8835 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008836 kvm_queue_exception(vcpu, UD_VECTOR);
8837 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008838 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008839}
8840
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008841static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008842{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008843 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8844
8845 if (is_guest_mode(vcpu) &&
8846 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8847 return;
8848
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008849 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008850 vmcs_write32(TPR_THRESHOLD, 0);
8851 return;
8852 }
8853
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008854 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008855}
8856
Yang Zhang8d146952013-01-25 10:18:50 +08008857static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8858{
8859 u32 sec_exec_control;
8860
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008861 /* Postpone execution until vmcs01 is the current VMCS. */
8862 if (is_guest_mode(vcpu)) {
8863 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8864 return;
8865 }
8866
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008867 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008868 return;
8869
Paolo Bonzini35754c92015-07-29 12:05:37 +02008870 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008871 return;
8872
8873 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8874
8875 if (set) {
8876 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8877 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8878 } else {
8879 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8880 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008881 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008882 }
8883 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8884
8885 vmx_set_msr_bitmap(vcpu);
8886}
8887
Tang Chen38b99172014-09-24 15:57:54 +08008888static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8889{
8890 struct vcpu_vmx *vmx = to_vmx(vcpu);
8891
8892 /*
8893 * Currently we do not handle the nested case where L2 has an
8894 * APIC access page of its own; that page is still pinned.
8895 * Hence, we skip the case where the VCPU is in guest mode _and_
8896 * L1 prepared an APIC access page for L2.
8897 *
8898 * For the case where L1 and L2 share the same APIC access page
8899 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8900 * in the vmcs12), this function will only update either the vmcs01
8901 * or the vmcs02. If the former, the vmcs02 will be updated by
8902 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8903 * the next L2->L1 exit.
8904 */
8905 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008906 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008907 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008908 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008909 vmx_flush_tlb_ept_only(vcpu);
8910 }
Tang Chen38b99172014-09-24 15:57:54 +08008911}
8912
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008913static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008914{
8915 u16 status;
8916 u8 old;
8917
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008918 if (max_isr == -1)
8919 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008920
8921 status = vmcs_read16(GUEST_INTR_STATUS);
8922 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008923 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008924 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008925 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008926 vmcs_write16(GUEST_INTR_STATUS, status);
8927 }
8928}
8929
8930static void vmx_set_rvi(int vector)
8931{
8932 u16 status;
8933 u8 old;
8934
Wei Wang4114c272014-11-05 10:53:43 +08008935 if (vector == -1)
8936 vector = 0;
8937
Yang Zhangc7c9c562013-01-25 10:18:51 +08008938 status = vmcs_read16(GUEST_INTR_STATUS);
8939 old = (u8)status & 0xff;
8940 if ((u8)vector != old) {
8941 status &= ~0xff;
8942 status |= (u8)vector;
8943 vmcs_write16(GUEST_INTR_STATUS, status);
8944 }
8945}
8946
8947static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8948{
Wanpeng Li963fee12014-07-17 19:03:00 +08008949 if (!is_guest_mode(vcpu)) {
8950 vmx_set_rvi(max_irr);
8951 return;
8952 }
8953
Wei Wang4114c272014-11-05 10:53:43 +08008954 if (max_irr == -1)
8955 return;
8956
Wanpeng Li963fee12014-07-17 19:03:00 +08008957 /*
Wei Wang4114c272014-11-05 10:53:43 +08008958 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8959 * handles it.
8960 */
8961 if (nested_exit_on_intr(vcpu))
8962 return;
8963
8964 /*
8965 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008966 * is run without virtual interrupt delivery.
8967 */
8968 if (!kvm_event_needs_reinjection(vcpu) &&
8969 vmx_interrupt_allowed(vcpu)) {
8970 kvm_queue_interrupt(vcpu, max_irr, false);
8971 vmx_inject_irq(vcpu);
8972 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008973}
8974
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008975static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008976{
8977 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008978 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008979
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008980 WARN_ON(!vcpu->arch.apicv_active);
8981 if (pi_test_on(&vmx->pi_desc)) {
8982 pi_clear_on(&vmx->pi_desc);
8983 /*
8984 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8985 * But on x86 this is just a compiler barrier anyway.
8986 */
8987 smp_mb__after_atomic();
8988 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8989 } else {
8990 max_irr = kvm_lapic_find_highest_irr(vcpu);
8991 }
8992 vmx_hwapic_irr_update(vcpu, max_irr);
8993 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008994}
8995
Andrey Smetanin63086302015-11-10 15:36:32 +03008996static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008997{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008998 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008999 return;
9000
Yang Zhangc7c9c562013-01-25 10:18:51 +08009001 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
9002 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
9003 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
9004 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
9005}
9006
Paolo Bonzini967235d2016-12-19 14:03:45 +01009007static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
9008{
9009 struct vcpu_vmx *vmx = to_vmx(vcpu);
9010
9011 pi_clear_on(&vmx->pi_desc);
9012 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9013}
9014
Avi Kivity51aa01d2010-07-20 14:31:20 +03009015static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009016{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009017 u32 exit_intr_info = 0;
9018 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009019
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009020 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9021 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009022 return;
9023
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009024 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9025 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9026 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009027
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009028 /* if exit due to PF check for async PF */
9029 if (is_page_fault(exit_intr_info))
9030 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9031
Andi Kleena0861c02009-06-08 17:37:09 +08009032 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009033 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9034 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009035 kvm_machine_check();
9036
Gleb Natapov20f65982009-05-11 13:35:55 +03009037 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009038 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009039 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009040 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009041 kvm_after_handle_nmi(&vmx->vcpu);
9042 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009043}
Gleb Natapov20f65982009-05-11 13:35:55 +03009044
Yang Zhanga547c6d2013-04-11 19:25:10 +08009045static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9046{
9047 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9048
Yang Zhanga547c6d2013-04-11 19:25:10 +08009049 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9050 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9051 unsigned int vector;
9052 unsigned long entry;
9053 gate_desc *desc;
9054 struct vcpu_vmx *vmx = to_vmx(vcpu);
9055#ifdef CONFIG_X86_64
9056 unsigned long tmp;
9057#endif
9058
9059 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9060 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02009061 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009062 asm volatile(
9063#ifdef CONFIG_X86_64
9064 "mov %%" _ASM_SP ", %[sp]\n\t"
9065 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9066 "push $%c[ss]\n\t"
9067 "push %[sp]\n\t"
9068#endif
9069 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009070 __ASM_SIZE(push) " $%c[cs]\n\t"
9071 "call *%[entry]\n\t"
9072 :
9073#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009074 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009075#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05009076 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08009077 :
9078 [entry]"r"(entry),
9079 [ss]"i"(__KERNEL_DS),
9080 [cs]"i"(__KERNEL_CS)
9081 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009082 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009083}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009084STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009085
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009086static bool vmx_has_high_real_mode_segbase(void)
9087{
9088 return enable_unrestricted_guest || emulate_invalid_guest_state;
9089}
9090
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009091static bool vmx_mpx_supported(void)
9092{
9093 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9094 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9095}
9096
Wanpeng Li55412b22014-12-02 19:21:30 +08009097static bool vmx_xsaves_supported(void)
9098{
9099 return vmcs_config.cpu_based_2nd_exec_ctrl &
9100 SECONDARY_EXEC_XSAVES;
9101}
9102
Avi Kivity51aa01d2010-07-20 14:31:20 +03009103static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9104{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009105 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009106 bool unblock_nmi;
9107 u8 vector;
9108 bool idtv_info_valid;
9109
9110 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009111
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009112 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02009113 return;
9114 /*
9115 * Can't use vmx->exit_intr_info since we're not sure what
9116 * the exit reason is.
9117 */
9118 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9119 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9120 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9121 /*
9122 * SDM 3: 27.7.1.2 (September 2008)
9123 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9124 * a guest IRET fault.
9125 * SDM 3: 23.2.2 (September 2008)
9126 * Bit 12 is undefined in any of the following cases:
9127 * If the VM exit sets the valid bit in the IDT-vectoring
9128 * information field.
9129 * If the VM exit is due to a double fault.
9130 */
9131 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9132 vector != DF_VECTOR && !idtv_info_valid)
9133 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9134 GUEST_INTR_STATE_NMI);
9135 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009136 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009137 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9138 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009139}
9140
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009141static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009142 u32 idt_vectoring_info,
9143 int instr_len_field,
9144 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009145{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009146 u8 vector;
9147 int type;
9148 bool idtv_info_valid;
9149
9150 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009151
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009152 vcpu->arch.nmi_injected = false;
9153 kvm_clear_exception_queue(vcpu);
9154 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009155
9156 if (!idtv_info_valid)
9157 return;
9158
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009159 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009160
Avi Kivity668f6122008-07-02 09:28:55 +03009161 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9162 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009163
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009164 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009165 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009166 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009167 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009168 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009169 * Clear bit "block by NMI" before VM entry if a NMI
9170 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009171 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009172 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009173 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009174 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009175 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009176 /* fall through */
9177 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009178 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009179 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009180 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009181 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009182 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009183 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009184 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009185 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009186 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009187 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009188 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009189 break;
9190 default:
9191 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009192 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009193}
9194
Avi Kivity83422e12010-07-20 14:43:23 +03009195static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9196{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009197 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009198 VM_EXIT_INSTRUCTION_LEN,
9199 IDT_VECTORING_ERROR_CODE);
9200}
9201
Avi Kivityb463a6f2010-07-20 15:06:17 +03009202static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9203{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009204 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009205 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9206 VM_ENTRY_INSTRUCTION_LEN,
9207 VM_ENTRY_EXCEPTION_ERROR_CODE);
9208
9209 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9210}
9211
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009212static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9213{
9214 int i, nr_msrs;
9215 struct perf_guest_switch_msr *msrs;
9216
9217 msrs = perf_guest_get_msrs(&nr_msrs);
9218
9219 if (!msrs)
9220 return;
9221
9222 for (i = 0; i < nr_msrs; i++)
9223 if (msrs[i].host == msrs[i].guest)
9224 clear_atomic_switch_msr(vmx, msrs[i].msr);
9225 else
9226 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9227 msrs[i].host);
9228}
9229
Jiang Biao33365e72016-11-03 15:03:37 +08009230static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009231{
9232 struct vcpu_vmx *vmx = to_vmx(vcpu);
9233 u64 tscl;
9234 u32 delta_tsc;
9235
9236 if (vmx->hv_deadline_tsc == -1)
9237 return;
9238
9239 tscl = rdtsc();
9240 if (vmx->hv_deadline_tsc > tscl)
9241 /* sure to be 32 bit only because checked on set_hv_timer */
9242 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9243 cpu_preemption_timer_multi);
9244 else
9245 delta_tsc = 0;
9246
9247 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9248}
9249
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009250static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009251{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009252 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009253 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009254
Avi Kivity104f2262010-11-18 13:12:52 +02009255 /* Don't enter VMX if guest state is invalid, let the exit handler
9256 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009257 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009258 return;
9259
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009260 if (vmx->ple_window_dirty) {
9261 vmx->ple_window_dirty = false;
9262 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9263 }
9264
Abel Gordon012f83c2013-04-18 14:39:25 +03009265 if (vmx->nested.sync_shadow_vmcs) {
9266 copy_vmcs12_to_shadow(vmx);
9267 vmx->nested.sync_shadow_vmcs = false;
9268 }
9269
Avi Kivity104f2262010-11-18 13:12:52 +02009270 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9271 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9272 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9273 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9274
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009275 cr3 = __get_current_cr3_fast();
Ladi Prosek44889942017-09-22 07:53:15 +02009276 if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009277 vmcs_writel(HOST_CR3, cr3);
Ladi Prosek44889942017-09-22 07:53:15 +02009278 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009279 }
9280
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009281 cr4 = cr4_read_shadow();
Ladi Prosek44889942017-09-22 07:53:15 +02009282 if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009283 vmcs_writel(HOST_CR4, cr4);
Ladi Prosek44889942017-09-22 07:53:15 +02009284 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009285 }
9286
Avi Kivity104f2262010-11-18 13:12:52 +02009287 /* When single-stepping over STI and MOV SS, we must clear the
9288 * corresponding interruptibility bits in the guest state. Otherwise
9289 * vmentry fails as it then expects bit 14 (BS) in pending debug
9290 * exceptions being set, but that's not correct for the guest debugging
9291 * case. */
9292 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9293 vmx_set_interrupt_shadow(vcpu, 0);
9294
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009295 if (static_cpu_has(X86_FEATURE_PKU) &&
9296 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
9297 vcpu->arch.pkru != vmx->host_pkru)
9298 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009299
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009300 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009301 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009302
Yunhong Jiang64672c92016-06-13 14:19:59 -07009303 vmx_arm_hv_timer(vcpu);
9304
Nadav Har'Eld462b812011-05-24 15:26:10 +03009305 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009306 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009307 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009308 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9309 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9310 "push %%" _ASM_CX " \n\t"
9311 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009312 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009313 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009314 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009315 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009316 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009317 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9318 "mov %%cr2, %%" _ASM_DX " \n\t"
9319 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009320 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009321 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009322 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009323 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009324 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009325 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009326 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9327 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9328 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9329 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9330 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9331 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009332#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009333 "mov %c[r8](%0), %%r8 \n\t"
9334 "mov %c[r9](%0), %%r9 \n\t"
9335 "mov %c[r10](%0), %%r10 \n\t"
9336 "mov %c[r11](%0), %%r11 \n\t"
9337 "mov %c[r12](%0), %%r12 \n\t"
9338 "mov %c[r13](%0), %%r13 \n\t"
9339 "mov %c[r14](%0), %%r14 \n\t"
9340 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009341#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009342 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009343
Avi Kivity6aa8b732006-12-10 02:21:36 -08009344 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009345 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009346 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009347 "jmp 2f \n\t"
9348 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9349 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009350 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009351 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009352 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009353 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9354 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9355 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9356 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9357 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9358 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9359 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009360#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009361 "mov %%r8, %c[r8](%0) \n\t"
9362 "mov %%r9, %c[r9](%0) \n\t"
9363 "mov %%r10, %c[r10](%0) \n\t"
9364 "mov %%r11, %c[r11](%0) \n\t"
9365 "mov %%r12, %c[r12](%0) \n\t"
9366 "mov %%r13, %c[r13](%0) \n\t"
9367 "mov %%r14, %c[r14](%0) \n\t"
9368 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009369#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009370 "mov %%cr2, %%" _ASM_AX " \n\t"
9371 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009372
Avi Kivityb188c81f2012-09-16 15:10:58 +03009373 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009374 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009375 ".pushsection .rodata \n\t"
9376 ".global vmx_return \n\t"
9377 "vmx_return: " _ASM_PTR " 2b \n\t"
9378 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009379 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009380 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009381 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009382 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009383 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9384 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9385 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9386 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9387 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9388 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9389 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009390#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009391 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9392 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9393 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9394 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9395 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9396 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9397 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9398 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009399#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009400 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9401 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009402 : "cc", "memory"
9403#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009404 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009405 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009406#else
9407 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009408#endif
9409 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009410
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009411 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9412 if (debugctlmsr)
9413 update_debugctlmsr(debugctlmsr);
9414
Avi Kivityaa67f602012-08-01 16:48:03 +03009415#ifndef CONFIG_X86_64
9416 /*
9417 * The sysexit path does not restore ds/es, so we must set them to
9418 * a reasonable value ourselves.
9419 *
9420 * We can't defer this to vmx_load_host_state() since that function
9421 * may be executed in interrupt context, which saves and restore segments
9422 * around it, nullifying its effect.
9423 */
9424 loadsegment(ds, __USER_DS);
9425 loadsegment(es, __USER_DS);
9426#endif
9427
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009428 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009429 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009430 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009431 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009432 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009433 vcpu->arch.regs_dirty = 0;
9434
Gleb Natapove0b890d2013-09-25 12:51:33 +03009435 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009436 * eager fpu is enabled if PKEY is supported and CR4 is switched
9437 * back on host, so it is safe to read guest PKRU from current
9438 * XSAVE.
9439 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009440 if (static_cpu_has(X86_FEATURE_PKU) &&
9441 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
9442 vcpu->arch.pkru = __read_pkru();
9443 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009444 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009445 }
9446
9447 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009448 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9449 * we did not inject a still-pending event to L1 now because of
9450 * nested_run_pending, we need to re-enable this bit.
9451 */
9452 if (vmx->nested.nested_run_pending)
9453 kvm_make_request(KVM_REQ_EVENT, vcpu);
9454
9455 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07009456 vmx->idt_vectoring_info = 0;
9457
9458 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
9459 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9460 return;
9461
9462 vmx->loaded_vmcs->launched = 1;
9463 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03009464
Avi Kivity51aa01d2010-07-20 14:31:20 +03009465 vmx_complete_atomic_exit(vmx);
9466 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009467 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009468}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009469STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009470
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009471static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009472{
9473 struct vcpu_vmx *vmx = to_vmx(vcpu);
9474 int cpu;
9475
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009476 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009477 return;
9478
9479 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009480 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009481 vmx_vcpu_put(vcpu);
9482 vmx_vcpu_load(vcpu, cpu);
9483 vcpu->cpu = cpu;
9484 put_cpu();
9485}
9486
Jim Mattson2f1fe812016-07-08 15:36:06 -07009487/*
9488 * Ensure that the current vmcs of the logical processor is the
9489 * vmcs01 of the vcpu before calling free_nested().
9490 */
9491static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9492{
9493 struct vcpu_vmx *vmx = to_vmx(vcpu);
9494 int r;
9495
9496 r = vcpu_load(vcpu);
9497 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009498 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009499 free_nested(vmx);
9500 vcpu_put(vcpu);
9501}
9502
Avi Kivity6aa8b732006-12-10 02:21:36 -08009503static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9504{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009505 struct vcpu_vmx *vmx = to_vmx(vcpu);
9506
Kai Huang843e4332015-01-28 10:54:28 +08009507 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009508 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009509 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009510 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009511 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009512 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009513 kfree(vmx->guest_msrs);
9514 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009515 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009516}
9517
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009518static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009519{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009520 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009521 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009522 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009523
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009524 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009525 return ERR_PTR(-ENOMEM);
9526
Wanpeng Li991e7a02015-09-16 17:30:05 +08009527 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009528
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009529 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9530 if (err)
9531 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009532
Peter Feiner4e595162016-07-07 14:49:58 -07009533 err = -ENOMEM;
9534
9535 /*
9536 * If PML is turned on, failure on enabling PML just results in failure
9537 * of creating the vcpu, therefore we can simplify PML logic (by
9538 * avoiding dealing with cases, such as enabling PML partially on vcpus
9539 * for the guest, etc.
9540 */
9541 if (enable_pml) {
9542 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9543 if (!vmx->pml_pg)
9544 goto uninit_vcpu;
9545 }
9546
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009547 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009548 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9549 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009550
Peter Feiner4e595162016-07-07 14:49:58 -07009551 if (!vmx->guest_msrs)
9552 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009553
Nadav Har'Eld462b812011-05-24 15:26:10 +03009554 vmx->loaded_vmcs = &vmx->vmcs01;
9555 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009556 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009557 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009558 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009559 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009560
Avi Kivity15ad7142007-07-11 18:17:21 +03009561 cpu = get_cpu();
9562 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009563 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +02009564 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009565 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009566 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +02009567 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009568 err = alloc_apic_access_page(kvm);
9569 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009570 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009571 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009572
Sheng Yangb927a3c2009-07-21 10:42:48 +08009573 if (enable_ept) {
9574 if (!kvm->arch.ept_identity_map_addr)
9575 kvm->arch.ept_identity_map_addr =
9576 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009577 err = init_rmode_identity_map(kvm);
9578 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009579 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009580 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009581
Wanpeng Li5c614b32015-10-13 09:18:36 -07009582 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009583 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009584 vmx->nested.vpid02 = allocate_vpid();
9585 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009586
Wincy Van705699a2015-02-03 23:58:17 +08009587 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009588 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009589
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009590 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9591
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02009592 /*
9593 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
9594 * or POSTED_INTR_WAKEUP_VECTOR.
9595 */
9596 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
9597 vmx->pi_desc.sn = 1;
9598
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009599 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009600
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009601free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009602 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009603 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009604free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009605 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009606free_pml:
9607 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009608uninit_vcpu:
9609 kvm_vcpu_uninit(&vmx->vcpu);
9610free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009611 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009612 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009613 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009614}
9615
Yang, Sheng002c7f72007-07-31 14:23:01 +03009616static void __init vmx_check_processor_compat(void *rtn)
9617{
9618 struct vmcs_config vmcs_conf;
9619
9620 *(int *)rtn = 0;
9621 if (setup_vmcs_config(&vmcs_conf) < 0)
9622 *(int *)rtn = -EIO;
9623 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9624 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9625 smp_processor_id());
9626 *(int *)rtn = -EIO;
9627 }
9628}
9629
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009630static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009631{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009632 u8 cache;
9633 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009634
Sheng Yang522c68c2009-04-27 20:35:43 +08009635 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009636 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009637 * 2. EPT with VT-d:
9638 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009639 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009640 * b. VT-d with snooping control feature: snooping control feature of
9641 * VT-d engine can guarantee the cache correctness. Just set it
9642 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009643 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009644 * consistent with host MTRR
9645 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009646 if (is_mmio) {
9647 cache = MTRR_TYPE_UNCACHABLE;
9648 goto exit;
9649 }
9650
9651 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009652 ipat = VMX_EPT_IPAT_BIT;
9653 cache = MTRR_TYPE_WRBACK;
9654 goto exit;
9655 }
9656
9657 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9658 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009659 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009660 cache = MTRR_TYPE_WRBACK;
9661 else
9662 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009663 goto exit;
9664 }
9665
Xiao Guangrongff536042015-06-15 16:55:22 +08009666 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009667
9668exit:
9669 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009670}
9671
Sheng Yang17cc3932010-01-05 19:02:27 +08009672static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009673{
Sheng Yang878403b2010-01-05 19:02:29 +08009674 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9675 return PT_DIRECTORY_LEVEL;
9676 else
9677 /* For shadow and EPT supported 1GB page */
9678 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009679}
9680
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009681static void vmcs_set_secondary_exec_control(u32 new_ctl)
9682{
9683 /*
9684 * These bits in the secondary execution controls field
9685 * are dynamic, the others are mostly based on the hypervisor
9686 * architecture and the guest's CPUID. Do not touch the
9687 * dynamic bits.
9688 */
9689 u32 mask =
9690 SECONDARY_EXEC_SHADOW_VMCS |
9691 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9692 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9693
9694 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9695
9696 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9697 (new_ctl & ~mask) | (cur_ctl & mask));
9698}
9699
David Matlack8322ebb2016-11-29 18:14:09 -08009700/*
9701 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9702 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9703 */
9704static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9705{
9706 struct vcpu_vmx *vmx = to_vmx(vcpu);
9707 struct kvm_cpuid_entry2 *entry;
9708
9709 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9710 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9711
9712#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9713 if (entry && (entry->_reg & (_cpuid_mask))) \
9714 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9715} while (0)
9716
9717 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9718 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9719 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9720 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9721 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9722 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9723 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9724 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9725 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9726 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9727 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9728 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9729 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9730 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9731 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9732
9733 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9734 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9735 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9736 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9737 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9738 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9739 cr4_fixed1_update(bit(11), ecx, bit(2));
9740
9741#undef cr4_fixed1_update
9742}
9743
Sheng Yang0e851882009-12-18 16:48:46 +08009744static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9745{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009746 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009747
Paolo Bonzini80154d72017-08-24 13:55:35 +02009748 if (cpu_has_secondary_exec_ctrls()) {
9749 vmx_compute_secondary_exec_control(vmx);
9750 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009751 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009752
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009753 if (nested_vmx_allowed(vcpu))
9754 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9755 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9756 else
9757 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9758 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009759
9760 if (nested_vmx_allowed(vcpu))
9761 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009762}
9763
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009764static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9765{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009766 if (func == 1 && nested)
9767 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009768}
9769
Yang Zhang25d92082013-08-06 12:00:32 +03009770static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9771 struct x86_exception *fault)
9772{
Jan Kiszka533558b2014-01-04 18:47:20 +01009773 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009774 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009775 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009776 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009777
Bandan Dasc5f983f2017-05-05 15:25:14 -04009778 if (vmx->nested.pml_full) {
9779 exit_reason = EXIT_REASON_PML_FULL;
9780 vmx->nested.pml_full = false;
9781 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9782 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009783 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009784 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009785 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009786
9787 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009788 vmcs12->guest_physical_address = fault->address;
9789}
9790
Peter Feiner995f00a2017-06-30 17:26:32 -07009791static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9792{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009793 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009794}
9795
Nadav Har'El155a97a2013-08-05 11:07:16 +03009796/* Callbacks for nested_ept_init_mmu_context: */
9797
9798static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9799{
9800 /* return the page table to be shadowed - in our case, EPT12 */
9801 return get_vmcs12(vcpu)->ept_pointer;
9802}
9803
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009804static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009805{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009806 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009807 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009808 return 1;
9809
9810 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009811 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009812 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009813 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009814 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009815 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9816 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9817 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9818
9819 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009820 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009821}
9822
9823static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9824{
9825 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9826}
9827
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009828static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9829 u16 error_code)
9830{
9831 bool inequality, bit;
9832
9833 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9834 inequality =
9835 (error_code & vmcs12->page_fault_error_code_mask) !=
9836 vmcs12->page_fault_error_code_match;
9837 return inequality ^ bit;
9838}
9839
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009840static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9841 struct x86_exception *fault)
9842{
9843 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9844
9845 WARN_ON(!is_guest_mode(vcpu));
9846
Wanpeng Li305d0ab2017-09-28 18:16:44 -07009847 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
9848 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009849 vmcs12->vm_exit_intr_error_code = fault->error_code;
9850 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9851 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9852 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9853 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009854 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009855 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009856 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009857}
9858
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009859static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9860 struct vmcs12 *vmcs12);
9861
9862static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009863 struct vmcs12 *vmcs12)
9864{
9865 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009866 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009867 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009868
9869 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009870 /*
9871 * Translate L1 physical address to host physical
9872 * address for vmcs02. Keep the page pinned, so this
9873 * physical address remains valid. We keep a reference
9874 * to it so we can release it later.
9875 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009876 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009877 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009878 vmx->nested.apic_access_page = NULL;
9879 }
9880 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009881 /*
9882 * If translation failed, no matter: This feature asks
9883 * to exit when accessing the given address, and if it
9884 * can never be accessed, this feature won't do
9885 * anything anyway.
9886 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009887 if (!is_error_page(page)) {
9888 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009889 hpa = page_to_phys(vmx->nested.apic_access_page);
9890 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9891 } else {
9892 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9893 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9894 }
9895 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9896 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9897 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9898 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9899 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009900 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009901
9902 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009903 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009904 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009905 vmx->nested.virtual_apic_page = NULL;
9906 }
9907 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009908
9909 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009910 * If translation failed, VM entry will fail because
9911 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9912 * Failing the vm entry is _not_ what the processor
9913 * does but it's basically the only possibility we
9914 * have. We could still enter the guest if CR8 load
9915 * exits are enabled, CR8 store exits are enabled, and
9916 * virtualize APIC access is disabled; in this case
9917 * the processor would never use the TPR shadow and we
9918 * could simply clear the bit from the execution
9919 * control. But such a configuration is useless, so
9920 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009921 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009922 if (!is_error_page(page)) {
9923 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009924 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9925 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9926 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009927 }
9928
Wincy Van705699a2015-02-03 23:58:17 +08009929 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009930 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9931 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009932 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009933 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009934 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009935 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9936 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009937 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009938 vmx->nested.pi_desc_page = page;
9939 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009940 vmx->nested.pi_desc =
9941 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9942 (unsigned long)(vmcs12->posted_intr_desc_addr &
9943 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009944 vmcs_write64(POSTED_INTR_DESC_ADDR,
9945 page_to_phys(vmx->nested.pi_desc_page) +
9946 (unsigned long)(vmcs12->posted_intr_desc_addr &
9947 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009948 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009949 if (cpu_has_vmx_msr_bitmap() &&
9950 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9951 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9952 ;
9953 else
9954 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9955 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009956}
9957
Jan Kiszkaf4124502014-03-07 20:03:13 +01009958static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9959{
9960 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9961 struct vcpu_vmx *vmx = to_vmx(vcpu);
9962
9963 if (vcpu->arch.virtual_tsc_khz == 0)
9964 return;
9965
9966 /* Make sure short timeouts reliably trigger an immediate vmexit.
9967 * hrtimer_start does not guarantee this. */
9968 if (preemption_timeout <= 1) {
9969 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9970 return;
9971 }
9972
9973 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9974 preemption_timeout *= 1000000;
9975 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9976 hrtimer_start(&vmx->nested.preemption_timer,
9977 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9978}
9979
Jim Mattson56a20512017-07-06 16:33:06 -07009980static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9981 struct vmcs12 *vmcs12)
9982{
9983 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9984 return 0;
9985
9986 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9987 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9988 return -EINVAL;
9989
9990 return 0;
9991}
9992
Wincy Van3af18d92015-02-03 23:49:31 +08009993static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9994 struct vmcs12 *vmcs12)
9995{
Wincy Van3af18d92015-02-03 23:49:31 +08009996 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9997 return 0;
9998
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009999 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080010000 return -EINVAL;
10001
10002 return 0;
10003}
10004
Jim Mattson712b12d2017-08-24 13:24:47 -070010005static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
10006 struct vmcs12 *vmcs12)
10007{
10008 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10009 return 0;
10010
10011 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
10012 return -EINVAL;
10013
10014 return 0;
10015}
10016
Wincy Van3af18d92015-02-03 23:49:31 +080010017/*
10018 * Merge L0's and L1's MSR bitmap, return false to indicate that
10019 * we do not use the hardware.
10020 */
10021static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
10022 struct vmcs12 *vmcs12)
10023{
Wincy Van82f0dd42015-02-03 23:57:18 +080010024 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010025 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010026 unsigned long *msr_bitmap_l1;
10027 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +080010028
Radim Krčmářd048c092016-08-08 20:16:22 +020010029 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +080010030 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
10031 return false;
10032
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010033 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10034 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010035 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +020010036 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010037
Radim Krčmářd048c092016-08-08 20:16:22 +020010038 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
10039
Wincy Vanf2b93282015-02-03 23:56:03 +080010040 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +080010041 if (nested_cpu_has_apic_reg_virt(vmcs12))
10042 for (msr = 0x800; msr <= 0x8ff; msr++)
10043 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010044 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +080010045 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +020010046
10047 nested_vmx_disable_intercept_for_msr(
10048 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +080010049 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
10050 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +020010051
Wincy Van608406e2015-02-03 23:57:51 +080010052 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +080010053 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010054 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010055 APIC_BASE_MSR + (APIC_EOI >> 4),
10056 MSR_TYPE_W);
10057 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010058 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010059 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
10060 MSR_TYPE_W);
10061 }
Wincy Van82f0dd42015-02-03 23:57:18 +080010062 }
Wincy Vanf2b93282015-02-03 23:56:03 +080010063 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010064 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010065
10066 return true;
10067}
10068
10069static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
10070 struct vmcs12 *vmcs12)
10071{
Wincy Van82f0dd42015-02-03 23:57:18 +080010072 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080010073 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080010074 !nested_cpu_has_vid(vmcs12) &&
10075 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080010076 return 0;
10077
10078 /*
10079 * If virtualize x2apic mode is enabled,
10080 * virtualize apic access must be disabled.
10081 */
Wincy Van82f0dd42015-02-03 23:57:18 +080010082 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
10083 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080010084 return -EINVAL;
10085
Wincy Van608406e2015-02-03 23:57:51 +080010086 /*
10087 * If virtual interrupt delivery is enabled,
10088 * we must exit on external interrupts.
10089 */
10090 if (nested_cpu_has_vid(vmcs12) &&
10091 !nested_exit_on_intr(vcpu))
10092 return -EINVAL;
10093
Wincy Van705699a2015-02-03 23:58:17 +080010094 /*
10095 * bits 15:8 should be zero in posted_intr_nv,
10096 * the descriptor address has been already checked
10097 * in nested_get_vmcs12_pages.
10098 */
10099 if (nested_cpu_has_posted_intr(vmcs12) &&
10100 (!nested_cpu_has_vid(vmcs12) ||
10101 !nested_exit_intr_ack_set(vcpu) ||
10102 vmcs12->posted_intr_nv & 0xff00))
10103 return -EINVAL;
10104
Wincy Vanf2b93282015-02-03 23:56:03 +080010105 /* tpr shadow is needed by all apicv features. */
10106 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10107 return -EINVAL;
10108
10109 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010110}
10111
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010112static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10113 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010114 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010115{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010116 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010117 u64 count, addr;
10118
10119 if (vmcs12_read_any(vcpu, count_field, &count) ||
10120 vmcs12_read_any(vcpu, addr_field, &addr)) {
10121 WARN_ON(1);
10122 return -EINVAL;
10123 }
10124 if (count == 0)
10125 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010126 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010127 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10128 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010129 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010130 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10131 addr_field, maxphyaddr, count, addr);
10132 return -EINVAL;
10133 }
10134 return 0;
10135}
10136
10137static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10138 struct vmcs12 *vmcs12)
10139{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010140 if (vmcs12->vm_exit_msr_load_count == 0 &&
10141 vmcs12->vm_exit_msr_store_count == 0 &&
10142 vmcs12->vm_entry_msr_load_count == 0)
10143 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010144 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010145 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010146 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010147 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010148 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010149 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010150 return -EINVAL;
10151 return 0;
10152}
10153
Bandan Dasc5f983f2017-05-05 15:25:14 -040010154static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10155 struct vmcs12 *vmcs12)
10156{
10157 u64 address = vmcs12->pml_address;
10158 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10159
10160 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10161 if (!nested_cpu_has_ept(vmcs12) ||
10162 !IS_ALIGNED(address, 4096) ||
10163 address >> maxphyaddr)
10164 return -EINVAL;
10165 }
10166
10167 return 0;
10168}
10169
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010170static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10171 struct vmx_msr_entry *e)
10172{
10173 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010174 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010175 return -EINVAL;
10176 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10177 e->index == MSR_IA32_UCODE_REV)
10178 return -EINVAL;
10179 if (e->reserved != 0)
10180 return -EINVAL;
10181 return 0;
10182}
10183
10184static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10185 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010186{
10187 if (e->index == MSR_FS_BASE ||
10188 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010189 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10190 nested_vmx_msr_check_common(vcpu, e))
10191 return -EINVAL;
10192 return 0;
10193}
10194
10195static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10196 struct vmx_msr_entry *e)
10197{
10198 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10199 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010200 return -EINVAL;
10201 return 0;
10202}
10203
10204/*
10205 * Load guest's/host's msr at nested entry/exit.
10206 * return 0 for success, entry index for failure.
10207 */
10208static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10209{
10210 u32 i;
10211 struct vmx_msr_entry e;
10212 struct msr_data msr;
10213
10214 msr.host_initiated = false;
10215 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010216 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10217 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010218 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010219 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10220 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010221 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010222 }
10223 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010224 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010225 "%s check failed (%u, 0x%x, 0x%x)\n",
10226 __func__, i, e.index, e.reserved);
10227 goto fail;
10228 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010229 msr.index = e.index;
10230 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010231 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010232 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010233 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10234 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010235 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010236 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010237 }
10238 return 0;
10239fail:
10240 return i + 1;
10241}
10242
10243static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10244{
10245 u32 i;
10246 struct vmx_msr_entry e;
10247
10248 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010249 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010250 if (kvm_vcpu_read_guest(vcpu,
10251 gpa + i * sizeof(e),
10252 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010253 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010254 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10255 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010256 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010257 }
10258 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010259 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010260 "%s check failed (%u, 0x%x, 0x%x)\n",
10261 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010262 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010263 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010264 msr_info.host_initiated = false;
10265 msr_info.index = e.index;
10266 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010267 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010268 "%s cannot read MSR (%u, 0x%x)\n",
10269 __func__, i, e.index);
10270 return -EINVAL;
10271 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010272 if (kvm_vcpu_write_guest(vcpu,
10273 gpa + i * sizeof(e) +
10274 offsetof(struct vmx_msr_entry, value),
10275 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010276 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010277 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010278 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010279 return -EINVAL;
10280 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010281 }
10282 return 0;
10283}
10284
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010285static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10286{
10287 unsigned long invalid_mask;
10288
10289 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10290 return (val & invalid_mask) == 0;
10291}
10292
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010293/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010294 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10295 * emulating VM entry into a guest with EPT enabled.
10296 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10297 * is assigned to entry_failure_code on failure.
10298 */
10299static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010300 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010301{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010302 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010303 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010304 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10305 return 1;
10306 }
10307
10308 /*
10309 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10310 * must not be dereferenced.
10311 */
10312 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10313 !nested_ept) {
10314 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10315 *entry_failure_code = ENTRY_FAIL_PDPTE;
10316 return 1;
10317 }
10318 }
10319
10320 vcpu->arch.cr3 = cr3;
10321 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10322 }
10323
10324 kvm_mmu_reset_context(vcpu);
10325 return 0;
10326}
10327
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010328/*
10329 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10330 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010331 * 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 +030010332 * guest in a way that will both be appropriate to L1's requests, and our
10333 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10334 * function also has additional necessary side-effects, like setting various
10335 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010336 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10337 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010338 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010339static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010340 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010341{
10342 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010343 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010344
10345 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10346 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10347 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10348 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10349 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10350 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10351 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10352 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10353 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10354 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10355 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10356 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10357 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10358 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10359 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10360 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10361 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10362 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10363 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10364 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10365 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10366 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10367 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10368 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10369 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10370 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10371 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10372 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10373 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10374 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10375 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10376 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10377 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10378 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10379 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10380 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10381
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010382 if (from_vmentry &&
10383 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010384 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10385 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10386 } else {
10387 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10388 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10389 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010390 if (from_vmentry) {
10391 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10392 vmcs12->vm_entry_intr_info_field);
10393 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10394 vmcs12->vm_entry_exception_error_code);
10395 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10396 vmcs12->vm_entry_instruction_len);
10397 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10398 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010399 vmx->loaded_vmcs->nmi_known_unmasked =
10400 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010401 } else {
10402 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10403 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010404 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010405 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010406 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10407 vmcs12->guest_pending_dbg_exceptions);
10408 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10409 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10410
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010411 if (nested_cpu_has_xsaves(vmcs12))
10412 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010413 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10414
Jan Kiszkaf4124502014-03-07 20:03:13 +010010415 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010416
Paolo Bonzini93140062016-07-06 13:23:51 +020010417 /* Preemption timer setting is only taken from vmcs01. */
10418 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10419 exec_control |= vmcs_config.pin_based_exec_ctrl;
10420 if (vmx->hv_deadline_tsc == -1)
10421 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10422
10423 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010424 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010425 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10426 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010427 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010428 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010429 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010430 }
Wincy Van705699a2015-02-03 23:58:17 +080010431
Jan Kiszkaf4124502014-03-07 20:03:13 +010010432 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010433
Jan Kiszkaf4124502014-03-07 20:03:13 +010010434 vmx->nested.preemption_timer_expired = false;
10435 if (nested_cpu_has_preemption_timer(vmcs12))
10436 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010437
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010438 /*
10439 * Whether page-faults are trapped is determined by a combination of
10440 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10441 * If enable_ept, L0 doesn't care about page faults and we should
10442 * set all of these to L1's desires. However, if !enable_ept, L0 does
10443 * care about (at least some) page faults, and because it is not easy
10444 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10445 * to exit on each and every L2 page fault. This is done by setting
10446 * MASK=MATCH=0 and (see below) EB.PF=1.
10447 * Note that below we don't need special code to set EB.PF beyond the
10448 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10449 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10450 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010451 */
10452 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10453 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10454 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10455 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10456
10457 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020010458 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080010459
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010460 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010461 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010462 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010463 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020010464 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010465 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010466 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10467 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010468 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010469 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10470 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10471 ~SECONDARY_EXEC_ENABLE_PML;
10472 exec_control |= vmcs12_exec_ctrl;
10473 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010474
Bandan Das27c42a12017-08-03 15:54:42 -040010475 /* All VMFUNCs are currently emulated through L0 vmexits. */
10476 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10477 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10478
Wincy Van608406e2015-02-03 23:57:51 +080010479 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10480 vmcs_write64(EOI_EXIT_BITMAP0,
10481 vmcs12->eoi_exit_bitmap0);
10482 vmcs_write64(EOI_EXIT_BITMAP1,
10483 vmcs12->eoi_exit_bitmap1);
10484 vmcs_write64(EOI_EXIT_BITMAP2,
10485 vmcs12->eoi_exit_bitmap2);
10486 vmcs_write64(EOI_EXIT_BITMAP3,
10487 vmcs12->eoi_exit_bitmap3);
10488 vmcs_write16(GUEST_INTR_STATUS,
10489 vmcs12->guest_intr_status);
10490 }
10491
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010492 /*
10493 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10494 * nested_get_vmcs12_pages will either fix it up or
10495 * remove the VM execution control.
10496 */
10497 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10498 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10499
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010500 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10501 }
10502
10503
10504 /*
10505 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10506 * Some constant fields are set here by vmx_set_constant_host_state().
10507 * Other fields are different per CPU, and will be set later when
10508 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10509 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010510 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010511
10512 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010513 * Set the MSR load/store lists to match L0's settings.
10514 */
10515 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10516 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10517 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10518 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10519 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10520
10521 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010522 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10523 * entry, but only if the current (host) sp changed from the value
10524 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10525 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10526 * here we just force the write to happen on entry.
10527 */
10528 vmx->host_rsp = 0;
10529
10530 exec_control = vmx_exec_control(vmx); /* L0's desires */
10531 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10532 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10533 exec_control &= ~CPU_BASED_TPR_SHADOW;
10534 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010535
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010536 /*
10537 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10538 * nested_get_vmcs12_pages can't fix it up, the illegal value
10539 * will result in a VM entry failure.
10540 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010541 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010542 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010543 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070010544 } else {
10545#ifdef CONFIG_X86_64
10546 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
10547 CPU_BASED_CR8_STORE_EXITING;
10548#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010549 }
10550
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010551 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010552 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010553 * Rather, exit every time.
10554 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010555 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10556 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10557
10558 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10559
10560 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10561 * bitwise-or of what L1 wants to trap for L2, and what we want to
10562 * trap. Note that CR0.TS also needs updating - we do this later.
10563 */
10564 update_exception_bitmap(vcpu);
10565 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10566 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10567
Nadav Har'El8049d652013-08-05 11:07:06 +030010568 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10569 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10570 * bits are further modified by vmx_set_efer() below.
10571 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010572 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010573
10574 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10575 * emulated by vmx_set_efer(), below.
10576 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010577 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010578 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10579 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010580 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10581
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010582 if (from_vmentry &&
10583 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010584 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010585 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010586 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010587 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010588 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010589
10590 set_cr4_guest_host_mask(vmx);
10591
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010592 if (from_vmentry &&
10593 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010594 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10595
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010596 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10597 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010598 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010599 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010600 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010601 if (kvm_has_tsc_control)
10602 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010603
10604 if (enable_vpid) {
10605 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010606 * There is no direct mapping between vpid02 and vpid12, the
10607 * vpid02 is per-vCPU for L0 and reused while the value of
10608 * vpid12 is changed w/ one invvpid during nested vmentry.
10609 * The vpid12 is allocated by L1 for L2, so it will not
10610 * influence global bitmap(for vpid01 and vpid02 allocation)
10611 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010612 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010613 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10614 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10615 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10616 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10617 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10618 }
10619 } else {
10620 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10621 vmx_flush_tlb(vcpu);
10622 }
10623
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010624 }
10625
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010626 if (enable_pml) {
10627 /*
10628 * Conceptually we want to copy the PML address and index from
10629 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10630 * since we always flush the log on each vmexit, this happens
10631 * to be equivalent to simply resetting the fields in vmcs02.
10632 */
10633 ASSERT(vmx->pml_pg);
10634 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10635 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10636 }
10637
Nadav Har'El155a97a2013-08-05 11:07:16 +030010638 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010639 if (nested_ept_init_mmu_context(vcpu)) {
10640 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10641 return 1;
10642 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010643 } else if (nested_cpu_has2(vmcs12,
10644 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10645 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010646 }
10647
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010648 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010649 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10650 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010651 * The CR0_READ_SHADOW is what L2 should have expected to read given
10652 * the specifications by L1; It's not enough to take
10653 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10654 * have more bits than L1 expected.
10655 */
10656 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10657 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10658
10659 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10660 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10661
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010662 if (from_vmentry &&
10663 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010664 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10665 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10666 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10667 else
10668 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10669 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10670 vmx_set_efer(vcpu, vcpu->arch.efer);
10671
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010672 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010673 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010674 entry_failure_code))
10675 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010676
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010677 if (!enable_ept)
10678 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10679
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010680 /*
10681 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10682 */
10683 if (enable_ept) {
10684 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10685 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10686 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10687 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10688 }
10689
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010690 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10691 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010692 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010693}
10694
Jim Mattsonca0bde22016-11-30 12:03:46 -080010695static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10696{
10697 struct vcpu_vmx *vmx = to_vmx(vcpu);
10698
10699 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10700 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10701 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10702
Jim Mattson56a20512017-07-06 16:33:06 -070010703 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10704 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10705
Jim Mattsonca0bde22016-11-30 12:03:46 -080010706 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10707 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10708
Jim Mattson712b12d2017-08-24 13:24:47 -070010709 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
10710 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10711
Jim Mattsonca0bde22016-11-30 12:03:46 -080010712 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10713 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10714
10715 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10716 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10717
Bandan Dasc5f983f2017-05-05 15:25:14 -040010718 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10719 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10720
Jim Mattsonca0bde22016-11-30 12:03:46 -080010721 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10722 vmx->nested.nested_vmx_procbased_ctls_low,
10723 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010724 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10725 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10726 vmx->nested.nested_vmx_secondary_ctls_low,
10727 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010728 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10729 vmx->nested.nested_vmx_pinbased_ctls_low,
10730 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10731 !vmx_control_verify(vmcs12->vm_exit_controls,
10732 vmx->nested.nested_vmx_exit_ctls_low,
10733 vmx->nested.nested_vmx_exit_ctls_high) ||
10734 !vmx_control_verify(vmcs12->vm_entry_controls,
10735 vmx->nested.nested_vmx_entry_ctls_low,
10736 vmx->nested.nested_vmx_entry_ctls_high))
10737 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10738
Bandan Das41ab9372017-08-03 15:54:43 -040010739 if (nested_cpu_has_vmfunc(vmcs12)) {
10740 if (vmcs12->vm_function_control &
10741 ~vmx->nested.nested_vmx_vmfunc_controls)
10742 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10743
10744 if (nested_cpu_has_eptp_switching(vmcs12)) {
10745 if (!nested_cpu_has_ept(vmcs12) ||
10746 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10747 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10748 }
10749 }
Bandan Das27c42a12017-08-03 15:54:42 -040010750
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010751 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10752 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10753
Jim Mattsonca0bde22016-11-30 12:03:46 -080010754 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10755 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10756 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10757 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10758
10759 return 0;
10760}
10761
10762static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10763 u32 *exit_qual)
10764{
10765 bool ia32e;
10766
10767 *exit_qual = ENTRY_FAIL_DEFAULT;
10768
10769 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10770 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10771 return 1;
10772
10773 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10774 vmcs12->vmcs_link_pointer != -1ull) {
10775 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10776 return 1;
10777 }
10778
10779 /*
10780 * If the load IA32_EFER VM-entry control is 1, the following checks
10781 * are performed on the field for the IA32_EFER MSR:
10782 * - Bits reserved in the IA32_EFER MSR must be 0.
10783 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10784 * the IA-32e mode guest VM-exit control. It must also be identical
10785 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10786 * CR0.PG) is 1.
10787 */
10788 if (to_vmx(vcpu)->nested.nested_run_pending &&
10789 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10790 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10791 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10792 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10793 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10794 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10795 return 1;
10796 }
10797
10798 /*
10799 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10800 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10801 * the values of the LMA and LME bits in the field must each be that of
10802 * the host address-space size VM-exit control.
10803 */
10804 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10805 ia32e = (vmcs12->vm_exit_controls &
10806 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10807 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10808 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10809 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10810 return 1;
10811 }
10812
10813 return 0;
10814}
10815
Jim Mattson858e25c2016-11-30 12:03:47 -080010816static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10817{
10818 struct vcpu_vmx *vmx = to_vmx(vcpu);
10819 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10820 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010821 u32 msr_entry_idx;
10822 u32 exit_qual;
10823
10824 vmcs02 = nested_get_current_vmcs02(vmx);
10825 if (!vmcs02)
10826 return -ENOMEM;
10827
10828 enter_guest_mode(vcpu);
10829
10830 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10831 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10832
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010833 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010834 vmx_segment_cache_clear(vmx);
10835
10836 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10837 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010838 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010839 nested_vmx_entry_failure(vcpu, vmcs12,
10840 EXIT_REASON_INVALID_STATE, exit_qual);
10841 return 1;
10842 }
10843
10844 nested_get_vmcs12_pages(vcpu, vmcs12);
10845
10846 msr_entry_idx = nested_vmx_load_msr(vcpu,
10847 vmcs12->vm_entry_msr_load_addr,
10848 vmcs12->vm_entry_msr_load_count);
10849 if (msr_entry_idx) {
10850 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010851 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010852 nested_vmx_entry_failure(vcpu, vmcs12,
10853 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10854 return 1;
10855 }
10856
Jim Mattson858e25c2016-11-30 12:03:47 -080010857 /*
10858 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10859 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10860 * returned as far as L1 is concerned. It will only return (and set
10861 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10862 */
10863 return 0;
10864}
10865
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010866/*
10867 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10868 * for running an L2 nested guest.
10869 */
10870static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10871{
10872 struct vmcs12 *vmcs12;
10873 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010874 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010875 u32 exit_qual;
10876 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010877
Kyle Hueyeb277562016-11-29 12:40:39 -080010878 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010879 return 1;
10880
Kyle Hueyeb277562016-11-29 12:40:39 -080010881 if (!nested_vmx_check_vmcs12(vcpu))
10882 goto out;
10883
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010884 vmcs12 = get_vmcs12(vcpu);
10885
Abel Gordon012f83c2013-04-18 14:39:25 +030010886 if (enable_shadow_vmcs)
10887 copy_shadow_to_vmcs12(vmx);
10888
Nadav Har'El7c177932011-05-25 23:12:04 +030010889 /*
10890 * The nested entry process starts with enforcing various prerequisites
10891 * on vmcs12 as required by the Intel SDM, and act appropriately when
10892 * they fail: As the SDM explains, some conditions should cause the
10893 * instruction to fail, while others will cause the instruction to seem
10894 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10895 * To speed up the normal (success) code path, we should avoid checking
10896 * for misconfigurations which will anyway be caught by the processor
10897 * when using the merged vmcs02.
10898 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010899 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10900 nested_vmx_failValid(vcpu,
10901 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10902 goto out;
10903 }
10904
Nadav Har'El7c177932011-05-25 23:12:04 +030010905 if (vmcs12->launch_state == launch) {
10906 nested_vmx_failValid(vcpu,
10907 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10908 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010909 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010910 }
10911
Jim Mattsonca0bde22016-11-30 12:03:46 -080010912 ret = check_vmentry_prereqs(vcpu, vmcs12);
10913 if (ret) {
10914 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010915 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010916 }
10917
Nadav Har'El7c177932011-05-25 23:12:04 +030010918 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010919 * After this point, the trap flag no longer triggers a singlestep trap
10920 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10921 * This is not 100% correct; for performance reasons, we delegate most
10922 * of the checks on host state to the processor. If those fail,
10923 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010924 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010925 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010926
Jim Mattsonca0bde22016-11-30 12:03:46 -080010927 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10928 if (ret) {
10929 nested_vmx_entry_failure(vcpu, vmcs12,
10930 EXIT_REASON_INVALID_STATE, exit_qual);
10931 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010932 }
10933
10934 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010935 * We're finally done with prerequisite checking, and can start with
10936 * the nested entry.
10937 */
10938
Jim Mattson858e25c2016-11-30 12:03:47 -080010939 ret = enter_vmx_non_root_mode(vcpu, true);
10940 if (ret)
10941 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010942
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010943 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010944 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010945
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010946 vmx->nested.nested_run_pending = 1;
10947
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010948 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010949
10950out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010951 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010952}
10953
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010954/*
10955 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10956 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10957 * This function returns the new value we should put in vmcs12.guest_cr0.
10958 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10959 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10960 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10961 * didn't trap the bit, because if L1 did, so would L0).
10962 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10963 * been modified by L2, and L1 knows it. So just leave the old value of
10964 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10965 * isn't relevant, because if L0 traps this bit it can set it to anything.
10966 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10967 * changed these bits, and therefore they need to be updated, but L0
10968 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10969 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10970 */
10971static inline unsigned long
10972vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10973{
10974 return
10975 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10976 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10977 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10978 vcpu->arch.cr0_guest_owned_bits));
10979}
10980
10981static inline unsigned long
10982vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10983{
10984 return
10985 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10986 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10987 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10988 vcpu->arch.cr4_guest_owned_bits));
10989}
10990
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010991static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10992 struct vmcs12 *vmcs12)
10993{
10994 u32 idt_vectoring;
10995 unsigned int nr;
10996
Wanpeng Li664f8e22017-08-24 03:35:09 -070010997 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010998 nr = vcpu->arch.exception.nr;
10999 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11000
11001 if (kvm_exception_is_soft(nr)) {
11002 vmcs12->vm_exit_instruction_len =
11003 vcpu->arch.event_exit_inst_len;
11004 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
11005 } else
11006 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
11007
11008 if (vcpu->arch.exception.has_error_code) {
11009 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
11010 vmcs12->idt_vectoring_error_code =
11011 vcpu->arch.exception.error_code;
11012 }
11013
11014 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010011015 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011016 vmcs12->idt_vectoring_info_field =
11017 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
11018 } else if (vcpu->arch.interrupt.pending) {
11019 nr = vcpu->arch.interrupt.nr;
11020 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11021
11022 if (vcpu->arch.interrupt.soft) {
11023 idt_vectoring |= INTR_TYPE_SOFT_INTR;
11024 vmcs12->vm_entry_instruction_len =
11025 vcpu->arch.event_exit_inst_len;
11026 } else
11027 idt_vectoring |= INTR_TYPE_EXT_INTR;
11028
11029 vmcs12->idt_vectoring_info_field = idt_vectoring;
11030 }
11031}
11032
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011033static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
11034{
11035 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011036 unsigned long exit_qual;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011037
Wanpeng Li274bba52017-08-24 03:35:08 -070011038 if (kvm_event_needs_reinjection(vcpu))
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011039 return -EBUSY;
11040
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011041 if (vcpu->arch.exception.pending &&
11042 nested_vmx_check_exception(vcpu, &exit_qual)) {
11043 if (vmx->nested.nested_run_pending)
11044 return -EBUSY;
11045 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
11046 vcpu->arch.exception.pending = false;
11047 return 0;
11048 }
11049
Jan Kiszkaf4124502014-03-07 20:03:13 +010011050 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
11051 vmx->nested.preemption_timer_expired) {
11052 if (vmx->nested.nested_run_pending)
11053 return -EBUSY;
11054 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
11055 return 0;
11056 }
11057
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011058 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011059 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011060 return -EBUSY;
11061 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11062 NMI_VECTOR | INTR_TYPE_NMI_INTR |
11063 INTR_INFO_VALID_MASK, 0);
11064 /*
11065 * The NMI-triggered VM exit counts as injection:
11066 * clear this one and block further NMIs.
11067 */
11068 vcpu->arch.nmi_pending = 0;
11069 vmx_set_nmi_mask(vcpu, true);
11070 return 0;
11071 }
11072
11073 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
11074 nested_exit_on_intr(vcpu)) {
11075 if (vmx->nested.nested_run_pending)
11076 return -EBUSY;
11077 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080011078 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011079 }
11080
David Hildenbrand6342c502017-01-25 11:58:58 +010011081 vmx_complete_nested_posted_interrupt(vcpu);
11082 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011083}
11084
Jan Kiszkaf4124502014-03-07 20:03:13 +010011085static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
11086{
11087 ktime_t remaining =
11088 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
11089 u64 value;
11090
11091 if (ktime_to_ns(remaining) <= 0)
11092 return 0;
11093
11094 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
11095 do_div(value, 1000000);
11096 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11097}
11098
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011099/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011100 * Update the guest state fields of vmcs12 to reflect changes that
11101 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
11102 * VM-entry controls is also updated, since this is really a guest
11103 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011104 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011105static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011106{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011107 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11108 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11109
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011110 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11111 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11112 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11113
11114 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11115 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11116 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11117 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11118 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11119 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11120 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11121 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11122 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11123 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11124 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11125 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11126 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11127 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11128 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11129 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11130 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11131 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11132 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11133 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11134 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11135 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11136 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11137 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11138 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11139 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11140 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11141 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11142 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11143 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11144 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11145 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11146 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11147 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11148 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11149 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11150
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011151 vmcs12->guest_interruptibility_info =
11152 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11153 vmcs12->guest_pending_dbg_exceptions =
11154 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011155 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11156 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11157 else
11158 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011159
Jan Kiszkaf4124502014-03-07 20:03:13 +010011160 if (nested_cpu_has_preemption_timer(vmcs12)) {
11161 if (vmcs12->vm_exit_controls &
11162 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11163 vmcs12->vmx_preemption_timer_value =
11164 vmx_get_preemption_timer_value(vcpu);
11165 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11166 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011167
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011168 /*
11169 * In some cases (usually, nested EPT), L2 is allowed to change its
11170 * own CR3 without exiting. If it has changed it, we must keep it.
11171 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11172 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11173 *
11174 * Additionally, restore L2's PDPTR to vmcs12.
11175 */
11176 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011177 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011178 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11179 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11180 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11181 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11182 }
11183
Jim Mattsond281e132017-06-01 12:44:46 -070011184 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011185
Wincy Van608406e2015-02-03 23:57:51 +080011186 if (nested_cpu_has_vid(vmcs12))
11187 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11188
Jan Kiszkac18911a2013-03-13 16:06:41 +010011189 vmcs12->vm_entry_controls =
11190 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011191 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011192
Jan Kiszka2996fca2014-06-16 13:59:43 +020011193 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11194 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11195 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11196 }
11197
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011198 /* TODO: These cannot have changed unless we have MSR bitmaps and
11199 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011200 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011201 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011202 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11203 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011204 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11205 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11206 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011207 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011208 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011209}
11210
11211/*
11212 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11213 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11214 * and this function updates it to reflect the changes to the guest state while
11215 * L2 was running (and perhaps made some exits which were handled directly by L0
11216 * without going back to L1), and to reflect the exit reason.
11217 * Note that we do not have to copy here all VMCS fields, just those that
11218 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11219 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11220 * which already writes to vmcs12 directly.
11221 */
11222static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11223 u32 exit_reason, u32 exit_intr_info,
11224 unsigned long exit_qualification)
11225{
11226 /* update guest state fields: */
11227 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011228
11229 /* update exit information fields: */
11230
Jan Kiszka533558b2014-01-04 18:47:20 +010011231 vmcs12->vm_exit_reason = exit_reason;
11232 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011233 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011234
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011235 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011236 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11237 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11238
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011239 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011240 vmcs12->launch_state = 1;
11241
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011242 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11243 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011244 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011245
11246 /*
11247 * Transfer the event that L0 or L1 may wanted to inject into
11248 * L2 to IDT_VECTORING_INFO_FIELD.
11249 */
11250 vmcs12_save_pending_event(vcpu, vmcs12);
11251 }
11252
11253 /*
11254 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11255 * preserved above and would only end up incorrectly in L1.
11256 */
11257 vcpu->arch.nmi_injected = false;
11258 kvm_clear_exception_queue(vcpu);
11259 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011260}
11261
11262/*
11263 * A part of what we need to when the nested L2 guest exits and we want to
11264 * run its L1 parent, is to reset L1's guest state to the host state specified
11265 * in vmcs12.
11266 * This function is to be called not only on normal nested exit, but also on
11267 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11268 * Failures During or After Loading Guest State").
11269 * This function should be called when the active VMCS is L1's (vmcs01).
11270 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011271static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11272 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011273{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011274 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011275 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011276
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011277 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11278 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011279 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011280 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11281 else
11282 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11283 vmx_set_efer(vcpu, vcpu->arch.efer);
11284
11285 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11286 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011287 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011288 /*
11289 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011290 * actually changed, because vmx_set_cr0 refers to efer set above.
11291 *
11292 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11293 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011294 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011295 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011296 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011297
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011298 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011299 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080011300 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011301
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011302 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011303
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011304 /*
11305 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11306 * couldn't have changed.
11307 */
11308 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11309 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011310
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011311 if (!enable_ept)
11312 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11313
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011314 if (enable_vpid) {
11315 /*
11316 * Trivially support vpid by letting L2s share their parent
11317 * L1's vpid. TODO: move to a more elaborate solution, giving
11318 * each L2 its own vpid and exposing the vpid feature to L1.
11319 */
11320 vmx_flush_tlb(vcpu);
11321 }
Wincy Van06a55242017-04-28 13:13:59 +080011322 /* Restore posted intr vector. */
11323 if (nested_cpu_has_posted_intr(vmcs12))
11324 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011325
11326 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11327 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11328 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11329 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11330 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011331
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011332 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11333 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11334 vmcs_write64(GUEST_BNDCFGS, 0);
11335
Jan Kiszka44811c02013-08-04 17:17:27 +020011336 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011337 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011338 vcpu->arch.pat = vmcs12->host_ia32_pat;
11339 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011340 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11341 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11342 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011343
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011344 /* Set L1 segment info according to Intel SDM
11345 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11346 seg = (struct kvm_segment) {
11347 .base = 0,
11348 .limit = 0xFFFFFFFF,
11349 .selector = vmcs12->host_cs_selector,
11350 .type = 11,
11351 .present = 1,
11352 .s = 1,
11353 .g = 1
11354 };
11355 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11356 seg.l = 1;
11357 else
11358 seg.db = 1;
11359 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11360 seg = (struct kvm_segment) {
11361 .base = 0,
11362 .limit = 0xFFFFFFFF,
11363 .type = 3,
11364 .present = 1,
11365 .s = 1,
11366 .db = 1,
11367 .g = 1
11368 };
11369 seg.selector = vmcs12->host_ds_selector;
11370 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11371 seg.selector = vmcs12->host_es_selector;
11372 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11373 seg.selector = vmcs12->host_ss_selector;
11374 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11375 seg.selector = vmcs12->host_fs_selector;
11376 seg.base = vmcs12->host_fs_base;
11377 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11378 seg.selector = vmcs12->host_gs_selector;
11379 seg.base = vmcs12->host_gs_base;
11380 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11381 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011382 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011383 .limit = 0x67,
11384 .selector = vmcs12->host_tr_selector,
11385 .type = 11,
11386 .present = 1
11387 };
11388 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11389
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011390 kvm_set_dr(vcpu, 7, 0x400);
11391 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011392
Wincy Van3af18d92015-02-03 23:49:31 +080011393 if (cpu_has_vmx_msr_bitmap())
11394 vmx_set_msr_bitmap(vcpu);
11395
Wincy Vanff651cb2014-12-11 08:52:58 +030011396 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11397 vmcs12->vm_exit_msr_load_count))
11398 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011399}
11400
11401/*
11402 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11403 * and modify vmcs12 to make it see what it would expect to see there if
11404 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11405 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011406static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11407 u32 exit_intr_info,
11408 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011409{
11410 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011411 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
11412
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011413 /* trying to cancel vmlaunch/vmresume is a bug */
11414 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11415
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011416 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070011417 * The only expected VM-instruction error is "VM entry with
11418 * invalid control field(s)." Anything else indicates a
11419 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011420 */
Jim Mattson4f350c62017-09-14 16:31:44 -070011421 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
11422 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
11423
11424 leave_guest_mode(vcpu);
11425
11426 if (likely(!vmx->fail)) {
11427 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11428 exit_qualification);
11429
11430 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11431 vmcs12->vm_exit_msr_store_count))
11432 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040011433 }
11434
Jim Mattson4f350c62017-09-14 16:31:44 -070011435 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011436 vm_entry_controls_reset_shadow(vmx);
11437 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011438 vmx_segment_cache_clear(vmx);
11439
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011440 /* if no vmcs02 cache requested, remove the one we used */
11441 if (VMCS02_POOL_SIZE == 0)
11442 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11443
Paolo Bonzini93140062016-07-06 13:23:51 +020011444 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011445 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11446 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011447 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020011448 if (vmx->hv_deadline_tsc == -1)
11449 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11450 PIN_BASED_VMX_PREEMPTION_TIMER);
11451 else
11452 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11453 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011454 if (kvm_has_tsc_control)
11455 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011456
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011457 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11458 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11459 vmx_set_virtual_x2apic_mode(vcpu,
11460 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011461 } else if (!nested_cpu_has_ept(vmcs12) &&
11462 nested_cpu_has2(vmcs12,
11463 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11464 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011465 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011466
11467 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11468 vmx->host_rsp = 0;
11469
11470 /* Unpin physical memory we referred to in vmcs02 */
11471 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011472 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011473 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011474 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011475 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011476 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011477 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011478 }
Wincy Van705699a2015-02-03 23:58:17 +080011479 if (vmx->nested.pi_desc_page) {
11480 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011481 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011482 vmx->nested.pi_desc_page = NULL;
11483 vmx->nested.pi_desc = NULL;
11484 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011485
11486 /*
Tang Chen38b99172014-09-24 15:57:54 +080011487 * We are now running in L2, mmu_notifier will force to reload the
11488 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11489 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011490 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011491
Abel Gordon012f83c2013-04-18 14:39:25 +030011492 if (enable_shadow_vmcs)
11493 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011494
11495 /* in case we halted in L2 */
11496 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070011497
11498 if (likely(!vmx->fail)) {
11499 /*
11500 * TODO: SDM says that with acknowledge interrupt on
11501 * exit, bit 31 of the VM-exit interrupt information
11502 * (valid interrupt) is always set to 1 on
11503 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
11504 * need kvm_cpu_has_interrupt(). See the commit
11505 * message for details.
11506 */
11507 if (nested_exit_intr_ack_set(vcpu) &&
11508 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11509 kvm_cpu_has_interrupt(vcpu)) {
11510 int irq = kvm_cpu_get_interrupt(vcpu);
11511 WARN_ON(irq < 0);
11512 vmcs12->vm_exit_intr_info = irq |
11513 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11514 }
11515
11516 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11517 vmcs12->exit_qualification,
11518 vmcs12->idt_vectoring_info_field,
11519 vmcs12->vm_exit_intr_info,
11520 vmcs12->vm_exit_intr_error_code,
11521 KVM_ISA_VMX);
11522
11523 load_vmcs12_host_state(vcpu, vmcs12);
11524
11525 return;
11526 }
11527
11528 /*
11529 * After an early L2 VM-entry failure, we're now back
11530 * in L1 which thinks it just finished a VMLAUNCH or
11531 * VMRESUME instruction, so we need to set the failure
11532 * flag and the VM-instruction error field of the VMCS
11533 * accordingly.
11534 */
11535 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
11536 /*
11537 * The emulated instruction was already skipped in
11538 * nested_vmx_run, but the updated RIP was never
11539 * written back to the vmcs01.
11540 */
11541 skip_emulated_instruction(vcpu);
11542 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011543}
11544
Nadav Har'El7c177932011-05-25 23:12:04 +030011545/*
Jan Kiszka42124922014-01-04 18:47:19 +010011546 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11547 */
11548static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11549{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011550 if (is_guest_mode(vcpu)) {
11551 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011552 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011553 }
Jan Kiszka42124922014-01-04 18:47:19 +010011554 free_nested(to_vmx(vcpu));
11555}
11556
11557/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011558 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11559 * 23.7 "VM-entry failures during or after loading guest state" (this also
11560 * lists the acceptable exit-reason and exit-qualification parameters).
11561 * It should only be called before L2 actually succeeded to run, and when
11562 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11563 */
11564static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11565 struct vmcs12 *vmcs12,
11566 u32 reason, unsigned long qualification)
11567{
11568 load_vmcs12_host_state(vcpu, vmcs12);
11569 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11570 vmcs12->exit_qualification = qualification;
11571 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011572 if (enable_shadow_vmcs)
11573 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011574}
11575
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011576static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11577 struct x86_instruction_info *info,
11578 enum x86_intercept_stage stage)
11579{
11580 return X86EMUL_CONTINUE;
11581}
11582
Yunhong Jiang64672c92016-06-13 14:19:59 -070011583#ifdef CONFIG_X86_64
11584/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11585static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11586 u64 divisor, u64 *result)
11587{
11588 u64 low = a << shift, high = a >> (64 - shift);
11589
11590 /* To avoid the overflow on divq */
11591 if (high >= divisor)
11592 return 1;
11593
11594 /* Low hold the result, high hold rem which is discarded */
11595 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11596 "rm" (divisor), "0" (low), "1" (high));
11597 *result = low;
11598
11599 return 0;
11600}
11601
11602static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11603{
11604 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011605 u64 tscl = rdtsc();
11606 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11607 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011608
11609 /* Convert to host delta tsc if tsc scaling is enabled */
11610 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11611 u64_shl_div_u64(delta_tsc,
11612 kvm_tsc_scaling_ratio_frac_bits,
11613 vcpu->arch.tsc_scaling_ratio,
11614 &delta_tsc))
11615 return -ERANGE;
11616
11617 /*
11618 * If the delta tsc can't fit in the 32 bit after the multi shift,
11619 * we can't use the preemption timer.
11620 * It's possible that it fits on later vmentries, but checking
11621 * on every vmentry is costly so we just use an hrtimer.
11622 */
11623 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11624 return -ERANGE;
11625
11626 vmx->hv_deadline_tsc = tscl + delta_tsc;
11627 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11628 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011629
11630 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011631}
11632
11633static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11634{
11635 struct vcpu_vmx *vmx = to_vmx(vcpu);
11636 vmx->hv_deadline_tsc = -1;
11637 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11638 PIN_BASED_VMX_PREEMPTION_TIMER);
11639}
11640#endif
11641
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011642static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011643{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011644 if (ple_gap)
11645 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011646}
11647
Kai Huang843e4332015-01-28 10:54:28 +080011648static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11649 struct kvm_memory_slot *slot)
11650{
11651 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11652 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11653}
11654
11655static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11656 struct kvm_memory_slot *slot)
11657{
11658 kvm_mmu_slot_set_dirty(kvm, slot);
11659}
11660
11661static void vmx_flush_log_dirty(struct kvm *kvm)
11662{
11663 kvm_flush_pml_buffers(kvm);
11664}
11665
Bandan Dasc5f983f2017-05-05 15:25:14 -040011666static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11667{
11668 struct vmcs12 *vmcs12;
11669 struct vcpu_vmx *vmx = to_vmx(vcpu);
11670 gpa_t gpa;
11671 struct page *page = NULL;
11672 u64 *pml_address;
11673
11674 if (is_guest_mode(vcpu)) {
11675 WARN_ON_ONCE(vmx->nested.pml_full);
11676
11677 /*
11678 * Check if PML is enabled for the nested guest.
11679 * Whether eptp bit 6 is set is already checked
11680 * as part of A/D emulation.
11681 */
11682 vmcs12 = get_vmcs12(vcpu);
11683 if (!nested_cpu_has_pml(vmcs12))
11684 return 0;
11685
Dan Carpenter47698862017-05-10 22:43:17 +030011686 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011687 vmx->nested.pml_full = true;
11688 return 1;
11689 }
11690
11691 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11692
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011693 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11694 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011695 return 0;
11696
11697 pml_address = kmap(page);
11698 pml_address[vmcs12->guest_pml_index--] = gpa;
11699 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011700 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011701 }
11702
11703 return 0;
11704}
11705
Kai Huang843e4332015-01-28 10:54:28 +080011706static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11707 struct kvm_memory_slot *memslot,
11708 gfn_t offset, unsigned long mask)
11709{
11710 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11711}
11712
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011713static void __pi_post_block(struct kvm_vcpu *vcpu)
11714{
11715 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11716 struct pi_desc old, new;
11717 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011718
11719 do {
11720 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011721 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
11722 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011723
11724 dest = cpu_physical_id(vcpu->cpu);
11725
11726 if (x2apic_enabled())
11727 new.ndst = dest;
11728 else
11729 new.ndst = (dest << 8) & 0xFF00;
11730
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011731 /* set 'NV' to 'notification vector' */
11732 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011733 } while (cmpxchg64(&pi_desc->control, old.control,
11734 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011735
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011736 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
11737 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011738 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011739 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011740 vcpu->pre_pcpu = -1;
11741 }
11742}
11743
Feng Wuefc64402015-09-18 22:29:51 +080011744/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011745 * This routine does the following things for vCPU which is going
11746 * to be blocked if VT-d PI is enabled.
11747 * - Store the vCPU to the wakeup list, so when interrupts happen
11748 * we can find the right vCPU to wake up.
11749 * - Change the Posted-interrupt descriptor as below:
11750 * 'NDST' <-- vcpu->pre_pcpu
11751 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11752 * - If 'ON' is set during this process, which means at least one
11753 * interrupt is posted for this vCPU, we cannot block it, in
11754 * this case, return 1, otherwise, return 0.
11755 *
11756 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011757static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011758{
Feng Wubf9f6ac2015-09-18 22:29:55 +080011759 unsigned int dest;
11760 struct pi_desc old, new;
11761 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11762
11763 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011764 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11765 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011766 return 0;
11767
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011768 WARN_ON(irqs_disabled());
11769 local_irq_disable();
11770 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
11771 vcpu->pre_pcpu = vcpu->cpu;
11772 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11773 list_add_tail(&vcpu->blocked_vcpu_list,
11774 &per_cpu(blocked_vcpu_on_cpu,
11775 vcpu->pre_pcpu));
11776 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11777 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080011778
11779 do {
11780 old.control = new.control = pi_desc->control;
11781
Feng Wubf9f6ac2015-09-18 22:29:55 +080011782 WARN((pi_desc->sn == 1),
11783 "Warning: SN field of posted-interrupts "
11784 "is set before blocking\n");
11785
11786 /*
11787 * Since vCPU can be preempted during this process,
11788 * vcpu->cpu could be different with pre_pcpu, we
11789 * need to set pre_pcpu as the destination of wakeup
11790 * notification event, then we can find the right vCPU
11791 * to wakeup in wakeup handler if interrupts happen
11792 * when the vCPU is in blocked state.
11793 */
11794 dest = cpu_physical_id(vcpu->pre_pcpu);
11795
11796 if (x2apic_enabled())
11797 new.ndst = dest;
11798 else
11799 new.ndst = (dest << 8) & 0xFF00;
11800
11801 /* set 'NV' to 'wakeup vector' */
11802 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011803 } while (cmpxchg64(&pi_desc->control, old.control,
11804 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011805
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011806 /* We should not block the vCPU if an interrupt is posted for it. */
11807 if (pi_test_on(pi_desc) == 1)
11808 __pi_post_block(vcpu);
11809
11810 local_irq_enable();
11811 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011812}
11813
Yunhong Jiangbc225122016-06-13 14:19:58 -070011814static int vmx_pre_block(struct kvm_vcpu *vcpu)
11815{
11816 if (pi_pre_block(vcpu))
11817 return 1;
11818
Yunhong Jiang64672c92016-06-13 14:19:59 -070011819 if (kvm_lapic_hv_timer_in_use(vcpu))
11820 kvm_lapic_switch_to_sw_timer(vcpu);
11821
Yunhong Jiangbc225122016-06-13 14:19:58 -070011822 return 0;
11823}
11824
11825static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011826{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011827 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011828 return;
11829
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011830 WARN_ON(irqs_disabled());
11831 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011832 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011833 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080011834}
11835
Yunhong Jiangbc225122016-06-13 14:19:58 -070011836static void vmx_post_block(struct kvm_vcpu *vcpu)
11837{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011838 if (kvm_x86_ops->set_hv_timer)
11839 kvm_lapic_switch_to_hv_timer(vcpu);
11840
Yunhong Jiangbc225122016-06-13 14:19:58 -070011841 pi_post_block(vcpu);
11842}
11843
Feng Wubf9f6ac2015-09-18 22:29:55 +080011844/*
Feng Wuefc64402015-09-18 22:29:51 +080011845 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11846 *
11847 * @kvm: kvm
11848 * @host_irq: host irq of the interrupt
11849 * @guest_irq: gsi of the interrupt
11850 * @set: set or unset PI
11851 * returns 0 on success, < 0 on failure
11852 */
11853static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11854 uint32_t guest_irq, bool set)
11855{
11856 struct kvm_kernel_irq_routing_entry *e;
11857 struct kvm_irq_routing_table *irq_rt;
11858 struct kvm_lapic_irq irq;
11859 struct kvm_vcpu *vcpu;
11860 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011861 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080011862
11863 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011864 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11865 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011866 return 0;
11867
11868 idx = srcu_read_lock(&kvm->irq_srcu);
11869 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011870 if (guest_irq >= irq_rt->nr_rt_entries ||
11871 hlist_empty(&irq_rt->map[guest_irq])) {
11872 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
11873 guest_irq, irq_rt->nr_rt_entries);
11874 goto out;
11875 }
Feng Wuefc64402015-09-18 22:29:51 +080011876
11877 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11878 if (e->type != KVM_IRQ_ROUTING_MSI)
11879 continue;
11880 /*
11881 * VT-d PI cannot support posting multicast/broadcast
11882 * interrupts to a vCPU, we still use interrupt remapping
11883 * for these kind of interrupts.
11884 *
11885 * For lowest-priority interrupts, we only support
11886 * those with single CPU as the destination, e.g. user
11887 * configures the interrupts via /proc/irq or uses
11888 * irqbalance to make the interrupts single-CPU.
11889 *
11890 * We will support full lowest-priority interrupt later.
11891 */
11892
Radim Krčmář371313132016-07-12 22:09:27 +020011893 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011894 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11895 /*
11896 * Make sure the IRTE is in remapped mode if
11897 * we don't handle it in posted mode.
11898 */
11899 ret = irq_set_vcpu_affinity(host_irq, NULL);
11900 if (ret < 0) {
11901 printk(KERN_INFO
11902 "failed to back to remapped mode, irq: %u\n",
11903 host_irq);
11904 goto out;
11905 }
11906
Feng Wuefc64402015-09-18 22:29:51 +080011907 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011908 }
Feng Wuefc64402015-09-18 22:29:51 +080011909
11910 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11911 vcpu_info.vector = irq.vector;
11912
Feng Wub6ce9782016-01-25 16:53:35 +080011913 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011914 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11915
11916 if (set)
11917 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080011918 else
Feng Wuefc64402015-09-18 22:29:51 +080011919 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080011920
11921 if (ret < 0) {
11922 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11923 __func__);
11924 goto out;
11925 }
11926 }
11927
11928 ret = 0;
11929out:
11930 srcu_read_unlock(&kvm->irq_srcu, idx);
11931 return ret;
11932}
11933
Ashok Rajc45dcc72016-06-22 14:59:56 +080011934static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11935{
11936 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11937 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11938 FEATURE_CONTROL_LMCE;
11939 else
11940 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11941 ~FEATURE_CONTROL_LMCE;
11942}
11943
Kees Cook404f6aa2016-08-08 16:29:06 -070011944static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011945 .cpu_has_kvm_support = cpu_has_kvm_support,
11946 .disabled_by_bios = vmx_disabled_by_bios,
11947 .hardware_setup = hardware_setup,
11948 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011949 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011950 .hardware_enable = hardware_enable,
11951 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011952 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011953 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011954
11955 .vcpu_create = vmx_create_vcpu,
11956 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011957 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011958
Avi Kivity04d2cc72007-09-10 18:10:54 +030011959 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011960 .vcpu_load = vmx_vcpu_load,
11961 .vcpu_put = vmx_vcpu_put,
11962
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011963 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011964 .get_msr = vmx_get_msr,
11965 .set_msr = vmx_set_msr,
11966 .get_segment_base = vmx_get_segment_base,
11967 .get_segment = vmx_get_segment,
11968 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011969 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011970 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011971 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011972 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011973 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011974 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011975 .set_cr3 = vmx_set_cr3,
11976 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011977 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011978 .get_idt = vmx_get_idt,
11979 .set_idt = vmx_set_idt,
11980 .get_gdt = vmx_get_gdt,
11981 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011982 .get_dr6 = vmx_get_dr6,
11983 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011984 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011985 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011986 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011987 .get_rflags = vmx_get_rflags,
11988 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011989
Avi Kivity6aa8b732006-12-10 02:21:36 -080011990 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011991
Avi Kivity6aa8b732006-12-10 02:21:36 -080011992 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011993 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011994 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011995 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11996 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011997 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011998 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011999 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020012000 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030012001 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020012002 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012003 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010012004 .get_nmi_mask = vmx_get_nmi_mask,
12005 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012006 .enable_nmi_window = enable_nmi_window,
12007 .enable_irq_window = enable_irq_window,
12008 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080012009 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080012010 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030012011 .get_enable_apicv = vmx_get_enable_apicv,
12012 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012013 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010012014 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012015 .hwapic_irr_update = vmx_hwapic_irr_update,
12016 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080012017 .sync_pir_to_irr = vmx_sync_pir_to_irr,
12018 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012019
Izik Eiduscbc94022007-10-25 00:29:55 +020012020 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080012021 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080012022 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012023
Avi Kivity586f9602010-11-18 13:09:54 +020012024 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020012025
Sheng Yang17cc3932010-01-05 19:02:27 +080012026 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080012027
12028 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080012029
12030 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000012031 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020012032
12033 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080012034
12035 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012036
12037 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020012038
12039 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012040
12041 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080012042 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000012043 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080012044 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012045
12046 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012047
12048 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080012049
12050 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
12051 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
12052 .flush_log_dirty = vmx_flush_log_dirty,
12053 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040012054 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020012055
Feng Wubf9f6ac2015-09-18 22:29:55 +080012056 .pre_block = vmx_pre_block,
12057 .post_block = vmx_post_block,
12058
Wei Huang25462f7f2015-06-19 15:45:05 +020012059 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080012060
12061 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070012062
12063#ifdef CONFIG_X86_64
12064 .set_hv_timer = vmx_set_hv_timer,
12065 .cancel_hv_timer = vmx_cancel_hv_timer,
12066#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080012067
12068 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012069};
12070
12071static int __init vmx_init(void)
12072{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012073 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
12074 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030012075 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012076 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080012077
Dave Young2965faa2015-09-09 15:38:55 -070012078#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012079 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
12080 crash_vmclear_local_loaded_vmcss);
12081#endif
12082
He, Qingfdef3ad2007-04-30 09:45:24 +030012083 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080012084}
12085
12086static void __exit vmx_exit(void)
12087{
Dave Young2965faa2015-09-09 15:38:55 -070012088#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053012089 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012090 synchronize_rcu();
12091#endif
12092
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080012093 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080012094}
12095
12096module_init(vmx_init)
12097module_exit(vmx_exit)