blob: 714a0673ec3cb2153dce2f192f412fc14e0d19df [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 Kiszkaf41245002014-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 Huang25462f72015-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
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010073static bool __read_mostly enable_vnmi = 1;
74module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
75
Rusty Russell476bc002012-01-13 09:32:18 +103076static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020077module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020078
Rusty Russell476bc002012-01-13 09:32:18 +103079static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020080module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080081
Rusty Russell476bc002012-01-13 09:32:18 +103082static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070083module_param_named(unrestricted_guest,
84 enable_unrestricted_guest, bool, S_IRUGO);
85
Xudong Hao83c3a332012-05-28 19:33:35 +080086static bool __read_mostly enable_ept_ad_bits = 1;
87module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
88
Avi Kivitya27685c2012-06-12 20:30:18 +030089static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020090module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030091
Rusty Russell476bc002012-01-13 09:32:18 +103092static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030093module_param(fasteoi, bool, S_IRUGO);
94
Yang Zhang5a717852013-04-11 19:25:16 +080095static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080096module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080097
Abel Gordonabc4fc52013-04-18 14:35:25 +030098static bool __read_mostly enable_shadow_vmcs = 1;
99module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +0300100/*
101 * If nested=1, nested virtualization is supported, i.e., guests may use
102 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
103 * use VMX instructions.
104 */
Rusty Russell476bc002012-01-13 09:32:18 +1030105static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300106module_param(nested, bool, S_IRUGO);
107
Wanpeng Li20300092014-12-02 19:14:59 +0800108static u64 __read_mostly host_xss;
109
Kai Huang843e4332015-01-28 10:54:28 +0800110static bool __read_mostly enable_pml = 1;
111module_param_named(pml, enable_pml, bool, S_IRUGO);
112
Haozhong Zhang64903d62015-10-20 15:39:09 +0800113#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
114
Yunhong Jiang64672c92016-06-13 14:19:59 -0700115/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
116static int __read_mostly cpu_preemption_timer_multi;
117static bool __read_mostly enable_preemption_timer = 1;
118#ifdef CONFIG_X86_64
119module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
120#endif
121
Gleb Natapov50378782013-02-04 16:00:28 +0200122#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
123#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200124#define KVM_VM_CR0_ALWAYS_ON \
125 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200126#define KVM_CR4_GUEST_OWNED_BITS \
127 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800128 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200129
Avi Kivitycdc0e242009-12-06 17:21:14 +0200130#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
131#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
132
Avi Kivity78ac8b42010-04-08 18:19:35 +0300133#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
134
Jan Kiszkaf41245002014-03-07 20:03:13 +0100135#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
136
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800137/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300138 * Hyper-V requires all of these, so mark them as supported even though
139 * they are just treated the same as all-context.
140 */
141#define VMX_VPID_EXTENT_SUPPORTED_MASK \
142 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
143 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
144 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
145 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
146
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800147/*
148 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
149 * ple_gap: upper bound on the amount of time between two successive
150 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500151 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800152 * ple_window: upper bound on the amount of time a guest is allowed to execute
153 * in a PAUSE loop. Tests indicate that most spinlocks are held for
154 * less than 2^12 cycles
155 * Time is measured based on a counter that runs at the same rate as the TSC,
156 * refer SDM volume 3b section 21.6.13 & 22.1.3.
157 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200158#define KVM_VMX_DEFAULT_PLE_GAP 128
159#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
160#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
161#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
162#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
163 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
164
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800165static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
166module_param(ple_gap, int, S_IRUGO);
167
168static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
169module_param(ple_window, int, S_IRUGO);
170
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200171/* Default doubles per-vcpu window every exit. */
172static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
173module_param(ple_window_grow, int, S_IRUGO);
174
175/* Default resets per-vcpu window every exit to ple_window. */
176static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
177module_param(ple_window_shrink, int, S_IRUGO);
178
179/* Default is to compute the maximum so we can never overflow. */
180static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
181static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
182module_param(ple_window_max, int, S_IRUGO);
183
Avi Kivity83287ea422012-09-16 15:10:57 +0300184extern const ulong vmx_return;
185
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200186#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300187#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300188
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400189struct vmcs {
190 u32 revision_id;
191 u32 abort;
192 char data[0];
193};
194
Nadav Har'Eld462b812011-05-24 15:26:10 +0300195/*
196 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
197 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
198 * loaded on this CPU (so we can clear them if the CPU goes down).
199 */
200struct loaded_vmcs {
201 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700202 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300203 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200204 bool launched;
205 bool nmi_known_unmasked;
Ladi Prosek44889942017-09-22 07:53:15 +0200206 unsigned long vmcs_host_cr3; /* May not match real cr3 */
207 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Paolo Bonzini8a1b4392017-11-06 13:31:12 +0100208 /* Support for vnmi-less CPUs */
209 int soft_vnmi_blocked;
210 ktime_t entry_time;
211 s64 vnmi_blocked_time;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300212 struct list_head loaded_vmcss_on_cpu_link;
213};
214
Avi Kivity26bb0982009-09-07 11:14:12 +0300215struct shared_msr_entry {
216 unsigned index;
217 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200218 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300219};
220
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300221/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300222 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
223 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
224 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
225 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
226 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
227 * More than one of these structures may exist, if L1 runs multiple L2 guests.
228 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
229 * underlying hardware which will be used to run L2.
230 * This structure is packed to ensure that its layout is identical across
231 * machines (necessary for live migration).
232 * If there are changes in this struct, VMCS12_REVISION must be changed.
233 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300234typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300235struct __packed vmcs12 {
236 /* According to the Intel spec, a VMCS region must start with the
237 * following two fields. Then follow implementation-specific data.
238 */
239 u32 revision_id;
240 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300241
Nadav Har'El27d6c862011-05-25 23:06:59 +0300242 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
243 u32 padding[7]; /* room for future expansion */
244
Nadav Har'El22bd0352011-05-25 23:05:57 +0300245 u64 io_bitmap_a;
246 u64 io_bitmap_b;
247 u64 msr_bitmap;
248 u64 vm_exit_msr_store_addr;
249 u64 vm_exit_msr_load_addr;
250 u64 vm_entry_msr_load_addr;
251 u64 tsc_offset;
252 u64 virtual_apic_page_addr;
253 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800254 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400255 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300256 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800257 u64 eoi_exit_bitmap0;
258 u64 eoi_exit_bitmap1;
259 u64 eoi_exit_bitmap2;
260 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400261 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800262 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300263 u64 guest_physical_address;
264 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400265 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300266 u64 guest_ia32_debugctl;
267 u64 guest_ia32_pat;
268 u64 guest_ia32_efer;
269 u64 guest_ia32_perf_global_ctrl;
270 u64 guest_pdptr0;
271 u64 guest_pdptr1;
272 u64 guest_pdptr2;
273 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100274 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300275 u64 host_ia32_pat;
276 u64 host_ia32_efer;
277 u64 host_ia32_perf_global_ctrl;
278 u64 padding64[8]; /* room for future expansion */
279 /*
280 * To allow migration of L1 (complete with its L2 guests) between
281 * machines of different natural widths (32 or 64 bit), we cannot have
282 * unsigned long fields with no explict size. We use u64 (aliased
283 * natural_width) instead. Luckily, x86 is little-endian.
284 */
285 natural_width cr0_guest_host_mask;
286 natural_width cr4_guest_host_mask;
287 natural_width cr0_read_shadow;
288 natural_width cr4_read_shadow;
289 natural_width cr3_target_value0;
290 natural_width cr3_target_value1;
291 natural_width cr3_target_value2;
292 natural_width cr3_target_value3;
293 natural_width exit_qualification;
294 natural_width guest_linear_address;
295 natural_width guest_cr0;
296 natural_width guest_cr3;
297 natural_width guest_cr4;
298 natural_width guest_es_base;
299 natural_width guest_cs_base;
300 natural_width guest_ss_base;
301 natural_width guest_ds_base;
302 natural_width guest_fs_base;
303 natural_width guest_gs_base;
304 natural_width guest_ldtr_base;
305 natural_width guest_tr_base;
306 natural_width guest_gdtr_base;
307 natural_width guest_idtr_base;
308 natural_width guest_dr7;
309 natural_width guest_rsp;
310 natural_width guest_rip;
311 natural_width guest_rflags;
312 natural_width guest_pending_dbg_exceptions;
313 natural_width guest_sysenter_esp;
314 natural_width guest_sysenter_eip;
315 natural_width host_cr0;
316 natural_width host_cr3;
317 natural_width host_cr4;
318 natural_width host_fs_base;
319 natural_width host_gs_base;
320 natural_width host_tr_base;
321 natural_width host_gdtr_base;
322 natural_width host_idtr_base;
323 natural_width host_ia32_sysenter_esp;
324 natural_width host_ia32_sysenter_eip;
325 natural_width host_rsp;
326 natural_width host_rip;
327 natural_width paddingl[8]; /* room for future expansion */
328 u32 pin_based_vm_exec_control;
329 u32 cpu_based_vm_exec_control;
330 u32 exception_bitmap;
331 u32 page_fault_error_code_mask;
332 u32 page_fault_error_code_match;
333 u32 cr3_target_count;
334 u32 vm_exit_controls;
335 u32 vm_exit_msr_store_count;
336 u32 vm_exit_msr_load_count;
337 u32 vm_entry_controls;
338 u32 vm_entry_msr_load_count;
339 u32 vm_entry_intr_info_field;
340 u32 vm_entry_exception_error_code;
341 u32 vm_entry_instruction_len;
342 u32 tpr_threshold;
343 u32 secondary_vm_exec_control;
344 u32 vm_instruction_error;
345 u32 vm_exit_reason;
346 u32 vm_exit_intr_info;
347 u32 vm_exit_intr_error_code;
348 u32 idt_vectoring_info_field;
349 u32 idt_vectoring_error_code;
350 u32 vm_exit_instruction_len;
351 u32 vmx_instruction_info;
352 u32 guest_es_limit;
353 u32 guest_cs_limit;
354 u32 guest_ss_limit;
355 u32 guest_ds_limit;
356 u32 guest_fs_limit;
357 u32 guest_gs_limit;
358 u32 guest_ldtr_limit;
359 u32 guest_tr_limit;
360 u32 guest_gdtr_limit;
361 u32 guest_idtr_limit;
362 u32 guest_es_ar_bytes;
363 u32 guest_cs_ar_bytes;
364 u32 guest_ss_ar_bytes;
365 u32 guest_ds_ar_bytes;
366 u32 guest_fs_ar_bytes;
367 u32 guest_gs_ar_bytes;
368 u32 guest_ldtr_ar_bytes;
369 u32 guest_tr_ar_bytes;
370 u32 guest_interruptibility_info;
371 u32 guest_activity_state;
372 u32 guest_sysenter_cs;
373 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100374 u32 vmx_preemption_timer_value;
375 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300376 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800377 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300378 u16 guest_es_selector;
379 u16 guest_cs_selector;
380 u16 guest_ss_selector;
381 u16 guest_ds_selector;
382 u16 guest_fs_selector;
383 u16 guest_gs_selector;
384 u16 guest_ldtr_selector;
385 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800386 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400387 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300388 u16 host_es_selector;
389 u16 host_cs_selector;
390 u16 host_ss_selector;
391 u16 host_ds_selector;
392 u16 host_fs_selector;
393 u16 host_gs_selector;
394 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300395};
396
397/*
398 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
399 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
400 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
401 */
402#define VMCS12_REVISION 0x11e57ed0
403
404/*
405 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
406 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
407 * current implementation, 4K are reserved to avoid future complications.
408 */
409#define VMCS12_SIZE 0x1000
410
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300411/* Used to remember the last vmcs02 used for some recently used vmcs12s */
412struct vmcs02_list {
413 struct list_head list;
414 gpa_t vmptr;
415 struct loaded_vmcs vmcs02;
416};
417
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300418/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300419 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
420 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
421 */
422struct nested_vmx {
423 /* Has the level1 guest done vmxon? */
424 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400425 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400426 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300427
428 /* The guest-physical address of the current VMCS L1 keeps for L2 */
429 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700430 /*
431 * Cache of the guest's VMCS, existing outside of guest memory.
432 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700433 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700434 */
435 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300436 /*
437 * Indicates if the shadow vmcs must be updated with the
438 * data hold by vmcs12
439 */
440 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300441
442 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
443 struct list_head vmcs02_pool;
444 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200445 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300446 /* L2 must run next, and mustn't decide to exit to L1. */
447 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300448 /*
449 * Guest pages referred to in vmcs02 with host-physical pointers, so
450 * we must keep them pinned while L2 runs.
451 */
452 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800453 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800454 struct page *pi_desc_page;
455 struct pi_desc *pi_desc;
456 bool pi_pending;
457 u16 posted_intr_nv;
Jan Kiszkaf41245002014-03-07 20:03:13 +0100458
Radim Krčmářd048c092016-08-08 20:16:22 +0200459 unsigned long *msr_bitmap;
460
Jan Kiszkaf41245002014-03-07 20:03:13 +0100461 struct hrtimer preemption_timer;
462 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200463
464 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
465 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466
Wanpeng Li5c614b32015-10-13 09:18:36 -0700467 u16 vpid02;
468 u16 last_vpid;
469
David Matlack0115f9c2016-11-29 18:14:06 -0800470 /*
471 * We only store the "true" versions of the VMX capability MSRs. We
472 * generate the "non-true" versions by setting the must-be-1 bits
473 * according to the SDM.
474 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800475 u32 nested_vmx_procbased_ctls_low;
476 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800477 u32 nested_vmx_secondary_ctls_low;
478 u32 nested_vmx_secondary_ctls_high;
479 u32 nested_vmx_pinbased_ctls_low;
480 u32 nested_vmx_pinbased_ctls_high;
481 u32 nested_vmx_exit_ctls_low;
482 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800483 u32 nested_vmx_entry_ctls_low;
484 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800485 u32 nested_vmx_misc_low;
486 u32 nested_vmx_misc_high;
487 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700488 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800489 u64 nested_vmx_basic;
490 u64 nested_vmx_cr0_fixed0;
491 u64 nested_vmx_cr0_fixed1;
492 u64 nested_vmx_cr4_fixed0;
493 u64 nested_vmx_cr4_fixed1;
494 u64 nested_vmx_vmcs_enum;
Bandan Das27c42a12017-08-03 15:54:42 -0400495 u64 nested_vmx_vmfunc_controls;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200496
497 /* SMM related state */
498 struct {
499 /* in VMX operation on SMM entry? */
500 bool vmxon;
501 /* in guest mode on SMM entry? */
502 bool guest_mode;
503 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300504};
505
Yang Zhang01e439b2013-04-11 19:25:12 +0800506#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800507#define POSTED_INTR_SN 1
508
Yang Zhang01e439b2013-04-11 19:25:12 +0800509/* Posted-Interrupt Descriptor */
510struct pi_desc {
511 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800512 union {
513 struct {
514 /* bit 256 - Outstanding Notification */
515 u16 on : 1,
516 /* bit 257 - Suppress Notification */
517 sn : 1,
518 /* bit 271:258 - Reserved */
519 rsvd_1 : 14;
520 /* bit 279:272 - Notification Vector */
521 u8 nv;
522 /* bit 287:280 - Reserved */
523 u8 rsvd_2;
524 /* bit 319:288 - Notification Destination */
525 u32 ndst;
526 };
527 u64 control;
528 };
529 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800530} __aligned(64);
531
Yang Zhanga20ed542013-04-11 19:25:15 +0800532static bool pi_test_and_set_on(struct pi_desc *pi_desc)
533{
534 return test_and_set_bit(POSTED_INTR_ON,
535 (unsigned long *)&pi_desc->control);
536}
537
538static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
539{
540 return test_and_clear_bit(POSTED_INTR_ON,
541 (unsigned long *)&pi_desc->control);
542}
543
544static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
545{
546 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
547}
548
Feng Wuebbfc762015-09-18 22:29:46 +0800549static inline void pi_clear_sn(struct pi_desc *pi_desc)
550{
551 return clear_bit(POSTED_INTR_SN,
552 (unsigned long *)&pi_desc->control);
553}
554
555static inline void pi_set_sn(struct pi_desc *pi_desc)
556{
557 return set_bit(POSTED_INTR_SN,
558 (unsigned long *)&pi_desc->control);
559}
560
Paolo Bonziniad361092016-09-20 16:15:05 +0200561static inline void pi_clear_on(struct pi_desc *pi_desc)
562{
563 clear_bit(POSTED_INTR_ON,
564 (unsigned long *)&pi_desc->control);
565}
566
Feng Wuebbfc762015-09-18 22:29:46 +0800567static inline int pi_test_on(struct pi_desc *pi_desc)
568{
569 return test_bit(POSTED_INTR_ON,
570 (unsigned long *)&pi_desc->control);
571}
572
573static inline int pi_test_sn(struct pi_desc *pi_desc)
574{
575 return test_bit(POSTED_INTR_SN,
576 (unsigned long *)&pi_desc->control);
577}
578
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400579struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000580 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300581 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300582 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300583 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200584 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200585 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300586 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400587 int nmsrs;
588 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800589 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400590#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300591 u64 msr_host_kernel_gs_base;
592 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400593#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200594 u32 vm_entry_controls_shadow;
595 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200596 u32 secondary_exec_control;
597
Nadav Har'Eld462b812011-05-24 15:26:10 +0300598 /*
599 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
600 * non-nested (L1) guest, it always points to vmcs01. For a nested
601 * guest (L2), it points to a different VMCS.
602 */
603 struct loaded_vmcs vmcs01;
604 struct loaded_vmcs *loaded_vmcs;
605 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300606 struct msr_autoload {
607 unsigned nr;
608 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
609 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
610 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400611 struct {
612 int loaded;
613 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300614#ifdef CONFIG_X86_64
615 u16 ds_sel, es_sel;
616#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200617 int gs_ldt_reload_needed;
618 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000619 u64 msr_host_bndcfgs;
Mike Dayd77c26f2007-10-08 09:02:08 -0400620 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200621 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300622 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300623 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300624 struct kvm_segment segs[8];
625 } rmode;
626 struct {
627 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300628 struct kvm_save_segment {
629 u16 selector;
630 unsigned long base;
631 u32 limit;
632 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300633 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300634 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800635 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300636 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200637
Andi Kleena0861c02009-06-08 17:37:09 +0800638 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800639
Yang Zhang01e439b2013-04-11 19:25:12 +0800640 /* Posted interrupt descriptor */
641 struct pi_desc pi_desc;
642
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300643 /* Support for a guest hypervisor (nested VMX) */
644 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200645
646 /* Dynamic PLE window. */
647 int ple_window;
648 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800649
650 /* Support for PML */
651#define PML_ENTITY_NUM 512
652 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800653
Yunhong Jiang64672c92016-06-13 14:19:59 -0700654 /* apic deadline value in host tsc */
655 u64 hv_deadline_tsc;
656
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800657 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800658
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800659 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800660
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800661 /*
662 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
663 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
664 * in msr_ia32_feature_control_valid_bits.
665 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800666 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800667 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400668};
669
Avi Kivity2fb92db2011-04-27 19:42:18 +0300670enum segment_cache_field {
671 SEG_FIELD_SEL = 0,
672 SEG_FIELD_BASE = 1,
673 SEG_FIELD_LIMIT = 2,
674 SEG_FIELD_AR = 3,
675
676 SEG_FIELD_NR = 4
677};
678
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400679static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
680{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000681 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400682}
683
Feng Wuefc64402015-09-18 22:29:51 +0800684static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
685{
686 return &(to_vmx(vcpu)->pi_desc);
687}
688
Nadav Har'El22bd0352011-05-25 23:05:57 +0300689#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
690#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
691#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
692 [number##_HIGH] = VMCS12_OFFSET(name)+4
693
Abel Gordon4607c2d2013-04-18 14:35:55 +0300694
Bandan Dasfe2b2012014-04-21 15:20:14 -0400695static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300696 /*
697 * We do NOT shadow fields that are modified when L0
698 * traps and emulates any vmx instruction (e.g. VMPTRLD,
699 * VMXON...) executed by L1.
700 * For example, VM_INSTRUCTION_ERROR is read
701 * by L1 if a vmx instruction fails (part of the error path).
702 * Note the code assumes this logic. If for some reason
703 * we start shadowing these fields then we need to
704 * force a shadow sync when L0 emulates vmx instructions
705 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
706 * by nested_vmx_failValid)
707 */
708 VM_EXIT_REASON,
709 VM_EXIT_INTR_INFO,
710 VM_EXIT_INSTRUCTION_LEN,
711 IDT_VECTORING_INFO_FIELD,
712 IDT_VECTORING_ERROR_CODE,
713 VM_EXIT_INTR_ERROR_CODE,
714 EXIT_QUALIFICATION,
715 GUEST_LINEAR_ADDRESS,
716 GUEST_PHYSICAL_ADDRESS
717};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400718static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300719 ARRAY_SIZE(shadow_read_only_fields);
720
Bandan Dasfe2b2012014-04-21 15:20:14 -0400721static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800722 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300723 GUEST_RIP,
724 GUEST_RSP,
725 GUEST_CR0,
726 GUEST_CR3,
727 GUEST_CR4,
728 GUEST_INTERRUPTIBILITY_INFO,
729 GUEST_RFLAGS,
730 GUEST_CS_SELECTOR,
731 GUEST_CS_AR_BYTES,
732 GUEST_CS_LIMIT,
733 GUEST_CS_BASE,
734 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100735 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300736 CR0_GUEST_HOST_MASK,
737 CR0_READ_SHADOW,
738 CR4_READ_SHADOW,
739 TSC_OFFSET,
740 EXCEPTION_BITMAP,
741 CPU_BASED_VM_EXEC_CONTROL,
742 VM_ENTRY_EXCEPTION_ERROR_CODE,
743 VM_ENTRY_INTR_INFO_FIELD,
744 VM_ENTRY_INSTRUCTION_LEN,
745 VM_ENTRY_EXCEPTION_ERROR_CODE,
746 HOST_FS_BASE,
747 HOST_GS_BASE,
748 HOST_FS_SELECTOR,
749 HOST_GS_SELECTOR
750};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400751static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300752 ARRAY_SIZE(shadow_read_write_fields);
753
Mathias Krause772e0312012-08-30 01:30:19 +0200754static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300755 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800756 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300757 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
758 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
759 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
760 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
761 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
762 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
763 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
764 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800765 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400766 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300767 FIELD(HOST_ES_SELECTOR, host_es_selector),
768 FIELD(HOST_CS_SELECTOR, host_cs_selector),
769 FIELD(HOST_SS_SELECTOR, host_ss_selector),
770 FIELD(HOST_DS_SELECTOR, host_ds_selector),
771 FIELD(HOST_FS_SELECTOR, host_fs_selector),
772 FIELD(HOST_GS_SELECTOR, host_gs_selector),
773 FIELD(HOST_TR_SELECTOR, host_tr_selector),
774 FIELD64(IO_BITMAP_A, io_bitmap_a),
775 FIELD64(IO_BITMAP_B, io_bitmap_b),
776 FIELD64(MSR_BITMAP, msr_bitmap),
777 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
778 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
779 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
780 FIELD64(TSC_OFFSET, tsc_offset),
781 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
782 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800783 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400784 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300785 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800786 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
787 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
788 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
789 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400790 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800791 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300792 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
793 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400794 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300795 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
796 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
797 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
798 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
799 FIELD64(GUEST_PDPTR0, guest_pdptr0),
800 FIELD64(GUEST_PDPTR1, guest_pdptr1),
801 FIELD64(GUEST_PDPTR2, guest_pdptr2),
802 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100803 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300804 FIELD64(HOST_IA32_PAT, host_ia32_pat),
805 FIELD64(HOST_IA32_EFER, host_ia32_efer),
806 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
807 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
808 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
809 FIELD(EXCEPTION_BITMAP, exception_bitmap),
810 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
811 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
812 FIELD(CR3_TARGET_COUNT, cr3_target_count),
813 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
814 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
815 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
816 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
817 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
818 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
819 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
820 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
821 FIELD(TPR_THRESHOLD, tpr_threshold),
822 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
823 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
824 FIELD(VM_EXIT_REASON, vm_exit_reason),
825 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
826 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
827 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
828 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
829 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
830 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
831 FIELD(GUEST_ES_LIMIT, guest_es_limit),
832 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
833 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
834 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
835 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
836 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
837 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
838 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
839 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
840 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
841 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
842 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
843 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
844 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
845 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
846 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
847 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
848 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
849 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
850 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
851 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
852 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100853 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300854 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
855 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
856 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
857 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
858 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
859 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
860 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
861 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
862 FIELD(EXIT_QUALIFICATION, exit_qualification),
863 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
864 FIELD(GUEST_CR0, guest_cr0),
865 FIELD(GUEST_CR3, guest_cr3),
866 FIELD(GUEST_CR4, guest_cr4),
867 FIELD(GUEST_ES_BASE, guest_es_base),
868 FIELD(GUEST_CS_BASE, guest_cs_base),
869 FIELD(GUEST_SS_BASE, guest_ss_base),
870 FIELD(GUEST_DS_BASE, guest_ds_base),
871 FIELD(GUEST_FS_BASE, guest_fs_base),
872 FIELD(GUEST_GS_BASE, guest_gs_base),
873 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
874 FIELD(GUEST_TR_BASE, guest_tr_base),
875 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
876 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
877 FIELD(GUEST_DR7, guest_dr7),
878 FIELD(GUEST_RSP, guest_rsp),
879 FIELD(GUEST_RIP, guest_rip),
880 FIELD(GUEST_RFLAGS, guest_rflags),
881 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
882 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
883 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
884 FIELD(HOST_CR0, host_cr0),
885 FIELD(HOST_CR3, host_cr3),
886 FIELD(HOST_CR4, host_cr4),
887 FIELD(HOST_FS_BASE, host_fs_base),
888 FIELD(HOST_GS_BASE, host_gs_base),
889 FIELD(HOST_TR_BASE, host_tr_base),
890 FIELD(HOST_GDTR_BASE, host_gdtr_base),
891 FIELD(HOST_IDTR_BASE, host_idtr_base),
892 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
893 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
894 FIELD(HOST_RSP, host_rsp),
895 FIELD(HOST_RIP, host_rip),
896};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300897
898static inline short vmcs_field_to_offset(unsigned long field)
899{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100900 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
901
902 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
903 vmcs_field_to_offset_table[field] == 0)
904 return -ENOENT;
905
Nadav Har'El22bd0352011-05-25 23:05:57 +0300906 return vmcs_field_to_offset_table[field];
907}
908
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300909static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
910{
David Matlack4f2777b2016-07-13 17:16:37 -0700911 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300912}
913
Peter Feiner995f00a2017-06-30 17:26:32 -0700914static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300915static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700916static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800917static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300918static void vmx_set_segment(struct kvm_vcpu *vcpu,
919 struct kvm_segment *var, int seg);
920static void vmx_get_segment(struct kvm_vcpu *vcpu,
921 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200922static bool guest_state_valid(struct kvm_vcpu *vcpu);
923static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +0300924static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200925static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
926static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
927static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
928 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300929
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930static DEFINE_PER_CPU(struct vmcs *, vmxarea);
931static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300932/*
933 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
934 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
935 */
936static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937
Feng Wubf9f6ac2015-09-18 22:29:55 +0800938/*
939 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
940 * can find which vCPU should be waken up.
941 */
942static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
943static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
944
Radim Krčmář23611332016-09-29 22:41:33 +0200945enum {
946 VMX_IO_BITMAP_A,
947 VMX_IO_BITMAP_B,
948 VMX_MSR_BITMAP_LEGACY,
949 VMX_MSR_BITMAP_LONGMODE,
950 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
951 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
952 VMX_MSR_BITMAP_LEGACY_X2APIC,
953 VMX_MSR_BITMAP_LONGMODE_X2APIC,
954 VMX_VMREAD_BITMAP,
955 VMX_VMWRITE_BITMAP,
956 VMX_BITMAP_NR
957};
958
959static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
960
961#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
962#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
963#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
964#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
965#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
966#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
967#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
968#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
969#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
970#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300971
Avi Kivity110312c2010-12-21 12:54:20 +0200972static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200973static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200974
Sheng Yang2384d2b2008-01-17 15:14:33 +0800975static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
976static DEFINE_SPINLOCK(vmx_vpid_lock);
977
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300978static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979 int size;
980 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300981 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300983 u32 pin_based_exec_ctrl;
984 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800985 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300986 u32 vmexit_ctrl;
987 u32 vmentry_ctrl;
988} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989
Hannes Ederefff9e52008-11-28 17:02:06 +0100990static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800991 u32 ept;
992 u32 vpid;
993} vmx_capability;
994
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995#define VMX_SEGMENT_FIELD(seg) \
996 [VCPU_SREG_##seg] = { \
997 .selector = GUEST_##seg##_SELECTOR, \
998 .base = GUEST_##seg##_BASE, \
999 .limit = GUEST_##seg##_LIMIT, \
1000 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1001 }
1002
Mathias Krause772e0312012-08-30 01:30:19 +02001003static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 unsigned selector;
1005 unsigned base;
1006 unsigned limit;
1007 unsigned ar_bytes;
1008} kvm_vmx_segment_fields[] = {
1009 VMX_SEGMENT_FIELD(CS),
1010 VMX_SEGMENT_FIELD(DS),
1011 VMX_SEGMENT_FIELD(ES),
1012 VMX_SEGMENT_FIELD(FS),
1013 VMX_SEGMENT_FIELD(GS),
1014 VMX_SEGMENT_FIELD(SS),
1015 VMX_SEGMENT_FIELD(TR),
1016 VMX_SEGMENT_FIELD(LDTR),
1017};
1018
Avi Kivity26bb0982009-09-07 11:14:12 +03001019static u64 host_efer;
1020
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001021static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1022
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001023/*
Brian Gerst8c065852010-07-17 09:03:26 -04001024 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001025 * away by decrementing the array size.
1026 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001027static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001028#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001029 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001030#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001031 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033
Jan Kiszka5bb16012016-02-09 20:14:21 +01001034static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035{
1036 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1037 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001038 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1039}
1040
Jan Kiszka6f054852016-02-09 20:15:18 +01001041static inline bool is_debug(u32 intr_info)
1042{
1043 return is_exception_n(intr_info, DB_VECTOR);
1044}
1045
1046static inline bool is_breakpoint(u32 intr_info)
1047{
1048 return is_exception_n(intr_info, BP_VECTOR);
1049}
1050
Jan Kiszka5bb16012016-02-09 20:14:21 +01001051static inline bool is_page_fault(u32 intr_info)
1052{
1053 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054}
1055
Gui Jianfeng31299942010-03-15 17:29:09 +08001056static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001057{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001058 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001059}
1060
Gui Jianfeng31299942010-03-15 17:29:09 +08001061static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001062{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001063 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001064}
1065
Gui Jianfeng31299942010-03-15 17:29:09 +08001066static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067{
1068 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1069 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1070}
1071
Gui Jianfeng31299942010-03-15 17:29:09 +08001072static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001073{
1074 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1075 INTR_INFO_VALID_MASK)) ==
1076 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1077}
1078
Gui Jianfeng31299942010-03-15 17:29:09 +08001079static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001080{
Sheng Yang04547152009-04-01 15:52:31 +08001081 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001082}
1083
Gui Jianfeng31299942010-03-15 17:29:09 +08001084static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001085{
Sheng Yang04547152009-04-01 15:52:31 +08001086 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001087}
1088
Paolo Bonzini35754c92015-07-29 12:05:37 +02001089static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001090{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001091 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001092}
1093
Gui Jianfeng31299942010-03-15 17:29:09 +08001094static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001095{
Sheng Yang04547152009-04-01 15:52:31 +08001096 return vmcs_config.cpu_based_exec_ctrl &
1097 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001098}
1099
Avi Kivity774ead32007-12-26 13:57:04 +02001100static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001101{
Sheng Yang04547152009-04-01 15:52:31 +08001102 return vmcs_config.cpu_based_2nd_exec_ctrl &
1103 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1104}
1105
Yang Zhang8d146952013-01-25 10:18:50 +08001106static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1107{
1108 return vmcs_config.cpu_based_2nd_exec_ctrl &
1109 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1110}
1111
Yang Zhang83d4c282013-01-25 10:18:49 +08001112static inline bool cpu_has_vmx_apic_register_virt(void)
1113{
1114 return vmcs_config.cpu_based_2nd_exec_ctrl &
1115 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1116}
1117
Yang Zhangc7c9c562013-01-25 10:18:51 +08001118static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1119{
1120 return vmcs_config.cpu_based_2nd_exec_ctrl &
1121 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1122}
1123
Yunhong Jiang64672c92016-06-13 14:19:59 -07001124/*
1125 * Comment's format: document - errata name - stepping - processor name.
1126 * Refer from
1127 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1128 */
1129static u32 vmx_preemption_cpu_tfms[] = {
1130/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11310x000206E6,
1132/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1133/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1134/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11350x00020652,
1136/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11370x00020655,
1138/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1139/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1140/*
1141 * 320767.pdf - AAP86 - B1 -
1142 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1143 */
11440x000106E5,
1145/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11460x000106A0,
1147/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11480x000106A1,
1149/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11500x000106A4,
1151 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1152 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1153 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11540x000106A5,
1155};
1156
1157static inline bool cpu_has_broken_vmx_preemption_timer(void)
1158{
1159 u32 eax = cpuid_eax(0x00000001), i;
1160
1161 /* Clear the reserved bits */
1162 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001163 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001164 if (eax == vmx_preemption_cpu_tfms[i])
1165 return true;
1166
1167 return false;
1168}
1169
1170static inline bool cpu_has_vmx_preemption_timer(void)
1171{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001172 return vmcs_config.pin_based_exec_ctrl &
1173 PIN_BASED_VMX_PREEMPTION_TIMER;
1174}
1175
Yang Zhang01e439b2013-04-11 19:25:12 +08001176static inline bool cpu_has_vmx_posted_intr(void)
1177{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001178 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1179 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001180}
1181
1182static inline bool cpu_has_vmx_apicv(void)
1183{
1184 return cpu_has_vmx_apic_register_virt() &&
1185 cpu_has_vmx_virtual_intr_delivery() &&
1186 cpu_has_vmx_posted_intr();
1187}
1188
Sheng Yang04547152009-04-01 15:52:31 +08001189static inline bool cpu_has_vmx_flexpriority(void)
1190{
1191 return cpu_has_vmx_tpr_shadow() &&
1192 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001193}
1194
Marcelo Tosattie7997942009-06-11 12:07:40 -03001195static inline bool cpu_has_vmx_ept_execute_only(void)
1196{
Gui Jianfeng31299942010-03-15 17:29:09 +08001197 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001198}
1199
Marcelo Tosattie7997942009-06-11 12:07:40 -03001200static inline bool cpu_has_vmx_ept_2m_page(void)
1201{
Gui Jianfeng31299942010-03-15 17:29:09 +08001202 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001203}
1204
Sheng Yang878403b2010-01-05 19:02:29 +08001205static inline bool cpu_has_vmx_ept_1g_page(void)
1206{
Gui Jianfeng31299942010-03-15 17:29:09 +08001207 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001208}
1209
Sheng Yang4bc9b982010-06-02 14:05:24 +08001210static inline bool cpu_has_vmx_ept_4levels(void)
1211{
1212 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1213}
1214
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001215static inline bool cpu_has_vmx_ept_mt_wb(void)
1216{
1217 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1218}
1219
Yu Zhang855feb62017-08-24 20:27:55 +08001220static inline bool cpu_has_vmx_ept_5levels(void)
1221{
1222 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1223}
1224
Xudong Hao83c3a332012-05-28 19:33:35 +08001225static inline bool cpu_has_vmx_ept_ad_bits(void)
1226{
1227 return vmx_capability.ept & VMX_EPT_AD_BIT;
1228}
1229
Gui Jianfeng31299942010-03-15 17:29:09 +08001230static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001231{
Gui Jianfeng31299942010-03-15 17:29:09 +08001232 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001233}
1234
Gui Jianfeng31299942010-03-15 17:29:09 +08001235static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001236{
Gui Jianfeng31299942010-03-15 17:29:09 +08001237 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001238}
1239
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001240static inline bool cpu_has_vmx_invvpid_single(void)
1241{
1242 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1243}
1244
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001245static inline bool cpu_has_vmx_invvpid_global(void)
1246{
1247 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1248}
1249
Wanpeng Li08d839c2017-03-23 05:30:08 -07001250static inline bool cpu_has_vmx_invvpid(void)
1251{
1252 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1253}
1254
Gui Jianfeng31299942010-03-15 17:29:09 +08001255static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001256{
Sheng Yang04547152009-04-01 15:52:31 +08001257 return vmcs_config.cpu_based_2nd_exec_ctrl &
1258 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001259}
1260
Gui Jianfeng31299942010-03-15 17:29:09 +08001261static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001262{
1263 return vmcs_config.cpu_based_2nd_exec_ctrl &
1264 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1265}
1266
Gui Jianfeng31299942010-03-15 17:29:09 +08001267static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001268{
1269 return vmcs_config.cpu_based_2nd_exec_ctrl &
1270 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1271}
1272
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001273static inline bool cpu_has_vmx_basic_inout(void)
1274{
1275 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1276}
1277
Paolo Bonzini35754c92015-07-29 12:05:37 +02001278static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001279{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001280 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001281}
1282
Gui Jianfeng31299942010-03-15 17:29:09 +08001283static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001284{
Sheng Yang04547152009-04-01 15:52:31 +08001285 return vmcs_config.cpu_based_2nd_exec_ctrl &
1286 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001287}
1288
Gui Jianfeng31299942010-03-15 17:29:09 +08001289static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001290{
1291 return vmcs_config.cpu_based_2nd_exec_ctrl &
1292 SECONDARY_EXEC_RDTSCP;
1293}
1294
Mao, Junjiead756a12012-07-02 01:18:48 +00001295static inline bool cpu_has_vmx_invpcid(void)
1296{
1297 return vmcs_config.cpu_based_2nd_exec_ctrl &
1298 SECONDARY_EXEC_ENABLE_INVPCID;
1299}
1300
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01001301static inline bool cpu_has_virtual_nmis(void)
1302{
1303 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1304}
1305
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001306static inline bool cpu_has_vmx_wbinvd_exit(void)
1307{
1308 return vmcs_config.cpu_based_2nd_exec_ctrl &
1309 SECONDARY_EXEC_WBINVD_EXITING;
1310}
1311
Abel Gordonabc4fc52013-04-18 14:35:25 +03001312static inline bool cpu_has_vmx_shadow_vmcs(void)
1313{
1314 u64 vmx_msr;
1315 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1316 /* check if the cpu supports writing r/o exit information fields */
1317 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1318 return false;
1319
1320 return vmcs_config.cpu_based_2nd_exec_ctrl &
1321 SECONDARY_EXEC_SHADOW_VMCS;
1322}
1323
Kai Huang843e4332015-01-28 10:54:28 +08001324static inline bool cpu_has_vmx_pml(void)
1325{
1326 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1327}
1328
Haozhong Zhang64903d62015-10-20 15:39:09 +08001329static inline bool cpu_has_vmx_tsc_scaling(void)
1330{
1331 return vmcs_config.cpu_based_2nd_exec_ctrl &
1332 SECONDARY_EXEC_TSC_SCALING;
1333}
1334
Bandan Das2a499e42017-08-03 15:54:41 -04001335static inline bool cpu_has_vmx_vmfunc(void)
1336{
1337 return vmcs_config.cpu_based_2nd_exec_ctrl &
1338 SECONDARY_EXEC_ENABLE_VMFUNC;
1339}
1340
Sheng Yang04547152009-04-01 15:52:31 +08001341static inline bool report_flexpriority(void)
1342{
1343 return flexpriority_enabled;
1344}
1345
Jim Mattsonc7c2c7092017-05-05 11:28:09 -07001346static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1347{
1348 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1349}
1350
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001351static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1352{
1353 return vmcs12->cpu_based_vm_exec_control & bit;
1354}
1355
1356static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1357{
1358 return (vmcs12->cpu_based_vm_exec_control &
1359 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1360 (vmcs12->secondary_vm_exec_control & bit);
1361}
1362
Jan Kiszkaf41245002014-03-07 20:03:13 +01001363static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1364{
1365 return vmcs12->pin_based_vm_exec_control &
1366 PIN_BASED_VMX_PREEMPTION_TIMER;
1367}
1368
Nadav Har'El155a97a2013-08-05 11:07:16 +03001369static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1370{
1371 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1372}
1373
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001374static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1375{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001376 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001377}
1378
Bandan Dasc5f983f2017-05-05 15:25:14 -04001379static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1380{
1381 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1382}
1383
Wincy Vanf2b93282015-02-03 23:56:03 +08001384static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1385{
1386 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1387}
1388
Wanpeng Li5c614b32015-10-13 09:18:36 -07001389static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1390{
1391 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1392}
1393
Wincy Van82f0dd42015-02-03 23:57:18 +08001394static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1395{
1396 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1397}
1398
Wincy Van608406e2015-02-03 23:57:51 +08001399static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1400{
1401 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1402}
1403
Wincy Van705699a2015-02-03 23:58:17 +08001404static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1405{
1406 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1407}
1408
Bandan Das27c42a12017-08-03 15:54:42 -04001409static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1410{
1411 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1412}
1413
Bandan Das41ab9372017-08-03 15:54:43 -04001414static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1415{
1416 return nested_cpu_has_vmfunc(vmcs12) &&
1417 (vmcs12->vm_function_control &
1418 VMX_VMFUNC_EPTP_SWITCHING);
1419}
1420
Jim Mattsonef85b672016-12-12 11:01:37 -08001421static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001422{
1423 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001424 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001425}
1426
Jan Kiszka533558b2014-01-04 18:47:20 +01001427static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1428 u32 exit_intr_info,
1429 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001430static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1431 struct vmcs12 *vmcs12,
1432 u32 reason, unsigned long qualification);
1433
Rusty Russell8b9cf982007-07-30 16:31:43 +10001434static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001435{
1436 int i;
1437
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001438 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001439 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001440 return i;
1441 return -1;
1442}
1443
Sheng Yang2384d2b2008-01-17 15:14:33 +08001444static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1445{
1446 struct {
1447 u64 vpid : 16;
1448 u64 rsvd : 48;
1449 u64 gva;
1450 } operand = { vpid, 0, gva };
1451
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001452 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001453 /* CF==1 or ZF==1 --> rc = -1 */
1454 "; ja 1f ; ud2 ; 1:"
1455 : : "a"(&operand), "c"(ext) : "cc", "memory");
1456}
1457
Sheng Yang14394422008-04-28 12:24:45 +08001458static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1459{
1460 struct {
1461 u64 eptp, gpa;
1462 } operand = {eptp, gpa};
1463
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001464 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001465 /* CF==1 or ZF==1 --> rc = -1 */
1466 "; ja 1f ; ud2 ; 1:\n"
1467 : : "a" (&operand), "c" (ext) : "cc", "memory");
1468}
1469
Avi Kivity26bb0982009-09-07 11:14:12 +03001470static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001471{
1472 int i;
1473
Rusty Russell8b9cf982007-07-30 16:31:43 +10001474 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001475 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001476 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001477 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001478}
1479
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480static void vmcs_clear(struct vmcs *vmcs)
1481{
1482 u64 phys_addr = __pa(vmcs);
1483 u8 error;
1484
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001485 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001486 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487 : "cc", "memory");
1488 if (error)
1489 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1490 vmcs, phys_addr);
1491}
1492
Nadav Har'Eld462b812011-05-24 15:26:10 +03001493static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1494{
1495 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001496 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1497 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001498 loaded_vmcs->cpu = -1;
1499 loaded_vmcs->launched = 0;
1500}
1501
Dongxiao Xu7725b892010-05-11 18:29:38 +08001502static void vmcs_load(struct vmcs *vmcs)
1503{
1504 u64 phys_addr = __pa(vmcs);
1505 u8 error;
1506
1507 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001508 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001509 : "cc", "memory");
1510 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001511 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001512 vmcs, phys_addr);
1513}
1514
Dave Young2965faa2015-09-09 15:38:55 -07001515#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001516/*
1517 * This bitmap is used to indicate whether the vmclear
1518 * operation is enabled on all cpus. All disabled by
1519 * default.
1520 */
1521static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1522
1523static inline void crash_enable_local_vmclear(int cpu)
1524{
1525 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1526}
1527
1528static inline void crash_disable_local_vmclear(int cpu)
1529{
1530 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1531}
1532
1533static inline int crash_local_vmclear_enabled(int cpu)
1534{
1535 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1536}
1537
1538static void crash_vmclear_local_loaded_vmcss(void)
1539{
1540 int cpu = raw_smp_processor_id();
1541 struct loaded_vmcs *v;
1542
1543 if (!crash_local_vmclear_enabled(cpu))
1544 return;
1545
1546 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1547 loaded_vmcss_on_cpu_link)
1548 vmcs_clear(v->vmcs);
1549}
1550#else
1551static inline void crash_enable_local_vmclear(int cpu) { }
1552static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001553#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001554
Nadav Har'Eld462b812011-05-24 15:26:10 +03001555static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001557 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001558 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559
Nadav Har'Eld462b812011-05-24 15:26:10 +03001560 if (loaded_vmcs->cpu != cpu)
1561 return; /* vcpu migration can race with cpu offline */
1562 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001564 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001565 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001566
1567 /*
1568 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1569 * is before setting loaded_vmcs->vcpu to -1 which is done in
1570 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1571 * then adds the vmcs into percpu list before it is deleted.
1572 */
1573 smp_wmb();
1574
Nadav Har'Eld462b812011-05-24 15:26:10 +03001575 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001576 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577}
1578
Nadav Har'Eld462b812011-05-24 15:26:10 +03001579static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001580{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001581 int cpu = loaded_vmcs->cpu;
1582
1583 if (cpu != -1)
1584 smp_call_function_single(cpu,
1585 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001586}
1587
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001588static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001589{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001590 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001591 return;
1592
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001593 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001594 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001595}
1596
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001597static inline void vpid_sync_vcpu_global(void)
1598{
1599 if (cpu_has_vmx_invvpid_global())
1600 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1601}
1602
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001603static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001604{
1605 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001606 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001607 else
1608 vpid_sync_vcpu_global();
1609}
1610
Sheng Yang14394422008-04-28 12:24:45 +08001611static inline void ept_sync_global(void)
1612{
David Hildenbrandf5f51582017-08-24 20:51:30 +02001613 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08001614}
1615
1616static inline void ept_sync_context(u64 eptp)
1617{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02001618 if (cpu_has_vmx_invept_context())
1619 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1620 else
1621 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08001622}
1623
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001624static __always_inline void vmcs_check16(unsigned long field)
1625{
1626 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1627 "16-bit accessor invalid for 64-bit field");
1628 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1629 "16-bit accessor invalid for 64-bit high field");
1630 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1631 "16-bit accessor invalid for 32-bit high field");
1632 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1633 "16-bit accessor invalid for natural width field");
1634}
1635
1636static __always_inline void vmcs_check32(unsigned long field)
1637{
1638 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1639 "32-bit accessor invalid for 16-bit field");
1640 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1641 "32-bit accessor invalid for natural width field");
1642}
1643
1644static __always_inline void vmcs_check64(unsigned long field)
1645{
1646 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1647 "64-bit accessor invalid for 16-bit field");
1648 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1649 "64-bit accessor invalid for 64-bit high field");
1650 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1651 "64-bit accessor invalid for 32-bit field");
1652 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1653 "64-bit accessor invalid for natural width field");
1654}
1655
1656static __always_inline void vmcs_checkl(unsigned long field)
1657{
1658 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1659 "Natural width accessor invalid for 16-bit field");
1660 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1661 "Natural width accessor invalid for 64-bit field");
1662 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1663 "Natural width accessor invalid for 64-bit high field");
1664 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1665 "Natural width accessor invalid for 32-bit field");
1666}
1667
1668static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669{
Avi Kivity5e520e62011-05-15 10:13:12 -04001670 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001671
Avi Kivity5e520e62011-05-15 10:13:12 -04001672 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1673 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674 return value;
1675}
1676
Avi Kivity96304212011-05-15 10:13:13 -04001677static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001679 vmcs_check16(field);
1680 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681}
1682
Avi Kivity96304212011-05-15 10:13:13 -04001683static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001685 vmcs_check32(field);
1686 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001687}
1688
Avi Kivity96304212011-05-15 10:13:13 -04001689static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001691 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001692#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001693 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001694#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001695 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696#endif
1697}
1698
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001699static __always_inline unsigned long vmcs_readl(unsigned long field)
1700{
1701 vmcs_checkl(field);
1702 return __vmcs_readl(field);
1703}
1704
Avi Kivitye52de1b2007-01-05 16:36:56 -08001705static noinline void vmwrite_error(unsigned long field, unsigned long value)
1706{
1707 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1708 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1709 dump_stack();
1710}
1711
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001712static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001713{
1714 u8 error;
1715
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001716 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001717 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001718 if (unlikely(error))
1719 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001720}
1721
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001722static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001723{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001724 vmcs_check16(field);
1725 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001726}
1727
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001728static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001729{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001730 vmcs_check32(field);
1731 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732}
1733
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001734static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001736 vmcs_check64(field);
1737 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001738#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001739 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001740 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001741#endif
1742}
1743
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001744static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001745{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001746 vmcs_checkl(field);
1747 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001748}
1749
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001750static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001751{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001752 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1753 "vmcs_clear_bits does not support 64-bit fields");
1754 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1755}
1756
1757static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1758{
1759 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1760 "vmcs_set_bits does not support 64-bit fields");
1761 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001762}
1763
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001764static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1765{
1766 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1767}
1768
Gleb Natapov2961e8762013-11-25 15:37:13 +02001769static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1770{
1771 vmcs_write32(VM_ENTRY_CONTROLS, val);
1772 vmx->vm_entry_controls_shadow = val;
1773}
1774
1775static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1776{
1777 if (vmx->vm_entry_controls_shadow != val)
1778 vm_entry_controls_init(vmx, val);
1779}
1780
1781static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1782{
1783 return vmx->vm_entry_controls_shadow;
1784}
1785
1786
1787static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1788{
1789 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1790}
1791
1792static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1793{
1794 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1795}
1796
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001797static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1798{
1799 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1800}
1801
Gleb Natapov2961e8762013-11-25 15:37:13 +02001802static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1803{
1804 vmcs_write32(VM_EXIT_CONTROLS, val);
1805 vmx->vm_exit_controls_shadow = val;
1806}
1807
1808static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1809{
1810 if (vmx->vm_exit_controls_shadow != val)
1811 vm_exit_controls_init(vmx, val);
1812}
1813
1814static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1815{
1816 return vmx->vm_exit_controls_shadow;
1817}
1818
1819
1820static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1821{
1822 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1823}
1824
1825static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1826{
1827 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1828}
1829
Avi Kivity2fb92db2011-04-27 19:42:18 +03001830static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1831{
1832 vmx->segment_cache.bitmask = 0;
1833}
1834
1835static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1836 unsigned field)
1837{
1838 bool ret;
1839 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1840
1841 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1842 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1843 vmx->segment_cache.bitmask = 0;
1844 }
1845 ret = vmx->segment_cache.bitmask & mask;
1846 vmx->segment_cache.bitmask |= mask;
1847 return ret;
1848}
1849
1850static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1851{
1852 u16 *p = &vmx->segment_cache.seg[seg].selector;
1853
1854 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1855 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1856 return *p;
1857}
1858
1859static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1860{
1861 ulong *p = &vmx->segment_cache.seg[seg].base;
1862
1863 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1864 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1865 return *p;
1866}
1867
1868static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1869{
1870 u32 *p = &vmx->segment_cache.seg[seg].limit;
1871
1872 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1873 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1874 return *p;
1875}
1876
1877static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1878{
1879 u32 *p = &vmx->segment_cache.seg[seg].ar;
1880
1881 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1882 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1883 return *p;
1884}
1885
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001886static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1887{
1888 u32 eb;
1889
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001890 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001891 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001892 if ((vcpu->guest_debug &
1893 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1894 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1895 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001896 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001897 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001898 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001899 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001900
1901 /* When we are running a nested L2 guest and L1 specified for it a
1902 * certain exception bitmap, we must trap the same exceptions and pass
1903 * them to L1. When running L2, we will only handle the exceptions
1904 * specified above if L1 did not want them.
1905 */
1906 if (is_guest_mode(vcpu))
1907 eb |= get_vmcs12(vcpu)->exception_bitmap;
1908
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001909 vmcs_write32(EXCEPTION_BITMAP, eb);
1910}
1911
Gleb Natapov2961e8762013-11-25 15:37:13 +02001912static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1913 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001914{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001915 vm_entry_controls_clearbit(vmx, entry);
1916 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001917}
1918
Avi Kivity61d2ef22010-04-28 16:40:38 +03001919static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1920{
1921 unsigned i;
1922 struct msr_autoload *m = &vmx->msr_autoload;
1923
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001924 switch (msr) {
1925 case MSR_EFER:
1926 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001927 clear_atomic_switch_msr_special(vmx,
1928 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001929 VM_EXIT_LOAD_IA32_EFER);
1930 return;
1931 }
1932 break;
1933 case MSR_CORE_PERF_GLOBAL_CTRL:
1934 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001935 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001936 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1937 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1938 return;
1939 }
1940 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001941 }
1942
Avi Kivity61d2ef22010-04-28 16:40:38 +03001943 for (i = 0; i < m->nr; ++i)
1944 if (m->guest[i].index == msr)
1945 break;
1946
1947 if (i == m->nr)
1948 return;
1949 --m->nr;
1950 m->guest[i] = m->guest[m->nr];
1951 m->host[i] = m->host[m->nr];
1952 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1953 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1954}
1955
Gleb Natapov2961e8762013-11-25 15:37:13 +02001956static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1957 unsigned long entry, unsigned long exit,
1958 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1959 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001960{
1961 vmcs_write64(guest_val_vmcs, guest_val);
1962 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001963 vm_entry_controls_setbit(vmx, entry);
1964 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001965}
1966
Avi Kivity61d2ef22010-04-28 16:40:38 +03001967static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1968 u64 guest_val, u64 host_val)
1969{
1970 unsigned i;
1971 struct msr_autoload *m = &vmx->msr_autoload;
1972
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001973 switch (msr) {
1974 case MSR_EFER:
1975 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001976 add_atomic_switch_msr_special(vmx,
1977 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001978 VM_EXIT_LOAD_IA32_EFER,
1979 GUEST_IA32_EFER,
1980 HOST_IA32_EFER,
1981 guest_val, host_val);
1982 return;
1983 }
1984 break;
1985 case MSR_CORE_PERF_GLOBAL_CTRL:
1986 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001987 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001988 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1989 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1990 GUEST_IA32_PERF_GLOBAL_CTRL,
1991 HOST_IA32_PERF_GLOBAL_CTRL,
1992 guest_val, host_val);
1993 return;
1994 }
1995 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001996 case MSR_IA32_PEBS_ENABLE:
1997 /* PEBS needs a quiescent period after being disabled (to write
1998 * a record). Disabling PEBS through VMX MSR swapping doesn't
1999 * provide that period, so a CPU could write host's record into
2000 * guest's memory.
2001 */
2002 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02002003 }
2004
Avi Kivity61d2ef22010-04-28 16:40:38 +03002005 for (i = 0; i < m->nr; ++i)
2006 if (m->guest[i].index == msr)
2007 break;
2008
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002009 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002010 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002011 "Can't add msr %x\n", msr);
2012 return;
2013 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002014 ++m->nr;
2015 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2016 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2017 }
2018
2019 m->guest[i].index = msr;
2020 m->guest[i].value = guest_val;
2021 m->host[i].index = msr;
2022 m->host[i].value = host_val;
2023}
2024
Avi Kivity92c0d902009-10-29 11:00:16 +02002025static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002026{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002027 u64 guest_efer = vmx->vcpu.arch.efer;
2028 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002029
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002030 if (!enable_ept) {
2031 /*
2032 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2033 * host CPUID is more efficient than testing guest CPUID
2034 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2035 */
2036 if (boot_cpu_has(X86_FEATURE_SMEP))
2037 guest_efer |= EFER_NX;
2038 else if (!(guest_efer & EFER_NX))
2039 ignore_bits |= EFER_NX;
2040 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002041
Avi Kivity51c6cf62007-08-29 03:48:05 +03002042 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002043 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002044 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002045 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002046#ifdef CONFIG_X86_64
2047 ignore_bits |= EFER_LMA | EFER_LME;
2048 /* SCE is meaningful only in long mode on Intel */
2049 if (guest_efer & EFER_LMA)
2050 ignore_bits &= ~(u64)EFER_SCE;
2051#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002052
2053 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002054
2055 /*
2056 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2057 * On CPUs that support "load IA32_EFER", always switch EFER
2058 * atomically, since it's faster than switching it manually.
2059 */
2060 if (cpu_has_load_ia32_efer ||
2061 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002062 if (!(guest_efer & EFER_LMA))
2063 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002064 if (guest_efer != host_efer)
2065 add_atomic_switch_msr(vmx, MSR_EFER,
2066 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002067 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002068 } else {
2069 guest_efer &= ~ignore_bits;
2070 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002071
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002072 vmx->guest_msrs[efer_offset].data = guest_efer;
2073 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2074
2075 return true;
2076 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002077}
2078
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002079#ifdef CONFIG_X86_32
2080/*
2081 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2082 * VMCS rather than the segment table. KVM uses this helper to figure
2083 * out the current bases to poke them into the VMCS before entry.
2084 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002085static unsigned long segment_base(u16 selector)
2086{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002087 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002088 unsigned long v;
2089
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002090 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002091 return 0;
2092
Thomas Garnier45fc8752017-03-14 10:05:08 -07002093 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002094
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002095 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002096 u16 ldt_selector = kvm_read_ldt();
2097
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002098 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002099 return 0;
2100
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002101 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002102 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002103 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002104 return v;
2105}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002106#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002107
Avi Kivity04d2cc72007-09-10 18:10:54 +03002108static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002109{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002110 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002111 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002112
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002113 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002114 return;
2115
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002116 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002117 /*
2118 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2119 * allow segment selectors with cpl > 0 or ti == 1.
2120 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002121 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002122 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002123 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002124 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002125 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002126 vmx->host_state.fs_reload_needed = 0;
2127 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002128 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002129 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002130 }
Avi Kivity9581d442010-10-19 16:46:55 +02002131 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002132 if (!(vmx->host_state.gs_sel & 7))
2133 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002134 else {
2135 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002136 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002137 }
2138
2139#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002140 savesegment(ds, vmx->host_state.ds_sel);
2141 savesegment(es, vmx->host_state.es_sel);
2142#endif
2143
2144#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002145 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2146 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2147#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002148 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2149 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002150#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002151
2152#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002153 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2154 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002155 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002156#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002157 if (boot_cpu_has(X86_FEATURE_MPX))
2158 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002159 for (i = 0; i < vmx->save_nmsrs; ++i)
2160 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002161 vmx->guest_msrs[i].data,
2162 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002163}
2164
Avi Kivitya9b21b62008-06-24 11:48:49 +03002165static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002166{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002167 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002168 return;
2169
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002170 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002171 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002172#ifdef CONFIG_X86_64
2173 if (is_long_mode(&vmx->vcpu))
2174 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2175#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002176 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002177 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002178#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002179 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002180#else
2181 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002182#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002183 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002184 if (vmx->host_state.fs_reload_needed)
2185 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002186#ifdef CONFIG_X86_64
2187 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2188 loadsegment(ds, vmx->host_state.ds_sel);
2189 loadsegment(es, vmx->host_state.es_sel);
2190 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002191#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002192 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002193#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002194 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002195#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002196 if (vmx->host_state.msr_host_bndcfgs)
2197 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002198 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002199}
2200
Avi Kivitya9b21b62008-06-24 11:48:49 +03002201static void vmx_load_host_state(struct vcpu_vmx *vmx)
2202{
2203 preempt_disable();
2204 __vmx_load_host_state(vmx);
2205 preempt_enable();
2206}
2207
Feng Wu28b835d2015-09-18 22:29:54 +08002208static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2209{
2210 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2211 struct pi_desc old, new;
2212 unsigned int dest;
2213
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002214 /*
2215 * In case of hot-plug or hot-unplug, we may have to undo
2216 * vmx_vcpu_pi_put even if there is no assigned device. And we
2217 * always keep PI.NDST up to date for simplicity: it makes the
2218 * code easier, and CPU migration is not a fast path.
2219 */
2220 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08002221 return;
2222
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002223 /*
2224 * First handle the simple case where no cmpxchg is necessary; just
2225 * allow posting non-urgent interrupts.
2226 *
2227 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
2228 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
2229 * expects the VCPU to be on the blocked_vcpu_list that matches
2230 * PI.NDST.
2231 */
2232 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
2233 vcpu->cpu == cpu) {
2234 pi_clear_sn(pi_desc);
2235 return;
2236 }
2237
2238 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08002239 do {
2240 old.control = new.control = pi_desc->control;
2241
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002242 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08002243
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002244 if (x2apic_enabled())
2245 new.ndst = dest;
2246 else
2247 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08002248
Feng Wu28b835d2015-09-18 22:29:54 +08002249 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02002250 } while (cmpxchg64(&pi_desc->control, old.control,
2251 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08002252}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002253
Peter Feinerc95ba922016-08-17 09:36:47 -07002254static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2255{
2256 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2257 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2258}
2259
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260/*
2261 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2262 * vcpu mutex is already taken.
2263 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002264static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002265{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002266 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002267 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002268
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002269 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002270 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002271 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002272 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002273
2274 /*
2275 * Read loaded_vmcs->cpu should be before fetching
2276 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2277 * See the comments in __loaded_vmcs_clear().
2278 */
2279 smp_rmb();
2280
Nadav Har'Eld462b812011-05-24 15:26:10 +03002281 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2282 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002283 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002284 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002285 }
2286
2287 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2288 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2289 vmcs_load(vmx->loaded_vmcs->vmcs);
2290 }
2291
2292 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002293 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002294 unsigned long sysenter_esp;
2295
2296 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002297
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298 /*
2299 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002300 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002302 vmcs_writel(HOST_TR_BASE,
2303 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002304 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002306 /*
2307 * VM exits change the host TR limit to 0x67 after a VM
2308 * exit. This is okay, since 0x67 covers everything except
2309 * the IO bitmap and have have code to handle the IO bitmap
2310 * being lost after a VM exit.
2311 */
2312 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2313
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2315 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002316
Nadav Har'Eld462b812011-05-24 15:26:10 +03002317 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318 }
Feng Wu28b835d2015-09-18 22:29:54 +08002319
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002320 /* Setup TSC multiplier */
2321 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002322 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2323 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002324
Feng Wu28b835d2015-09-18 22:29:54 +08002325 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002326 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002327}
2328
2329static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2330{
2331 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2332
2333 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002334 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2335 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002336 return;
2337
2338 /* Set SN when the vCPU is preempted */
2339 if (vcpu->preempted)
2340 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
2343static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2344{
Feng Wu28b835d2015-09-18 22:29:54 +08002345 vmx_vcpu_pi_put(vcpu);
2346
Avi Kivitya9b21b62008-06-24 11:48:49 +03002347 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348}
2349
Wanpeng Lif244dee2017-07-20 01:11:54 -07002350static bool emulation_required(struct kvm_vcpu *vcpu)
2351{
2352 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2353}
2354
Avi Kivityedcafe32009-12-30 18:07:40 +02002355static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2356
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002357/*
2358 * Return the cr0 value that a nested guest would read. This is a combination
2359 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2360 * its hypervisor (cr0_read_shadow).
2361 */
2362static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2363{
2364 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2365 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2366}
2367static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2368{
2369 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2370 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2371}
2372
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2374{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002375 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002376
Avi Kivity6de12732011-03-07 12:51:22 +02002377 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2378 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2379 rflags = vmcs_readl(GUEST_RFLAGS);
2380 if (to_vmx(vcpu)->rmode.vm86_active) {
2381 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2382 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2383 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2384 }
2385 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002386 }
Avi Kivity6de12732011-03-07 12:51:22 +02002387 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388}
2389
2390static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2391{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002392 unsigned long old_rflags = vmx_get_rflags(vcpu);
2393
Avi Kivity6de12732011-03-07 12:51:22 +02002394 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2395 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002396 if (to_vmx(vcpu)->rmode.vm86_active) {
2397 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002398 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002399 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002401
2402 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2403 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002404}
2405
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002406static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002407{
2408 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2409 int ret = 0;
2410
2411 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002412 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002413 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002414 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002415
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002416 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002417}
2418
2419static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2420{
2421 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2422 u32 interruptibility = interruptibility_old;
2423
2424 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2425
Jan Kiszka48005f62010-02-19 19:38:07 +01002426 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002427 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002428 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002429 interruptibility |= GUEST_INTR_STATE_STI;
2430
2431 if ((interruptibility != interruptibility_old))
2432 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2433}
2434
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2436{
2437 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002438
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002439 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002440 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002441 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442
Glauber Costa2809f5d2009-05-12 16:21:05 -04002443 /* skipping an emulated instruction also counts */
2444 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002445}
2446
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002447static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2448 unsigned long exit_qual)
2449{
2450 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2451 unsigned int nr = vcpu->arch.exception.nr;
2452 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2453
2454 if (vcpu->arch.exception.has_error_code) {
2455 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2456 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2457 }
2458
2459 if (kvm_exception_is_soft(nr))
2460 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2461 else
2462 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2463
2464 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2465 vmx_get_nmi_mask(vcpu))
2466 intr_info |= INTR_INFO_UNBLOCK_NMI;
2467
2468 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2469}
2470
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002471/*
2472 * KVM wants to inject page-faults which it got to the guest. This function
2473 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002474 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002475static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002476{
2477 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002478 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002479
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002480 if (nr == PF_VECTOR) {
2481 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002482 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002483 return 1;
2484 }
2485 /*
2486 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2487 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2488 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2489 * can be written only when inject_pending_event runs. This should be
2490 * conditional on a new capability---if the capability is disabled,
2491 * kvm_multiple_exception would write the ancillary information to
2492 * CR2 or DR6, for backwards ABI-compatibility.
2493 */
2494 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2495 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002496 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002497 return 1;
2498 }
2499 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002500 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002501 if (nr == DB_VECTOR)
2502 *exit_qual = vcpu->arch.dr6;
2503 else
2504 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002505 return 1;
2506 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002507 }
2508
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002509 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002510}
2511
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002512static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002513{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002514 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002515 unsigned nr = vcpu->arch.exception.nr;
2516 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002517 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002518 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002519
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002520 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002521 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002522 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2523 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002524
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002525 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002526 int inc_eip = 0;
2527 if (kvm_exception_is_soft(nr))
2528 inc_eip = vcpu->arch.event_exit_inst_len;
2529 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002530 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002531 return;
2532 }
2533
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002534 if (kvm_exception_is_soft(nr)) {
2535 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2536 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002537 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2538 } else
2539 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2540
2541 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002542}
2543
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002544static bool vmx_rdtscp_supported(void)
2545{
2546 return cpu_has_vmx_rdtscp();
2547}
2548
Mao, Junjiead756a12012-07-02 01:18:48 +00002549static bool vmx_invpcid_supported(void)
2550{
2551 return cpu_has_vmx_invpcid() && enable_ept;
2552}
2553
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554/*
Eddie Donga75beee2007-05-17 18:55:15 +03002555 * Swap MSR entry in host/guest MSR entry array.
2556 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002557static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002558{
Avi Kivity26bb0982009-09-07 11:14:12 +03002559 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002560
2561 tmp = vmx->guest_msrs[to];
2562 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2563 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002564}
2565
Yang Zhang8d146952013-01-25 10:18:50 +08002566static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2567{
2568 unsigned long *msr_bitmap;
2569
Wincy Van670125b2015-03-04 14:31:56 +08002570 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002571 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002572 else if (cpu_has_secondary_exec_ctrls() &&
2573 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2574 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002575 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2576 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002577 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2578 else
2579 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2580 } else {
2581 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002582 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2583 else
2584 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002585 }
Yang Zhang8d146952013-01-25 10:18:50 +08002586 } else {
2587 if (is_long_mode(vcpu))
2588 msr_bitmap = vmx_msr_bitmap_longmode;
2589 else
2590 msr_bitmap = vmx_msr_bitmap_legacy;
2591 }
2592
2593 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2594}
2595
Eddie Donga75beee2007-05-17 18:55:15 +03002596/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002597 * Set up the vmcs to automatically save and restore system
2598 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2599 * mode, as fiddling with msrs is very expensive.
2600 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002601static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002602{
Avi Kivity26bb0982009-09-07 11:14:12 +03002603 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002604
Eddie Donga75beee2007-05-17 18:55:15 +03002605 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002606#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002607 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002608 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002609 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002610 move_msr_up(vmx, index, save_nmsrs++);
2611 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002612 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002613 move_msr_up(vmx, index, save_nmsrs++);
2614 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002615 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002616 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002617 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002618 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002619 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002620 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002621 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002622 * if efer.sce is enabled.
2623 */
Brian Gerst8c065852010-07-17 09:03:26 -04002624 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002625 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002626 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002627 }
Eddie Donga75beee2007-05-17 18:55:15 +03002628#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002629 index = __find_msr_index(vmx, MSR_EFER);
2630 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002631 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002632
Avi Kivity26bb0982009-09-07 11:14:12 +03002633 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002634
Yang Zhang8d146952013-01-25 10:18:50 +08002635 if (cpu_has_vmx_msr_bitmap())
2636 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002637}
2638
2639/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002641 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2642 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002644static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645{
2646 u64 host_tsc, tsc_offset;
2647
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002648 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002650 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651}
2652
2653/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002654 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002656static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002658 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002659 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002660 * We're here if L1 chose not to trap WRMSR to TSC. According
2661 * to the spec, this should set L1's TSC; The offset that L1
2662 * set for L2 remains unchanged, and still needs to be added
2663 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002664 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002665 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002666 /* recalculate vmcs02.TSC_OFFSET: */
2667 vmcs12 = get_vmcs12(vcpu);
2668 vmcs_write64(TSC_OFFSET, offset +
2669 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2670 vmcs12->tsc_offset : 0));
2671 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002672 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2673 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002674 vmcs_write64(TSC_OFFSET, offset);
2675 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676}
2677
Nadav Har'El801d3422011-05-25 23:02:23 +03002678/*
2679 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2680 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2681 * all guests if the "nested" module option is off, and can also be disabled
2682 * for a single guest by disabling its VMX cpuid bit.
2683 */
2684static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2685{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002686 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002687}
2688
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002690 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2691 * returned for the various VMX controls MSRs when nested VMX is enabled.
2692 * The same values should also be used to verify that vmcs12 control fields are
2693 * valid during nested entry from L1 to L2.
2694 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2695 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2696 * bit in the high half is on if the corresponding bit in the control field
2697 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002698 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002699static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002700{
2701 /*
2702 * Note that as a general rule, the high half of the MSRs (bits in
2703 * the control fields which may be 1) should be initialized by the
2704 * intersection of the underlying hardware's MSR (i.e., features which
2705 * can be supported) and the list of features we want to expose -
2706 * because they are known to be properly supported in our code.
2707 * Also, usually, the low half of the MSRs (bits which must be 1) can
2708 * be set to 0, meaning that L1 may turn off any of these bits. The
2709 * reason is that if one of these bits is necessary, it will appear
2710 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2711 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002712 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002713 * These rules have exceptions below.
2714 */
2715
2716 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002717 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002718 vmx->nested.nested_vmx_pinbased_ctls_low,
2719 vmx->nested.nested_vmx_pinbased_ctls_high);
2720 vmx->nested.nested_vmx_pinbased_ctls_low |=
2721 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2722 vmx->nested.nested_vmx_pinbased_ctls_high &=
2723 PIN_BASED_EXT_INTR_MASK |
2724 PIN_BASED_NMI_EXITING |
2725 PIN_BASED_VIRTUAL_NMIS;
2726 vmx->nested.nested_vmx_pinbased_ctls_high |=
2727 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002728 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002729 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002730 vmx->nested.nested_vmx_pinbased_ctls_high |=
2731 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002732
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002733 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002734 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002735 vmx->nested.nested_vmx_exit_ctls_low,
2736 vmx->nested.nested_vmx_exit_ctls_high);
2737 vmx->nested.nested_vmx_exit_ctls_low =
2738 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002739
Wincy Vanb9c237b2015-02-03 23:56:30 +08002740 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002741#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002742 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002743#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002744 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002745 vmx->nested.nested_vmx_exit_ctls_high |=
2746 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002747 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002748 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2749
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002750 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002751 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002752
Jan Kiszka2996fca2014-06-16 13:59:43 +02002753 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002754 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002755
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002756 /* entry controls */
2757 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 vmx->nested.nested_vmx_entry_ctls_low,
2759 vmx->nested.nested_vmx_entry_ctls_high);
2760 vmx->nested.nested_vmx_entry_ctls_low =
2761 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2762 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002763#ifdef CONFIG_X86_64
2764 VM_ENTRY_IA32E_MODE |
2765#endif
2766 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002767 vmx->nested.nested_vmx_entry_ctls_high |=
2768 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002769 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002770 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002771
Jan Kiszka2996fca2014-06-16 13:59:43 +02002772 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002773 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002774
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002775 /* cpu-based controls */
2776 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002777 vmx->nested.nested_vmx_procbased_ctls_low,
2778 vmx->nested.nested_vmx_procbased_ctls_high);
2779 vmx->nested.nested_vmx_procbased_ctls_low =
2780 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2781 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002782 CPU_BASED_VIRTUAL_INTR_PENDING |
2783 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002784 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2785 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2786 CPU_BASED_CR3_STORE_EXITING |
2787#ifdef CONFIG_X86_64
2788 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2789#endif
2790 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002791 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2792 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2793 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2794 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002795 /*
2796 * We can allow some features even when not supported by the
2797 * hardware. For example, L1 can specify an MSR bitmap - and we
2798 * can use it to avoid exits to L1 - even when L0 runs L2
2799 * without MSR bitmaps.
2800 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002801 vmx->nested.nested_vmx_procbased_ctls_high |=
2802 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002803 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002804
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002805 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002806 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002807 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2808
Paolo Bonzini80154d72017-08-24 13:55:35 +02002809 /*
2810 * secondary cpu-based controls. Do not include those that
2811 * depend on CPUID bits, they are added later by vmx_cpuid_update.
2812 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002814 vmx->nested.nested_vmx_secondary_ctls_low,
2815 vmx->nested.nested_vmx_secondary_ctls_high);
2816 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2817 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002818 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002819 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002820 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002821 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002822 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02002823 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002824
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002825 if (enable_ept) {
2826 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002827 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002828 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002829 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002830 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002831 if (cpu_has_vmx_ept_execute_only())
2832 vmx->nested.nested_vmx_ept_caps |=
2833 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002834 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002835 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002836 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2837 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002838 if (enable_ept_ad_bits) {
2839 vmx->nested.nested_vmx_secondary_ctls_high |=
2840 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002841 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002842 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02002843 }
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002844
Bandan Das27c42a12017-08-03 15:54:42 -04002845 if (cpu_has_vmx_vmfunc()) {
2846 vmx->nested.nested_vmx_secondary_ctls_high |=
2847 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002848 /*
2849 * Advertise EPTP switching unconditionally
2850 * since we emulate it
2851 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08002852 if (enable_ept)
2853 vmx->nested.nested_vmx_vmfunc_controls =
2854 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002855 }
2856
Paolo Bonzinief697a72016-03-18 16:58:38 +01002857 /*
2858 * Old versions of KVM use the single-context version without
2859 * checking for support, so declare that it is supported even
2860 * though it is treated as global context. The alternative is
2861 * not failing the single-context invvpid, and it is worse.
2862 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002863 if (enable_vpid) {
2864 vmx->nested.nested_vmx_secondary_ctls_high |=
2865 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002866 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002867 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02002868 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002869
Radim Krčmář0790ec12015-03-17 14:02:32 +01002870 if (enable_unrestricted_guest)
2871 vmx->nested.nested_vmx_secondary_ctls_high |=
2872 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2873
Jan Kiszkac18911a2013-03-13 16:06:41 +01002874 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002875 rdmsr(MSR_IA32_VMX_MISC,
2876 vmx->nested.nested_vmx_misc_low,
2877 vmx->nested.nested_vmx_misc_high);
2878 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2879 vmx->nested.nested_vmx_misc_low |=
2880 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002881 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002882 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002883
2884 /*
2885 * This MSR reports some information about VMX support. We
2886 * should return information about the VMX we emulate for the
2887 * guest, and the VMCS structure we give it - not about the
2888 * VMX support of the underlying hardware.
2889 */
2890 vmx->nested.nested_vmx_basic =
2891 VMCS12_REVISION |
2892 VMX_BASIC_TRUE_CTLS |
2893 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2894 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2895
2896 if (cpu_has_vmx_basic_inout())
2897 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2898
2899 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002900 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002901 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2902 * We picked the standard core2 setting.
2903 */
2904#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2905#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2906 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002907 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002908
2909 /* These MSRs specify bits which the guest must keep fixed off. */
2910 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2911 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002912
2913 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2914 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002915}
2916
David Matlack38991522016-11-29 18:14:08 -08002917/*
2918 * if fixed0[i] == 1: val[i] must be 1
2919 * if fixed1[i] == 0: val[i] must be 0
2920 */
2921static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2922{
2923 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002924}
2925
2926static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2927{
David Matlack38991522016-11-29 18:14:08 -08002928 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002929}
2930
2931static inline u64 vmx_control_msr(u32 low, u32 high)
2932{
2933 return low | ((u64)high << 32);
2934}
2935
David Matlack62cc6b9d2016-11-29 18:14:07 -08002936static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2937{
2938 superset &= mask;
2939 subset &= mask;
2940
2941 return (superset | subset) == superset;
2942}
2943
2944static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2945{
2946 const u64 feature_and_reserved =
2947 /* feature (except bit 48; see below) */
2948 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2949 /* reserved */
2950 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2951 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2952
2953 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2954 return -EINVAL;
2955
2956 /*
2957 * KVM does not emulate a version of VMX that constrains physical
2958 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2959 */
2960 if (data & BIT_ULL(48))
2961 return -EINVAL;
2962
2963 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2964 vmx_basic_vmcs_revision_id(data))
2965 return -EINVAL;
2966
2967 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2968 return -EINVAL;
2969
2970 vmx->nested.nested_vmx_basic = data;
2971 return 0;
2972}
2973
2974static int
2975vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2976{
2977 u64 supported;
2978 u32 *lowp, *highp;
2979
2980 switch (msr_index) {
2981 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2982 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2983 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2984 break;
2985 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2986 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2987 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2988 break;
2989 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2990 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2991 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2992 break;
2993 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2994 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2995 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2996 break;
2997 case MSR_IA32_VMX_PROCBASED_CTLS2:
2998 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2999 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
3000 break;
3001 default:
3002 BUG();
3003 }
3004
3005 supported = vmx_control_msr(*lowp, *highp);
3006
3007 /* Check must-be-1 bits are still 1. */
3008 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3009 return -EINVAL;
3010
3011 /* Check must-be-0 bits are still 0. */
3012 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3013 return -EINVAL;
3014
3015 *lowp = data;
3016 *highp = data >> 32;
3017 return 0;
3018}
3019
3020static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3021{
3022 const u64 feature_and_reserved_bits =
3023 /* feature */
3024 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3025 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3026 /* reserved */
3027 GENMASK_ULL(13, 9) | BIT_ULL(31);
3028 u64 vmx_misc;
3029
3030 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3031 vmx->nested.nested_vmx_misc_high);
3032
3033 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3034 return -EINVAL;
3035
3036 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3037 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3038 vmx_misc_preemption_timer_rate(data) !=
3039 vmx_misc_preemption_timer_rate(vmx_misc))
3040 return -EINVAL;
3041
3042 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3043 return -EINVAL;
3044
3045 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3046 return -EINVAL;
3047
3048 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3049 return -EINVAL;
3050
3051 vmx->nested.nested_vmx_misc_low = data;
3052 vmx->nested.nested_vmx_misc_high = data >> 32;
3053 return 0;
3054}
3055
3056static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3057{
3058 u64 vmx_ept_vpid_cap;
3059
3060 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3061 vmx->nested.nested_vmx_vpid_caps);
3062
3063 /* Every bit is either reserved or a feature bit. */
3064 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3065 return -EINVAL;
3066
3067 vmx->nested.nested_vmx_ept_caps = data;
3068 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3069 return 0;
3070}
3071
3072static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3073{
3074 u64 *msr;
3075
3076 switch (msr_index) {
3077 case MSR_IA32_VMX_CR0_FIXED0:
3078 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3079 break;
3080 case MSR_IA32_VMX_CR4_FIXED0:
3081 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3082 break;
3083 default:
3084 BUG();
3085 }
3086
3087 /*
3088 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3089 * must be 1 in the restored value.
3090 */
3091 if (!is_bitwise_subset(data, *msr, -1ULL))
3092 return -EINVAL;
3093
3094 *msr = data;
3095 return 0;
3096}
3097
3098/*
3099 * Called when userspace is restoring VMX MSRs.
3100 *
3101 * Returns 0 on success, non-0 otherwise.
3102 */
3103static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3104{
3105 struct vcpu_vmx *vmx = to_vmx(vcpu);
3106
3107 switch (msr_index) {
3108 case MSR_IA32_VMX_BASIC:
3109 return vmx_restore_vmx_basic(vmx, data);
3110 case MSR_IA32_VMX_PINBASED_CTLS:
3111 case MSR_IA32_VMX_PROCBASED_CTLS:
3112 case MSR_IA32_VMX_EXIT_CTLS:
3113 case MSR_IA32_VMX_ENTRY_CTLS:
3114 /*
3115 * The "non-true" VMX capability MSRs are generated from the
3116 * "true" MSRs, so we do not support restoring them directly.
3117 *
3118 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3119 * should restore the "true" MSRs with the must-be-1 bits
3120 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3121 * DEFAULT SETTINGS".
3122 */
3123 return -EINVAL;
3124 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3125 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3126 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3127 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3128 case MSR_IA32_VMX_PROCBASED_CTLS2:
3129 return vmx_restore_control_msr(vmx, msr_index, data);
3130 case MSR_IA32_VMX_MISC:
3131 return vmx_restore_vmx_misc(vmx, data);
3132 case MSR_IA32_VMX_CR0_FIXED0:
3133 case MSR_IA32_VMX_CR4_FIXED0:
3134 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3135 case MSR_IA32_VMX_CR0_FIXED1:
3136 case MSR_IA32_VMX_CR4_FIXED1:
3137 /*
3138 * These MSRs are generated based on the vCPU's CPUID, so we
3139 * do not support restoring them directly.
3140 */
3141 return -EINVAL;
3142 case MSR_IA32_VMX_EPT_VPID_CAP:
3143 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3144 case MSR_IA32_VMX_VMCS_ENUM:
3145 vmx->nested.nested_vmx_vmcs_enum = data;
3146 return 0;
3147 default:
3148 /*
3149 * The rest of the VMX capability MSRs do not support restore.
3150 */
3151 return -EINVAL;
3152 }
3153}
3154
Jan Kiszkacae50132014-01-04 18:47:22 +01003155/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003156static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3157{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003158 struct vcpu_vmx *vmx = to_vmx(vcpu);
3159
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003160 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003161 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003162 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003163 break;
3164 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3165 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003166 *pdata = vmx_control_msr(
3167 vmx->nested.nested_vmx_pinbased_ctls_low,
3168 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003169 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3170 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003171 break;
3172 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3173 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003174 *pdata = vmx_control_msr(
3175 vmx->nested.nested_vmx_procbased_ctls_low,
3176 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003177 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3178 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003179 break;
3180 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3181 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003182 *pdata = vmx_control_msr(
3183 vmx->nested.nested_vmx_exit_ctls_low,
3184 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003185 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3186 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003187 break;
3188 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3189 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003190 *pdata = vmx_control_msr(
3191 vmx->nested.nested_vmx_entry_ctls_low,
3192 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003193 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3194 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003195 break;
3196 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003197 *pdata = vmx_control_msr(
3198 vmx->nested.nested_vmx_misc_low,
3199 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003200 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003201 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003202 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003203 break;
3204 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003205 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003206 break;
3207 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003208 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003209 break;
3210 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003211 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003212 break;
3213 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003214 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003215 break;
3216 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003217 *pdata = vmx_control_msr(
3218 vmx->nested.nested_vmx_secondary_ctls_low,
3219 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003220 break;
3221 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003222 *pdata = vmx->nested.nested_vmx_ept_caps |
3223 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003224 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003225 case MSR_IA32_VMX_VMFUNC:
3226 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3227 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003228 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003229 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003230 }
3231
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003232 return 0;
3233}
3234
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003235static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3236 uint64_t val)
3237{
3238 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3239
3240 return !(val & ~valid_bits);
3241}
3242
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003243/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244 * Reads an msr value (of 'msr_index') into 'pdata'.
3245 * Returns 0 on success, non-0 otherwise.
3246 * Assumes vcpu_load() was already called.
3247 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003248static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003249{
Avi Kivity26bb0982009-09-07 11:14:12 +03003250 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003252 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003253#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003254 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003255 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 break;
3257 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003258 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003259 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003260 case MSR_KERNEL_GS_BASE:
3261 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003262 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003263 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003264#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003265 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003266 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303267 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003268 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003269 break;
3270 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003271 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003272 break;
3273 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003274 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275 break;
3276 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003277 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003278 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003279 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003280 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003281 (!msr_info->host_initiated &&
3282 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003283 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003284 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003285 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003286 case MSR_IA32_MCG_EXT_CTL:
3287 if (!msr_info->host_initiated &&
3288 !(to_vmx(vcpu)->msr_ia32_feature_control &
3289 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003290 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003291 msr_info->data = vcpu->arch.mcg_ext_ctl;
3292 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003293 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003294 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003295 break;
3296 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3297 if (!nested_vmx_allowed(vcpu))
3298 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003299 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003300 case MSR_IA32_XSS:
3301 if (!vmx_xsaves_supported())
3302 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003303 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003304 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003305 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003306 if (!msr_info->host_initiated &&
3307 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003308 return 1;
3309 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003310 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003311 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003312 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003313 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003314 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003315 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003316 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317 }
3318
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319 return 0;
3320}
3321
Jan Kiszkacae50132014-01-04 18:47:22 +01003322static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3323
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324/*
3325 * Writes msr value into into the appropriate "register".
3326 * Returns 0 on success, non-0 otherwise.
3327 * Assumes vcpu_load() was already called.
3328 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003329static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003330{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003331 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003332 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003333 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003334 u32 msr_index = msr_info->index;
3335 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003336
Avi Kivity6aa8b732006-12-10 02:21:36 -08003337 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003338 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003339 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003340 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003341#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003342 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003343 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003344 vmcs_writel(GUEST_FS_BASE, data);
3345 break;
3346 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003347 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348 vmcs_writel(GUEST_GS_BASE, data);
3349 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003350 case MSR_KERNEL_GS_BASE:
3351 vmx_load_host_state(vmx);
3352 vmx->msr_guest_kernel_gs_base = data;
3353 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354#endif
3355 case MSR_IA32_SYSENTER_CS:
3356 vmcs_write32(GUEST_SYSENTER_CS, data);
3357 break;
3358 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003359 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360 break;
3361 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003362 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003364 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003365 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003366 (!msr_info->host_initiated &&
3367 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003368 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003369 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003370 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003372 vmcs_write64(GUEST_BNDCFGS, data);
3373 break;
3374 case MSR_IA32_TSC:
3375 kvm_write_tsc(vcpu, msr_info);
3376 break;
3377 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003378 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003379 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3380 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003381 vmcs_write64(GUEST_IA32_PAT, data);
3382 vcpu->arch.pat = data;
3383 break;
3384 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003385 ret = kvm_set_msr_common(vcpu, msr_info);
3386 break;
Will Auldba904632012-11-29 12:42:50 -08003387 case MSR_IA32_TSC_ADJUST:
3388 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003389 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003390 case MSR_IA32_MCG_EXT_CTL:
3391 if ((!msr_info->host_initiated &&
3392 !(to_vmx(vcpu)->msr_ia32_feature_control &
3393 FEATURE_CONTROL_LMCE)) ||
3394 (data & ~MCG_EXT_CTL_LMCE_EN))
3395 return 1;
3396 vcpu->arch.mcg_ext_ctl = data;
3397 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003398 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003399 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003400 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003401 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3402 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003403 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003404 if (msr_info->host_initiated && data == 0)
3405 vmx_leave_nested(vcpu);
3406 break;
3407 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003408 if (!msr_info->host_initiated)
3409 return 1; /* they are read-only */
3410 if (!nested_vmx_allowed(vcpu))
3411 return 1;
3412 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003413 case MSR_IA32_XSS:
3414 if (!vmx_xsaves_supported())
3415 return 1;
3416 /*
3417 * The only supported bit as of Skylake is bit 8, but
3418 * it is not supported on KVM.
3419 */
3420 if (data != 0)
3421 return 1;
3422 vcpu->arch.ia32_xss = data;
3423 if (vcpu->arch.ia32_xss != host_xss)
3424 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3425 vcpu->arch.ia32_xss, host_xss);
3426 else
3427 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3428 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003429 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003430 if (!msr_info->host_initiated &&
3431 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003432 return 1;
3433 /* Check reserved bit, higher 32 bits should be zero */
3434 if ((data >> 32) != 0)
3435 return 1;
3436 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003437 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003438 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003439 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003440 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003441 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003442 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3443 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003444 ret = kvm_set_shared_msr(msr->index, msr->data,
3445 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003446 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003447 if (ret)
3448 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003449 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003450 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003451 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003452 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453 }
3454
Eddie Dong2cc51562007-05-21 07:28:09 +03003455 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003456}
3457
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003458static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003459{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003460 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3461 switch (reg) {
3462 case VCPU_REGS_RSP:
3463 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3464 break;
3465 case VCPU_REGS_RIP:
3466 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3467 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003468 case VCPU_EXREG_PDPTR:
3469 if (enable_ept)
3470 ept_save_pdptrs(vcpu);
3471 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003472 default:
3473 break;
3474 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003475}
3476
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477static __init int cpu_has_kvm_support(void)
3478{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003479 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003480}
3481
3482static __init int vmx_disabled_by_bios(void)
3483{
3484 u64 msr;
3485
3486 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003487 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003488 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003489 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3490 && tboot_enabled())
3491 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003492 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003493 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003494 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003495 && !tboot_enabled()) {
3496 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003497 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003498 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003499 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003500 /* launched w/o TXT and VMX disabled */
3501 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3502 && !tboot_enabled())
3503 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003504 }
3505
3506 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507}
3508
Dongxiao Xu7725b892010-05-11 18:29:38 +08003509static void kvm_cpu_vmxon(u64 addr)
3510{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003511 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003512 intel_pt_handle_vmx(1);
3513
Dongxiao Xu7725b892010-05-11 18:29:38 +08003514 asm volatile (ASM_VMX_VMXON_RAX
3515 : : "a"(&addr), "m"(addr)
3516 : "memory", "cc");
3517}
3518
Radim Krčmář13a34e02014-08-28 15:13:03 +02003519static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003520{
3521 int cpu = raw_smp_processor_id();
3522 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003523 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003524
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003525 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003526 return -EBUSY;
3527
Nadav Har'Eld462b812011-05-24 15:26:10 +03003528 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003529 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3530 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003531
3532 /*
3533 * Now we can enable the vmclear operation in kdump
3534 * since the loaded_vmcss_on_cpu list on this cpu
3535 * has been initialized.
3536 *
3537 * Though the cpu is not in VMX operation now, there
3538 * is no problem to enable the vmclear operation
3539 * for the loaded_vmcss_on_cpu list is empty!
3540 */
3541 crash_enable_local_vmclear(cpu);
3542
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003544
3545 test_bits = FEATURE_CONTROL_LOCKED;
3546 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3547 if (tboot_enabled())
3548 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3549
3550 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003551 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003552 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3553 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003554 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02003555 if (enable_ept)
3556 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003557
3558 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003559}
3560
Nadav Har'Eld462b812011-05-24 15:26:10 +03003561static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003562{
3563 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003564 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003565
Nadav Har'Eld462b812011-05-24 15:26:10 +03003566 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3567 loaded_vmcss_on_cpu_link)
3568 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003569}
3570
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003571
3572/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3573 * tricks.
3574 */
3575static void kvm_cpu_vmxoff(void)
3576{
3577 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003578
3579 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003580 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003581}
3582
Radim Krčmář13a34e02014-08-28 15:13:03 +02003583static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003585 vmclear_local_loaded_vmcss();
3586 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003587}
3588
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003589static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003590 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003591{
3592 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003593 u32 ctl = ctl_min | ctl_opt;
3594
3595 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3596
3597 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3598 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3599
3600 /* Ensure minimum (required) set of control bits are supported. */
3601 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003602 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003603
3604 *result = ctl;
3605 return 0;
3606}
3607
Avi Kivity110312c2010-12-21 12:54:20 +02003608static __init bool allow_1_setting(u32 msr, u32 ctl)
3609{
3610 u32 vmx_msr_low, vmx_msr_high;
3611
3612 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3613 return vmx_msr_high & ctl;
3614}
3615
Yang, Sheng002c7f72007-07-31 14:23:01 +03003616static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003617{
3618 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003619 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003620 u32 _pin_based_exec_control = 0;
3621 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003622 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003623 u32 _vmexit_control = 0;
3624 u32 _vmentry_control = 0;
3625
Raghavendra K T10166742012-02-07 23:19:20 +05303626 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003627#ifdef CONFIG_X86_64
3628 CPU_BASED_CR8_LOAD_EXITING |
3629 CPU_BASED_CR8_STORE_EXITING |
3630#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003631 CPU_BASED_CR3_LOAD_EXITING |
3632 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003633 CPU_BASED_USE_IO_BITMAPS |
3634 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003635 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003636 CPU_BASED_INVLPG_EXITING |
3637 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003638
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003639 if (!kvm_mwait_in_guest())
3640 min |= CPU_BASED_MWAIT_EXITING |
3641 CPU_BASED_MONITOR_EXITING;
3642
Sheng Yangf78e0e22007-10-29 09:40:42 +08003643 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003644 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003645 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003646 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3647 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003648 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003649#ifdef CONFIG_X86_64
3650 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3651 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3652 ~CPU_BASED_CR8_STORE_EXITING;
3653#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003654 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003655 min2 = 0;
3656 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003657 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003658 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003659 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003660 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003661 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003662 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003663 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003664 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003665 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003666 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003667 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003668 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02003669 SECONDARY_EXEC_RDSEED_EXITING |
3670 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003671 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003672 SECONDARY_EXEC_TSC_SCALING |
3673 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003674 if (adjust_vmx_controls(min2, opt2,
3675 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003676 &_cpu_based_2nd_exec_control) < 0)
3677 return -EIO;
3678 }
3679#ifndef CONFIG_X86_64
3680 if (!(_cpu_based_2nd_exec_control &
3681 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3682 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3683#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003684
3685 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3686 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003687 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003688 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3689 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003690
Wanpeng Li61f1dd92017-10-18 16:02:19 -07003691 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
3692 &vmx_capability.ept, &vmx_capability.vpid);
3693
Sheng Yangd56f5462008-04-25 10:13:16 +08003694 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003695 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3696 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003697 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3698 CPU_BASED_CR3_STORE_EXITING |
3699 CPU_BASED_INVLPG_EXITING);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07003700 } else if (vmx_capability.ept) {
3701 vmx_capability.ept = 0;
3702 pr_warn_once("EPT CAP should not exist if not support "
3703 "1-setting enable EPT VM-execution control\n");
3704 }
3705 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
3706 vmx_capability.vpid) {
3707 vmx_capability.vpid = 0;
3708 pr_warn_once("VPID CAP should not exist if not support "
3709 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08003710 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003711
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003712 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003713#ifdef CONFIG_X86_64
3714 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3715#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003716 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003717 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003718 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3719 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003720 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003721
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01003722 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3723 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
3724 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003725 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3726 &_pin_based_exec_control) < 0)
3727 return -EIO;
3728
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003729 if (cpu_has_broken_vmx_preemption_timer())
3730 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003731 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003732 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003733 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3734
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003735 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003736 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003737 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3738 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003739 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003740
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003741 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003742
3743 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3744 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003745 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003746
3747#ifdef CONFIG_X86_64
3748 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3749 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003750 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003751#endif
3752
3753 /* Require Write-Back (WB) memory type for VMCS accesses. */
3754 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003755 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003756
Yang, Sheng002c7f72007-07-31 14:23:01 +03003757 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003758 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003759 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003760 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003761
Yang, Sheng002c7f72007-07-31 14:23:01 +03003762 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3763 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003764 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003765 vmcs_conf->vmexit_ctrl = _vmexit_control;
3766 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003767
Avi Kivity110312c2010-12-21 12:54:20 +02003768 cpu_has_load_ia32_efer =
3769 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3770 VM_ENTRY_LOAD_IA32_EFER)
3771 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3772 VM_EXIT_LOAD_IA32_EFER);
3773
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003774 cpu_has_load_perf_global_ctrl =
3775 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3776 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3777 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3778 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3779
3780 /*
3781 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003782 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003783 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3784 *
3785 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3786 *
3787 * AAK155 (model 26)
3788 * AAP115 (model 30)
3789 * AAT100 (model 37)
3790 * BC86,AAY89,BD102 (model 44)
3791 * BA97 (model 46)
3792 *
3793 */
3794 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3795 switch (boot_cpu_data.x86_model) {
3796 case 26:
3797 case 30:
3798 case 37:
3799 case 44:
3800 case 46:
3801 cpu_has_load_perf_global_ctrl = false;
3802 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3803 "does not work properly. Using workaround\n");
3804 break;
3805 default:
3806 break;
3807 }
3808 }
3809
Borislav Petkov782511b2016-04-04 22:25:03 +02003810 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003811 rdmsrl(MSR_IA32_XSS, host_xss);
3812
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003813 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003814}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815
3816static struct vmcs *alloc_vmcs_cpu(int cpu)
3817{
3818 int node = cpu_to_node(cpu);
3819 struct page *pages;
3820 struct vmcs *vmcs;
3821
Vlastimil Babka96db8002015-09-08 15:03:50 -07003822 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003823 if (!pages)
3824 return NULL;
3825 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003826 memset(vmcs, 0, vmcs_config.size);
3827 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003828 return vmcs;
3829}
3830
3831static struct vmcs *alloc_vmcs(void)
3832{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003833 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003834}
3835
3836static void free_vmcs(struct vmcs *vmcs)
3837{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003838 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003839}
3840
Nadav Har'Eld462b812011-05-24 15:26:10 +03003841/*
3842 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3843 */
3844static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3845{
3846 if (!loaded_vmcs->vmcs)
3847 return;
3848 loaded_vmcs_clear(loaded_vmcs);
3849 free_vmcs(loaded_vmcs->vmcs);
3850 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003851 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003852}
3853
Sam Ravnborg39959582007-06-01 00:47:13 -07003854static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003855{
3856 int cpu;
3857
Zachary Amsden3230bb42009-09-29 11:38:37 -10003858 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003859 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003860 per_cpu(vmxarea, cpu) = NULL;
3861 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003862}
3863
Jim Mattson85fd5142017-07-07 12:51:41 -07003864enum vmcs_field_type {
3865 VMCS_FIELD_TYPE_U16 = 0,
3866 VMCS_FIELD_TYPE_U64 = 1,
3867 VMCS_FIELD_TYPE_U32 = 2,
3868 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3869};
3870
3871static inline int vmcs_field_type(unsigned long field)
3872{
3873 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3874 return VMCS_FIELD_TYPE_U32;
3875 return (field >> 13) & 0x3 ;
3876}
3877
3878static inline int vmcs_field_readonly(unsigned long field)
3879{
3880 return (((field >> 10) & 0x3) == 1);
3881}
3882
Bandan Dasfe2b2012014-04-21 15:20:14 -04003883static void init_vmcs_shadow_fields(void)
3884{
3885 int i, j;
3886
3887 /* No checks for read only fields yet */
3888
3889 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3890 switch (shadow_read_write_fields[i]) {
3891 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003892 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003893 continue;
3894 break;
3895 default:
3896 break;
3897 }
3898
3899 if (j < i)
3900 shadow_read_write_fields[j] =
3901 shadow_read_write_fields[i];
3902 j++;
3903 }
3904 max_shadow_read_write_fields = j;
3905
3906 /* shadowed fields guest access without vmexit */
3907 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003908 unsigned long field = shadow_read_write_fields[i];
3909
3910 clear_bit(field, vmx_vmwrite_bitmap);
3911 clear_bit(field, vmx_vmread_bitmap);
3912 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3913 clear_bit(field + 1, vmx_vmwrite_bitmap);
3914 clear_bit(field + 1, vmx_vmread_bitmap);
3915 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003916 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003917 for (i = 0; i < max_shadow_read_only_fields; i++) {
3918 unsigned long field = shadow_read_only_fields[i];
3919
3920 clear_bit(field, vmx_vmread_bitmap);
3921 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3922 clear_bit(field + 1, vmx_vmread_bitmap);
3923 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003924}
3925
Avi Kivity6aa8b732006-12-10 02:21:36 -08003926static __init int alloc_kvm_area(void)
3927{
3928 int cpu;
3929
Zachary Amsden3230bb42009-09-29 11:38:37 -10003930 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003931 struct vmcs *vmcs;
3932
3933 vmcs = alloc_vmcs_cpu(cpu);
3934 if (!vmcs) {
3935 free_kvm_area();
3936 return -ENOMEM;
3937 }
3938
3939 per_cpu(vmxarea, cpu) = vmcs;
3940 }
3941 return 0;
3942}
3943
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003944static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003945 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003947 if (!emulate_invalid_guest_state) {
3948 /*
3949 * CS and SS RPL should be equal during guest entry according
3950 * to VMX spec, but in reality it is not always so. Since vcpu
3951 * is in the middle of the transition from real mode to
3952 * protected mode it is safe to assume that RPL 0 is a good
3953 * default value.
3954 */
3955 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003956 save->selector &= ~SEGMENT_RPL_MASK;
3957 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003958 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003959 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003960 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003961}
3962
3963static void enter_pmode(struct kvm_vcpu *vcpu)
3964{
3965 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003966 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967
Gleb Natapovd99e4152012-12-20 16:57:45 +02003968 /*
3969 * Update real mode segment cache. It may be not up-to-date if sement
3970 * register was written while vcpu was in a guest mode.
3971 */
3972 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3973 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3974 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3975 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3976 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3977 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3978
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003979 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980
Avi Kivity2fb92db2011-04-27 19:42:18 +03003981 vmx_segment_cache_clear(vmx);
3982
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003983 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003984
3985 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003986 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3987 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003988 vmcs_writel(GUEST_RFLAGS, flags);
3989
Rusty Russell66aee912007-07-17 23:34:16 +10003990 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3991 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003992
3993 update_exception_bitmap(vcpu);
3994
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003995 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3996 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3997 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3998 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3999 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
4000 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004001}
4002
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004003static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004004{
Mathias Krause772e0312012-08-30 01:30:19 +02004005 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02004006 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004007
Gleb Natapovd99e4152012-12-20 16:57:45 +02004008 var.dpl = 0x3;
4009 if (seg == VCPU_SREG_CS)
4010 var.type = 0x3;
4011
4012 if (!emulate_invalid_guest_state) {
4013 var.selector = var.base >> 4;
4014 var.base = var.base & 0xffff0;
4015 var.limit = 0xffff;
4016 var.g = 0;
4017 var.db = 0;
4018 var.present = 1;
4019 var.s = 1;
4020 var.l = 0;
4021 var.unusable = 0;
4022 var.type = 0x3;
4023 var.avl = 0;
4024 if (save->base & 0xf)
4025 printk_once(KERN_WARNING "kvm: segment base is not "
4026 "paragraph aligned when entering "
4027 "protected mode (seg=%d)", seg);
4028 }
4029
4030 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004031 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004032 vmcs_write32(sf->limit, var.limit);
4033 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004034}
4035
4036static void enter_rmode(struct kvm_vcpu *vcpu)
4037{
4038 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004039 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004040
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004041 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4042 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4043 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4044 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4045 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004046 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4047 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004048
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004049 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050
Gleb Natapov776e58e2011-03-13 12:34:27 +02004051 /*
4052 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004053 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004054 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004055 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004056 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4057 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004058
Avi Kivity2fb92db2011-04-27 19:42:18 +03004059 vmx_segment_cache_clear(vmx);
4060
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004061 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004062 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004063 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4064
4065 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004066 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004068 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004069
4070 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004071 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004072 update_exception_bitmap(vcpu);
4073
Gleb Natapovd99e4152012-12-20 16:57:45 +02004074 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4075 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4076 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4077 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4078 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4079 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004080
Eddie Dong8668a3c2007-10-10 14:26:45 +08004081 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004082}
4083
Amit Shah401d10d2009-02-20 22:53:37 +05304084static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4085{
4086 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004087 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4088
4089 if (!msr)
4090 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304091
Avi Kivity44ea2b12009-09-06 15:55:37 +03004092 /*
4093 * Force kernel_gs_base reloading before EFER changes, as control
4094 * of this msr depends on is_long_mode().
4095 */
4096 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004097 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304098 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004099 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304100 msr->data = efer;
4101 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004102 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304103
4104 msr->data = efer & ~EFER_LME;
4105 }
4106 setup_msrs(vmx);
4107}
4108
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004109#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004110
4111static void enter_lmode(struct kvm_vcpu *vcpu)
4112{
4113 u32 guest_tr_ar;
4114
Avi Kivity2fb92db2011-04-27 19:42:18 +03004115 vmx_segment_cache_clear(to_vmx(vcpu));
4116
Avi Kivity6aa8b732006-12-10 02:21:36 -08004117 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004118 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004119 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4120 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004121 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004122 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4123 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004124 }
Avi Kivityda38f432010-07-06 11:30:49 +03004125 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004126}
4127
4128static void exit_lmode(struct kvm_vcpu *vcpu)
4129{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004130 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004131 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132}
4133
4134#endif
4135
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004136static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004137{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004138 if (enable_ept) {
4139 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4140 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004141 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004142 } else {
4143 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004144 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004145}
4146
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004147static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4148{
4149 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4150}
4151
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004152static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4153{
4154 if (enable_ept)
4155 vmx_flush_tlb(vcpu);
4156}
4157
Avi Kivitye8467fd2009-12-29 18:43:06 +02004158static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4159{
4160 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4161
4162 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4163 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4164}
4165
Avi Kivityaff48ba2010-12-05 18:56:11 +02004166static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4167{
4168 if (enable_ept && is_paging(vcpu))
4169 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4170 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4171}
4172
Anthony Liguori25c4c272007-04-27 09:29:21 +03004173static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004174{
Avi Kivityfc78f512009-12-07 12:16:48 +02004175 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4176
4177 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4178 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004179}
4180
Sheng Yang14394422008-04-28 12:24:45 +08004181static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4182{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004183 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4184
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004185 if (!test_bit(VCPU_EXREG_PDPTR,
4186 (unsigned long *)&vcpu->arch.regs_dirty))
4187 return;
4188
Sheng Yang14394422008-04-28 12:24:45 +08004189 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004190 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4191 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4192 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4193 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004194 }
4195}
4196
Avi Kivity8f5d5492009-05-31 18:41:29 +03004197static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4198{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004199 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4200
Avi Kivity8f5d5492009-05-31 18:41:29 +03004201 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004202 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4203 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4204 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4205 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004206 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004207
4208 __set_bit(VCPU_EXREG_PDPTR,
4209 (unsigned long *)&vcpu->arch.regs_avail);
4210 __set_bit(VCPU_EXREG_PDPTR,
4211 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004212}
4213
David Matlack38991522016-11-29 18:14:08 -08004214static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4215{
4216 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4217 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4218 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4219
4220 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4221 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4222 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4223 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4224
4225 return fixed_bits_valid(val, fixed0, fixed1);
4226}
4227
4228static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4229{
4230 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4231 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4232
4233 return fixed_bits_valid(val, fixed0, fixed1);
4234}
4235
4236static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4237{
4238 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4239 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4240
4241 return fixed_bits_valid(val, fixed0, fixed1);
4242}
4243
4244/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4245#define nested_guest_cr4_valid nested_cr4_valid
4246#define nested_host_cr4_valid nested_cr4_valid
4247
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004248static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004249
4250static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4251 unsigned long cr0,
4252 struct kvm_vcpu *vcpu)
4253{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004254 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4255 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004256 if (!(cr0 & X86_CR0_PG)) {
4257 /* From paging/starting to nonpaging */
4258 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004259 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004260 (CPU_BASED_CR3_LOAD_EXITING |
4261 CPU_BASED_CR3_STORE_EXITING));
4262 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004263 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004264 } else if (!is_paging(vcpu)) {
4265 /* From nonpaging to paging */
4266 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004267 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004268 ~(CPU_BASED_CR3_LOAD_EXITING |
4269 CPU_BASED_CR3_STORE_EXITING));
4270 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004271 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004272 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004273
4274 if (!(cr0 & X86_CR0_WP))
4275 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004276}
4277
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4279{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004280 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004281 unsigned long hw_cr0;
4282
Gleb Natapov50378782013-02-04 16:00:28 +02004283 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004284 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004285 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004286 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004287 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004288
Gleb Natapov218e7632013-01-21 15:36:45 +02004289 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4290 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291
Gleb Natapov218e7632013-01-21 15:36:45 +02004292 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4293 enter_rmode(vcpu);
4294 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004295
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004296#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004297 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004298 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004299 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004300 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004301 exit_lmode(vcpu);
4302 }
4303#endif
4304
Avi Kivity089d0342009-03-23 18:26:32 +02004305 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004306 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4307
Avi Kivity6aa8b732006-12-10 02:21:36 -08004308 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004309 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004310 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004311
4312 /* depends on vcpu->arch.cr0 to be set to a new value */
4313 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004314}
4315
Yu Zhang855feb62017-08-24 20:27:55 +08004316static int get_ept_level(struct kvm_vcpu *vcpu)
4317{
4318 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
4319 return 5;
4320 return 4;
4321}
4322
Peter Feiner995f00a2017-06-30 17:26:32 -07004323static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004324{
Yu Zhang855feb62017-08-24 20:27:55 +08004325 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08004326
Yu Zhang855feb62017-08-24 20:27:55 +08004327 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004328
Peter Feiner995f00a2017-06-30 17:26:32 -07004329 if (enable_ept_ad_bits &&
4330 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004331 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004332 eptp |= (root_hpa & PAGE_MASK);
4333
4334 return eptp;
4335}
4336
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4338{
Sheng Yang14394422008-04-28 12:24:45 +08004339 unsigned long guest_cr3;
4340 u64 eptp;
4341
4342 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004343 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004344 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004345 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004346 if (is_paging(vcpu) || is_guest_mode(vcpu))
4347 guest_cr3 = kvm_read_cr3(vcpu);
4348 else
4349 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02004350 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004351 }
4352
Sheng Yang2384d2b2008-01-17 15:14:33 +08004353 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004354 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355}
4356
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004357static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004359 /*
4360 * Pass through host's Machine Check Enable value to hw_cr4, which
4361 * is in force while we are in guest mode. Do not let guests control
4362 * this bit, even if host CR4.MCE == 0.
4363 */
4364 unsigned long hw_cr4 =
4365 (cr4_read_shadow() & X86_CR4_MCE) |
4366 (cr4 & ~X86_CR4_MCE) |
4367 (to_vmx(vcpu)->rmode.vm86_active ?
4368 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004369
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004370 if (cr4 & X86_CR4_VMXE) {
4371 /*
4372 * To use VMXON (and later other VMX instructions), a guest
4373 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4374 * So basically the check on whether to allow nested VMX
4375 * is here.
4376 */
4377 if (!nested_vmx_allowed(vcpu))
4378 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004379 }
David Matlack38991522016-11-29 18:14:08 -08004380
4381 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004382 return 1;
4383
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004384 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004385 if (enable_ept) {
4386 if (!is_paging(vcpu)) {
4387 hw_cr4 &= ~X86_CR4_PAE;
4388 hw_cr4 |= X86_CR4_PSE;
4389 } else if (!(cr4 & X86_CR4_PAE)) {
4390 hw_cr4 &= ~X86_CR4_PAE;
4391 }
4392 }
Sheng Yang14394422008-04-28 12:24:45 +08004393
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004394 if (!enable_unrestricted_guest && !is_paging(vcpu))
4395 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004396 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4397 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4398 * to be manually disabled when guest switches to non-paging
4399 * mode.
4400 *
4401 * If !enable_unrestricted_guest, the CPU is always running
4402 * with CR0.PG=1 and CR4 needs to be modified.
4403 * If enable_unrestricted_guest, the CPU automatically
4404 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004405 */
Huaitong Handdba2622016-03-22 16:51:15 +08004406 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004407
Sheng Yang14394422008-04-28 12:24:45 +08004408 vmcs_writel(CR4_READ_SHADOW, cr4);
4409 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004410 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004411}
4412
Avi Kivity6aa8b732006-12-10 02:21:36 -08004413static void vmx_get_segment(struct kvm_vcpu *vcpu,
4414 struct kvm_segment *var, int seg)
4415{
Avi Kivitya9179492011-01-03 14:28:52 +02004416 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004417 u32 ar;
4418
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004419 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004420 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004421 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004422 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004423 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004424 var->base = vmx_read_guest_seg_base(vmx, seg);
4425 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4426 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004427 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004428 var->base = vmx_read_guest_seg_base(vmx, seg);
4429 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4430 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4431 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004432 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433 var->type = ar & 15;
4434 var->s = (ar >> 4) & 1;
4435 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004436 /*
4437 * Some userspaces do not preserve unusable property. Since usable
4438 * segment has to be present according to VMX spec we can use present
4439 * property to amend userspace bug by making unusable segment always
4440 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4441 * segment as unusable.
4442 */
4443 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004444 var->avl = (ar >> 12) & 1;
4445 var->l = (ar >> 13) & 1;
4446 var->db = (ar >> 14) & 1;
4447 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004448}
4449
Avi Kivitya9179492011-01-03 14:28:52 +02004450static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4451{
Avi Kivitya9179492011-01-03 14:28:52 +02004452 struct kvm_segment s;
4453
4454 if (to_vmx(vcpu)->rmode.vm86_active) {
4455 vmx_get_segment(vcpu, &s, seg);
4456 return s.base;
4457 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004458 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004459}
4460
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004461static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004462{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004463 struct vcpu_vmx *vmx = to_vmx(vcpu);
4464
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004465 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004466 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004467 else {
4468 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004469 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004470 }
Avi Kivity69c73022011-03-07 15:26:44 +02004471}
4472
Avi Kivity653e3102007-05-07 10:55:37 +03004473static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004474{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004475 u32 ar;
4476
Avi Kivityf0495f92012-06-07 17:06:10 +03004477 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004478 ar = 1 << 16;
4479 else {
4480 ar = var->type & 15;
4481 ar |= (var->s & 1) << 4;
4482 ar |= (var->dpl & 3) << 5;
4483 ar |= (var->present & 1) << 7;
4484 ar |= (var->avl & 1) << 12;
4485 ar |= (var->l & 1) << 13;
4486 ar |= (var->db & 1) << 14;
4487 ar |= (var->g & 1) << 15;
4488 }
Avi Kivity653e3102007-05-07 10:55:37 +03004489
4490 return ar;
4491}
4492
4493static void vmx_set_segment(struct kvm_vcpu *vcpu,
4494 struct kvm_segment *var, int seg)
4495{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004496 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004497 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004498
Avi Kivity2fb92db2011-04-27 19:42:18 +03004499 vmx_segment_cache_clear(vmx);
4500
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004501 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4502 vmx->rmode.segs[seg] = *var;
4503 if (seg == VCPU_SREG_TR)
4504 vmcs_write16(sf->selector, var->selector);
4505 else if (var->s)
4506 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004507 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004508 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004509
Avi Kivity653e3102007-05-07 10:55:37 +03004510 vmcs_writel(sf->base, var->base);
4511 vmcs_write32(sf->limit, var->limit);
4512 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004513
4514 /*
4515 * Fix the "Accessed" bit in AR field of segment registers for older
4516 * qemu binaries.
4517 * IA32 arch specifies that at the time of processor reset the
4518 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004519 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004520 * state vmexit when "unrestricted guest" mode is turned on.
4521 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4522 * tree. Newer qemu binaries with that qemu fix would not need this
4523 * kvm hack.
4524 */
4525 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004526 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004527
Gleb Natapovf924d662012-12-12 19:10:55 +02004528 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004529
4530out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004531 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004532}
4533
Avi Kivity6aa8b732006-12-10 02:21:36 -08004534static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4535{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004536 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004537
4538 *db = (ar >> 14) & 1;
4539 *l = (ar >> 13) & 1;
4540}
4541
Gleb Natapov89a27f42010-02-16 10:51:48 +02004542static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004543{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004544 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4545 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004546}
4547
Gleb Natapov89a27f42010-02-16 10:51:48 +02004548static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004549{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004550 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4551 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004552}
4553
Gleb Natapov89a27f42010-02-16 10:51:48 +02004554static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004555{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004556 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4557 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004558}
4559
Gleb Natapov89a27f42010-02-16 10:51:48 +02004560static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004561{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004562 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4563 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004564}
4565
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004566static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4567{
4568 struct kvm_segment var;
4569 u32 ar;
4570
4571 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004572 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004573 if (seg == VCPU_SREG_CS)
4574 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004575 ar = vmx_segment_access_rights(&var);
4576
4577 if (var.base != (var.selector << 4))
4578 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004579 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004580 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004581 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004582 return false;
4583
4584 return true;
4585}
4586
4587static bool code_segment_valid(struct kvm_vcpu *vcpu)
4588{
4589 struct kvm_segment cs;
4590 unsigned int cs_rpl;
4591
4592 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004593 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004594
Avi Kivity1872a3f2009-01-04 23:26:52 +02004595 if (cs.unusable)
4596 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004597 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004598 return false;
4599 if (!cs.s)
4600 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004601 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004602 if (cs.dpl > cs_rpl)
4603 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004604 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004605 if (cs.dpl != cs_rpl)
4606 return false;
4607 }
4608 if (!cs.present)
4609 return false;
4610
4611 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4612 return true;
4613}
4614
4615static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4616{
4617 struct kvm_segment ss;
4618 unsigned int ss_rpl;
4619
4620 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004621 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004622
Avi Kivity1872a3f2009-01-04 23:26:52 +02004623 if (ss.unusable)
4624 return true;
4625 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004626 return false;
4627 if (!ss.s)
4628 return false;
4629 if (ss.dpl != ss_rpl) /* DPL != RPL */
4630 return false;
4631 if (!ss.present)
4632 return false;
4633
4634 return true;
4635}
4636
4637static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4638{
4639 struct kvm_segment var;
4640 unsigned int rpl;
4641
4642 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004643 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004644
Avi Kivity1872a3f2009-01-04 23:26:52 +02004645 if (var.unusable)
4646 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004647 if (!var.s)
4648 return false;
4649 if (!var.present)
4650 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004651 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004652 if (var.dpl < rpl) /* DPL < RPL */
4653 return false;
4654 }
4655
4656 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4657 * rights flags
4658 */
4659 return true;
4660}
4661
4662static bool tr_valid(struct kvm_vcpu *vcpu)
4663{
4664 struct kvm_segment tr;
4665
4666 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4667
Avi Kivity1872a3f2009-01-04 23:26:52 +02004668 if (tr.unusable)
4669 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004670 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004671 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004672 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004673 return false;
4674 if (!tr.present)
4675 return false;
4676
4677 return true;
4678}
4679
4680static bool ldtr_valid(struct kvm_vcpu *vcpu)
4681{
4682 struct kvm_segment ldtr;
4683
4684 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4685
Avi Kivity1872a3f2009-01-04 23:26:52 +02004686 if (ldtr.unusable)
4687 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004688 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004689 return false;
4690 if (ldtr.type != 2)
4691 return false;
4692 if (!ldtr.present)
4693 return false;
4694
4695 return true;
4696}
4697
4698static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4699{
4700 struct kvm_segment cs, ss;
4701
4702 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4703 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4704
Nadav Amitb32a9912015-03-29 16:33:04 +03004705 return ((cs.selector & SEGMENT_RPL_MASK) ==
4706 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004707}
4708
4709/*
4710 * Check if guest state is valid. Returns true if valid, false if
4711 * not.
4712 * We assume that registers are always usable
4713 */
4714static bool guest_state_valid(struct kvm_vcpu *vcpu)
4715{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004716 if (enable_unrestricted_guest)
4717 return true;
4718
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004719 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004720 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004721 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4722 return false;
4723 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4724 return false;
4725 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4726 return false;
4727 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4728 return false;
4729 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4730 return false;
4731 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4732 return false;
4733 } else {
4734 /* protected mode guest state checks */
4735 if (!cs_ss_rpl_check(vcpu))
4736 return false;
4737 if (!code_segment_valid(vcpu))
4738 return false;
4739 if (!stack_segment_valid(vcpu))
4740 return false;
4741 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4742 return false;
4743 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4744 return false;
4745 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4746 return false;
4747 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4748 return false;
4749 if (!tr_valid(vcpu))
4750 return false;
4751 if (!ldtr_valid(vcpu))
4752 return false;
4753 }
4754 /* TODO:
4755 * - Add checks on RIP
4756 * - Add checks on RFLAGS
4757 */
4758
4759 return true;
4760}
4761
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004762static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4763{
4764 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4765}
4766
Mike Dayd77c26f2007-10-08 09:02:08 -04004767static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004768{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004769 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004770 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004771 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004772
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004773 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004774 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004775 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4776 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004777 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004778 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004779 r = kvm_write_guest_page(kvm, fn++, &data,
4780 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004781 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004782 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004783 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4784 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004785 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004786 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4787 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004788 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004789 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004790 r = kvm_write_guest_page(kvm, fn, &data,
4791 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4792 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004793out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004794 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004795 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004796}
4797
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004798static int init_rmode_identity_map(struct kvm *kvm)
4799{
Tang Chenf51770e2014-09-16 18:41:59 +08004800 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004801 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004802 u32 tmp;
4803
Tang Chena255d472014-09-16 18:41:58 +08004804 /* Protect kvm->arch.ept_identity_pagetable_done. */
4805 mutex_lock(&kvm->slots_lock);
4806
Tang Chenf51770e2014-09-16 18:41:59 +08004807 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004808 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004809
David Hildenbrandd8a6e362017-08-24 20:51:34 +02004810 if (!kvm->arch.ept_identity_map_addr)
4811 kvm->arch.ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004812 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004813
David Hildenbrandd8a6e362017-08-24 20:51:34 +02004814 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4815 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08004816 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004817 goto out2;
4818
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004819 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004820 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4821 if (r < 0)
4822 goto out;
4823 /* Set up identity-mapping pagetable for EPT in real mode */
4824 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4825 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4826 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4827 r = kvm_write_guest_page(kvm, identity_map_pfn,
4828 &tmp, i * sizeof(tmp), sizeof(tmp));
4829 if (r < 0)
4830 goto out;
4831 }
4832 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004833
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004834out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004835 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004836
4837out2:
4838 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004839 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004840}
4841
Avi Kivity6aa8b732006-12-10 02:21:36 -08004842static void seg_setup(int seg)
4843{
Mathias Krause772e0312012-08-30 01:30:19 +02004844 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004845 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004846
4847 vmcs_write16(sf->selector, 0);
4848 vmcs_writel(sf->base, 0);
4849 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004850 ar = 0x93;
4851 if (seg == VCPU_SREG_CS)
4852 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004853
4854 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004855}
4856
Sheng Yangf78e0e22007-10-29 09:40:42 +08004857static int alloc_apic_access_page(struct kvm *kvm)
4858{
Xiao Guangrong44841412012-09-07 14:14:20 +08004859 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004860 int r = 0;
4861
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004862 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004863 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004864 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004865 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4866 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004867 if (r)
4868 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004869
Tang Chen73a6d942014-09-11 13:38:00 +08004870 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004871 if (is_error_page(page)) {
4872 r = -EFAULT;
4873 goto out;
4874 }
4875
Tang Chenc24ae0d2014-09-24 15:57:58 +08004876 /*
4877 * Do not pin the page in memory, so that memory hot-unplug
4878 * is able to migrate it.
4879 */
4880 put_page(page);
4881 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004882out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004883 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004884 return r;
4885}
4886
Wanpeng Li991e7a02015-09-16 17:30:05 +08004887static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004888{
4889 int vpid;
4890
Avi Kivity919818a2009-03-23 18:01:29 +02004891 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004892 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004893 spin_lock(&vmx_vpid_lock);
4894 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004895 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004896 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004897 else
4898 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004899 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004900 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004901}
4902
Wanpeng Li991e7a02015-09-16 17:30:05 +08004903static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004904{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004905 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004906 return;
4907 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004908 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004909 spin_unlock(&vmx_vpid_lock);
4910}
4911
Yang Zhang8d146952013-01-25 10:18:50 +08004912#define MSR_TYPE_R 1
4913#define MSR_TYPE_W 2
4914static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4915 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004916{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004917 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004918
4919 if (!cpu_has_vmx_msr_bitmap())
4920 return;
4921
4922 /*
4923 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4924 * have the write-low and read-high bitmap offsets the wrong way round.
4925 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4926 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004927 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004928 if (type & MSR_TYPE_R)
4929 /* read-low */
4930 __clear_bit(msr, msr_bitmap + 0x000 / f);
4931
4932 if (type & MSR_TYPE_W)
4933 /* write-low */
4934 __clear_bit(msr, msr_bitmap + 0x800 / f);
4935
Sheng Yang25c5f222008-03-28 13:18:56 +08004936 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4937 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004938 if (type & MSR_TYPE_R)
4939 /* read-high */
4940 __clear_bit(msr, msr_bitmap + 0x400 / f);
4941
4942 if (type & MSR_TYPE_W)
4943 /* write-high */
4944 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4945
4946 }
4947}
4948
Wincy Vanf2b93282015-02-03 23:56:03 +08004949/*
4950 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4951 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4952 */
4953static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4954 unsigned long *msr_bitmap_nested,
4955 u32 msr, int type)
4956{
4957 int f = sizeof(unsigned long);
4958
4959 if (!cpu_has_vmx_msr_bitmap()) {
4960 WARN_ON(1);
4961 return;
4962 }
4963
4964 /*
4965 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4966 * have the write-low and read-high bitmap offsets the wrong way round.
4967 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4968 */
4969 if (msr <= 0x1fff) {
4970 if (type & MSR_TYPE_R &&
4971 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4972 /* read-low */
4973 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4974
4975 if (type & MSR_TYPE_W &&
4976 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4977 /* write-low */
4978 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4979
4980 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4981 msr &= 0x1fff;
4982 if (type & MSR_TYPE_R &&
4983 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4984 /* read-high */
4985 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4986
4987 if (type & MSR_TYPE_W &&
4988 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4989 /* write-high */
4990 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4991
4992 }
4993}
4994
Avi Kivity58972972009-02-24 22:26:47 +02004995static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4996{
4997 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004998 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4999 msr, MSR_TYPE_R | MSR_TYPE_W);
5000 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
5001 msr, MSR_TYPE_R | MSR_TYPE_W);
5002}
5003
Radim Krčmář2e69f862016-09-29 22:41:32 +02005004static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08005005{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005006 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08005007 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005008 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08005009 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005010 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005011 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005012 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005013 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005014 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005015 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005016 }
Avi Kivity58972972009-02-24 22:26:47 +02005017}
5018
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005019static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005020{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005021 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005022}
5023
David Matlackc9f04402017-08-01 14:00:40 -07005024static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5025{
5026 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5027 gfn_t gfn;
5028
5029 /*
5030 * Don't need to mark the APIC access page dirty; it is never
5031 * written to by the CPU during APIC virtualization.
5032 */
5033
5034 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5035 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5036 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5037 }
5038
5039 if (nested_cpu_has_posted_intr(vmcs12)) {
5040 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5041 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5042 }
5043}
5044
5045
David Hildenbrand6342c502017-01-25 11:58:58 +01005046static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005047{
5048 struct vcpu_vmx *vmx = to_vmx(vcpu);
5049 int max_irr;
5050 void *vapic_page;
5051 u16 status;
5052
David Matlackc9f04402017-08-01 14:00:40 -07005053 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5054 return;
Wincy Van705699a2015-02-03 23:58:17 +08005055
David Matlackc9f04402017-08-01 14:00:40 -07005056 vmx->nested.pi_pending = false;
5057 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5058 return;
Wincy Van705699a2015-02-03 23:58:17 +08005059
David Matlackc9f04402017-08-01 14:00:40 -07005060 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5061 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005062 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005063 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5064 kunmap(vmx->nested.virtual_apic_page);
5065
5066 status = vmcs_read16(GUEST_INTR_STATUS);
5067 if ((u8)max_irr > ((u8)status & 0xff)) {
5068 status &= ~0xff;
5069 status |= (u8)max_irr;
5070 vmcs_write16(GUEST_INTR_STATUS, status);
5071 }
5072 }
David Matlackc9f04402017-08-01 14:00:40 -07005073
5074 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005075}
5076
Wincy Van06a55242017-04-28 13:13:59 +08005077static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5078 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005079{
5080#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005081 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5082
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005083 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005084 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005085 * The vector of interrupt to be delivered to vcpu had
5086 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08005087 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005088 * Following cases will be reached in this block, and
5089 * we always send a notification event in all cases as
5090 * explained below.
5091 *
5092 * Case 1: vcpu keeps in non-root mode. Sending a
5093 * notification event posts the interrupt to vcpu.
5094 *
5095 * Case 2: vcpu exits to root mode and is still
5096 * runnable. PIR will be synced to vIRR before the
5097 * next vcpu entry. Sending a notification event in
5098 * this case has no effect, as vcpu is not in root
5099 * mode.
5100 *
5101 * Case 3: vcpu exits to root mode and is blocked.
5102 * vcpu_block() has already synced PIR to vIRR and
5103 * never blocks vcpu if vIRR is not cleared. Therefore,
5104 * a blocked vcpu here does not wait for any requested
5105 * interrupts in PIR, and sending a notification event
5106 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08005107 */
Feng Wu28b835d2015-09-18 22:29:54 +08005108
Wincy Van06a55242017-04-28 13:13:59 +08005109 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005110 return true;
5111 }
5112#endif
5113 return false;
5114}
5115
Wincy Van705699a2015-02-03 23:58:17 +08005116static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5117 int vector)
5118{
5119 struct vcpu_vmx *vmx = to_vmx(vcpu);
5120
5121 if (is_guest_mode(vcpu) &&
5122 vector == vmx->nested.posted_intr_nv) {
5123 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005124 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005125 /*
5126 * If a posted intr is not recognized by hardware,
5127 * we will accomplish it in the next vmentry.
5128 */
5129 vmx->nested.pi_pending = true;
5130 kvm_make_request(KVM_REQ_EVENT, vcpu);
5131 return 0;
5132 }
5133 return -1;
5134}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005135/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005136 * Send interrupt to vcpu via posted interrupt way.
5137 * 1. If target vcpu is running(non-root mode), send posted interrupt
5138 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5139 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5140 * interrupt from PIR in next vmentry.
5141 */
5142static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5143{
5144 struct vcpu_vmx *vmx = to_vmx(vcpu);
5145 int r;
5146
Wincy Van705699a2015-02-03 23:58:17 +08005147 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5148 if (!r)
5149 return;
5150
Yang Zhanga20ed542013-04-11 19:25:15 +08005151 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5152 return;
5153
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005154 /* If a previous notification has sent the IPI, nothing to do. */
5155 if (pi_test_and_set_on(&vmx->pi_desc))
5156 return;
5157
Wincy Van06a55242017-04-28 13:13:59 +08005158 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005159 kvm_vcpu_kick(vcpu);
5160}
5161
Avi Kivity6aa8b732006-12-10 02:21:36 -08005162/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005163 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5164 * will not change in the lifetime of the guest.
5165 * Note that host-state that does change is set elsewhere. E.g., host-state
5166 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5167 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005168static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005169{
5170 u32 low32, high32;
5171 unsigned long tmpl;
5172 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005173 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005174
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005175 cr0 = read_cr0();
5176 WARN_ON(cr0 & X86_CR0_TS);
5177 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005178
5179 /*
5180 * Save the most likely value for this task's CR3 in the VMCS.
5181 * We can't use __get_current_cr3_fast() because we're not atomic.
5182 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005183 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005184 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Ladi Prosek44889942017-09-22 07:53:15 +02005185 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005186
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005187 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005188 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005189 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Ladi Prosek44889942017-09-22 07:53:15 +02005190 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005191
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005192 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005193#ifdef CONFIG_X86_64
5194 /*
5195 * Load null selectors, so we can avoid reloading them in
5196 * __vmx_load_host_state(), in case userspace uses the null selectors
5197 * too (the expected case).
5198 */
5199 vmcs_write16(HOST_DS_SELECTOR, 0);
5200 vmcs_write16(HOST_ES_SELECTOR, 0);
5201#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005202 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5203 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005204#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005205 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5206 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5207
Juergen Gross87930012017-09-04 12:25:27 +02005208 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005209 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005210 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005211
Avi Kivity83287ea422012-09-16 15:10:57 +03005212 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005213
5214 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5215 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5216 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5217 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5218
5219 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5220 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5221 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5222 }
5223}
5224
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005225static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5226{
5227 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5228 if (enable_ept)
5229 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005230 if (is_guest_mode(&vmx->vcpu))
5231 vmx->vcpu.arch.cr4_guest_owned_bits &=
5232 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005233 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5234}
5235
Yang Zhang01e439b2013-04-11 19:25:12 +08005236static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5237{
5238 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5239
Andrey Smetanind62caab2015-11-10 15:36:33 +03005240 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005241 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005242
5243 if (!enable_vnmi)
5244 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
5245
Yunhong Jiang64672c92016-06-13 14:19:59 -07005246 /* Enable the preemption timer dynamically */
5247 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005248 return pin_based_exec_ctrl;
5249}
5250
Andrey Smetanind62caab2015-11-10 15:36:33 +03005251static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5252{
5253 struct vcpu_vmx *vmx = to_vmx(vcpu);
5254
5255 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005256 if (cpu_has_secondary_exec_ctrls()) {
5257 if (kvm_vcpu_apicv_active(vcpu))
5258 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5259 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5260 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5261 else
5262 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5263 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5264 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5265 }
5266
5267 if (cpu_has_vmx_msr_bitmap())
5268 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005269}
5270
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005271static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5272{
5273 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005274
5275 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5276 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5277
Paolo Bonzini35754c92015-07-29 12:05:37 +02005278 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005279 exec_control &= ~CPU_BASED_TPR_SHADOW;
5280#ifdef CONFIG_X86_64
5281 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5282 CPU_BASED_CR8_LOAD_EXITING;
5283#endif
5284 }
5285 if (!enable_ept)
5286 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5287 CPU_BASED_CR3_LOAD_EXITING |
5288 CPU_BASED_INVLPG_EXITING;
5289 return exec_control;
5290}
5291
Jim Mattson45ec3682017-08-23 16:32:04 -07005292static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005293{
Jim Mattson45ec3682017-08-23 16:32:04 -07005294 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005295 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005296}
5297
Jim Mattson75f4fc82017-08-23 16:32:03 -07005298static bool vmx_rdseed_supported(void)
5299{
5300 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005301 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005302}
5303
Paolo Bonzini80154d72017-08-24 13:55:35 +02005304static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005305{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005306 struct kvm_vcpu *vcpu = &vmx->vcpu;
5307
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005308 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005309 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005310 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5311 if (vmx->vpid == 0)
5312 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5313 if (!enable_ept) {
5314 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5315 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005316 /* Enable INVPCID for non-ept guests may cause performance regression. */
5317 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005318 }
5319 if (!enable_unrestricted_guest)
5320 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5321 if (!ple_gap)
5322 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005323 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005324 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5325 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005326 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005327 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5328 (handle_vmptrld).
5329 We can NOT enable shadow_vmcs here because we don't have yet
5330 a current VMCS12
5331 */
5332 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005333
5334 if (!enable_pml)
5335 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005336
Paolo Bonzini3db13482017-08-24 14:48:03 +02005337 if (vmx_xsaves_supported()) {
5338 /* Exposing XSAVES only when XSAVE is exposed */
5339 bool xsaves_enabled =
5340 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
5341 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
5342
5343 if (!xsaves_enabled)
5344 exec_control &= ~SECONDARY_EXEC_XSAVES;
5345
5346 if (nested) {
5347 if (xsaves_enabled)
5348 vmx->nested.nested_vmx_secondary_ctls_high |=
5349 SECONDARY_EXEC_XSAVES;
5350 else
5351 vmx->nested.nested_vmx_secondary_ctls_high &=
5352 ~SECONDARY_EXEC_XSAVES;
5353 }
5354 }
5355
Paolo Bonzini80154d72017-08-24 13:55:35 +02005356 if (vmx_rdtscp_supported()) {
5357 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5358 if (!rdtscp_enabled)
5359 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5360
5361 if (nested) {
5362 if (rdtscp_enabled)
5363 vmx->nested.nested_vmx_secondary_ctls_high |=
5364 SECONDARY_EXEC_RDTSCP;
5365 else
5366 vmx->nested.nested_vmx_secondary_ctls_high &=
5367 ~SECONDARY_EXEC_RDTSCP;
5368 }
5369 }
5370
5371 if (vmx_invpcid_supported()) {
5372 /* Exposing INVPCID only when PCID is exposed */
5373 bool invpcid_enabled =
5374 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5375 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5376
5377 if (!invpcid_enabled) {
5378 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5379 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5380 }
5381
5382 if (nested) {
5383 if (invpcid_enabled)
5384 vmx->nested.nested_vmx_secondary_ctls_high |=
5385 SECONDARY_EXEC_ENABLE_INVPCID;
5386 else
5387 vmx->nested.nested_vmx_secondary_ctls_high &=
5388 ~SECONDARY_EXEC_ENABLE_INVPCID;
5389 }
5390 }
5391
Jim Mattson45ec3682017-08-23 16:32:04 -07005392 if (vmx_rdrand_supported()) {
5393 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
5394 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005395 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005396
5397 if (nested) {
5398 if (rdrand_enabled)
5399 vmx->nested.nested_vmx_secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005400 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005401 else
5402 vmx->nested.nested_vmx_secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005403 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005404 }
5405 }
5406
Jim Mattson75f4fc82017-08-23 16:32:03 -07005407 if (vmx_rdseed_supported()) {
5408 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
5409 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005410 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005411
5412 if (nested) {
5413 if (rdseed_enabled)
5414 vmx->nested.nested_vmx_secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005415 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005416 else
5417 vmx->nested.nested_vmx_secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005418 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005419 }
5420 }
5421
Paolo Bonzini80154d72017-08-24 13:55:35 +02005422 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005423}
5424
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005425static void ept_set_mmio_spte_mask(void)
5426{
5427 /*
5428 * EPT Misconfigurations can be generated if the value of bits 2:0
5429 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005430 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005431 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5432 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005433}
5434
Wanpeng Lif53cd632014-12-02 19:14:58 +08005435#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005436/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005437 * Sets up the vmcs for emulated real mode.
5438 */
David Hildenbrand12d79912017-08-24 20:51:26 +02005439static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005440{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005441#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005442 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005443#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005444 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445
Avi Kivity6aa8b732006-12-10 02:21:36 -08005446 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005447 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5448 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005449
Abel Gordon4607c2d2013-04-18 14:35:55 +03005450 if (enable_shadow_vmcs) {
5451 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5452 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5453 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005454 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005455 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005456
Avi Kivity6aa8b732006-12-10 02:21:36 -08005457 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5458
Avi Kivity6aa8b732006-12-10 02:21:36 -08005459 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005460 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005461 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005462
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005463 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005464
Dan Williamsdfa169b2016-06-02 11:17:24 -07005465 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005466 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005467 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005468 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005469 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005470
Andrey Smetanind62caab2015-11-10 15:36:33 +03005471 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005472 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5473 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5474 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5475 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5476
5477 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005478
Li RongQing0bcf2612015-12-03 13:29:34 +08005479 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005480 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005481 }
5482
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005483 if (ple_gap) {
5484 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005485 vmx->ple_window = ple_window;
5486 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005487 }
5488
Xiao Guangrongc3707952011-07-12 03:28:04 +08005489 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5490 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005491 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5492
Avi Kivity9581d442010-10-19 16:46:55 +02005493 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5494 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005495 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005496#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005497 rdmsrl(MSR_FS_BASE, a);
5498 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5499 rdmsrl(MSR_GS_BASE, a);
5500 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5501#else
5502 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5503 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5504#endif
5505
Bandan Das2a499e42017-08-03 15:54:41 -04005506 if (cpu_has_vmx_vmfunc())
5507 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5508
Eddie Dong2cc51562007-05-21 07:28:09 +03005509 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5510 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005511 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005512 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005513 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005514
Radim Krčmář74545702015-04-27 15:11:25 +02005515 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5516 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005517
Paolo Bonzini03916db2014-07-24 14:21:57 +02005518 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005519 u32 index = vmx_msr_index[i];
5520 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005521 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005522
5523 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5524 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005525 if (wrmsr_safe(index, data_low, data_high) < 0)
5526 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005527 vmx->guest_msrs[j].index = i;
5528 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005529 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005530 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005531 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005532
Gleb Natapov2961e8762013-11-25 15:37:13 +02005533
5534 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005535
5536 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005537 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005538
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005539 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5540 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5541
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005542 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005543
Wanpeng Lif53cd632014-12-02 19:14:58 +08005544 if (vmx_xsaves_supported())
5545 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5546
Peter Feiner4e595162016-07-07 14:49:58 -07005547 if (enable_pml) {
5548 ASSERT(vmx->pml_pg);
5549 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5550 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5551 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005552}
5553
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005554static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005555{
5556 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005557 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005558 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005559
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005560 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005561
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005562 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005563 kvm_set_cr8(vcpu, 0);
5564
5565 if (!init_event) {
5566 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5567 MSR_IA32_APICBASE_ENABLE;
5568 if (kvm_vcpu_is_reset_bsp(vcpu))
5569 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5570 apic_base_msr.host_initiated = true;
5571 kvm_set_apic_base(vcpu, &apic_base_msr);
5572 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005573
Avi Kivity2fb92db2011-04-27 19:42:18 +03005574 vmx_segment_cache_clear(vmx);
5575
Avi Kivity5706be02008-08-20 15:07:31 +03005576 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005577 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005578 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005579
5580 seg_setup(VCPU_SREG_DS);
5581 seg_setup(VCPU_SREG_ES);
5582 seg_setup(VCPU_SREG_FS);
5583 seg_setup(VCPU_SREG_GS);
5584 seg_setup(VCPU_SREG_SS);
5585
5586 vmcs_write16(GUEST_TR_SELECTOR, 0);
5587 vmcs_writel(GUEST_TR_BASE, 0);
5588 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5589 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5590
5591 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5592 vmcs_writel(GUEST_LDTR_BASE, 0);
5593 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5594 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5595
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005596 if (!init_event) {
5597 vmcs_write32(GUEST_SYSENTER_CS, 0);
5598 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5599 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5600 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5601 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005602
5603 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005604 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005605
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005606 vmcs_writel(GUEST_GDTR_BASE, 0);
5607 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5608
5609 vmcs_writel(GUEST_IDTR_BASE, 0);
5610 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5611
Anthony Liguori443381a2010-12-06 10:53:38 -06005612 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005613 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005614 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07005615 if (kvm_mpx_supported())
5616 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005617
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005618 setup_msrs(vmx);
5619
Avi Kivity6aa8b732006-12-10 02:21:36 -08005620 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5621
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005622 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005623 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005624 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005625 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005626 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005627 vmcs_write32(TPR_THRESHOLD, 0);
5628 }
5629
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005630 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005631
Sheng Yang2384d2b2008-01-17 15:14:33 +08005632 if (vmx->vpid != 0)
5633 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5634
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005635 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005636 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005637 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005638 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005639 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005640
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005641 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005642
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005643 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005644}
5645
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005646/*
5647 * In nested virtualization, check if L1 asked to exit on external interrupts.
5648 * For most existing hypervisors, this will always return true.
5649 */
5650static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5651{
5652 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5653 PIN_BASED_EXT_INTR_MASK;
5654}
5655
Bandan Das77b0f5d2014-04-19 18:17:45 -04005656/*
5657 * In nested virtualization, check if L1 has set
5658 * VM_EXIT_ACK_INTR_ON_EXIT
5659 */
5660static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5661{
5662 return get_vmcs12(vcpu)->vm_exit_controls &
5663 VM_EXIT_ACK_INTR_ON_EXIT;
5664}
5665
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005666static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5667{
5668 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5669 PIN_BASED_NMI_EXITING;
5670}
5671
Jan Kiszkac9a79532014-03-07 20:03:15 +01005672static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005673{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005674 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5675 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005676}
5677
Jan Kiszkac9a79532014-03-07 20:03:15 +01005678static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005679{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005680 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005681 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005682 enable_irq_window(vcpu);
5683 return;
5684 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005685
Paolo Bonzini47c01522016-12-19 11:44:07 +01005686 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5687 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005688}
5689
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005690static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005691{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005692 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005693 uint32_t intr;
5694 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005695
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005696 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005697
Avi Kivityfa89a812008-09-01 15:57:51 +03005698 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005699 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005700 int inc_eip = 0;
5701 if (vcpu->arch.interrupt.soft)
5702 inc_eip = vcpu->arch.event_exit_inst_len;
5703 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005704 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005705 return;
5706 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005707 intr = irq | INTR_INFO_VALID_MASK;
5708 if (vcpu->arch.interrupt.soft) {
5709 intr |= INTR_TYPE_SOFT_INTR;
5710 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5711 vmx->vcpu.arch.event_exit_inst_len);
5712 } else
5713 intr |= INTR_TYPE_EXT_INTR;
5714 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005715}
5716
Sheng Yangf08864b2008-05-15 18:23:25 +08005717static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5718{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005719 struct vcpu_vmx *vmx = to_vmx(vcpu);
5720
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005721 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005722 /*
5723 * Tracking the NMI-blocked state in software is built upon
5724 * finding the next open IRQ window. This, in turn, depends on
5725 * well-behaving guests: They have to keep IRQs disabled at
5726 * least as long as the NMI handler runs. Otherwise we may
5727 * cause NMI nesting, maybe breaking the guest. But as this is
5728 * highly unlikely, we can live with the residual risk.
5729 */
5730 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
5731 vmx->loaded_vmcs->vnmi_blocked_time = 0;
5732 }
5733
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005734 ++vcpu->stat.nmi_injections;
5735 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005736
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005737 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005738 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005739 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005740 return;
5741 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005742
Sheng Yangf08864b2008-05-15 18:23:25 +08005743 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5744 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005745}
5746
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005747static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5748{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005749 struct vcpu_vmx *vmx = to_vmx(vcpu);
5750 bool masked;
5751
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005752 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005753 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005754 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005755 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005756 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5757 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5758 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005759}
5760
5761static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5762{
5763 struct vcpu_vmx *vmx = to_vmx(vcpu);
5764
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005765 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005766 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
5767 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
5768 vmx->loaded_vmcs->vnmi_blocked_time = 0;
5769 }
5770 } else {
5771 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5772 if (masked)
5773 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5774 GUEST_INTR_STATE_NMI);
5775 else
5776 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5777 GUEST_INTR_STATE_NMI);
5778 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005779}
5780
Jan Kiszka2505dc92013-04-14 12:12:47 +02005781static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5782{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005783 if (to_vmx(vcpu)->nested.nested_run_pending)
5784 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005785
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005786 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01005787 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
5788 return 0;
5789
Jan Kiszka2505dc92013-04-14 12:12:47 +02005790 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5791 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5792 | GUEST_INTR_STATE_NMI));
5793}
5794
Gleb Natapov78646122009-03-23 12:12:11 +02005795static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5796{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005797 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5798 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005799 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5800 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005801}
5802
Izik Eiduscbc94022007-10-25 00:29:55 +02005803static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5804{
5805 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005806
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005807 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5808 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005809 if (ret)
5810 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005811 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005812 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005813}
5814
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005815static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005816{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005817 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005818 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005819 /*
5820 * Update instruction length as we may reinject the exception
5821 * from user space while in guest debugging mode.
5822 */
5823 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5824 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005825 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005826 return false;
5827 /* fall through */
5828 case DB_VECTOR:
5829 if (vcpu->guest_debug &
5830 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5831 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005832 /* fall through */
5833 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005834 case OF_VECTOR:
5835 case BR_VECTOR:
5836 case UD_VECTOR:
5837 case DF_VECTOR:
5838 case SS_VECTOR:
5839 case GP_VECTOR:
5840 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005841 return true;
5842 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005843 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005844 return false;
5845}
5846
5847static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5848 int vec, u32 err_code)
5849{
5850 /*
5851 * Instruction with address size override prefix opcode 0x67
5852 * Cause the #SS fault with 0 error code in VM86 mode.
5853 */
5854 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5855 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5856 if (vcpu->arch.halt_request) {
5857 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005858 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005859 }
5860 return 1;
5861 }
5862 return 0;
5863 }
5864
5865 /*
5866 * Forward all other exceptions that are valid in real mode.
5867 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5868 * the required debugging infrastructure rework.
5869 */
5870 kvm_queue_exception(vcpu, vec);
5871 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005872}
5873
Andi Kleena0861c02009-06-08 17:37:09 +08005874/*
5875 * Trigger machine check on the host. We assume all the MSRs are already set up
5876 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5877 * We pass a fake environment to the machine check handler because we want
5878 * the guest to be always treated like user space, no matter what context
5879 * it used internally.
5880 */
5881static void kvm_machine_check(void)
5882{
5883#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5884 struct pt_regs regs = {
5885 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5886 .flags = X86_EFLAGS_IF,
5887 };
5888
5889 do_machine_check(&regs, 0);
5890#endif
5891}
5892
Avi Kivity851ba692009-08-24 11:10:17 +03005893static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005894{
5895 /* already handled by vcpu_run */
5896 return 1;
5897}
5898
Avi Kivity851ba692009-08-24 11:10:17 +03005899static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005900{
Avi Kivity1155f762007-11-22 11:30:47 +02005901 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005902 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005903 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005904 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005905 u32 vect_info;
5906 enum emulation_result er;
5907
Avi Kivity1155f762007-11-22 11:30:47 +02005908 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005909 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005910
Andi Kleena0861c02009-06-08 17:37:09 +08005911 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005912 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005913
Jim Mattsonef85b672016-12-12 11:01:37 -08005914 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005915 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005916
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005917 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005918 if (is_guest_mode(vcpu)) {
5919 kvm_queue_exception(vcpu, UD_VECTOR);
5920 return 1;
5921 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005922 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005923 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005924 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005925 return 1;
5926 }
5927
Avi Kivity6aa8b732006-12-10 02:21:36 -08005928 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005929 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005930 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005931
5932 /*
5933 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5934 * MMIO, it is better to report an internal error.
5935 * See the comments in vmx_handle_exit.
5936 */
5937 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5938 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5939 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5940 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005941 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005942 vcpu->run->internal.data[0] = vect_info;
5943 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005944 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005945 return 0;
5946 }
5947
Avi Kivity6aa8b732006-12-10 02:21:36 -08005948 if (is_page_fault(intr_info)) {
5949 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005950 /* EPT won't cause page fault directly */
5951 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02005952 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005953 }
5954
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005955 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005956
5957 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5958 return handle_rmode_exception(vcpu, ex_no, error_code);
5959
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005960 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005961 case AC_VECTOR:
5962 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5963 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005964 case DB_VECTOR:
5965 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5966 if (!(vcpu->guest_debug &
5967 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005968 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005969 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005970 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5971 skip_emulated_instruction(vcpu);
5972
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005973 kvm_queue_exception(vcpu, DB_VECTOR);
5974 return 1;
5975 }
5976 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5977 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5978 /* fall through */
5979 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005980 /*
5981 * Update instruction length as we may reinject #BP from
5982 * user space while in guest debugging mode. Reading it for
5983 * #DB as well causes no harm, it is not used in that case.
5984 */
5985 vmx->vcpu.arch.event_exit_inst_len =
5986 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005987 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005988 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005989 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5990 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005991 break;
5992 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005993 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5994 kvm_run->ex.exception = ex_no;
5995 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005996 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005997 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005998 return 0;
5999}
6000
Avi Kivity851ba692009-08-24 11:10:17 +03006001static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006002{
Avi Kivity1165f5f2007-04-19 17:27:43 +03006003 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006004 return 1;
6005}
6006
Avi Kivity851ba692009-08-24 11:10:17 +03006007static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08006008{
Avi Kivity851ba692009-08-24 11:10:17 +03006009 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07006010 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08006011 return 0;
6012}
Avi Kivity6aa8b732006-12-10 02:21:36 -08006013
Avi Kivity851ba692009-08-24 11:10:17 +03006014static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006015{
He, Qingbfdaab02007-09-12 14:18:28 +08006016 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006017 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02006018 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006019
He, Qingbfdaab02007-09-12 14:18:28 +08006020 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02006021 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03006022 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03006023
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006024 ++vcpu->stat.io_exits;
6025
6026 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01006027 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006028
6029 port = exit_qualification >> 16;
6030 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006031
Kyle Huey6affcbe2016-11-29 12:40:40 -08006032 ret = kvm_skip_emulated_instruction(vcpu);
6033
6034 /*
6035 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
6036 * KVM_EXIT_DEBUG here.
6037 */
6038 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006039}
6040
Ingo Molnar102d8322007-02-19 14:37:47 +02006041static void
6042vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
6043{
6044 /*
6045 * Patch in the VMCALL instruction:
6046 */
6047 hypercall[0] = 0x0f;
6048 hypercall[1] = 0x01;
6049 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006050}
6051
Guo Chao0fa06072012-06-28 15:16:19 +08006052/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006053static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6054{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006055 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006056 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6057 unsigned long orig_val = val;
6058
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006059 /*
6060 * We get here when L2 changed cr0 in a way that did not change
6061 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006062 * but did change L0 shadowed bits. So we first calculate the
6063 * effective cr0 value that L1 would like to write into the
6064 * hardware. It consists of the L2-owned bits from the new
6065 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006066 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006067 val = (val & ~vmcs12->cr0_guest_host_mask) |
6068 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6069
David Matlack38991522016-11-29 18:14:08 -08006070 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006071 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006072
6073 if (kvm_set_cr0(vcpu, val))
6074 return 1;
6075 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006076 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006077 } else {
6078 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006079 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006080 return 1;
David Matlack38991522016-11-29 18:14:08 -08006081
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006082 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006083 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006084}
6085
6086static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6087{
6088 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006089 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6090 unsigned long orig_val = val;
6091
6092 /* analogously to handle_set_cr0 */
6093 val = (val & ~vmcs12->cr4_guest_host_mask) |
6094 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6095 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006096 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006097 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006098 return 0;
6099 } else
6100 return kvm_set_cr4(vcpu, val);
6101}
6102
Avi Kivity851ba692009-08-24 11:10:17 +03006103static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006104{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006105 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006106 int cr;
6107 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006108 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006109 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006110
He, Qingbfdaab02007-09-12 14:18:28 +08006111 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006112 cr = exit_qualification & 15;
6113 reg = (exit_qualification >> 8) & 15;
6114 switch ((exit_qualification >> 4) & 3) {
6115 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006116 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006117 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006118 switch (cr) {
6119 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006120 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006121 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006122 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006123 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006124 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006125 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006126 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006127 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006128 case 8: {
6129 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006130 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006131 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006132 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006133 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006134 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006135 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006136 return ret;
6137 /*
6138 * TODO: we might be squashing a
6139 * KVM_GUESTDBG_SINGLESTEP-triggered
6140 * KVM_EXIT_DEBUG here.
6141 */
Avi Kivity851ba692009-08-24 11:10:17 +03006142 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006143 return 0;
6144 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006145 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006146 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006147 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006148 WARN_ONCE(1, "Guest should always own CR0.TS");
6149 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006150 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006151 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006152 case 1: /*mov from cr*/
6153 switch (cr) {
6154 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006155 val = kvm_read_cr3(vcpu);
6156 kvm_register_write(vcpu, reg, val);
6157 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006158 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006159 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006160 val = kvm_get_cr8(vcpu);
6161 kvm_register_write(vcpu, reg, val);
6162 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006163 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006164 }
6165 break;
6166 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006167 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006168 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006169 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006170
Kyle Huey6affcbe2016-11-29 12:40:40 -08006171 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006172 default:
6173 break;
6174 }
Avi Kivity851ba692009-08-24 11:10:17 +03006175 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006176 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006177 (int)(exit_qualification >> 4) & 3, cr);
6178 return 0;
6179}
6180
Avi Kivity851ba692009-08-24 11:10:17 +03006181static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006182{
He, Qingbfdaab02007-09-12 14:18:28 +08006183 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006184 int dr, dr7, reg;
6185
6186 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6187 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6188
6189 /* First, if DR does not exist, trigger UD */
6190 if (!kvm_require_dr(vcpu, dr))
6191 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006192
Jan Kiszkaf2483412010-01-20 18:20:20 +01006193 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006194 if (!kvm_require_cpl(vcpu, 0))
6195 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006196 dr7 = vmcs_readl(GUEST_DR7);
6197 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006198 /*
6199 * As the vm-exit takes precedence over the debug trap, we
6200 * need to emulate the latter, either for the host or the
6201 * guest debugging itself.
6202 */
6203 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006204 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006205 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006206 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006207 vcpu->run->debug.arch.exception = DB_VECTOR;
6208 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006209 return 0;
6210 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006211 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006212 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006213 kvm_queue_exception(vcpu, DB_VECTOR);
6214 return 1;
6215 }
6216 }
6217
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006218 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006219 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6220 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006221
6222 /*
6223 * No more DR vmexits; force a reload of the debug registers
6224 * and reenter on this instruction. The next vmexit will
6225 * retrieve the full state of the debug registers.
6226 */
6227 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6228 return 1;
6229 }
6230
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006231 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6232 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006233 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006234
6235 if (kvm_get_dr(vcpu, dr, &val))
6236 return 1;
6237 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006238 } else
Nadav Amit57773922014-06-18 17:19:23 +03006239 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006240 return 1;
6241
Kyle Huey6affcbe2016-11-29 12:40:40 -08006242 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006243}
6244
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006245static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6246{
6247 return vcpu->arch.dr6;
6248}
6249
6250static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6251{
6252}
6253
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006254static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6255{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006256 get_debugreg(vcpu->arch.db[0], 0);
6257 get_debugreg(vcpu->arch.db[1], 1);
6258 get_debugreg(vcpu->arch.db[2], 2);
6259 get_debugreg(vcpu->arch.db[3], 3);
6260 get_debugreg(vcpu->arch.dr6, 6);
6261 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6262
6263 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006264 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006265}
6266
Gleb Natapov020df072010-04-13 10:05:23 +03006267static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6268{
6269 vmcs_writel(GUEST_DR7, val);
6270}
6271
Avi Kivity851ba692009-08-24 11:10:17 +03006272static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006273{
Kyle Huey6a908b62016-11-29 12:40:37 -08006274 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006275}
6276
Avi Kivity851ba692009-08-24 11:10:17 +03006277static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006278{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006279 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006280 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006281
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006282 msr_info.index = ecx;
6283 msr_info.host_initiated = false;
6284 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006285 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006286 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006287 return 1;
6288 }
6289
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006290 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006291
Avi Kivity6aa8b732006-12-10 02:21:36 -08006292 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006293 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6294 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006295 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006296}
6297
Avi Kivity851ba692009-08-24 11:10:17 +03006298static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006299{
Will Auld8fe8ab42012-11-29 12:42:12 -08006300 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006301 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6302 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6303 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006304
Will Auld8fe8ab42012-11-29 12:42:12 -08006305 msr.data = data;
6306 msr.index = ecx;
6307 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006308 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006309 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006310 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006311 return 1;
6312 }
6313
Avi Kivity59200272010-01-25 19:47:02 +02006314 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006315 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006316}
6317
Avi Kivity851ba692009-08-24 11:10:17 +03006318static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006319{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006320 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006321 return 1;
6322}
6323
Avi Kivity851ba692009-08-24 11:10:17 +03006324static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006325{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006326 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6327 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006328
Avi Kivity3842d132010-07-27 12:30:24 +03006329 kvm_make_request(KVM_REQ_EVENT, vcpu);
6330
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006331 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006332 return 1;
6333}
6334
Avi Kivity851ba692009-08-24 11:10:17 +03006335static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006336{
Avi Kivityd3bef152007-06-05 15:53:05 +03006337 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006338}
6339
Avi Kivity851ba692009-08-24 11:10:17 +03006340static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006341{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006342 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006343}
6344
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006345static int handle_invd(struct kvm_vcpu *vcpu)
6346{
Andre Przywara51d8b662010-12-21 11:12:02 +01006347 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006348}
6349
Avi Kivity851ba692009-08-24 11:10:17 +03006350static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006351{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006352 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006353
6354 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006355 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006356}
6357
Avi Kivityfee84b02011-11-10 14:57:25 +02006358static int handle_rdpmc(struct kvm_vcpu *vcpu)
6359{
6360 int err;
6361
6362 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006363 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006364}
6365
Avi Kivity851ba692009-08-24 11:10:17 +03006366static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006367{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006368 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006369}
6370
Dexuan Cui2acf9232010-06-10 11:27:12 +08006371static int handle_xsetbv(struct kvm_vcpu *vcpu)
6372{
6373 u64 new_bv = kvm_read_edx_eax(vcpu);
6374 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6375
6376 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006377 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006378 return 1;
6379}
6380
Wanpeng Lif53cd632014-12-02 19:14:58 +08006381static int handle_xsaves(struct kvm_vcpu *vcpu)
6382{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006383 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006384 WARN(1, "this should never happen\n");
6385 return 1;
6386}
6387
6388static int handle_xrstors(struct kvm_vcpu *vcpu)
6389{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006390 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006391 WARN(1, "this should never happen\n");
6392 return 1;
6393}
6394
Avi Kivity851ba692009-08-24 11:10:17 +03006395static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006396{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006397 if (likely(fasteoi)) {
6398 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6399 int access_type, offset;
6400
6401 access_type = exit_qualification & APIC_ACCESS_TYPE;
6402 offset = exit_qualification & APIC_ACCESS_OFFSET;
6403 /*
6404 * Sane guest uses MOV to write EOI, with written value
6405 * not cared. So make a short-circuit here by avoiding
6406 * heavy instruction emulation.
6407 */
6408 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6409 (offset == APIC_EOI)) {
6410 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006411 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006412 }
6413 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006414 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006415}
6416
Yang Zhangc7c9c562013-01-25 10:18:51 +08006417static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6418{
6419 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6420 int vector = exit_qualification & 0xff;
6421
6422 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6423 kvm_apic_set_eoi_accelerated(vcpu, vector);
6424 return 1;
6425}
6426
Yang Zhang83d4c282013-01-25 10:18:49 +08006427static int handle_apic_write(struct kvm_vcpu *vcpu)
6428{
6429 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6430 u32 offset = exit_qualification & 0xfff;
6431
6432 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6433 kvm_apic_write_nodecode(vcpu, offset);
6434 return 1;
6435}
6436
Avi Kivity851ba692009-08-24 11:10:17 +03006437static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006438{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006439 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006440 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006441 bool has_error_code = false;
6442 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006443 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006444 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006445
6446 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006447 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006448 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006449
6450 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6451
6452 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006453 if (reason == TASK_SWITCH_GATE && idt_v) {
6454 switch (type) {
6455 case INTR_TYPE_NMI_INTR:
6456 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006457 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006458 break;
6459 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006460 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006461 kvm_clear_interrupt_queue(vcpu);
6462 break;
6463 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006464 if (vmx->idt_vectoring_info &
6465 VECTORING_INFO_DELIVER_CODE_MASK) {
6466 has_error_code = true;
6467 error_code =
6468 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6469 }
6470 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006471 case INTR_TYPE_SOFT_EXCEPTION:
6472 kvm_clear_exception_queue(vcpu);
6473 break;
6474 default:
6475 break;
6476 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006477 }
Izik Eidus37817f22008-03-24 23:14:53 +02006478 tss_selector = exit_qualification;
6479
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006480 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6481 type != INTR_TYPE_EXT_INTR &&
6482 type != INTR_TYPE_NMI_INTR))
6483 skip_emulated_instruction(vcpu);
6484
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006485 if (kvm_task_switch(vcpu, tss_selector,
6486 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6487 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006488 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6489 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6490 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006491 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006492 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006493
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006494 /*
6495 * TODO: What about debug traps on tss switch?
6496 * Are we supposed to inject them and update dr6?
6497 */
6498
6499 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006500}
6501
Avi Kivity851ba692009-08-24 11:10:17 +03006502static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006503{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006504 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006505 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006506 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006507
Sheng Yangf9c617f2009-03-25 10:08:52 +08006508 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006509
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006510 /*
6511 * EPT violation happened while executing iret from NMI,
6512 * "blocked by NMI" bit has to be set before next VM entry.
6513 * There are errata that may cause this bit to not be set:
6514 * AAK134, BY25.
6515 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006516 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006517 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006518 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006519 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6520
Sheng Yang14394422008-04-28 12:24:45 +08006521 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006522 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006523
Junaid Shahid27959a42016-12-06 16:46:10 -08006524 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006525 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006526 ? PFERR_USER_MASK : 0;
6527 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006528 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006529 ? PFERR_WRITE_MASK : 0;
6530 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006531 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006532 ? PFERR_FETCH_MASK : 0;
6533 /* ept page table entry is present? */
6534 error_code |= (exit_qualification &
6535 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6536 EPT_VIOLATION_EXECUTABLE))
6537 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006538
Paolo Bonzinieebed242016-11-28 14:39:58 +01006539 error_code |= (exit_qualification & 0x100) != 0 ?
6540 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03006541
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006542 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006543 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006544}
6545
Avi Kivity851ba692009-08-24 11:10:17 +03006546static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006547{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006548 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006549 gpa_t gpa;
6550
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006551 /*
6552 * A nested guest cannot optimize MMIO vmexits, because we have an
6553 * nGPA here instead of the required GPA.
6554 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006555 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006556 if (!is_guest_mode(vcpu) &&
6557 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006558 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006559 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006560 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006561
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006562 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6563 if (ret >= 0)
6564 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006565
6566 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006567 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006568
Avi Kivity851ba692009-08-24 11:10:17 +03006569 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6570 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006571
6572 return 0;
6573}
6574
Avi Kivity851ba692009-08-24 11:10:17 +03006575static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006576{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006577 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01006578 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6579 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006580 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006581 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006582
6583 return 1;
6584}
6585
Mohammed Gamal80ced182009-09-01 12:48:18 +02006586static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006587{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006588 struct vcpu_vmx *vmx = to_vmx(vcpu);
6589 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006590 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006591 u32 cpu_exec_ctrl;
6592 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006593 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006594
6595 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6596 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006597
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006598 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006599 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006600 return handle_interrupt_window(&vmx->vcpu);
6601
Radim Krčmář72875d82017-04-26 22:32:19 +02006602 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006603 return 1;
6604
Gleb Natapov991eebf2013-04-11 12:10:51 +03006605 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006606
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006607 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006608 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006609 ret = 0;
6610 goto out;
6611 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006612
Avi Kivityde5f70e2012-06-12 20:22:28 +03006613 if (err != EMULATE_DONE) {
6614 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6615 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6616 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006617 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006618 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006619
Gleb Natapov8d76c492013-05-08 18:38:44 +03006620 if (vcpu->arch.halt_request) {
6621 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006622 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006623 goto out;
6624 }
6625
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006626 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006627 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006628 if (need_resched())
6629 schedule();
6630 }
6631
Mohammed Gamal80ced182009-09-01 12:48:18 +02006632out:
6633 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006634}
6635
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006636static int __grow_ple_window(int val)
6637{
6638 if (ple_window_grow < 1)
6639 return ple_window;
6640
6641 val = min(val, ple_window_actual_max);
6642
6643 if (ple_window_grow < ple_window)
6644 val *= ple_window_grow;
6645 else
6646 val += ple_window_grow;
6647
6648 return val;
6649}
6650
6651static int __shrink_ple_window(int val, int modifier, int minimum)
6652{
6653 if (modifier < 1)
6654 return ple_window;
6655
6656 if (modifier < ple_window)
6657 val /= modifier;
6658 else
6659 val -= modifier;
6660
6661 return max(val, minimum);
6662}
6663
6664static void grow_ple_window(struct kvm_vcpu *vcpu)
6665{
6666 struct vcpu_vmx *vmx = to_vmx(vcpu);
6667 int old = vmx->ple_window;
6668
6669 vmx->ple_window = __grow_ple_window(old);
6670
6671 if (vmx->ple_window != old)
6672 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006673
6674 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006675}
6676
6677static void shrink_ple_window(struct kvm_vcpu *vcpu)
6678{
6679 struct vcpu_vmx *vmx = to_vmx(vcpu);
6680 int old = vmx->ple_window;
6681
6682 vmx->ple_window = __shrink_ple_window(old,
6683 ple_window_shrink, ple_window);
6684
6685 if (vmx->ple_window != old)
6686 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006687
6688 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006689}
6690
6691/*
6692 * ple_window_actual_max is computed to be one grow_ple_window() below
6693 * ple_window_max. (See __grow_ple_window for the reason.)
6694 * This prevents overflows, because ple_window_max is int.
6695 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6696 * this process.
6697 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6698 */
6699static void update_ple_window_actual_max(void)
6700{
6701 ple_window_actual_max =
6702 __shrink_ple_window(max(ple_window_max, ple_window),
6703 ple_window_grow, INT_MIN);
6704}
6705
Feng Wubf9f6ac2015-09-18 22:29:55 +08006706/*
6707 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6708 */
6709static void wakeup_handler(void)
6710{
6711 struct kvm_vcpu *vcpu;
6712 int cpu = smp_processor_id();
6713
6714 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6715 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6716 blocked_vcpu_list) {
6717 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6718
6719 if (pi_test_on(pi_desc) == 1)
6720 kvm_vcpu_kick(vcpu);
6721 }
6722 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6723}
6724
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006725void vmx_enable_tdp(void)
6726{
6727 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6728 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6729 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6730 0ull, VMX_EPT_EXECUTABLE_MASK,
6731 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05006732 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006733
6734 ept_set_mmio_spte_mask();
6735 kvm_enable_tdp();
6736}
6737
Tiejun Chenf2c76482014-10-28 10:14:47 +08006738static __init int hardware_setup(void)
6739{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006740 int r = -ENOMEM, i, msr;
6741
6742 rdmsrl_safe(MSR_EFER, &host_efer);
6743
6744 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6745 kvm_define_shared_msr(i, vmx_msr_index[i]);
6746
Radim Krčmář23611332016-09-29 22:41:33 +02006747 for (i = 0; i < VMX_BITMAP_NR; i++) {
6748 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6749 if (!vmx_bitmap[i])
6750 goto out;
6751 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006752
6753 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006754 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6755 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6756
6757 /*
6758 * Allow direct access to the PC debug port (it is often used for I/O
6759 * delays, but the vmexits simply slow things down).
6760 */
6761 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6762 clear_bit(0x80, vmx_io_bitmap_a);
6763
6764 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6765
6766 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6767 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6768
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006769 if (setup_vmcs_config(&vmcs_config) < 0) {
6770 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006771 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006772 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006773
6774 if (boot_cpu_has(X86_FEATURE_NX))
6775 kvm_enable_efer_bits(EFER_NX);
6776
Wanpeng Li08d839c2017-03-23 05:30:08 -07006777 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6778 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006779 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006780
Tiejun Chenf2c76482014-10-28 10:14:47 +08006781 if (!cpu_has_vmx_shadow_vmcs())
6782 enable_shadow_vmcs = 0;
6783 if (enable_shadow_vmcs)
6784 init_vmcs_shadow_fields();
6785
6786 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006787 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02006788 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07006789 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006790 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006791
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006792 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006793 enable_ept_ad_bits = 0;
6794
Wanpeng Li8ad81822017-10-09 15:51:53 -07006795 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006796 enable_unrestricted_guest = 0;
6797
Paolo Bonziniad15a292015-01-30 16:18:49 +01006798 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006799 flexpriority_enabled = 0;
6800
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006801 if (!cpu_has_virtual_nmis())
6802 enable_vnmi = 0;
6803
Paolo Bonziniad15a292015-01-30 16:18:49 +01006804 /*
6805 * set_apic_access_page_addr() is used to reload apic access
6806 * page upon invalidation. No need to do anything if not
6807 * using the APIC_ACCESS_ADDR VMCS field.
6808 */
6809 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006810 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006811
6812 if (!cpu_has_vmx_tpr_shadow())
6813 kvm_x86_ops->update_cr8_intercept = NULL;
6814
6815 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6816 kvm_disable_largepages();
6817
Wanpeng Li0f107682017-09-28 18:06:24 -07006818 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006819 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07006820 ple_window = 0;
6821 ple_window_grow = 0;
6822 ple_window_max = 0;
6823 ple_window_shrink = 0;
6824 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006825
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006826 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006827 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006828 kvm_x86_ops->sync_pir_to_irr = NULL;
6829 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006830
Haozhong Zhang64903d62015-10-20 15:39:09 +08006831 if (cpu_has_vmx_tsc_scaling()) {
6832 kvm_has_tsc_control = true;
6833 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6834 kvm_tsc_scaling_ratio_frac_bits = 48;
6835 }
6836
Tiejun Chenbaa03522014-12-23 16:21:11 +08006837 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6838 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6839 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6840 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6841 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6842 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006843
Wanpeng Lic63e4562016-09-23 19:17:16 +08006844 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6845 vmx_msr_bitmap_legacy, PAGE_SIZE);
6846 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6847 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006848 memcpy(vmx_msr_bitmap_legacy_x2apic,
6849 vmx_msr_bitmap_legacy, PAGE_SIZE);
6850 memcpy(vmx_msr_bitmap_longmode_x2apic,
6851 vmx_msr_bitmap_longmode, PAGE_SIZE);
6852
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006853 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6854
Radim Krčmář40d83382016-09-29 22:41:31 +02006855 for (msr = 0x800; msr <= 0x8ff; msr++) {
6856 if (msr == 0x839 /* TMCCT */)
6857 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006858 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006859 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006860
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006861 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006862 * TPR reads and writes can be virtualized even if virtual interrupt
6863 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006864 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006865 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6866 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6867
Roman Kagan3ce424e2016-05-18 17:48:20 +03006868 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006869 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006870 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006871 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006872
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006873 if (enable_ept)
6874 vmx_enable_tdp();
6875 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006876 kvm_disable_tdp();
6877
6878 update_ple_window_actual_max();
6879
Kai Huang843e4332015-01-28 10:54:28 +08006880 /*
6881 * Only enable PML when hardware supports PML feature, and both EPT
6882 * and EPT A/D bit features are enabled -- PML depends on them to work.
6883 */
6884 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6885 enable_pml = 0;
6886
6887 if (!enable_pml) {
6888 kvm_x86_ops->slot_enable_log_dirty = NULL;
6889 kvm_x86_ops->slot_disable_log_dirty = NULL;
6890 kvm_x86_ops->flush_log_dirty = NULL;
6891 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6892 }
6893
Yunhong Jiang64672c92016-06-13 14:19:59 -07006894 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6895 u64 vmx_msr;
6896
6897 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6898 cpu_preemption_timer_multi =
6899 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6900 } else {
6901 kvm_x86_ops->set_hv_timer = NULL;
6902 kvm_x86_ops->cancel_hv_timer = NULL;
6903 }
6904
Feng Wubf9f6ac2015-09-18 22:29:55 +08006905 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6906
Ashok Rajc45dcc72016-06-22 14:59:56 +08006907 kvm_mce_cap_supported |= MCG_LMCE_P;
6908
Tiejun Chenf2c76482014-10-28 10:14:47 +08006909 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006910
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006911out:
Radim Krčmář23611332016-09-29 22:41:33 +02006912 for (i = 0; i < VMX_BITMAP_NR; i++)
6913 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006914
6915 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006916}
6917
6918static __exit void hardware_unsetup(void)
6919{
Radim Krčmář23611332016-09-29 22:41:33 +02006920 int i;
6921
6922 for (i = 0; i < VMX_BITMAP_NR; i++)
6923 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006924
Tiejun Chenf2c76482014-10-28 10:14:47 +08006925 free_kvm_area();
6926}
6927
Avi Kivity6aa8b732006-12-10 02:21:36 -08006928/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006929 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6930 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6931 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006932static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006933{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006934 if (ple_gap)
6935 grow_ple_window(vcpu);
6936
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006937 /*
6938 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6939 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6940 * never set PAUSE_EXITING and just set PLE if supported,
6941 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6942 */
6943 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006944 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006945}
6946
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006947static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006948{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006949 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006950}
6951
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006952static int handle_mwait(struct kvm_vcpu *vcpu)
6953{
6954 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6955 return handle_nop(vcpu);
6956}
6957
Jim Mattson45ec3682017-08-23 16:32:04 -07006958static int handle_invalid_op(struct kvm_vcpu *vcpu)
6959{
6960 kvm_queue_exception(vcpu, UD_VECTOR);
6961 return 1;
6962}
6963
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006964static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6965{
6966 return 1;
6967}
6968
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006969static int handle_monitor(struct kvm_vcpu *vcpu)
6970{
6971 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6972 return handle_nop(vcpu);
6973}
6974
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006975/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006976 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6977 * We could reuse a single VMCS for all the L2 guests, but we also want the
6978 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6979 * allows keeping them loaded on the processor, and in the future will allow
6980 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6981 * every entry if they never change.
6982 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6983 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6984 *
6985 * The following functions allocate and free a vmcs02 in this pool.
6986 */
6987
6988/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6989static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6990{
6991 struct vmcs02_list *item;
6992 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6993 if (item->vmptr == vmx->nested.current_vmptr) {
6994 list_move(&item->list, &vmx->nested.vmcs02_pool);
6995 return &item->vmcs02;
6996 }
6997
6998 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6999 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08007000 item = list_last_entry(&vmx->nested.vmcs02_pool,
7001 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007002 item->vmptr = vmx->nested.current_vmptr;
7003 list_move(&item->list, &vmx->nested.vmcs02_pool);
7004 return &item->vmcs02;
7005 }
7006
7007 /* Create a new VMCS */
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01007008 item = kzalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007009 if (!item)
7010 return NULL;
7011 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07007012 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007013 if (!item->vmcs02.vmcs) {
7014 kfree(item);
7015 return NULL;
7016 }
7017 loaded_vmcs_init(&item->vmcs02);
7018 item->vmptr = vmx->nested.current_vmptr;
7019 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
7020 vmx->nested.vmcs02_num++;
7021 return &item->vmcs02;
7022}
7023
7024/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
7025static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
7026{
7027 struct vmcs02_list *item;
7028 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
7029 if (item->vmptr == vmptr) {
7030 free_loaded_vmcs(&item->vmcs02);
7031 list_del(&item->list);
7032 kfree(item);
7033 vmx->nested.vmcs02_num--;
7034 return;
7035 }
7036}
7037
7038/*
7039 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007040 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
7041 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007042 */
7043static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
7044{
7045 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007046
7047 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007048 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007049 /*
7050 * Something will leak if the above WARN triggers. Better than
7051 * a use-after-free.
7052 */
7053 if (vmx->loaded_vmcs == &item->vmcs02)
7054 continue;
7055
7056 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007057 list_del(&item->list);
7058 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007059 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007060 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007061}
7062
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007063/*
7064 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7065 * set the success or error code of an emulated VMX instruction, as specified
7066 * by Vol 2B, VMX Instruction Reference, "Conventions".
7067 */
7068static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7069{
7070 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7071 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7072 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7073}
7074
7075static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7076{
7077 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7078 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7079 X86_EFLAGS_SF | X86_EFLAGS_OF))
7080 | X86_EFLAGS_CF);
7081}
7082
Abel Gordon145c28d2013-04-18 14:36:55 +03007083static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007084 u32 vm_instruction_error)
7085{
7086 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7087 /*
7088 * failValid writes the error number to the current VMCS, which
7089 * can't be done there isn't a current VMCS.
7090 */
7091 nested_vmx_failInvalid(vcpu);
7092 return;
7093 }
7094 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7095 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7096 X86_EFLAGS_SF | X86_EFLAGS_OF))
7097 | X86_EFLAGS_ZF);
7098 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7099 /*
7100 * We don't need to force a shadow sync because
7101 * VM_INSTRUCTION_ERROR is not shadowed
7102 */
7103}
Abel Gordon145c28d2013-04-18 14:36:55 +03007104
Wincy Vanff651cb2014-12-11 08:52:58 +03007105static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7106{
7107 /* TODO: not to reset guest simply here. */
7108 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007109 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007110}
7111
Jan Kiszkaf41245002014-03-07 20:03:13 +01007112static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7113{
7114 struct vcpu_vmx *vmx =
7115 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7116
7117 vmx->nested.preemption_timer_expired = true;
7118 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7119 kvm_vcpu_kick(&vmx->vcpu);
7120
7121 return HRTIMER_NORESTART;
7122}
7123
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007124/*
Bandan Das19677e32014-05-06 02:19:15 -04007125 * Decode the memory-address operand of a vmx instruction, as recorded on an
7126 * exit caused by such an instruction (run by a guest hypervisor).
7127 * On success, returns 0. When the operand is invalid, returns 1 and throws
7128 * #UD or #GP.
7129 */
7130static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7131 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007132 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007133{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007134 gva_t off;
7135 bool exn;
7136 struct kvm_segment s;
7137
Bandan Das19677e32014-05-06 02:19:15 -04007138 /*
7139 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7140 * Execution", on an exit, vmx_instruction_info holds most of the
7141 * addressing components of the operand. Only the displacement part
7142 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7143 * For how an actual address is calculated from all these components,
7144 * refer to Vol. 1, "Operand Addressing".
7145 */
7146 int scaling = vmx_instruction_info & 3;
7147 int addr_size = (vmx_instruction_info >> 7) & 7;
7148 bool is_reg = vmx_instruction_info & (1u << 10);
7149 int seg_reg = (vmx_instruction_info >> 15) & 7;
7150 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7151 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7152 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7153 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7154
7155 if (is_reg) {
7156 kvm_queue_exception(vcpu, UD_VECTOR);
7157 return 1;
7158 }
7159
7160 /* Addr = segment_base + offset */
7161 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007162 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007163 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007164 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007165 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007166 off += kvm_register_read(vcpu, index_reg)<<scaling;
7167 vmx_get_segment(vcpu, &s, seg_reg);
7168 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007169
7170 if (addr_size == 1) /* 32 bit */
7171 *ret &= 0xffffffff;
7172
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007173 /* Checks for #GP/#SS exceptions. */
7174 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007175 if (is_long_mode(vcpu)) {
7176 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7177 * non-canonical form. This is the only check on the memory
7178 * destination for long mode!
7179 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007180 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007181 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007182 /* Protected mode: apply checks for segment validity in the
7183 * following order:
7184 * - segment type check (#GP(0) may be thrown)
7185 * - usability check (#GP(0)/#SS(0))
7186 * - limit check (#GP(0)/#SS(0))
7187 */
7188 if (wr)
7189 /* #GP(0) if the destination operand is located in a
7190 * read-only data segment or any code segment.
7191 */
7192 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7193 else
7194 /* #GP(0) if the source operand is located in an
7195 * execute-only code segment
7196 */
7197 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007198 if (exn) {
7199 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7200 return 1;
7201 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007202 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7203 */
7204 exn = (s.unusable != 0);
7205 /* Protected mode: #GP(0)/#SS(0) if the memory
7206 * operand is outside the segment limit.
7207 */
7208 exn = exn || (off + sizeof(u64) > s.limit);
7209 }
7210 if (exn) {
7211 kvm_queue_exception_e(vcpu,
7212 seg_reg == VCPU_SREG_SS ?
7213 SS_VECTOR : GP_VECTOR,
7214 0);
7215 return 1;
7216 }
7217
Bandan Das19677e32014-05-06 02:19:15 -04007218 return 0;
7219}
7220
Radim Krčmářcbf71272017-05-19 15:48:51 +02007221static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007222{
7223 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007224 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007225
7226 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007227 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007228 return 1;
7229
Radim Krčmářcbf71272017-05-19 15:48:51 +02007230 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7231 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007232 kvm_inject_page_fault(vcpu, &e);
7233 return 1;
7234 }
7235
Bandan Das3573e222014-05-06 02:19:16 -04007236 return 0;
7237}
7238
Jim Mattsone29acc52016-11-30 12:03:43 -08007239static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7240{
7241 struct vcpu_vmx *vmx = to_vmx(vcpu);
7242 struct vmcs *shadow_vmcs;
7243
7244 if (cpu_has_vmx_msr_bitmap()) {
7245 vmx->nested.msr_bitmap =
7246 (unsigned long *)__get_free_page(GFP_KERNEL);
7247 if (!vmx->nested.msr_bitmap)
7248 goto out_msr_bitmap;
7249 }
7250
7251 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7252 if (!vmx->nested.cached_vmcs12)
7253 goto out_cached_vmcs12;
7254
7255 if (enable_shadow_vmcs) {
7256 shadow_vmcs = alloc_vmcs();
7257 if (!shadow_vmcs)
7258 goto out_shadow_vmcs;
7259 /* mark vmcs as shadow */
7260 shadow_vmcs->revision_id |= (1u << 31);
7261 /* init shadow vmcs */
7262 vmcs_clear(shadow_vmcs);
7263 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7264 }
7265
7266 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7267 vmx->nested.vmcs02_num = 0;
7268
7269 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7270 HRTIMER_MODE_REL_PINNED);
7271 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7272
7273 vmx->nested.vmxon = true;
7274 return 0;
7275
7276out_shadow_vmcs:
7277 kfree(vmx->nested.cached_vmcs12);
7278
7279out_cached_vmcs12:
7280 free_page((unsigned long)vmx->nested.msr_bitmap);
7281
7282out_msr_bitmap:
7283 return -ENOMEM;
7284}
7285
Bandan Das3573e222014-05-06 02:19:16 -04007286/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007287 * Emulate the VMXON instruction.
7288 * Currently, we just remember that VMX is active, and do not save or even
7289 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7290 * do not currently need to store anything in that guest-allocated memory
7291 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7292 * argument is different from the VMXON pointer (which the spec says they do).
7293 */
7294static int handle_vmon(struct kvm_vcpu *vcpu)
7295{
Jim Mattsone29acc52016-11-30 12:03:43 -08007296 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007297 gpa_t vmptr;
7298 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007299 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007300 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7301 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007302
Jim Mattson70f3aac2017-04-26 08:53:46 -07007303 /*
7304 * The Intel VMX Instruction Reference lists a bunch of bits that are
7305 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7306 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7307 * Otherwise, we should fail with #UD. But most faulting conditions
7308 * have already been checked by hardware, prior to the VM-exit for
7309 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7310 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007311 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007312 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007313 kvm_queue_exception(vcpu, UD_VECTOR);
7314 return 1;
7315 }
7316
Abel Gordon145c28d2013-04-18 14:36:55 +03007317 if (vmx->nested.vmxon) {
7318 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007319 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007320 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007321
Haozhong Zhang3b840802016-06-22 14:59:54 +08007322 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007323 != VMXON_NEEDED_FEATURES) {
7324 kvm_inject_gp(vcpu, 0);
7325 return 1;
7326 }
7327
Radim Krčmářcbf71272017-05-19 15:48:51 +02007328 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007329 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007330
7331 /*
7332 * SDM 3: 24.11.5
7333 * The first 4 bytes of VMXON region contain the supported
7334 * VMCS revision identifier
7335 *
7336 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7337 * which replaces physical address width with 32
7338 */
7339 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7340 nested_vmx_failInvalid(vcpu);
7341 return kvm_skip_emulated_instruction(vcpu);
7342 }
7343
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007344 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7345 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007346 nested_vmx_failInvalid(vcpu);
7347 return kvm_skip_emulated_instruction(vcpu);
7348 }
7349 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7350 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007351 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007352 nested_vmx_failInvalid(vcpu);
7353 return kvm_skip_emulated_instruction(vcpu);
7354 }
7355 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007356 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007357
7358 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007359 ret = enter_vmx_operation(vcpu);
7360 if (ret)
7361 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007362
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007363 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007364 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007365}
7366
7367/*
7368 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7369 * for running VMX instructions (except VMXON, whose prerequisites are
7370 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007371 * Note that many of these exceptions have priority over VM exits, so they
7372 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007373 */
7374static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7375{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007376 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007377 kvm_queue_exception(vcpu, UD_VECTOR);
7378 return 0;
7379 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007380 return 1;
7381}
7382
David Matlack8ca44e82017-08-01 14:00:39 -07007383static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7384{
7385 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7386 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7387}
7388
Abel Gordone7953d72013-04-18 14:37:55 +03007389static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7390{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007391 if (vmx->nested.current_vmptr == -1ull)
7392 return;
7393
Abel Gordon012f83c2013-04-18 14:39:25 +03007394 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007395 /* copy to memory all shadowed fields in case
7396 they were modified */
7397 copy_shadow_to_vmcs12(vmx);
7398 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007399 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007400 }
Wincy Van705699a2015-02-03 23:58:17 +08007401 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007402
7403 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007404 kvm_vcpu_write_guest_page(&vmx->vcpu,
7405 vmx->nested.current_vmptr >> PAGE_SHIFT,
7406 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007407
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007408 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007409}
7410
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007411/*
7412 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7413 * just stops using VMX.
7414 */
7415static void free_nested(struct vcpu_vmx *vmx)
7416{
7417 if (!vmx->nested.vmxon)
7418 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007419
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007420 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007421 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007422 vmx->nested.posted_intr_nv = -1;
7423 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007424 if (vmx->nested.msr_bitmap) {
7425 free_page((unsigned long)vmx->nested.msr_bitmap);
7426 vmx->nested.msr_bitmap = NULL;
7427 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007428 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007429 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007430 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7431 free_vmcs(vmx->vmcs01.shadow_vmcs);
7432 vmx->vmcs01.shadow_vmcs = NULL;
7433 }
David Matlack4f2777b2016-07-13 17:16:37 -07007434 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007435 /* Unpin physical memory we referred to in current vmcs02 */
7436 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007437 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007438 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007439 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007440 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007441 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007442 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007443 }
Wincy Van705699a2015-02-03 23:58:17 +08007444 if (vmx->nested.pi_desc_page) {
7445 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007446 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007447 vmx->nested.pi_desc_page = NULL;
7448 vmx->nested.pi_desc = NULL;
7449 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007450
7451 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007452}
7453
7454/* Emulate the VMXOFF instruction */
7455static int handle_vmoff(struct kvm_vcpu *vcpu)
7456{
7457 if (!nested_vmx_check_permission(vcpu))
7458 return 1;
7459 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007460 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007461 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007462}
7463
Nadav Har'El27d6c862011-05-25 23:06:59 +03007464/* Emulate the VMCLEAR instruction */
7465static int handle_vmclear(struct kvm_vcpu *vcpu)
7466{
7467 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007468 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007469 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007470
7471 if (!nested_vmx_check_permission(vcpu))
7472 return 1;
7473
Radim Krčmářcbf71272017-05-19 15:48:51 +02007474 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007475 return 1;
7476
Radim Krčmářcbf71272017-05-19 15:48:51 +02007477 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7478 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7479 return kvm_skip_emulated_instruction(vcpu);
7480 }
7481
7482 if (vmptr == vmx->nested.vmxon_ptr) {
7483 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7484 return kvm_skip_emulated_instruction(vcpu);
7485 }
7486
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007487 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007488 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007489
Jim Mattson587d7e722017-03-02 12:41:48 -08007490 kvm_vcpu_write_guest(vcpu,
7491 vmptr + offsetof(struct vmcs12, launch_state),
7492 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007493
7494 nested_free_vmcs02(vmx, vmptr);
7495
Nadav Har'El27d6c862011-05-25 23:06:59 +03007496 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007497 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007498}
7499
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007500static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7501
7502/* Emulate the VMLAUNCH instruction */
7503static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7504{
7505 return nested_vmx_run(vcpu, true);
7506}
7507
7508/* Emulate the VMRESUME instruction */
7509static int handle_vmresume(struct kvm_vcpu *vcpu)
7510{
7511
7512 return nested_vmx_run(vcpu, false);
7513}
7514
Nadav Har'El49f705c2011-05-25 23:08:30 +03007515/*
7516 * Read a vmcs12 field. Since these can have varying lengths and we return
7517 * one type, we chose the biggest type (u64) and zero-extend the return value
7518 * to that size. Note that the caller, handle_vmread, might need to use only
7519 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7520 * 64-bit fields are to be returned).
7521 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007522static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7523 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007524{
7525 short offset = vmcs_field_to_offset(field);
7526 char *p;
7527
7528 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007529 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007530
7531 p = ((char *)(get_vmcs12(vcpu))) + offset;
7532
7533 switch (vmcs_field_type(field)) {
7534 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7535 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007536 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007537 case VMCS_FIELD_TYPE_U16:
7538 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007539 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007540 case VMCS_FIELD_TYPE_U32:
7541 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007542 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007543 case VMCS_FIELD_TYPE_U64:
7544 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007545 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007546 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007547 WARN_ON(1);
7548 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007549 }
7550}
7551
Abel Gordon20b97fe2013-04-18 14:36:25 +03007552
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007553static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7554 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007555 short offset = vmcs_field_to_offset(field);
7556 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7557 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007558 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007559
7560 switch (vmcs_field_type(field)) {
7561 case VMCS_FIELD_TYPE_U16:
7562 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007563 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007564 case VMCS_FIELD_TYPE_U32:
7565 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007566 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007567 case VMCS_FIELD_TYPE_U64:
7568 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007569 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007570 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7571 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007572 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007573 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007574 WARN_ON(1);
7575 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007576 }
7577
7578}
7579
Abel Gordon16f5b902013-04-18 14:38:25 +03007580static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7581{
7582 int i;
7583 unsigned long field;
7584 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007585 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007586 const unsigned long *fields = shadow_read_write_fields;
7587 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007588
Jan Kiszka282da872014-10-08 18:05:39 +02007589 preempt_disable();
7590
Abel Gordon16f5b902013-04-18 14:38:25 +03007591 vmcs_load(shadow_vmcs);
7592
7593 for (i = 0; i < num_fields; i++) {
7594 field = fields[i];
7595 switch (vmcs_field_type(field)) {
7596 case VMCS_FIELD_TYPE_U16:
7597 field_value = vmcs_read16(field);
7598 break;
7599 case VMCS_FIELD_TYPE_U32:
7600 field_value = vmcs_read32(field);
7601 break;
7602 case VMCS_FIELD_TYPE_U64:
7603 field_value = vmcs_read64(field);
7604 break;
7605 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7606 field_value = vmcs_readl(field);
7607 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007608 default:
7609 WARN_ON(1);
7610 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007611 }
7612 vmcs12_write_any(&vmx->vcpu, field, field_value);
7613 }
7614
7615 vmcs_clear(shadow_vmcs);
7616 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007617
7618 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007619}
7620
Abel Gordonc3114422013-04-18 14:38:55 +03007621static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7622{
Mathias Krausec2bae892013-06-26 20:36:21 +02007623 const unsigned long *fields[] = {
7624 shadow_read_write_fields,
7625 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007626 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007627 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007628 max_shadow_read_write_fields,
7629 max_shadow_read_only_fields
7630 };
7631 int i, q;
7632 unsigned long field;
7633 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007634 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007635
7636 vmcs_load(shadow_vmcs);
7637
Mathias Krausec2bae892013-06-26 20:36:21 +02007638 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007639 for (i = 0; i < max_fields[q]; i++) {
7640 field = fields[q][i];
7641 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7642
7643 switch (vmcs_field_type(field)) {
7644 case VMCS_FIELD_TYPE_U16:
7645 vmcs_write16(field, (u16)field_value);
7646 break;
7647 case VMCS_FIELD_TYPE_U32:
7648 vmcs_write32(field, (u32)field_value);
7649 break;
7650 case VMCS_FIELD_TYPE_U64:
7651 vmcs_write64(field, (u64)field_value);
7652 break;
7653 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7654 vmcs_writel(field, (long)field_value);
7655 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007656 default:
7657 WARN_ON(1);
7658 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007659 }
7660 }
7661 }
7662
7663 vmcs_clear(shadow_vmcs);
7664 vmcs_load(vmx->loaded_vmcs->vmcs);
7665}
7666
Nadav Har'El49f705c2011-05-25 23:08:30 +03007667/*
7668 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7669 * used before) all generate the same failure when it is missing.
7670 */
7671static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7672{
7673 struct vcpu_vmx *vmx = to_vmx(vcpu);
7674 if (vmx->nested.current_vmptr == -1ull) {
7675 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007676 return 0;
7677 }
7678 return 1;
7679}
7680
7681static int handle_vmread(struct kvm_vcpu *vcpu)
7682{
7683 unsigned long field;
7684 u64 field_value;
7685 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7686 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7687 gva_t gva = 0;
7688
Kyle Hueyeb277562016-11-29 12:40:39 -08007689 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007690 return 1;
7691
Kyle Huey6affcbe2016-11-29 12:40:40 -08007692 if (!nested_vmx_check_vmcs12(vcpu))
7693 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007694
Nadav Har'El49f705c2011-05-25 23:08:30 +03007695 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007696 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007697 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007698 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007699 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007700 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007701 }
7702 /*
7703 * Now copy part of this value to register or memory, as requested.
7704 * Note that the number of bits actually copied is 32 or 64 depending
7705 * on the guest's mode (32 or 64 bit), not on the given field's length.
7706 */
7707 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007708 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007709 field_value);
7710 } else {
7711 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007712 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007713 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007714 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007715 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7716 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7717 }
7718
7719 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007720 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007721}
7722
7723
7724static int handle_vmwrite(struct kvm_vcpu *vcpu)
7725{
7726 unsigned long field;
7727 gva_t gva;
7728 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7729 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007730 /* The value to write might be 32 or 64 bits, depending on L1's long
7731 * mode, and eventually we need to write that into a field of several
7732 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007733 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007734 * bits into the vmcs12 field.
7735 */
7736 u64 field_value = 0;
7737 struct x86_exception e;
7738
Kyle Hueyeb277562016-11-29 12:40:39 -08007739 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007740 return 1;
7741
Kyle Huey6affcbe2016-11-29 12:40:40 -08007742 if (!nested_vmx_check_vmcs12(vcpu))
7743 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007744
Nadav Har'El49f705c2011-05-25 23:08:30 +03007745 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007746 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007747 (((vmx_instruction_info) >> 3) & 0xf));
7748 else {
7749 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007750 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007751 return 1;
7752 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007753 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007754 kvm_inject_page_fault(vcpu, &e);
7755 return 1;
7756 }
7757 }
7758
7759
Nadav Amit27e6fb52014-06-18 17:19:26 +03007760 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007761 if (vmcs_field_readonly(field)) {
7762 nested_vmx_failValid(vcpu,
7763 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007764 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007765 }
7766
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007767 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007768 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007769 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007770 }
7771
7772 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007773 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007774}
7775
Jim Mattsona8bc2842016-11-30 12:03:44 -08007776static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7777{
7778 vmx->nested.current_vmptr = vmptr;
7779 if (enable_shadow_vmcs) {
7780 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7781 SECONDARY_EXEC_SHADOW_VMCS);
7782 vmcs_write64(VMCS_LINK_POINTER,
7783 __pa(vmx->vmcs01.shadow_vmcs));
7784 vmx->nested.sync_shadow_vmcs = true;
7785 }
7786}
7787
Nadav Har'El63846662011-05-25 23:07:29 +03007788/* Emulate the VMPTRLD instruction */
7789static int handle_vmptrld(struct kvm_vcpu *vcpu)
7790{
7791 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007792 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007793
7794 if (!nested_vmx_check_permission(vcpu))
7795 return 1;
7796
Radim Krčmářcbf71272017-05-19 15:48:51 +02007797 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007798 return 1;
7799
Radim Krčmářcbf71272017-05-19 15:48:51 +02007800 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7801 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7802 return kvm_skip_emulated_instruction(vcpu);
7803 }
7804
7805 if (vmptr == vmx->nested.vmxon_ptr) {
7806 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7807 return kvm_skip_emulated_instruction(vcpu);
7808 }
7809
Nadav Har'El63846662011-05-25 23:07:29 +03007810 if (vmx->nested.current_vmptr != vmptr) {
7811 struct vmcs12 *new_vmcs12;
7812 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007813 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7814 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007815 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007816 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007817 }
7818 new_vmcs12 = kmap(page);
7819 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7820 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007821 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007822 nested_vmx_failValid(vcpu,
7823 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007824 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007825 }
Nadav Har'El63846662011-05-25 23:07:29 +03007826
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007827 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007828 /*
7829 * Load VMCS12 from guest memory since it is not already
7830 * cached.
7831 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007832 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7833 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007834 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007835
Jim Mattsona8bc2842016-11-30 12:03:44 -08007836 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007837 }
7838
7839 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007840 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007841}
7842
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007843/* Emulate the VMPTRST instruction */
7844static int handle_vmptrst(struct kvm_vcpu *vcpu)
7845{
7846 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7847 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7848 gva_t vmcs_gva;
7849 struct x86_exception e;
7850
7851 if (!nested_vmx_check_permission(vcpu))
7852 return 1;
7853
7854 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007855 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007856 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007857 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007858 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7859 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7860 sizeof(u64), &e)) {
7861 kvm_inject_page_fault(vcpu, &e);
7862 return 1;
7863 }
7864 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007865 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007866}
7867
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007868/* Emulate the INVEPT instruction */
7869static int handle_invept(struct kvm_vcpu *vcpu)
7870{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007871 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007872 u32 vmx_instruction_info, types;
7873 unsigned long type;
7874 gva_t gva;
7875 struct x86_exception e;
7876 struct {
7877 u64 eptp, gpa;
7878 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007879
Wincy Vanb9c237b2015-02-03 23:56:30 +08007880 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7881 SECONDARY_EXEC_ENABLE_EPT) ||
7882 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007883 kvm_queue_exception(vcpu, UD_VECTOR);
7884 return 1;
7885 }
7886
7887 if (!nested_vmx_check_permission(vcpu))
7888 return 1;
7889
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007890 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007891 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007892
Wincy Vanb9c237b2015-02-03 23:56:30 +08007893 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007894
Jim Mattson85c856b2016-10-26 08:38:38 -07007895 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007896 nested_vmx_failValid(vcpu,
7897 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007898 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007899 }
7900
7901 /* According to the Intel VMX instruction reference, the memory
7902 * operand is read even if it isn't needed (e.g., for type==global)
7903 */
7904 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007905 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007906 return 1;
7907 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7908 sizeof(operand), &e)) {
7909 kvm_inject_page_fault(vcpu, &e);
7910 return 1;
7911 }
7912
7913 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007914 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007915 /*
7916 * TODO: track mappings and invalidate
7917 * single context requests appropriately
7918 */
7919 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007920 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007921 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007922 nested_vmx_succeed(vcpu);
7923 break;
7924 default:
7925 BUG_ON(1);
7926 break;
7927 }
7928
Kyle Huey6affcbe2016-11-29 12:40:40 -08007929 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007930}
7931
Petr Matouseka642fc32014-09-23 20:22:30 +02007932static int handle_invvpid(struct kvm_vcpu *vcpu)
7933{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007934 struct vcpu_vmx *vmx = to_vmx(vcpu);
7935 u32 vmx_instruction_info;
7936 unsigned long type, types;
7937 gva_t gva;
7938 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007939 struct {
7940 u64 vpid;
7941 u64 gla;
7942 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007943
7944 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7945 SECONDARY_EXEC_ENABLE_VPID) ||
7946 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7947 kvm_queue_exception(vcpu, UD_VECTOR);
7948 return 1;
7949 }
7950
7951 if (!nested_vmx_check_permission(vcpu))
7952 return 1;
7953
7954 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7955 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7956
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007957 types = (vmx->nested.nested_vmx_vpid_caps &
7958 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007959
Jim Mattson85c856b2016-10-26 08:38:38 -07007960 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007961 nested_vmx_failValid(vcpu,
7962 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007963 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007964 }
7965
7966 /* according to the intel vmx instruction reference, the memory
7967 * operand is read even if it isn't needed (e.g., for type==global)
7968 */
7969 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7970 vmx_instruction_info, false, &gva))
7971 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007972 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7973 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007974 kvm_inject_page_fault(vcpu, &e);
7975 return 1;
7976 }
Jim Mattson40352602017-06-28 09:37:37 -07007977 if (operand.vpid >> 16) {
7978 nested_vmx_failValid(vcpu,
7979 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7980 return kvm_skip_emulated_instruction(vcpu);
7981 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007982
7983 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007984 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Yu Zhangfd8cb432017-08-24 20:27:56 +08007985 if (is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07007986 nested_vmx_failValid(vcpu,
7987 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7988 return kvm_skip_emulated_instruction(vcpu);
7989 }
7990 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007991 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007992 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007993 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007994 nested_vmx_failValid(vcpu,
7995 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007996 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007997 }
7998 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007999 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008000 break;
8001 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008002 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008003 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008004 }
8005
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008006 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
8007 nested_vmx_succeed(vcpu);
8008
Kyle Huey6affcbe2016-11-29 12:40:40 -08008009 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02008010}
8011
Kai Huang843e4332015-01-28 10:54:28 +08008012static int handle_pml_full(struct kvm_vcpu *vcpu)
8013{
8014 unsigned long exit_qualification;
8015
8016 trace_kvm_pml_full(vcpu->vcpu_id);
8017
8018 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8019
8020 /*
8021 * PML buffer FULL happened while executing iret from NMI,
8022 * "blocked by NMI" bit has to be set before next VM entry.
8023 */
8024 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01008025 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08008026 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
8027 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8028 GUEST_INTR_STATE_NMI);
8029
8030 /*
8031 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
8032 * here.., and there's no userspace involvement needed for PML.
8033 */
8034 return 1;
8035}
8036
Yunhong Jiang64672c92016-06-13 14:19:59 -07008037static int handle_preemption_timer(struct kvm_vcpu *vcpu)
8038{
8039 kvm_lapic_expired_hv_timer(vcpu);
8040 return 1;
8041}
8042
Bandan Das41ab9372017-08-03 15:54:43 -04008043static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
8044{
8045 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04008046 int maxphyaddr = cpuid_maxphyaddr(vcpu);
8047
8048 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008049 switch (address & VMX_EPTP_MT_MASK) {
8050 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04008051 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
8052 return false;
8053 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008054 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04008055 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
8056 return false;
8057 break;
8058 default:
8059 return false;
8060 }
8061
David Hildenbrandbb97a012017-08-10 23:15:28 +02008062 /* only 4 levels page-walk length are valid */
8063 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008064 return false;
8065
8066 /* Reserved bits should not be set */
8067 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8068 return false;
8069
8070 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008071 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04008072 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
8073 return false;
8074 }
8075
8076 return true;
8077}
8078
8079static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8080 struct vmcs12 *vmcs12)
8081{
8082 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8083 u64 address;
8084 bool accessed_dirty;
8085 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8086
8087 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8088 !nested_cpu_has_ept(vmcs12))
8089 return 1;
8090
8091 if (index >= VMFUNC_EPTP_ENTRIES)
8092 return 1;
8093
8094
8095 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8096 &address, index * 8, 8))
8097 return 1;
8098
David Hildenbrandbb97a012017-08-10 23:15:28 +02008099 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008100
8101 /*
8102 * If the (L2) guest does a vmfunc to the currently
8103 * active ept pointer, we don't have to do anything else
8104 */
8105 if (vmcs12->ept_pointer != address) {
8106 if (!valid_ept_address(vcpu, address))
8107 return 1;
8108
8109 kvm_mmu_unload(vcpu);
8110 mmu->ept_ad = accessed_dirty;
8111 mmu->base_role.ad_disabled = !accessed_dirty;
8112 vmcs12->ept_pointer = address;
8113 /*
8114 * TODO: Check what's the correct approach in case
8115 * mmu reload fails. Currently, we just let the next
8116 * reload potentially fail
8117 */
8118 kvm_mmu_reload(vcpu);
8119 }
8120
8121 return 0;
8122}
8123
Bandan Das2a499e42017-08-03 15:54:41 -04008124static int handle_vmfunc(struct kvm_vcpu *vcpu)
8125{
Bandan Das27c42a12017-08-03 15:54:42 -04008126 struct vcpu_vmx *vmx = to_vmx(vcpu);
8127 struct vmcs12 *vmcs12;
8128 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8129
8130 /*
8131 * VMFUNC is only supported for nested guests, but we always enable the
8132 * secondary control for simplicity; for non-nested mode, fake that we
8133 * didn't by injecting #UD.
8134 */
8135 if (!is_guest_mode(vcpu)) {
8136 kvm_queue_exception(vcpu, UD_VECTOR);
8137 return 1;
8138 }
8139
8140 vmcs12 = get_vmcs12(vcpu);
8141 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8142 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008143
8144 switch (function) {
8145 case 0:
8146 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8147 goto fail;
8148 break;
8149 default:
8150 goto fail;
8151 }
8152 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008153
8154fail:
8155 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8156 vmcs_read32(VM_EXIT_INTR_INFO),
8157 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008158 return 1;
8159}
8160
Nadav Har'El0140cae2011-05-25 23:06:28 +03008161/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008162 * The exit handlers return 1 if the exit was handled fully and guest execution
8163 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8164 * to be done to userspace and return 0.
8165 */
Mathias Krause772e0312012-08-30 01:30:19 +02008166static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008167 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8168 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008169 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008170 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008171 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008172 [EXIT_REASON_CR_ACCESS] = handle_cr,
8173 [EXIT_REASON_DR_ACCESS] = handle_dr,
8174 [EXIT_REASON_CPUID] = handle_cpuid,
8175 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8176 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8177 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8178 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008179 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008180 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008181 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008182 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008183 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008184 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008185 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008186 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008187 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008188 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008189 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008190 [EXIT_REASON_VMOFF] = handle_vmoff,
8191 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008192 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8193 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008194 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008195 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008196 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008197 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008198 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008199 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008200 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8201 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008202 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008203 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008204 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008205 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008206 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008207 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008208 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008209 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008210 [EXIT_REASON_XSAVES] = handle_xsaves,
8211 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008212 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008213 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008214 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008215};
8216
8217static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008218 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008219
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008220static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8221 struct vmcs12 *vmcs12)
8222{
8223 unsigned long exit_qualification;
8224 gpa_t bitmap, last_bitmap;
8225 unsigned int port;
8226 int size;
8227 u8 b;
8228
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008229 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008230 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008231
8232 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8233
8234 port = exit_qualification >> 16;
8235 size = (exit_qualification & 7) + 1;
8236
8237 last_bitmap = (gpa_t)-1;
8238 b = -1;
8239
8240 while (size > 0) {
8241 if (port < 0x8000)
8242 bitmap = vmcs12->io_bitmap_a;
8243 else if (port < 0x10000)
8244 bitmap = vmcs12->io_bitmap_b;
8245 else
Joe Perches1d804d02015-03-30 16:46:09 -07008246 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008247 bitmap += (port & 0x7fff) / 8;
8248
8249 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008250 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008251 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008252 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008253 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008254
8255 port++;
8256 size--;
8257 last_bitmap = bitmap;
8258 }
8259
Joe Perches1d804d02015-03-30 16:46:09 -07008260 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008261}
8262
Nadav Har'El644d7112011-05-25 23:12:35 +03008263/*
8264 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8265 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8266 * disinterest in the current event (read or write a specific MSR) by using an
8267 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8268 */
8269static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8270 struct vmcs12 *vmcs12, u32 exit_reason)
8271{
8272 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8273 gpa_t bitmap;
8274
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008275 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008276 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008277
8278 /*
8279 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8280 * for the four combinations of read/write and low/high MSR numbers.
8281 * First we need to figure out which of the four to use:
8282 */
8283 bitmap = vmcs12->msr_bitmap;
8284 if (exit_reason == EXIT_REASON_MSR_WRITE)
8285 bitmap += 2048;
8286 if (msr_index >= 0xc0000000) {
8287 msr_index -= 0xc0000000;
8288 bitmap += 1024;
8289 }
8290
8291 /* Then read the msr_index'th bit from this bitmap: */
8292 if (msr_index < 1024*8) {
8293 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008294 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008295 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008296 return 1 & (b >> (msr_index & 7));
8297 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008298 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008299}
8300
8301/*
8302 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8303 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8304 * intercept (via guest_host_mask etc.) the current event.
8305 */
8306static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8307 struct vmcs12 *vmcs12)
8308{
8309 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8310 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008311 int reg;
8312 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008313
8314 switch ((exit_qualification >> 4) & 3) {
8315 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008316 reg = (exit_qualification >> 8) & 15;
8317 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008318 switch (cr) {
8319 case 0:
8320 if (vmcs12->cr0_guest_host_mask &
8321 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008322 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008323 break;
8324 case 3:
8325 if ((vmcs12->cr3_target_count >= 1 &&
8326 vmcs12->cr3_target_value0 == val) ||
8327 (vmcs12->cr3_target_count >= 2 &&
8328 vmcs12->cr3_target_value1 == val) ||
8329 (vmcs12->cr3_target_count >= 3 &&
8330 vmcs12->cr3_target_value2 == val) ||
8331 (vmcs12->cr3_target_count >= 4 &&
8332 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008333 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008334 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008335 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008336 break;
8337 case 4:
8338 if (vmcs12->cr4_guest_host_mask &
8339 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008340 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008341 break;
8342 case 8:
8343 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008344 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008345 break;
8346 }
8347 break;
8348 case 2: /* clts */
8349 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8350 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008351 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008352 break;
8353 case 1: /* mov from cr */
8354 switch (cr) {
8355 case 3:
8356 if (vmcs12->cpu_based_vm_exec_control &
8357 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008358 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008359 break;
8360 case 8:
8361 if (vmcs12->cpu_based_vm_exec_control &
8362 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008363 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008364 break;
8365 }
8366 break;
8367 case 3: /* lmsw */
8368 /*
8369 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8370 * cr0. Other attempted changes are ignored, with no exit.
8371 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008372 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008373 if (vmcs12->cr0_guest_host_mask & 0xe &
8374 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008375 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008376 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8377 !(vmcs12->cr0_read_shadow & 0x1) &&
8378 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008379 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008380 break;
8381 }
Joe Perches1d804d02015-03-30 16:46:09 -07008382 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008383}
8384
8385/*
8386 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8387 * should handle it ourselves in L0 (and then continue L2). Only call this
8388 * when in is_guest_mode (L2).
8389 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008390static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008391{
Nadav Har'El644d7112011-05-25 23:12:35 +03008392 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8393 struct vcpu_vmx *vmx = to_vmx(vcpu);
8394 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8395
Jim Mattson4f350c62017-09-14 16:31:44 -07008396 if (vmx->nested.nested_run_pending)
8397 return false;
8398
8399 if (unlikely(vmx->fail)) {
8400 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8401 vmcs_read32(VM_INSTRUCTION_ERROR));
8402 return true;
8403 }
Jan Kiszka542060e2014-01-04 18:47:21 +01008404
David Matlackc9f04402017-08-01 14:00:40 -07008405 /*
8406 * The host physical addresses of some pages of guest memory
8407 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8408 * may write to these pages via their host physical address while
8409 * L2 is running, bypassing any address-translation-based dirty
8410 * tracking (e.g. EPT write protection).
8411 *
8412 * Mark them dirty on every exit from L2 to prevent them from
8413 * getting out of sync with dirty tracking.
8414 */
8415 nested_mark_vmcs12_pages_dirty(vcpu);
8416
Jim Mattson4f350c62017-09-14 16:31:44 -07008417 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8418 vmcs_readl(EXIT_QUALIFICATION),
8419 vmx->idt_vectoring_info,
8420 intr_info,
8421 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8422 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03008423
8424 switch (exit_reason) {
8425 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008426 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008427 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008428 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008429 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008430 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008431 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008432 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008433 else if (is_debug(intr_info) &&
8434 vcpu->guest_debug &
8435 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8436 return false;
8437 else if (is_breakpoint(intr_info) &&
8438 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8439 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008440 return vmcs12->exception_bitmap &
8441 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8442 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008443 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008444 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008445 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008446 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008447 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008448 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008449 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008450 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008451 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008452 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008453 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008454 case EXIT_REASON_HLT:
8455 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8456 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008457 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008458 case EXIT_REASON_INVLPG:
8459 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8460 case EXIT_REASON_RDPMC:
8461 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008462 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008463 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008464 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008465 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008466 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008467 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8468 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8469 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8470 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8471 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8472 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008473 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008474 /*
8475 * VMX instructions trap unconditionally. This allows L1 to
8476 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8477 */
Joe Perches1d804d02015-03-30 16:46:09 -07008478 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008479 case EXIT_REASON_CR_ACCESS:
8480 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8481 case EXIT_REASON_DR_ACCESS:
8482 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8483 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008484 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008485 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8486 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008487 case EXIT_REASON_MSR_READ:
8488 case EXIT_REASON_MSR_WRITE:
8489 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8490 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008491 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008492 case EXIT_REASON_MWAIT_INSTRUCTION:
8493 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008494 case EXIT_REASON_MONITOR_TRAP_FLAG:
8495 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008496 case EXIT_REASON_MONITOR_INSTRUCTION:
8497 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8498 case EXIT_REASON_PAUSE_INSTRUCTION:
8499 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8500 nested_cpu_has2(vmcs12,
8501 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8502 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008503 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008504 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008505 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008506 case EXIT_REASON_APIC_ACCESS:
8507 return nested_cpu_has2(vmcs12,
8508 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008509 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008510 case EXIT_REASON_EOI_INDUCED:
8511 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008512 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008513 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008514 /*
8515 * L0 always deals with the EPT violation. If nested EPT is
8516 * used, and the nested mmu code discovers that the address is
8517 * missing in the guest EPT table (EPT12), the EPT violation
8518 * will be injected with nested_ept_inject_page_fault()
8519 */
Joe Perches1d804d02015-03-30 16:46:09 -07008520 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008521 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008522 /*
8523 * L2 never uses directly L1's EPT, but rather L0's own EPT
8524 * table (shadow on EPT) or a merged EPT table that L0 built
8525 * (EPT on EPT). So any problems with the structure of the
8526 * table is L0's fault.
8527 */
Joe Perches1d804d02015-03-30 16:46:09 -07008528 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008529 case EXIT_REASON_INVPCID:
8530 return
8531 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8532 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008533 case EXIT_REASON_WBINVD:
8534 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8535 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008536 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008537 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8538 /*
8539 * This should never happen, since it is not possible to
8540 * set XSS to a non-zero value---neither in L1 nor in L2.
8541 * If if it were, XSS would have to be checked against
8542 * the XSS exit bitmap in vmcs12.
8543 */
8544 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008545 case EXIT_REASON_PREEMPTION_TIMER:
8546 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008547 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008548 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008549 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008550 case EXIT_REASON_VMFUNC:
8551 /* VM functions are emulated through L2->L0 vmexits. */
8552 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008553 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008554 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008555 }
8556}
8557
Paolo Bonzini7313c692017-07-27 10:31:25 +02008558static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8559{
8560 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8561
8562 /*
8563 * At this point, the exit interruption info in exit_intr_info
8564 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8565 * we need to query the in-kernel LAPIC.
8566 */
8567 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8568 if ((exit_intr_info &
8569 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8570 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8571 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8572 vmcs12->vm_exit_intr_error_code =
8573 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8574 }
8575
8576 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8577 vmcs_readl(EXIT_QUALIFICATION));
8578 return 1;
8579}
8580
Avi Kivity586f9602010-11-18 13:09:54 +02008581static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8582{
8583 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8584 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8585}
8586
Kai Huanga3eaa862015-11-04 13:46:05 +08008587static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008588{
Kai Huanga3eaa862015-11-04 13:46:05 +08008589 if (vmx->pml_pg) {
8590 __free_page(vmx->pml_pg);
8591 vmx->pml_pg = NULL;
8592 }
Kai Huang843e4332015-01-28 10:54:28 +08008593}
8594
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008595static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008596{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008597 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008598 u64 *pml_buf;
8599 u16 pml_idx;
8600
8601 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8602
8603 /* Do nothing if PML buffer is empty */
8604 if (pml_idx == (PML_ENTITY_NUM - 1))
8605 return;
8606
8607 /* PML index always points to next available PML buffer entity */
8608 if (pml_idx >= PML_ENTITY_NUM)
8609 pml_idx = 0;
8610 else
8611 pml_idx++;
8612
8613 pml_buf = page_address(vmx->pml_pg);
8614 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8615 u64 gpa;
8616
8617 gpa = pml_buf[pml_idx];
8618 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008619 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008620 }
8621
8622 /* reset PML index */
8623 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8624}
8625
8626/*
8627 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8628 * Called before reporting dirty_bitmap to userspace.
8629 */
8630static void kvm_flush_pml_buffers(struct kvm *kvm)
8631{
8632 int i;
8633 struct kvm_vcpu *vcpu;
8634 /*
8635 * We only need to kick vcpu out of guest mode here, as PML buffer
8636 * is flushed at beginning of all VMEXITs, and it's obvious that only
8637 * vcpus running in guest are possible to have unflushed GPAs in PML
8638 * buffer.
8639 */
8640 kvm_for_each_vcpu(i, vcpu, kvm)
8641 kvm_vcpu_kick(vcpu);
8642}
8643
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008644static void vmx_dump_sel(char *name, uint32_t sel)
8645{
8646 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008647 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008648 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8649 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8650 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8651}
8652
8653static void vmx_dump_dtsel(char *name, uint32_t limit)
8654{
8655 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8656 name, vmcs_read32(limit),
8657 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8658}
8659
8660static void dump_vmcs(void)
8661{
8662 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8663 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8664 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8665 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8666 u32 secondary_exec_control = 0;
8667 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008668 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008669 int i, n;
8670
8671 if (cpu_has_secondary_exec_ctrls())
8672 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8673
8674 pr_err("*** Guest State ***\n");
8675 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8676 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8677 vmcs_readl(CR0_GUEST_HOST_MASK));
8678 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8679 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8680 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8681 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8682 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8683 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008684 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8685 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8686 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8687 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008688 }
8689 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8690 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8691 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8692 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8693 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8694 vmcs_readl(GUEST_SYSENTER_ESP),
8695 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8696 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8697 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8698 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8699 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8700 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8701 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8702 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8703 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8704 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8705 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8706 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8707 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008708 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8709 efer, vmcs_read64(GUEST_IA32_PAT));
8710 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8711 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008712 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8713 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008714 pr_err("PerfGlobCtl = 0x%016llx\n",
8715 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008716 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008717 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008718 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8719 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8720 vmcs_read32(GUEST_ACTIVITY_STATE));
8721 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8722 pr_err("InterruptStatus = %04x\n",
8723 vmcs_read16(GUEST_INTR_STATUS));
8724
8725 pr_err("*** Host State ***\n");
8726 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8727 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8728 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8729 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8730 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8731 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8732 vmcs_read16(HOST_TR_SELECTOR));
8733 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8734 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8735 vmcs_readl(HOST_TR_BASE));
8736 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8737 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8738 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8739 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8740 vmcs_readl(HOST_CR4));
8741 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8742 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8743 vmcs_read32(HOST_IA32_SYSENTER_CS),
8744 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8745 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008746 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8747 vmcs_read64(HOST_IA32_EFER),
8748 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008749 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008750 pr_err("PerfGlobCtl = 0x%016llx\n",
8751 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008752
8753 pr_err("*** Control State ***\n");
8754 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8755 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8756 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8757 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8758 vmcs_read32(EXCEPTION_BITMAP),
8759 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8760 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8761 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8762 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8763 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8764 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8765 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8766 vmcs_read32(VM_EXIT_INTR_INFO),
8767 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8768 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8769 pr_err(" reason=%08x qualification=%016lx\n",
8770 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8771 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8772 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8773 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008774 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008775 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008776 pr_err("TSC Multiplier = 0x%016llx\n",
8777 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008778 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8779 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8780 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8781 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8782 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008783 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008784 n = vmcs_read32(CR3_TARGET_COUNT);
8785 for (i = 0; i + 1 < n; i += 4)
8786 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8787 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8788 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8789 if (i < n)
8790 pr_err("CR3 target%u=%016lx\n",
8791 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8792 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8793 pr_err("PLE Gap=%08x Window=%08x\n",
8794 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8795 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8796 pr_err("Virtual processor ID = 0x%04x\n",
8797 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8798}
8799
Avi Kivity6aa8b732006-12-10 02:21:36 -08008800/*
8801 * The guest has exited. See if we can fix it or if we need userspace
8802 * assistance.
8803 */
Avi Kivity851ba692009-08-24 11:10:17 +03008804static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008805{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008806 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008807 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008808 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008809
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008810 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8811
Kai Huang843e4332015-01-28 10:54:28 +08008812 /*
8813 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8814 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8815 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8816 * mode as if vcpus is in root mode, the PML buffer must has been
8817 * flushed already.
8818 */
8819 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008820 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008821
Mohammed Gamal80ced182009-09-01 12:48:18 +02008822 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008823 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008824 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008825
Paolo Bonzini7313c692017-07-27 10:31:25 +02008826 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8827 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008828
Mohammed Gamal51207022010-05-31 22:40:54 +03008829 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008830 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008831 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8832 vcpu->run->fail_entry.hardware_entry_failure_reason
8833 = exit_reason;
8834 return 0;
8835 }
8836
Avi Kivity29bd8a72007-09-10 17:27:03 +03008837 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008838 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8839 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008840 = vmcs_read32(VM_INSTRUCTION_ERROR);
8841 return 0;
8842 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008843
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008844 /*
8845 * Note:
8846 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8847 * delivery event since it indicates guest is accessing MMIO.
8848 * The vm-exit can be triggered again after return to guest that
8849 * will cause infinite loop.
8850 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008851 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008852 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008853 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008854 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008855 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8856 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8857 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008858 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008859 vcpu->run->internal.data[0] = vectoring_info;
8860 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008861 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8862 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8863 vcpu->run->internal.ndata++;
8864 vcpu->run->internal.data[3] =
8865 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8866 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008867 return 0;
8868 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008869
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01008870 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01008871 vmx->loaded_vmcs->soft_vnmi_blocked)) {
8872 if (vmx_interrupt_allowed(vcpu)) {
8873 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
8874 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
8875 vcpu->arch.nmi_pending) {
8876 /*
8877 * This CPU don't support us in finding the end of an
8878 * NMI-blocked window if the guest runs with IRQs
8879 * disabled. So we pull the trigger after 1 s of
8880 * futile waiting, but inform the user about this.
8881 */
8882 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8883 "state on VCPU %d after 1 s timeout\n",
8884 __func__, vcpu->vcpu_id);
8885 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
8886 }
8887 }
8888
Avi Kivity6aa8b732006-12-10 02:21:36 -08008889 if (exit_reason < kvm_vmx_max_exit_handlers
8890 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008891 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008892 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008893 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8894 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008895 kvm_queue_exception(vcpu, UD_VECTOR);
8896 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008897 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008898}
8899
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008900static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008901{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008902 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8903
8904 if (is_guest_mode(vcpu) &&
8905 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8906 return;
8907
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008908 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008909 vmcs_write32(TPR_THRESHOLD, 0);
8910 return;
8911 }
8912
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008913 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008914}
8915
Yang Zhang8d146952013-01-25 10:18:50 +08008916static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8917{
8918 u32 sec_exec_control;
8919
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008920 /* Postpone execution until vmcs01 is the current VMCS. */
8921 if (is_guest_mode(vcpu)) {
8922 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8923 return;
8924 }
8925
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008926 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008927 return;
8928
Paolo Bonzini35754c92015-07-29 12:05:37 +02008929 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008930 return;
8931
8932 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8933
8934 if (set) {
8935 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8936 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8937 } else {
8938 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8939 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008940 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008941 }
8942 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8943
8944 vmx_set_msr_bitmap(vcpu);
8945}
8946
Tang Chen38b99172014-09-24 15:57:54 +08008947static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8948{
8949 struct vcpu_vmx *vmx = to_vmx(vcpu);
8950
8951 /*
8952 * Currently we do not handle the nested case where L2 has an
8953 * APIC access page of its own; that page is still pinned.
8954 * Hence, we skip the case where the VCPU is in guest mode _and_
8955 * L1 prepared an APIC access page for L2.
8956 *
8957 * For the case where L1 and L2 share the same APIC access page
8958 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8959 * in the vmcs12), this function will only update either the vmcs01
8960 * or the vmcs02. If the former, the vmcs02 will be updated by
8961 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8962 * the next L2->L1 exit.
8963 */
8964 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008965 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008966 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008967 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008968 vmx_flush_tlb_ept_only(vcpu);
8969 }
Tang Chen38b99172014-09-24 15:57:54 +08008970}
8971
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008972static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008973{
8974 u16 status;
8975 u8 old;
8976
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008977 if (max_isr == -1)
8978 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008979
8980 status = vmcs_read16(GUEST_INTR_STATUS);
8981 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008982 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008983 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008984 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008985 vmcs_write16(GUEST_INTR_STATUS, status);
8986 }
8987}
8988
8989static void vmx_set_rvi(int vector)
8990{
8991 u16 status;
8992 u8 old;
8993
Wei Wang4114c272014-11-05 10:53:43 +08008994 if (vector == -1)
8995 vector = 0;
8996
Yang Zhangc7c9c562013-01-25 10:18:51 +08008997 status = vmcs_read16(GUEST_INTR_STATUS);
8998 old = (u8)status & 0xff;
8999 if ((u8)vector != old) {
9000 status &= ~0xff;
9001 status |= (u8)vector;
9002 vmcs_write16(GUEST_INTR_STATUS, status);
9003 }
9004}
9005
9006static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
9007{
Wanpeng Li963fee12014-07-17 19:03:00 +08009008 if (!is_guest_mode(vcpu)) {
9009 vmx_set_rvi(max_irr);
9010 return;
9011 }
9012
Wei Wang4114c272014-11-05 10:53:43 +08009013 if (max_irr == -1)
9014 return;
9015
Wanpeng Li963fee12014-07-17 19:03:00 +08009016 /*
Wei Wang4114c272014-11-05 10:53:43 +08009017 * In guest mode. If a vmexit is needed, vmx_check_nested_events
9018 * handles it.
9019 */
9020 if (nested_exit_on_intr(vcpu))
9021 return;
9022
9023 /*
9024 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08009025 * is run without virtual interrupt delivery.
9026 */
9027 if (!kvm_event_needs_reinjection(vcpu) &&
9028 vmx_interrupt_allowed(vcpu)) {
9029 kvm_queue_interrupt(vcpu, max_irr, false);
9030 vmx_inject_irq(vcpu);
9031 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08009032}
9033
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009034static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009035{
9036 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009037 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009038
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009039 WARN_ON(!vcpu->arch.apicv_active);
9040 if (pi_test_on(&vmx->pi_desc)) {
9041 pi_clear_on(&vmx->pi_desc);
9042 /*
9043 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
9044 * But on x86 this is just a compiler barrier anyway.
9045 */
9046 smp_mb__after_atomic();
9047 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
9048 } else {
9049 max_irr = kvm_lapic_find_highest_irr(vcpu);
9050 }
9051 vmx_hwapic_irr_update(vcpu, max_irr);
9052 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009053}
9054
Andrey Smetanin63086302015-11-10 15:36:32 +03009055static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009056{
Andrey Smetanind62caab2015-11-10 15:36:33 +03009057 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009058 return;
9059
Yang Zhangc7c9c562013-01-25 10:18:51 +08009060 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
9061 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
9062 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
9063 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
9064}
9065
Paolo Bonzini967235d2016-12-19 14:03:45 +01009066static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
9067{
9068 struct vcpu_vmx *vmx = to_vmx(vcpu);
9069
9070 pi_clear_on(&vmx->pi_desc);
9071 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9072}
9073
Avi Kivity51aa01d2010-07-20 14:31:20 +03009074static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009075{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009076 u32 exit_intr_info = 0;
9077 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009078
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009079 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9080 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009081 return;
9082
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009083 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9084 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9085 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009086
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009087 /* if exit due to PF check for async PF */
9088 if (is_page_fault(exit_intr_info))
9089 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9090
Andi Kleena0861c02009-06-08 17:37:09 +08009091 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009092 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9093 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009094 kvm_machine_check();
9095
Gleb Natapov20f65982009-05-11 13:35:55 +03009096 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009097 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009098 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009099 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009100 kvm_after_handle_nmi(&vmx->vcpu);
9101 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009102}
Gleb Natapov20f65982009-05-11 13:35:55 +03009103
Yang Zhanga547c6d2013-04-11 19:25:10 +08009104static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9105{
9106 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9107
Yang Zhanga547c6d2013-04-11 19:25:10 +08009108 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9109 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9110 unsigned int vector;
9111 unsigned long entry;
9112 gate_desc *desc;
9113 struct vcpu_vmx *vmx = to_vmx(vcpu);
9114#ifdef CONFIG_X86_64
9115 unsigned long tmp;
9116#endif
9117
9118 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9119 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02009120 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009121 asm volatile(
9122#ifdef CONFIG_X86_64
9123 "mov %%" _ASM_SP ", %[sp]\n\t"
9124 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9125 "push $%c[ss]\n\t"
9126 "push %[sp]\n\t"
9127#endif
9128 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009129 __ASM_SIZE(push) " $%c[cs]\n\t"
9130 "call *%[entry]\n\t"
9131 :
9132#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009133 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009134#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05009135 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08009136 :
9137 [entry]"r"(entry),
9138 [ss]"i"(__KERNEL_DS),
9139 [cs]"i"(__KERNEL_CS)
9140 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009141 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009142}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009143STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009144
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009145static bool vmx_has_high_real_mode_segbase(void)
9146{
9147 return enable_unrestricted_guest || emulate_invalid_guest_state;
9148}
9149
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009150static bool vmx_mpx_supported(void)
9151{
9152 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9153 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9154}
9155
Wanpeng Li55412b22014-12-02 19:21:30 +08009156static bool vmx_xsaves_supported(void)
9157{
9158 return vmcs_config.cpu_based_2nd_exec_ctrl &
9159 SECONDARY_EXEC_XSAVES;
9160}
9161
Avi Kivity51aa01d2010-07-20 14:31:20 +03009162static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9163{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009164 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009165 bool unblock_nmi;
9166 u8 vector;
9167 bool idtv_info_valid;
9168
9169 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009170
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009171 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009172 if (vmx->loaded_vmcs->nmi_known_unmasked)
9173 return;
9174 /*
9175 * Can't use vmx->exit_intr_info since we're not sure what
9176 * the exit reason is.
9177 */
9178 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9179 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9180 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9181 /*
9182 * SDM 3: 27.7.1.2 (September 2008)
9183 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9184 * a guest IRET fault.
9185 * SDM 3: 23.2.2 (September 2008)
9186 * Bit 12 is undefined in any of the following cases:
9187 * If the VM exit sets the valid bit in the IDT-vectoring
9188 * information field.
9189 * If the VM exit is due to a double fault.
9190 */
9191 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9192 vector != DF_VECTOR && !idtv_info_valid)
9193 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9194 GUEST_INTR_STATE_NMI);
9195 else
9196 vmx->loaded_vmcs->nmi_known_unmasked =
9197 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9198 & GUEST_INTR_STATE_NMI);
9199 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
9200 vmx->loaded_vmcs->vnmi_blocked_time +=
9201 ktime_to_ns(ktime_sub(ktime_get(),
9202 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03009203}
9204
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009205static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009206 u32 idt_vectoring_info,
9207 int instr_len_field,
9208 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009209{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009210 u8 vector;
9211 int type;
9212 bool idtv_info_valid;
9213
9214 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009215
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009216 vcpu->arch.nmi_injected = false;
9217 kvm_clear_exception_queue(vcpu);
9218 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009219
9220 if (!idtv_info_valid)
9221 return;
9222
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009223 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009224
Avi Kivity668f6122008-07-02 09:28:55 +03009225 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9226 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009227
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009228 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009229 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009230 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009231 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009232 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009233 * Clear bit "block by NMI" before VM entry if a NMI
9234 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009235 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009236 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009237 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009238 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009239 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009240 /* fall through */
9241 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009242 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009243 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009244 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009245 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009246 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009247 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009248 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009249 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009250 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009251 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009252 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009253 break;
9254 default:
9255 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009256 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009257}
9258
Avi Kivity83422e12010-07-20 14:43:23 +03009259static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9260{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009261 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009262 VM_EXIT_INSTRUCTION_LEN,
9263 IDT_VECTORING_ERROR_CODE);
9264}
9265
Avi Kivityb463a6f2010-07-20 15:06:17 +03009266static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9267{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009268 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009269 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9270 VM_ENTRY_INSTRUCTION_LEN,
9271 VM_ENTRY_EXCEPTION_ERROR_CODE);
9272
9273 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9274}
9275
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009276static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9277{
9278 int i, nr_msrs;
9279 struct perf_guest_switch_msr *msrs;
9280
9281 msrs = perf_guest_get_msrs(&nr_msrs);
9282
9283 if (!msrs)
9284 return;
9285
9286 for (i = 0; i < nr_msrs; i++)
9287 if (msrs[i].host == msrs[i].guest)
9288 clear_atomic_switch_msr(vmx, msrs[i].msr);
9289 else
9290 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9291 msrs[i].host);
9292}
9293
Jiang Biao33365e72016-11-03 15:03:37 +08009294static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009295{
9296 struct vcpu_vmx *vmx = to_vmx(vcpu);
9297 u64 tscl;
9298 u32 delta_tsc;
9299
9300 if (vmx->hv_deadline_tsc == -1)
9301 return;
9302
9303 tscl = rdtsc();
9304 if (vmx->hv_deadline_tsc > tscl)
9305 /* sure to be 32 bit only because checked on set_hv_timer */
9306 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9307 cpu_preemption_timer_multi);
9308 else
9309 delta_tsc = 0;
9310
9311 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9312}
9313
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009314static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009315{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009316 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009317 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009318
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009319 /* Record the guest's net vcpu time for enforced NMI injections. */
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009320 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009321 vmx->loaded_vmcs->soft_vnmi_blocked))
9322 vmx->loaded_vmcs->entry_time = ktime_get();
9323
Avi Kivity104f2262010-11-18 13:12:52 +02009324 /* Don't enter VMX if guest state is invalid, let the exit handler
9325 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009326 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009327 return;
9328
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009329 if (vmx->ple_window_dirty) {
9330 vmx->ple_window_dirty = false;
9331 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9332 }
9333
Abel Gordon012f83c2013-04-18 14:39:25 +03009334 if (vmx->nested.sync_shadow_vmcs) {
9335 copy_vmcs12_to_shadow(vmx);
9336 vmx->nested.sync_shadow_vmcs = false;
9337 }
9338
Avi Kivity104f2262010-11-18 13:12:52 +02009339 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9340 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9341 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9342 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9343
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009344 cr3 = __get_current_cr3_fast();
Ladi Prosek44889942017-09-22 07:53:15 +02009345 if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009346 vmcs_writel(HOST_CR3, cr3);
Ladi Prosek44889942017-09-22 07:53:15 +02009347 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009348 }
9349
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009350 cr4 = cr4_read_shadow();
Ladi Prosek44889942017-09-22 07:53:15 +02009351 if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009352 vmcs_writel(HOST_CR4, cr4);
Ladi Prosek44889942017-09-22 07:53:15 +02009353 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009354 }
9355
Avi Kivity104f2262010-11-18 13:12:52 +02009356 /* When single-stepping over STI and MOV SS, we must clear the
9357 * corresponding interruptibility bits in the guest state. Otherwise
9358 * vmentry fails as it then expects bit 14 (BS) in pending debug
9359 * exceptions being set, but that's not correct for the guest debugging
9360 * case. */
9361 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9362 vmx_set_interrupt_shadow(vcpu, 0);
9363
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009364 if (static_cpu_has(X86_FEATURE_PKU) &&
9365 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
9366 vcpu->arch.pkru != vmx->host_pkru)
9367 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009368
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009369 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009370 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009371
Yunhong Jiang64672c92016-06-13 14:19:59 -07009372 vmx_arm_hv_timer(vcpu);
9373
Nadav Har'Eld462b812011-05-24 15:26:10 +03009374 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009375 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009376 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009377 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9378 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9379 "push %%" _ASM_CX " \n\t"
9380 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009381 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009382 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009383 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009384 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009385 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009386 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9387 "mov %%cr2, %%" _ASM_DX " \n\t"
9388 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009389 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009390 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009391 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009392 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009393 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009394 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009395 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9396 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9397 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9398 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9399 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9400 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009401#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009402 "mov %c[r8](%0), %%r8 \n\t"
9403 "mov %c[r9](%0), %%r9 \n\t"
9404 "mov %c[r10](%0), %%r10 \n\t"
9405 "mov %c[r11](%0), %%r11 \n\t"
9406 "mov %c[r12](%0), %%r12 \n\t"
9407 "mov %c[r13](%0), %%r13 \n\t"
9408 "mov %c[r14](%0), %%r14 \n\t"
9409 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009410#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009411 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009412
Avi Kivity6aa8b732006-12-10 02:21:36 -08009413 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009414 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009415 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009416 "jmp 2f \n\t"
9417 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9418 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009419 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009420 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009421 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009422 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9423 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9424 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9425 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9426 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9427 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9428 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009429#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009430 "mov %%r8, %c[r8](%0) \n\t"
9431 "mov %%r9, %c[r9](%0) \n\t"
9432 "mov %%r10, %c[r10](%0) \n\t"
9433 "mov %%r11, %c[r11](%0) \n\t"
9434 "mov %%r12, %c[r12](%0) \n\t"
9435 "mov %%r13, %c[r13](%0) \n\t"
9436 "mov %%r14, %c[r14](%0) \n\t"
9437 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009438#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009439 "mov %%cr2, %%" _ASM_AX " \n\t"
9440 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009441
Avi Kivityb188c81f2012-09-16 15:10:58 +03009442 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009443 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009444 ".pushsection .rodata \n\t"
9445 ".global vmx_return \n\t"
9446 "vmx_return: " _ASM_PTR " 2b \n\t"
9447 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009448 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009449 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009450 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009451 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009452 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9453 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9454 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9455 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9456 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9457 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9458 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009459#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009460 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9461 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9462 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9463 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9464 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9465 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9466 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9467 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009468#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009469 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9470 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009471 : "cc", "memory"
9472#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009473 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009474 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009475#else
9476 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009477#endif
9478 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009479
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009480 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9481 if (debugctlmsr)
9482 update_debugctlmsr(debugctlmsr);
9483
Avi Kivityaa67f602012-08-01 16:48:03 +03009484#ifndef CONFIG_X86_64
9485 /*
9486 * The sysexit path does not restore ds/es, so we must set them to
9487 * a reasonable value ourselves.
9488 *
9489 * We can't defer this to vmx_load_host_state() since that function
9490 * may be executed in interrupt context, which saves and restore segments
9491 * around it, nullifying its effect.
9492 */
9493 loadsegment(ds, __USER_DS);
9494 loadsegment(es, __USER_DS);
9495#endif
9496
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009497 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009498 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009499 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009500 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009501 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009502 vcpu->arch.regs_dirty = 0;
9503
Gleb Natapove0b890d2013-09-25 12:51:33 +03009504 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009505 * eager fpu is enabled if PKEY is supported and CR4 is switched
9506 * back on host, so it is safe to read guest PKRU from current
9507 * XSAVE.
9508 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009509 if (static_cpu_has(X86_FEATURE_PKU) &&
9510 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
9511 vcpu->arch.pkru = __read_pkru();
9512 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009513 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009514 }
9515
9516 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009517 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9518 * we did not inject a still-pending event to L1 now because of
9519 * nested_run_pending, we need to re-enable this bit.
9520 */
9521 if (vmx->nested.nested_run_pending)
9522 kvm_make_request(KVM_REQ_EVENT, vcpu);
9523
9524 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07009525 vmx->idt_vectoring_info = 0;
9526
9527 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
9528 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9529 return;
9530
9531 vmx->loaded_vmcs->launched = 1;
9532 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03009533
Avi Kivity51aa01d2010-07-20 14:31:20 +03009534 vmx_complete_atomic_exit(vmx);
9535 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009536 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009537}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009538STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009539
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009540static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009541{
9542 struct vcpu_vmx *vmx = to_vmx(vcpu);
9543 int cpu;
9544
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009545 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009546 return;
9547
9548 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009549 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009550 vmx_vcpu_put(vcpu);
9551 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009552 put_cpu();
9553}
9554
Jim Mattson2f1fe812016-07-08 15:36:06 -07009555/*
9556 * Ensure that the current vmcs of the logical processor is the
9557 * vmcs01 of the vcpu before calling free_nested().
9558 */
9559static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9560{
9561 struct vcpu_vmx *vmx = to_vmx(vcpu);
9562 int r;
9563
9564 r = vcpu_load(vcpu);
9565 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009566 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009567 free_nested(vmx);
9568 vcpu_put(vcpu);
9569}
9570
Avi Kivity6aa8b732006-12-10 02:21:36 -08009571static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9572{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009573 struct vcpu_vmx *vmx = to_vmx(vcpu);
9574
Kai Huang843e4332015-01-28 10:54:28 +08009575 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009576 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009577 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009578 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009579 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009580 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009581 kfree(vmx->guest_msrs);
9582 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009583 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009584}
9585
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009586static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009587{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009588 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009589 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009590 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009591
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009592 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009593 return ERR_PTR(-ENOMEM);
9594
Wanpeng Li991e7a02015-09-16 17:30:05 +08009595 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009596
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009597 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9598 if (err)
9599 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009600
Peter Feiner4e595162016-07-07 14:49:58 -07009601 err = -ENOMEM;
9602
9603 /*
9604 * If PML is turned on, failure on enabling PML just results in failure
9605 * of creating the vcpu, therefore we can simplify PML logic (by
9606 * avoiding dealing with cases, such as enabling PML partially on vcpus
9607 * for the guest, etc.
9608 */
9609 if (enable_pml) {
9610 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9611 if (!vmx->pml_pg)
9612 goto uninit_vcpu;
9613 }
9614
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009615 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009616 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9617 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009618
Peter Feiner4e595162016-07-07 14:49:58 -07009619 if (!vmx->guest_msrs)
9620 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009621
Nadav Har'Eld462b812011-05-24 15:26:10 +03009622 vmx->loaded_vmcs = &vmx->vmcs01;
9623 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009624 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009625 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009626 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009627 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009628
Avi Kivity15ad7142007-07-11 18:17:21 +03009629 cpu = get_cpu();
9630 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009631 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +02009632 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009633 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009634 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +02009635 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009636 err = alloc_apic_access_page(kvm);
9637 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009638 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009639 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009640
Sheng Yangb927a3c2009-07-21 10:42:48 +08009641 if (enable_ept) {
Tang Chenf51770e2014-09-16 18:41:59 +08009642 err = init_rmode_identity_map(kvm);
9643 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009644 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009645 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009646
Wanpeng Li5c614b32015-10-13 09:18:36 -07009647 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009648 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009649 vmx->nested.vpid02 = allocate_vpid();
9650 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009651
Wincy Van705699a2015-02-03 23:58:17 +08009652 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009653 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009654
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009655 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9656
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02009657 /*
9658 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
9659 * or POSTED_INTR_WAKEUP_VECTOR.
9660 */
9661 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
9662 vmx->pi_desc.sn = 1;
9663
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009664 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009665
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009666free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009667 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009668 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009669free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009670 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009671free_pml:
9672 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009673uninit_vcpu:
9674 kvm_vcpu_uninit(&vmx->vcpu);
9675free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009676 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009677 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009678 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009679}
9680
Yang, Sheng002c7f72007-07-31 14:23:01 +03009681static void __init vmx_check_processor_compat(void *rtn)
9682{
9683 struct vmcs_config vmcs_conf;
9684
9685 *(int *)rtn = 0;
9686 if (setup_vmcs_config(&vmcs_conf) < 0)
9687 *(int *)rtn = -EIO;
9688 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9689 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9690 smp_processor_id());
9691 *(int *)rtn = -EIO;
9692 }
9693}
9694
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009695static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009696{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009697 u8 cache;
9698 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009699
Sheng Yang522c68c2009-04-27 20:35:43 +08009700 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009701 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009702 * 2. EPT with VT-d:
9703 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009704 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009705 * b. VT-d with snooping control feature: snooping control feature of
9706 * VT-d engine can guarantee the cache correctness. Just set it
9707 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009708 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009709 * consistent with host MTRR
9710 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009711 if (is_mmio) {
9712 cache = MTRR_TYPE_UNCACHABLE;
9713 goto exit;
9714 }
9715
9716 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009717 ipat = VMX_EPT_IPAT_BIT;
9718 cache = MTRR_TYPE_WRBACK;
9719 goto exit;
9720 }
9721
9722 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9723 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009724 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009725 cache = MTRR_TYPE_WRBACK;
9726 else
9727 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009728 goto exit;
9729 }
9730
Xiao Guangrongff536042015-06-15 16:55:22 +08009731 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009732
9733exit:
9734 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009735}
9736
Sheng Yang17cc3932010-01-05 19:02:27 +08009737static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009738{
Sheng Yang878403b2010-01-05 19:02:29 +08009739 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9740 return PT_DIRECTORY_LEVEL;
9741 else
9742 /* For shadow and EPT supported 1GB page */
9743 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009744}
9745
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009746static void vmcs_set_secondary_exec_control(u32 new_ctl)
9747{
9748 /*
9749 * These bits in the secondary execution controls field
9750 * are dynamic, the others are mostly based on the hypervisor
9751 * architecture and the guest's CPUID. Do not touch the
9752 * dynamic bits.
9753 */
9754 u32 mask =
9755 SECONDARY_EXEC_SHADOW_VMCS |
9756 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9757 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9758
9759 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9760
9761 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9762 (new_ctl & ~mask) | (cur_ctl & mask));
9763}
9764
David Matlack8322ebb2016-11-29 18:14:09 -08009765/*
9766 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9767 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9768 */
9769static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9770{
9771 struct vcpu_vmx *vmx = to_vmx(vcpu);
9772 struct kvm_cpuid_entry2 *entry;
9773
9774 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9775 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9776
9777#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9778 if (entry && (entry->_reg & (_cpuid_mask))) \
9779 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9780} while (0)
9781
9782 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9783 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9784 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9785 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9786 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9787 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9788 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9789 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9790 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9791 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9792 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9793 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9794 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9795 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9796 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9797
9798 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9799 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9800 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9801 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9802 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9803 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9804 cr4_fixed1_update(bit(11), ecx, bit(2));
9805
9806#undef cr4_fixed1_update
9807}
9808
Sheng Yang0e851882009-12-18 16:48:46 +08009809static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9810{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009811 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009812
Paolo Bonzini80154d72017-08-24 13:55:35 +02009813 if (cpu_has_secondary_exec_ctrls()) {
9814 vmx_compute_secondary_exec_control(vmx);
9815 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009816 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009817
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009818 if (nested_vmx_allowed(vcpu))
9819 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9820 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9821 else
9822 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9823 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009824
9825 if (nested_vmx_allowed(vcpu))
9826 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009827}
9828
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009829static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9830{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009831 if (func == 1 && nested)
9832 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009833}
9834
Yang Zhang25d92082013-08-06 12:00:32 +03009835static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9836 struct x86_exception *fault)
9837{
Jan Kiszka533558b2014-01-04 18:47:20 +01009838 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009839 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009840 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009841 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009842
Bandan Dasc5f983f2017-05-05 15:25:14 -04009843 if (vmx->nested.pml_full) {
9844 exit_reason = EXIT_REASON_PML_FULL;
9845 vmx->nested.pml_full = false;
9846 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9847 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009848 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009849 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009850 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009851
9852 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009853 vmcs12->guest_physical_address = fault->address;
9854}
9855
Peter Feiner995f00a2017-06-30 17:26:32 -07009856static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9857{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009858 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009859}
9860
Nadav Har'El155a97a2013-08-05 11:07:16 +03009861/* Callbacks for nested_ept_init_mmu_context: */
9862
9863static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9864{
9865 /* return the page table to be shadowed - in our case, EPT12 */
9866 return get_vmcs12(vcpu)->ept_pointer;
9867}
9868
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009869static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009870{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009871 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009872 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009873 return 1;
9874
9875 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009876 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009877 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009878 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009879 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009880 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9881 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9882 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9883
9884 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009885 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009886}
9887
9888static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9889{
9890 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9891}
9892
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009893static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9894 u16 error_code)
9895{
9896 bool inequality, bit;
9897
9898 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9899 inequality =
9900 (error_code & vmcs12->page_fault_error_code_mask) !=
9901 vmcs12->page_fault_error_code_match;
9902 return inequality ^ bit;
9903}
9904
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009905static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9906 struct x86_exception *fault)
9907{
9908 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9909
9910 WARN_ON(!is_guest_mode(vcpu));
9911
Wanpeng Li305d0ab2017-09-28 18:16:44 -07009912 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
9913 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009914 vmcs12->vm_exit_intr_error_code = fault->error_code;
9915 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9916 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9917 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9918 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009919 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009920 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009921 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009922}
9923
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009924static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9925 struct vmcs12 *vmcs12);
9926
9927static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009928 struct vmcs12 *vmcs12)
9929{
9930 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009931 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009932 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009933
9934 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009935 /*
9936 * Translate L1 physical address to host physical
9937 * address for vmcs02. Keep the page pinned, so this
9938 * physical address remains valid. We keep a reference
9939 * to it so we can release it later.
9940 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009941 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009942 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009943 vmx->nested.apic_access_page = NULL;
9944 }
9945 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009946 /*
9947 * If translation failed, no matter: This feature asks
9948 * to exit when accessing the given address, and if it
9949 * can never be accessed, this feature won't do
9950 * anything anyway.
9951 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009952 if (!is_error_page(page)) {
9953 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009954 hpa = page_to_phys(vmx->nested.apic_access_page);
9955 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9956 } else {
9957 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9958 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9959 }
9960 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9961 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9962 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9963 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9964 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009965 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009966
9967 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009968 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009969 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009970 vmx->nested.virtual_apic_page = NULL;
9971 }
9972 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009973
9974 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009975 * If translation failed, VM entry will fail because
9976 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9977 * Failing the vm entry is _not_ what the processor
9978 * does but it's basically the only possibility we
9979 * have. We could still enter the guest if CR8 load
9980 * exits are enabled, CR8 store exits are enabled, and
9981 * virtualize APIC access is disabled; in this case
9982 * the processor would never use the TPR shadow and we
9983 * could simply clear the bit from the execution
9984 * control. But such a configuration is useless, so
9985 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009986 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009987 if (!is_error_page(page)) {
9988 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009989 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9990 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9991 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009992 }
9993
Wincy Van705699a2015-02-03 23:58:17 +08009994 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009995 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9996 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009997 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009998 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009999 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010000 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
10001 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010002 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010003 vmx->nested.pi_desc_page = page;
10004 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080010005 vmx->nested.pi_desc =
10006 (struct pi_desc *)((void *)vmx->nested.pi_desc +
10007 (unsigned long)(vmcs12->posted_intr_desc_addr &
10008 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010009 vmcs_write64(POSTED_INTR_DESC_ADDR,
10010 page_to_phys(vmx->nested.pi_desc_page) +
10011 (unsigned long)(vmcs12->posted_intr_desc_addr &
10012 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +080010013 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010014 if (cpu_has_vmx_msr_bitmap() &&
10015 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
10016 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
10017 ;
10018 else
10019 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
10020 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010021}
10022
Jan Kiszkaf41245002014-03-07 20:03:13 +010010023static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
10024{
10025 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
10026 struct vcpu_vmx *vmx = to_vmx(vcpu);
10027
10028 if (vcpu->arch.virtual_tsc_khz == 0)
10029 return;
10030
10031 /* Make sure short timeouts reliably trigger an immediate vmexit.
10032 * hrtimer_start does not guarantee this. */
10033 if (preemption_timeout <= 1) {
10034 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
10035 return;
10036 }
10037
10038 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10039 preemption_timeout *= 1000000;
10040 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
10041 hrtimer_start(&vmx->nested.preemption_timer,
10042 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
10043}
10044
Jim Mattson56a20512017-07-06 16:33:06 -070010045static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
10046 struct vmcs12 *vmcs12)
10047{
10048 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
10049 return 0;
10050
10051 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
10052 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
10053 return -EINVAL;
10054
10055 return 0;
10056}
10057
Wincy Van3af18d92015-02-03 23:49:31 +080010058static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
10059 struct vmcs12 *vmcs12)
10060{
Wincy Van3af18d92015-02-03 23:49:31 +080010061 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
10062 return 0;
10063
Jim Mattson5fa99cb2017-07-06 16:33:07 -070010064 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080010065 return -EINVAL;
10066
10067 return 0;
10068}
10069
Jim Mattson712b12d2017-08-24 13:24:47 -070010070static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
10071 struct vmcs12 *vmcs12)
10072{
10073 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10074 return 0;
10075
10076 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
10077 return -EINVAL;
10078
10079 return 0;
10080}
10081
Wincy Van3af18d92015-02-03 23:49:31 +080010082/*
10083 * Merge L0's and L1's MSR bitmap, return false to indicate that
10084 * we do not use the hardware.
10085 */
10086static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
10087 struct vmcs12 *vmcs12)
10088{
Wincy Van82f0dd42015-02-03 23:57:18 +080010089 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010090 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010091 unsigned long *msr_bitmap_l1;
10092 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +080010093
Radim Krčmářd048c092016-08-08 20:16:22 +020010094 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +080010095 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
10096 return false;
10097
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010098 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10099 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010100 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +020010101 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010102
Radim Krčmářd048c092016-08-08 20:16:22 +020010103 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
10104
Wincy Vanf2b93282015-02-03 23:56:03 +080010105 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +080010106 if (nested_cpu_has_apic_reg_virt(vmcs12))
10107 for (msr = 0x800; msr <= 0x8ff; msr++)
10108 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010109 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +080010110 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +020010111
10112 nested_vmx_disable_intercept_for_msr(
10113 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +080010114 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
10115 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +020010116
Wincy Van608406e2015-02-03 23:57:51 +080010117 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +080010118 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010119 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010120 APIC_BASE_MSR + (APIC_EOI >> 4),
10121 MSR_TYPE_W);
10122 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010123 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010124 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
10125 MSR_TYPE_W);
10126 }
Wincy Van82f0dd42015-02-03 23:57:18 +080010127 }
Wincy Vanf2b93282015-02-03 23:56:03 +080010128 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010129 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010130
10131 return true;
10132}
10133
10134static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
10135 struct vmcs12 *vmcs12)
10136{
Wincy Van82f0dd42015-02-03 23:57:18 +080010137 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080010138 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080010139 !nested_cpu_has_vid(vmcs12) &&
10140 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080010141 return 0;
10142
10143 /*
10144 * If virtualize x2apic mode is enabled,
10145 * virtualize apic access must be disabled.
10146 */
Wincy Van82f0dd42015-02-03 23:57:18 +080010147 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
10148 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080010149 return -EINVAL;
10150
Wincy Van608406e2015-02-03 23:57:51 +080010151 /*
10152 * If virtual interrupt delivery is enabled,
10153 * we must exit on external interrupts.
10154 */
10155 if (nested_cpu_has_vid(vmcs12) &&
10156 !nested_exit_on_intr(vcpu))
10157 return -EINVAL;
10158
Wincy Van705699a2015-02-03 23:58:17 +080010159 /*
10160 * bits 15:8 should be zero in posted_intr_nv,
10161 * the descriptor address has been already checked
10162 * in nested_get_vmcs12_pages.
10163 */
10164 if (nested_cpu_has_posted_intr(vmcs12) &&
10165 (!nested_cpu_has_vid(vmcs12) ||
10166 !nested_exit_intr_ack_set(vcpu) ||
10167 vmcs12->posted_intr_nv & 0xff00))
10168 return -EINVAL;
10169
Wincy Vanf2b93282015-02-03 23:56:03 +080010170 /* tpr shadow is needed by all apicv features. */
10171 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10172 return -EINVAL;
10173
10174 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010175}
10176
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010177static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10178 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010179 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010180{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010181 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010182 u64 count, addr;
10183
10184 if (vmcs12_read_any(vcpu, count_field, &count) ||
10185 vmcs12_read_any(vcpu, addr_field, &addr)) {
10186 WARN_ON(1);
10187 return -EINVAL;
10188 }
10189 if (count == 0)
10190 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010191 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010192 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10193 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010194 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010195 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10196 addr_field, maxphyaddr, count, addr);
10197 return -EINVAL;
10198 }
10199 return 0;
10200}
10201
10202static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10203 struct vmcs12 *vmcs12)
10204{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010205 if (vmcs12->vm_exit_msr_load_count == 0 &&
10206 vmcs12->vm_exit_msr_store_count == 0 &&
10207 vmcs12->vm_entry_msr_load_count == 0)
10208 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010209 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010210 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010211 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010212 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010213 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010214 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010215 return -EINVAL;
10216 return 0;
10217}
10218
Bandan Dasc5f983f2017-05-05 15:25:14 -040010219static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10220 struct vmcs12 *vmcs12)
10221{
10222 u64 address = vmcs12->pml_address;
10223 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10224
10225 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10226 if (!nested_cpu_has_ept(vmcs12) ||
10227 !IS_ALIGNED(address, 4096) ||
10228 address >> maxphyaddr)
10229 return -EINVAL;
10230 }
10231
10232 return 0;
10233}
10234
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010235static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10236 struct vmx_msr_entry *e)
10237{
10238 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010239 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010240 return -EINVAL;
10241 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10242 e->index == MSR_IA32_UCODE_REV)
10243 return -EINVAL;
10244 if (e->reserved != 0)
10245 return -EINVAL;
10246 return 0;
10247}
10248
10249static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10250 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010251{
10252 if (e->index == MSR_FS_BASE ||
10253 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010254 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10255 nested_vmx_msr_check_common(vcpu, e))
10256 return -EINVAL;
10257 return 0;
10258}
10259
10260static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10261 struct vmx_msr_entry *e)
10262{
10263 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10264 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010265 return -EINVAL;
10266 return 0;
10267}
10268
10269/*
10270 * Load guest's/host's msr at nested entry/exit.
10271 * return 0 for success, entry index for failure.
10272 */
10273static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10274{
10275 u32 i;
10276 struct vmx_msr_entry e;
10277 struct msr_data msr;
10278
10279 msr.host_initiated = false;
10280 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010281 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10282 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010283 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010284 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10285 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010286 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010287 }
10288 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010289 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010290 "%s check failed (%u, 0x%x, 0x%x)\n",
10291 __func__, i, e.index, e.reserved);
10292 goto fail;
10293 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010294 msr.index = e.index;
10295 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010296 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010297 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010298 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10299 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010300 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010301 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010302 }
10303 return 0;
10304fail:
10305 return i + 1;
10306}
10307
10308static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10309{
10310 u32 i;
10311 struct vmx_msr_entry e;
10312
10313 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010314 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010315 if (kvm_vcpu_read_guest(vcpu,
10316 gpa + i * sizeof(e),
10317 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010318 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010319 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10320 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010321 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010322 }
10323 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010324 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010325 "%s check failed (%u, 0x%x, 0x%x)\n",
10326 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010327 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010328 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010329 msr_info.host_initiated = false;
10330 msr_info.index = e.index;
10331 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010332 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010333 "%s cannot read MSR (%u, 0x%x)\n",
10334 __func__, i, e.index);
10335 return -EINVAL;
10336 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010337 if (kvm_vcpu_write_guest(vcpu,
10338 gpa + i * sizeof(e) +
10339 offsetof(struct vmx_msr_entry, value),
10340 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010341 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010342 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010343 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010344 return -EINVAL;
10345 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010346 }
10347 return 0;
10348}
10349
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010350static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10351{
10352 unsigned long invalid_mask;
10353
10354 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10355 return (val & invalid_mask) == 0;
10356}
10357
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010358/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010359 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10360 * emulating VM entry into a guest with EPT enabled.
10361 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10362 * is assigned to entry_failure_code on failure.
10363 */
10364static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010365 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010366{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010367 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010368 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010369 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10370 return 1;
10371 }
10372
10373 /*
10374 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10375 * must not be dereferenced.
10376 */
10377 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10378 !nested_ept) {
10379 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10380 *entry_failure_code = ENTRY_FAIL_PDPTE;
10381 return 1;
10382 }
10383 }
10384
10385 vcpu->arch.cr3 = cr3;
10386 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10387 }
10388
10389 kvm_mmu_reset_context(vcpu);
10390 return 0;
10391}
10392
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010393/*
10394 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10395 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010396 * 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 +030010397 * guest in a way that will both be appropriate to L1's requests, and our
10398 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10399 * function also has additional necessary side-effects, like setting various
10400 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010401 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10402 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010403 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010404static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010405 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010406{
10407 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010408 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010409
10410 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10411 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10412 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10413 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10414 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10415 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10416 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10417 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10418 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10419 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10420 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10421 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10422 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10423 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10424 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10425 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10426 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10427 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10428 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10429 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10430 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10431 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10432 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10433 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10434 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10435 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10436 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10437 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10438 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10439 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10440 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10441 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10442 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10443 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10444 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10445 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10446
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010447 if (from_vmentry &&
10448 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010449 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10450 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10451 } else {
10452 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10453 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10454 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010455 if (from_vmentry) {
10456 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10457 vmcs12->vm_entry_intr_info_field);
10458 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10459 vmcs12->vm_entry_exception_error_code);
10460 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10461 vmcs12->vm_entry_instruction_len);
10462 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10463 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010464 vmx->loaded_vmcs->nmi_known_unmasked =
10465 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010466 } else {
10467 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10468 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010469 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010470 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010471 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10472 vmcs12->guest_pending_dbg_exceptions);
10473 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10474 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10475
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010476 if (nested_cpu_has_xsaves(vmcs12))
10477 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010478 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10479
Jan Kiszkaf41245002014-03-07 20:03:13 +010010480 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010481
Paolo Bonzini9314006db2016-07-06 13:23:51 +020010482 /* Preemption timer setting is only taken from vmcs01. */
10483 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10484 exec_control |= vmcs_config.pin_based_exec_ctrl;
10485 if (vmx->hv_deadline_tsc == -1)
10486 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10487
10488 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010489 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010490 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10491 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010492 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010493 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010494 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010495 }
Wincy Van705699a2015-02-03 23:58:17 +080010496
Jan Kiszkaf41245002014-03-07 20:03:13 +010010497 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010498
Jan Kiszkaf41245002014-03-07 20:03:13 +010010499 vmx->nested.preemption_timer_expired = false;
10500 if (nested_cpu_has_preemption_timer(vmcs12))
10501 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010502
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010503 /*
10504 * Whether page-faults are trapped is determined by a combination of
10505 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10506 * If enable_ept, L0 doesn't care about page faults and we should
10507 * set all of these to L1's desires. However, if !enable_ept, L0 does
10508 * care about (at least some) page faults, and because it is not easy
10509 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10510 * to exit on each and every L2 page fault. This is done by setting
10511 * MASK=MATCH=0 and (see below) EB.PF=1.
10512 * Note that below we don't need special code to set EB.PF beyond the
10513 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10514 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10515 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010516 */
10517 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10518 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10519 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10520 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10521
10522 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020010523 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080010524
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010525 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010526 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010527 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010528 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020010529 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010530 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010531 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10532 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010533 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010534 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10535 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10536 ~SECONDARY_EXEC_ENABLE_PML;
10537 exec_control |= vmcs12_exec_ctrl;
10538 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010539
Bandan Das27c42a12017-08-03 15:54:42 -040010540 /* All VMFUNCs are currently emulated through L0 vmexits. */
10541 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10542 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10543
Wincy Van608406e2015-02-03 23:57:51 +080010544 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10545 vmcs_write64(EOI_EXIT_BITMAP0,
10546 vmcs12->eoi_exit_bitmap0);
10547 vmcs_write64(EOI_EXIT_BITMAP1,
10548 vmcs12->eoi_exit_bitmap1);
10549 vmcs_write64(EOI_EXIT_BITMAP2,
10550 vmcs12->eoi_exit_bitmap2);
10551 vmcs_write64(EOI_EXIT_BITMAP3,
10552 vmcs12->eoi_exit_bitmap3);
10553 vmcs_write16(GUEST_INTR_STATUS,
10554 vmcs12->guest_intr_status);
10555 }
10556
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010557 /*
10558 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10559 * nested_get_vmcs12_pages will either fix it up or
10560 * remove the VM execution control.
10561 */
10562 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10563 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10564
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010565 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10566 }
10567
10568
10569 /*
10570 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10571 * Some constant fields are set here by vmx_set_constant_host_state().
10572 * Other fields are different per CPU, and will be set later when
10573 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10574 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010575 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010576
10577 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010578 * Set the MSR load/store lists to match L0's settings.
10579 */
10580 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10581 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10582 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10583 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10584 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10585
10586 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010587 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10588 * entry, but only if the current (host) sp changed from the value
10589 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10590 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10591 * here we just force the write to happen on entry.
10592 */
10593 vmx->host_rsp = 0;
10594
10595 exec_control = vmx_exec_control(vmx); /* L0's desires */
10596 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10597 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10598 exec_control &= ~CPU_BASED_TPR_SHADOW;
10599 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010600
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010601 /*
10602 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10603 * nested_get_vmcs12_pages can't fix it up, the illegal value
10604 * will result in a VM entry failure.
10605 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010606 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010607 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010608 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070010609 } else {
10610#ifdef CONFIG_X86_64
10611 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
10612 CPU_BASED_CR8_STORE_EXITING;
10613#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010614 }
10615
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010616 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010617 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010618 * Rather, exit every time.
10619 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010620 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10621 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10622
10623 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10624
10625 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10626 * bitwise-or of what L1 wants to trap for L2, and what we want to
10627 * trap. Note that CR0.TS also needs updating - we do this later.
10628 */
10629 update_exception_bitmap(vcpu);
10630 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10631 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10632
Nadav Har'El8049d652013-08-05 11:07:06 +030010633 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10634 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10635 * bits are further modified by vmx_set_efer() below.
10636 */
Jan Kiszkaf41245002014-03-07 20:03:13 +010010637 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010638
10639 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10640 * emulated by vmx_set_efer(), below.
10641 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010642 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010643 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10644 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010645 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10646
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010647 if (from_vmentry &&
10648 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010649 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010650 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010651 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010652 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010653 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010654
10655 set_cr4_guest_host_mask(vmx);
10656
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010657 if (from_vmentry &&
10658 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010659 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10660
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010661 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10662 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010663 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010664 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010665 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010666 if (kvm_has_tsc_control)
10667 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010668
10669 if (enable_vpid) {
10670 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010671 * There is no direct mapping between vpid02 and vpid12, the
10672 * vpid02 is per-vCPU for L0 and reused while the value of
10673 * vpid12 is changed w/ one invvpid during nested vmentry.
10674 * The vpid12 is allocated by L1 for L2, so it will not
10675 * influence global bitmap(for vpid01 and vpid02 allocation)
10676 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010677 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010678 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10679 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10680 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10681 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10682 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10683 }
10684 } else {
10685 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10686 vmx_flush_tlb(vcpu);
10687 }
10688
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010689 }
10690
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010691 if (enable_pml) {
10692 /*
10693 * Conceptually we want to copy the PML address and index from
10694 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10695 * since we always flush the log on each vmexit, this happens
10696 * to be equivalent to simply resetting the fields in vmcs02.
10697 */
10698 ASSERT(vmx->pml_pg);
10699 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10700 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10701 }
10702
Nadav Har'El155a97a2013-08-05 11:07:16 +030010703 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010704 if (nested_ept_init_mmu_context(vcpu)) {
10705 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10706 return 1;
10707 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010708 } else if (nested_cpu_has2(vmcs12,
10709 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10710 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010711 }
10712
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010713 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010714 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10715 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010716 * The CR0_READ_SHADOW is what L2 should have expected to read given
10717 * the specifications by L1; It's not enough to take
10718 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10719 * have more bits than L1 expected.
10720 */
10721 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10722 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10723
10724 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10725 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10726
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010727 if (from_vmentry &&
10728 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010729 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10730 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10731 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10732 else
10733 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10734 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10735 vmx_set_efer(vcpu, vcpu->arch.efer);
10736
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010737 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010738 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010739 entry_failure_code))
10740 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010741
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010742 if (!enable_ept)
10743 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10744
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010745 /*
10746 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10747 */
10748 if (enable_ept) {
10749 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10750 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10751 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10752 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10753 }
10754
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010755 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10756 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010757 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010758}
10759
Jim Mattsonca0bde22016-11-30 12:03:46 -080010760static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10761{
10762 struct vcpu_vmx *vmx = to_vmx(vcpu);
10763
10764 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10765 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10766 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10767
Jim Mattson56a20512017-07-06 16:33:06 -070010768 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10769 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10770
Jim Mattsonca0bde22016-11-30 12:03:46 -080010771 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10772 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10773
Jim Mattson712b12d2017-08-24 13:24:47 -070010774 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
10775 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10776
Jim Mattsonca0bde22016-11-30 12:03:46 -080010777 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10778 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10779
10780 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10781 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10782
Bandan Dasc5f983f2017-05-05 15:25:14 -040010783 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10784 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10785
Jim Mattsonca0bde22016-11-30 12:03:46 -080010786 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10787 vmx->nested.nested_vmx_procbased_ctls_low,
10788 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010789 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10790 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10791 vmx->nested.nested_vmx_secondary_ctls_low,
10792 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010793 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10794 vmx->nested.nested_vmx_pinbased_ctls_low,
10795 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10796 !vmx_control_verify(vmcs12->vm_exit_controls,
10797 vmx->nested.nested_vmx_exit_ctls_low,
10798 vmx->nested.nested_vmx_exit_ctls_high) ||
10799 !vmx_control_verify(vmcs12->vm_entry_controls,
10800 vmx->nested.nested_vmx_entry_ctls_low,
10801 vmx->nested.nested_vmx_entry_ctls_high))
10802 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10803
Bandan Das41ab9372017-08-03 15:54:43 -040010804 if (nested_cpu_has_vmfunc(vmcs12)) {
10805 if (vmcs12->vm_function_control &
10806 ~vmx->nested.nested_vmx_vmfunc_controls)
10807 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10808
10809 if (nested_cpu_has_eptp_switching(vmcs12)) {
10810 if (!nested_cpu_has_ept(vmcs12) ||
10811 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10812 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10813 }
10814 }
Bandan Das27c42a12017-08-03 15:54:42 -040010815
Jim Mattsonc7c2c7092017-05-05 11:28:09 -070010816 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10817 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10818
Jim Mattsonca0bde22016-11-30 12:03:46 -080010819 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10820 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10821 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10822 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10823
10824 return 0;
10825}
10826
10827static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10828 u32 *exit_qual)
10829{
10830 bool ia32e;
10831
10832 *exit_qual = ENTRY_FAIL_DEFAULT;
10833
10834 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10835 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10836 return 1;
10837
10838 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10839 vmcs12->vmcs_link_pointer != -1ull) {
10840 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10841 return 1;
10842 }
10843
10844 /*
10845 * If the load IA32_EFER VM-entry control is 1, the following checks
10846 * are performed on the field for the IA32_EFER MSR:
10847 * - Bits reserved in the IA32_EFER MSR must be 0.
10848 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10849 * the IA-32e mode guest VM-exit control. It must also be identical
10850 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10851 * CR0.PG) is 1.
10852 */
10853 if (to_vmx(vcpu)->nested.nested_run_pending &&
10854 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10855 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10856 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10857 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10858 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10859 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10860 return 1;
10861 }
10862
10863 /*
10864 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10865 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10866 * the values of the LMA and LME bits in the field must each be that of
10867 * the host address-space size VM-exit control.
10868 */
10869 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10870 ia32e = (vmcs12->vm_exit_controls &
10871 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10872 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10873 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10874 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10875 return 1;
10876 }
10877
10878 return 0;
10879}
10880
Jim Mattson858e25c2016-11-30 12:03:47 -080010881static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10882{
10883 struct vcpu_vmx *vmx = to_vmx(vcpu);
10884 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10885 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010886 u32 msr_entry_idx;
10887 u32 exit_qual;
10888
10889 vmcs02 = nested_get_current_vmcs02(vmx);
10890 if (!vmcs02)
10891 return -ENOMEM;
10892
10893 enter_guest_mode(vcpu);
10894
10895 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10896 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10897
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010898 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010899 vmx_segment_cache_clear(vmx);
10900
10901 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10902 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010903 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010904 nested_vmx_entry_failure(vcpu, vmcs12,
10905 EXIT_REASON_INVALID_STATE, exit_qual);
10906 return 1;
10907 }
10908
10909 nested_get_vmcs12_pages(vcpu, vmcs12);
10910
10911 msr_entry_idx = nested_vmx_load_msr(vcpu,
10912 vmcs12->vm_entry_msr_load_addr,
10913 vmcs12->vm_entry_msr_load_count);
10914 if (msr_entry_idx) {
10915 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010916 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010917 nested_vmx_entry_failure(vcpu, vmcs12,
10918 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10919 return 1;
10920 }
10921
Jim Mattson858e25c2016-11-30 12:03:47 -080010922 /*
10923 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10924 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10925 * returned as far as L1 is concerned. It will only return (and set
10926 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10927 */
10928 return 0;
10929}
10930
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010931/*
10932 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10933 * for running an L2 nested guest.
10934 */
10935static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10936{
10937 struct vmcs12 *vmcs12;
10938 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010939 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010940 u32 exit_qual;
10941 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010942
Kyle Hueyeb277562016-11-29 12:40:39 -080010943 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010944 return 1;
10945
Kyle Hueyeb277562016-11-29 12:40:39 -080010946 if (!nested_vmx_check_vmcs12(vcpu))
10947 goto out;
10948
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010949 vmcs12 = get_vmcs12(vcpu);
10950
Abel Gordon012f83c2013-04-18 14:39:25 +030010951 if (enable_shadow_vmcs)
10952 copy_shadow_to_vmcs12(vmx);
10953
Nadav Har'El7c177932011-05-25 23:12:04 +030010954 /*
10955 * The nested entry process starts with enforcing various prerequisites
10956 * on vmcs12 as required by the Intel SDM, and act appropriately when
10957 * they fail: As the SDM explains, some conditions should cause the
10958 * instruction to fail, while others will cause the instruction to seem
10959 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10960 * To speed up the normal (success) code path, we should avoid checking
10961 * for misconfigurations which will anyway be caught by the processor
10962 * when using the merged vmcs02.
10963 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010964 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10965 nested_vmx_failValid(vcpu,
10966 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10967 goto out;
10968 }
10969
Nadav Har'El7c177932011-05-25 23:12:04 +030010970 if (vmcs12->launch_state == launch) {
10971 nested_vmx_failValid(vcpu,
10972 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10973 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010974 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010975 }
10976
Jim Mattsonca0bde22016-11-30 12:03:46 -080010977 ret = check_vmentry_prereqs(vcpu, vmcs12);
10978 if (ret) {
10979 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010980 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010981 }
10982
Nadav Har'El7c177932011-05-25 23:12:04 +030010983 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010984 * After this point, the trap flag no longer triggers a singlestep trap
10985 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10986 * This is not 100% correct; for performance reasons, we delegate most
10987 * of the checks on host state to the processor. If those fail,
10988 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010989 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010990 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010991
Jim Mattsonca0bde22016-11-30 12:03:46 -080010992 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10993 if (ret) {
10994 nested_vmx_entry_failure(vcpu, vmcs12,
10995 EXIT_REASON_INVALID_STATE, exit_qual);
10996 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010997 }
10998
10999 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030011000 * We're finally done with prerequisite checking, and can start with
11001 * the nested entry.
11002 */
11003
Jim Mattson858e25c2016-11-30 12:03:47 -080011004 ret = enter_vmx_non_root_mode(vcpu, true);
11005 if (ret)
11006 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030011007
Jan Kiszka6dfacad2013-12-04 08:58:54 +010011008 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060011009 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010011010
Jan Kiszka7af40ad32014-01-04 18:47:23 +010011011 vmx->nested.nested_run_pending = 1;
11012
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011013 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080011014
11015out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080011016 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011017}
11018
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011019/*
11020 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
11021 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
11022 * This function returns the new value we should put in vmcs12.guest_cr0.
11023 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
11024 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
11025 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
11026 * didn't trap the bit, because if L1 did, so would L0).
11027 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
11028 * been modified by L2, and L1 knows it. So just leave the old value of
11029 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
11030 * isn't relevant, because if L0 traps this bit it can set it to anything.
11031 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
11032 * changed these bits, and therefore they need to be updated, but L0
11033 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
11034 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
11035 */
11036static inline unsigned long
11037vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11038{
11039 return
11040 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
11041 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
11042 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
11043 vcpu->arch.cr0_guest_owned_bits));
11044}
11045
11046static inline unsigned long
11047vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11048{
11049 return
11050 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
11051 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
11052 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
11053 vcpu->arch.cr4_guest_owned_bits));
11054}
11055
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011056static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
11057 struct vmcs12 *vmcs12)
11058{
11059 u32 idt_vectoring;
11060 unsigned int nr;
11061
Wanpeng Li664f8e22017-08-24 03:35:09 -070011062 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011063 nr = vcpu->arch.exception.nr;
11064 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11065
11066 if (kvm_exception_is_soft(nr)) {
11067 vmcs12->vm_exit_instruction_len =
11068 vcpu->arch.event_exit_inst_len;
11069 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
11070 } else
11071 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
11072
11073 if (vcpu->arch.exception.has_error_code) {
11074 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
11075 vmcs12->idt_vectoring_error_code =
11076 vcpu->arch.exception.error_code;
11077 }
11078
11079 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010011080 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011081 vmcs12->idt_vectoring_info_field =
11082 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
11083 } else if (vcpu->arch.interrupt.pending) {
11084 nr = vcpu->arch.interrupt.nr;
11085 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11086
11087 if (vcpu->arch.interrupt.soft) {
11088 idt_vectoring |= INTR_TYPE_SOFT_INTR;
11089 vmcs12->vm_entry_instruction_len =
11090 vcpu->arch.event_exit_inst_len;
11091 } else
11092 idt_vectoring |= INTR_TYPE_EXT_INTR;
11093
11094 vmcs12->idt_vectoring_info_field = idt_vectoring;
11095 }
11096}
11097
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011098static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
11099{
11100 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011101 unsigned long exit_qual;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011102
Wanpeng Li274bba52017-08-24 03:35:08 -070011103 if (kvm_event_needs_reinjection(vcpu))
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011104 return -EBUSY;
11105
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011106 if (vcpu->arch.exception.pending &&
11107 nested_vmx_check_exception(vcpu, &exit_qual)) {
11108 if (vmx->nested.nested_run_pending)
11109 return -EBUSY;
11110 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
11111 vcpu->arch.exception.pending = false;
11112 return 0;
11113 }
11114
Jan Kiszkaf41245002014-03-07 20:03:13 +010011115 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
11116 vmx->nested.preemption_timer_expired) {
11117 if (vmx->nested.nested_run_pending)
11118 return -EBUSY;
11119 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
11120 return 0;
11121 }
11122
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011123 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011124 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011125 return -EBUSY;
11126 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11127 NMI_VECTOR | INTR_TYPE_NMI_INTR |
11128 INTR_INFO_VALID_MASK, 0);
11129 /*
11130 * The NMI-triggered VM exit counts as injection:
11131 * clear this one and block further NMIs.
11132 */
11133 vcpu->arch.nmi_pending = 0;
11134 vmx_set_nmi_mask(vcpu, true);
11135 return 0;
11136 }
11137
11138 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
11139 nested_exit_on_intr(vcpu)) {
11140 if (vmx->nested.nested_run_pending)
11141 return -EBUSY;
11142 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080011143 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011144 }
11145
David Hildenbrand6342c502017-01-25 11:58:58 +010011146 vmx_complete_nested_posted_interrupt(vcpu);
11147 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011148}
11149
Jan Kiszkaf41245002014-03-07 20:03:13 +010011150static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
11151{
11152 ktime_t remaining =
11153 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
11154 u64 value;
11155
11156 if (ktime_to_ns(remaining) <= 0)
11157 return 0;
11158
11159 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
11160 do_div(value, 1000000);
11161 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11162}
11163
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011164/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011165 * Update the guest state fields of vmcs12 to reflect changes that
11166 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
11167 * VM-entry controls is also updated, since this is really a guest
11168 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011169 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011170static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011171{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011172 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11173 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11174
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011175 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11176 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11177 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11178
11179 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11180 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11181 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11182 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11183 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11184 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11185 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11186 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11187 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11188 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11189 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11190 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11191 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11192 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11193 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11194 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11195 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11196 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11197 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11198 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11199 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11200 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11201 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11202 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11203 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11204 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11205 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11206 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11207 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11208 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11209 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11210 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11211 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11212 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11213 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11214 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11215
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011216 vmcs12->guest_interruptibility_info =
11217 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11218 vmcs12->guest_pending_dbg_exceptions =
11219 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011220 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11221 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11222 else
11223 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011224
Jan Kiszkaf41245002014-03-07 20:03:13 +010011225 if (nested_cpu_has_preemption_timer(vmcs12)) {
11226 if (vmcs12->vm_exit_controls &
11227 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11228 vmcs12->vmx_preemption_timer_value =
11229 vmx_get_preemption_timer_value(vcpu);
11230 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11231 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011232
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011233 /*
11234 * In some cases (usually, nested EPT), L2 is allowed to change its
11235 * own CR3 without exiting. If it has changed it, we must keep it.
11236 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11237 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11238 *
11239 * Additionally, restore L2's PDPTR to vmcs12.
11240 */
11241 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011242 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011243 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11244 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11245 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11246 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11247 }
11248
Jim Mattsond281e132017-06-01 12:44:46 -070011249 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011250
Wincy Van608406e2015-02-03 23:57:51 +080011251 if (nested_cpu_has_vid(vmcs12))
11252 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11253
Jan Kiszkac18911a2013-03-13 16:06:41 +010011254 vmcs12->vm_entry_controls =
11255 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011256 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011257
Jan Kiszka2996fca2014-06-16 13:59:43 +020011258 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11259 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11260 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11261 }
11262
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011263 /* TODO: These cannot have changed unless we have MSR bitmaps and
11264 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011265 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011266 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011267 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11268 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011269 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11270 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11271 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011272 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011273 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011274}
11275
11276/*
11277 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11278 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11279 * and this function updates it to reflect the changes to the guest state while
11280 * L2 was running (and perhaps made some exits which were handled directly by L0
11281 * without going back to L1), and to reflect the exit reason.
11282 * Note that we do not have to copy here all VMCS fields, just those that
11283 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11284 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11285 * which already writes to vmcs12 directly.
11286 */
11287static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11288 u32 exit_reason, u32 exit_intr_info,
11289 unsigned long exit_qualification)
11290{
11291 /* update guest state fields: */
11292 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011293
11294 /* update exit information fields: */
11295
Jan Kiszka533558b2014-01-04 18:47:20 +010011296 vmcs12->vm_exit_reason = exit_reason;
11297 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011298 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011299
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011300 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011301 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11302 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11303
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011304 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011305 vmcs12->launch_state = 1;
11306
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011307 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11308 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011309 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011310
11311 /*
11312 * Transfer the event that L0 or L1 may wanted to inject into
11313 * L2 to IDT_VECTORING_INFO_FIELD.
11314 */
11315 vmcs12_save_pending_event(vcpu, vmcs12);
11316 }
11317
11318 /*
11319 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11320 * preserved above and would only end up incorrectly in L1.
11321 */
11322 vcpu->arch.nmi_injected = false;
11323 kvm_clear_exception_queue(vcpu);
11324 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011325}
11326
11327/*
11328 * A part of what we need to when the nested L2 guest exits and we want to
11329 * run its L1 parent, is to reset L1's guest state to the host state specified
11330 * in vmcs12.
11331 * This function is to be called not only on normal nested exit, but also on
11332 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11333 * Failures During or After Loading Guest State").
11334 * This function should be called when the active VMCS is L1's (vmcs01).
11335 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011336static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11337 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011338{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011339 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011340 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011341
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011342 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11343 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011344 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011345 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11346 else
11347 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11348 vmx_set_efer(vcpu, vcpu->arch.efer);
11349
11350 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11351 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011352 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011353 /*
11354 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011355 * actually changed, because vmx_set_cr0 refers to efer set above.
11356 *
11357 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11358 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011359 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011360 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020011361 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011362
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011363 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011364 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080011365 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011366
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011367 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011368
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011369 /*
11370 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11371 * couldn't have changed.
11372 */
11373 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11374 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011375
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011376 if (!enable_ept)
11377 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11378
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011379 if (enable_vpid) {
11380 /*
11381 * Trivially support vpid by letting L2s share their parent
11382 * L1's vpid. TODO: move to a more elaborate solution, giving
11383 * each L2 its own vpid and exposing the vpid feature to L1.
11384 */
11385 vmx_flush_tlb(vcpu);
11386 }
Wincy Van06a55242017-04-28 13:13:59 +080011387 /* Restore posted intr vector. */
11388 if (nested_cpu_has_posted_intr(vmcs12))
11389 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011390
11391 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11392 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11393 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11394 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11395 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020011396 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
11397 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011398
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011399 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11400 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11401 vmcs_write64(GUEST_BNDCFGS, 0);
11402
Jan Kiszka44811c02013-08-04 17:17:27 +020011403 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011404 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011405 vcpu->arch.pat = vmcs12->host_ia32_pat;
11406 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011407 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11408 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11409 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011410
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011411 /* Set L1 segment info according to Intel SDM
11412 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11413 seg = (struct kvm_segment) {
11414 .base = 0,
11415 .limit = 0xFFFFFFFF,
11416 .selector = vmcs12->host_cs_selector,
11417 .type = 11,
11418 .present = 1,
11419 .s = 1,
11420 .g = 1
11421 };
11422 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11423 seg.l = 1;
11424 else
11425 seg.db = 1;
11426 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11427 seg = (struct kvm_segment) {
11428 .base = 0,
11429 .limit = 0xFFFFFFFF,
11430 .type = 3,
11431 .present = 1,
11432 .s = 1,
11433 .db = 1,
11434 .g = 1
11435 };
11436 seg.selector = vmcs12->host_ds_selector;
11437 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11438 seg.selector = vmcs12->host_es_selector;
11439 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11440 seg.selector = vmcs12->host_ss_selector;
11441 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11442 seg.selector = vmcs12->host_fs_selector;
11443 seg.base = vmcs12->host_fs_base;
11444 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11445 seg.selector = vmcs12->host_gs_selector;
11446 seg.base = vmcs12->host_gs_base;
11447 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11448 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011449 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011450 .limit = 0x67,
11451 .selector = vmcs12->host_tr_selector,
11452 .type = 11,
11453 .present = 1
11454 };
11455 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11456
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011457 kvm_set_dr(vcpu, 7, 0x400);
11458 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011459
Wincy Van3af18d92015-02-03 23:49:31 +080011460 if (cpu_has_vmx_msr_bitmap())
11461 vmx_set_msr_bitmap(vcpu);
11462
Wincy Vanff651cb2014-12-11 08:52:58 +030011463 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11464 vmcs12->vm_exit_msr_load_count))
11465 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011466}
11467
11468/*
11469 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11470 * and modify vmcs12 to make it see what it would expect to see there if
11471 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11472 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011473static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11474 u32 exit_intr_info,
11475 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011476{
11477 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011478 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
11479
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011480 /* trying to cancel vmlaunch/vmresume is a bug */
11481 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11482
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011483 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070011484 * The only expected VM-instruction error is "VM entry with
11485 * invalid control field(s)." Anything else indicates a
11486 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011487 */
Jim Mattson4f350c62017-09-14 16:31:44 -070011488 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
11489 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
11490
11491 leave_guest_mode(vcpu);
11492
11493 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011494 if (exit_reason == -1)
11495 sync_vmcs12(vcpu, vmcs12);
11496 else
11497 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11498 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070011499
11500 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11501 vmcs12->vm_exit_msr_store_count))
11502 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040011503 }
11504
Jim Mattson4f350c62017-09-14 16:31:44 -070011505 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011506 vm_entry_controls_reset_shadow(vmx);
11507 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011508 vmx_segment_cache_clear(vmx);
11509
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011510 /* if no vmcs02 cache requested, remove the one we used */
11511 if (VMCS02_POOL_SIZE == 0)
11512 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11513
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011514 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011515 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11516 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011517 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011518 if (vmx->hv_deadline_tsc == -1)
11519 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11520 PIN_BASED_VMX_PREEMPTION_TIMER);
11521 else
11522 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11523 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011524 if (kvm_has_tsc_control)
11525 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011526
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011527 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11528 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11529 vmx_set_virtual_x2apic_mode(vcpu,
11530 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011531 } else if (!nested_cpu_has_ept(vmcs12) &&
11532 nested_cpu_has2(vmcs12,
11533 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11534 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011535 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011536
11537 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11538 vmx->host_rsp = 0;
11539
11540 /* Unpin physical memory we referred to in vmcs02 */
11541 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011542 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011543 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011544 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011545 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011546 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011547 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011548 }
Wincy Van705699a2015-02-03 23:58:17 +080011549 if (vmx->nested.pi_desc_page) {
11550 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011551 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011552 vmx->nested.pi_desc_page = NULL;
11553 vmx->nested.pi_desc = NULL;
11554 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011555
11556 /*
Tang Chen38b99172014-09-24 15:57:54 +080011557 * We are now running in L2, mmu_notifier will force to reload the
11558 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11559 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011560 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011561
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011562 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030011563 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011564
11565 /* in case we halted in L2 */
11566 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070011567
11568 if (likely(!vmx->fail)) {
11569 /*
11570 * TODO: SDM says that with acknowledge interrupt on
11571 * exit, bit 31 of the VM-exit interrupt information
11572 * (valid interrupt) is always set to 1 on
11573 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
11574 * need kvm_cpu_has_interrupt(). See the commit
11575 * message for details.
11576 */
11577 if (nested_exit_intr_ack_set(vcpu) &&
11578 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11579 kvm_cpu_has_interrupt(vcpu)) {
11580 int irq = kvm_cpu_get_interrupt(vcpu);
11581 WARN_ON(irq < 0);
11582 vmcs12->vm_exit_intr_info = irq |
11583 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11584 }
11585
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020011586 if (exit_reason != -1)
11587 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11588 vmcs12->exit_qualification,
11589 vmcs12->idt_vectoring_info_field,
11590 vmcs12->vm_exit_intr_info,
11591 vmcs12->vm_exit_intr_error_code,
11592 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070011593
11594 load_vmcs12_host_state(vcpu, vmcs12);
11595
11596 return;
11597 }
11598
11599 /*
11600 * After an early L2 VM-entry failure, we're now back
11601 * in L1 which thinks it just finished a VMLAUNCH or
11602 * VMRESUME instruction, so we need to set the failure
11603 * flag and the VM-instruction error field of the VMCS
11604 * accordingly.
11605 */
11606 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
11607 /*
11608 * The emulated instruction was already skipped in
11609 * nested_vmx_run, but the updated RIP was never
11610 * written back to the vmcs01.
11611 */
11612 skip_emulated_instruction(vcpu);
11613 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011614}
11615
Nadav Har'El7c177932011-05-25 23:12:04 +030011616/*
Jan Kiszka42124922014-01-04 18:47:19 +010011617 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11618 */
11619static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11620{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011621 if (is_guest_mode(vcpu)) {
11622 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011623 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011624 }
Jan Kiszka42124922014-01-04 18:47:19 +010011625 free_nested(to_vmx(vcpu));
11626}
11627
11628/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011629 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11630 * 23.7 "VM-entry failures during or after loading guest state" (this also
11631 * lists the acceptable exit-reason and exit-qualification parameters).
11632 * It should only be called before L2 actually succeeded to run, and when
11633 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11634 */
11635static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11636 struct vmcs12 *vmcs12,
11637 u32 reason, unsigned long qualification)
11638{
11639 load_vmcs12_host_state(vcpu, vmcs12);
11640 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11641 vmcs12->exit_qualification = qualification;
11642 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011643 if (enable_shadow_vmcs)
11644 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011645}
11646
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011647static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11648 struct x86_instruction_info *info,
11649 enum x86_intercept_stage stage)
11650{
11651 return X86EMUL_CONTINUE;
11652}
11653
Yunhong Jiang64672c92016-06-13 14:19:59 -070011654#ifdef CONFIG_X86_64
11655/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11656static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11657 u64 divisor, u64 *result)
11658{
11659 u64 low = a << shift, high = a >> (64 - shift);
11660
11661 /* To avoid the overflow on divq */
11662 if (high >= divisor)
11663 return 1;
11664
11665 /* Low hold the result, high hold rem which is discarded */
11666 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11667 "rm" (divisor), "0" (low), "1" (high));
11668 *result = low;
11669
11670 return 0;
11671}
11672
11673static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11674{
11675 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011676 u64 tscl = rdtsc();
11677 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11678 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011679
11680 /* Convert to host delta tsc if tsc scaling is enabled */
11681 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11682 u64_shl_div_u64(delta_tsc,
11683 kvm_tsc_scaling_ratio_frac_bits,
11684 vcpu->arch.tsc_scaling_ratio,
11685 &delta_tsc))
11686 return -ERANGE;
11687
11688 /*
11689 * If the delta tsc can't fit in the 32 bit after the multi shift,
11690 * we can't use the preemption timer.
11691 * It's possible that it fits on later vmentries, but checking
11692 * on every vmentry is costly so we just use an hrtimer.
11693 */
11694 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11695 return -ERANGE;
11696
11697 vmx->hv_deadline_tsc = tscl + delta_tsc;
11698 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11699 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011700
11701 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011702}
11703
11704static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11705{
11706 struct vcpu_vmx *vmx = to_vmx(vcpu);
11707 vmx->hv_deadline_tsc = -1;
11708 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11709 PIN_BASED_VMX_PREEMPTION_TIMER);
11710}
11711#endif
11712
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011713static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011714{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011715 if (ple_gap)
11716 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011717}
11718
Kai Huang843e4332015-01-28 10:54:28 +080011719static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11720 struct kvm_memory_slot *slot)
11721{
11722 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11723 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11724}
11725
11726static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11727 struct kvm_memory_slot *slot)
11728{
11729 kvm_mmu_slot_set_dirty(kvm, slot);
11730}
11731
11732static void vmx_flush_log_dirty(struct kvm *kvm)
11733{
11734 kvm_flush_pml_buffers(kvm);
11735}
11736
Bandan Dasc5f983f2017-05-05 15:25:14 -040011737static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11738{
11739 struct vmcs12 *vmcs12;
11740 struct vcpu_vmx *vmx = to_vmx(vcpu);
11741 gpa_t gpa;
11742 struct page *page = NULL;
11743 u64 *pml_address;
11744
11745 if (is_guest_mode(vcpu)) {
11746 WARN_ON_ONCE(vmx->nested.pml_full);
11747
11748 /*
11749 * Check if PML is enabled for the nested guest.
11750 * Whether eptp bit 6 is set is already checked
11751 * as part of A/D emulation.
11752 */
11753 vmcs12 = get_vmcs12(vcpu);
11754 if (!nested_cpu_has_pml(vmcs12))
11755 return 0;
11756
Dan Carpenter47698862017-05-10 22:43:17 +030011757 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011758 vmx->nested.pml_full = true;
11759 return 1;
11760 }
11761
11762 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11763
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011764 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11765 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011766 return 0;
11767
11768 pml_address = kmap(page);
11769 pml_address[vmcs12->guest_pml_index--] = gpa;
11770 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011771 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011772 }
11773
11774 return 0;
11775}
11776
Kai Huang843e4332015-01-28 10:54:28 +080011777static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11778 struct kvm_memory_slot *memslot,
11779 gfn_t offset, unsigned long mask)
11780{
11781 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11782}
11783
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011784static void __pi_post_block(struct kvm_vcpu *vcpu)
11785{
11786 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11787 struct pi_desc old, new;
11788 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011789
11790 do {
11791 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011792 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
11793 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011794
11795 dest = cpu_physical_id(vcpu->cpu);
11796
11797 if (x2apic_enabled())
11798 new.ndst = dest;
11799 else
11800 new.ndst = (dest << 8) & 0xFF00;
11801
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011802 /* set 'NV' to 'notification vector' */
11803 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011804 } while (cmpxchg64(&pi_desc->control, old.control,
11805 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011806
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011807 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
11808 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011809 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011810 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011811 vcpu->pre_pcpu = -1;
11812 }
11813}
11814
Feng Wuefc64402015-09-18 22:29:51 +080011815/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011816 * This routine does the following things for vCPU which is going
11817 * to be blocked if VT-d PI is enabled.
11818 * - Store the vCPU to the wakeup list, so when interrupts happen
11819 * we can find the right vCPU to wake up.
11820 * - Change the Posted-interrupt descriptor as below:
11821 * 'NDST' <-- vcpu->pre_pcpu
11822 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11823 * - If 'ON' is set during this process, which means at least one
11824 * interrupt is posted for this vCPU, we cannot block it, in
11825 * this case, return 1, otherwise, return 0.
11826 *
11827 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011828static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011829{
Feng Wubf9f6ac2015-09-18 22:29:55 +080011830 unsigned int dest;
11831 struct pi_desc old, new;
11832 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11833
11834 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011835 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11836 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011837 return 0;
11838
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011839 WARN_ON(irqs_disabled());
11840 local_irq_disable();
11841 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
11842 vcpu->pre_pcpu = vcpu->cpu;
11843 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11844 list_add_tail(&vcpu->blocked_vcpu_list,
11845 &per_cpu(blocked_vcpu_on_cpu,
11846 vcpu->pre_pcpu));
11847 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
11848 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080011849
11850 do {
11851 old.control = new.control = pi_desc->control;
11852
Feng Wubf9f6ac2015-09-18 22:29:55 +080011853 WARN((pi_desc->sn == 1),
11854 "Warning: SN field of posted-interrupts "
11855 "is set before blocking\n");
11856
11857 /*
11858 * Since vCPU can be preempted during this process,
11859 * vcpu->cpu could be different with pre_pcpu, we
11860 * need to set pre_pcpu as the destination of wakeup
11861 * notification event, then we can find the right vCPU
11862 * to wakeup in wakeup handler if interrupts happen
11863 * when the vCPU is in blocked state.
11864 */
11865 dest = cpu_physical_id(vcpu->pre_pcpu);
11866
11867 if (x2apic_enabled())
11868 new.ndst = dest;
11869 else
11870 new.ndst = (dest << 8) & 0xFF00;
11871
11872 /* set 'NV' to 'wakeup vector' */
11873 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020011874 } while (cmpxchg64(&pi_desc->control, old.control,
11875 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011876
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011877 /* We should not block the vCPU if an interrupt is posted for it. */
11878 if (pi_test_on(pi_desc) == 1)
11879 __pi_post_block(vcpu);
11880
11881 local_irq_enable();
11882 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080011883}
11884
Yunhong Jiangbc225122016-06-13 14:19:58 -070011885static int vmx_pre_block(struct kvm_vcpu *vcpu)
11886{
11887 if (pi_pre_block(vcpu))
11888 return 1;
11889
Yunhong Jiang64672c92016-06-13 14:19:59 -070011890 if (kvm_lapic_hv_timer_in_use(vcpu))
11891 kvm_lapic_switch_to_sw_timer(vcpu);
11892
Yunhong Jiangbc225122016-06-13 14:19:58 -070011893 return 0;
11894}
11895
11896static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011897{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011898 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011899 return;
11900
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011901 WARN_ON(irqs_disabled());
11902 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020011903 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020011904 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080011905}
11906
Yunhong Jiangbc225122016-06-13 14:19:58 -070011907static void vmx_post_block(struct kvm_vcpu *vcpu)
11908{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011909 if (kvm_x86_ops->set_hv_timer)
11910 kvm_lapic_switch_to_hv_timer(vcpu);
11911
Yunhong Jiangbc225122016-06-13 14:19:58 -070011912 pi_post_block(vcpu);
11913}
11914
Feng Wubf9f6ac2015-09-18 22:29:55 +080011915/*
Feng Wuefc64402015-09-18 22:29:51 +080011916 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11917 *
11918 * @kvm: kvm
11919 * @host_irq: host irq of the interrupt
11920 * @guest_irq: gsi of the interrupt
11921 * @set: set or unset PI
11922 * returns 0 on success, < 0 on failure
11923 */
11924static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11925 uint32_t guest_irq, bool set)
11926{
11927 struct kvm_kernel_irq_routing_entry *e;
11928 struct kvm_irq_routing_table *irq_rt;
11929 struct kvm_lapic_irq irq;
11930 struct kvm_vcpu *vcpu;
11931 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011932 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080011933
11934 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011935 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11936 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011937 return 0;
11938
11939 idx = srcu_read_lock(&kvm->irq_srcu);
11940 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010011941 if (guest_irq >= irq_rt->nr_rt_entries ||
11942 hlist_empty(&irq_rt->map[guest_irq])) {
11943 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
11944 guest_irq, irq_rt->nr_rt_entries);
11945 goto out;
11946 }
Feng Wuefc64402015-09-18 22:29:51 +080011947
11948 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11949 if (e->type != KVM_IRQ_ROUTING_MSI)
11950 continue;
11951 /*
11952 * VT-d PI cannot support posting multicast/broadcast
11953 * interrupts to a vCPU, we still use interrupt remapping
11954 * for these kind of interrupts.
11955 *
11956 * For lowest-priority interrupts, we only support
11957 * those with single CPU as the destination, e.g. user
11958 * configures the interrupts via /proc/irq or uses
11959 * irqbalance to make the interrupts single-CPU.
11960 *
11961 * We will support full lowest-priority interrupt later.
11962 */
11963
Radim Krčmář371313132016-07-12 22:09:27 +020011964 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011965 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11966 /*
11967 * Make sure the IRTE is in remapped mode if
11968 * we don't handle it in posted mode.
11969 */
11970 ret = irq_set_vcpu_affinity(host_irq, NULL);
11971 if (ret < 0) {
11972 printk(KERN_INFO
11973 "failed to back to remapped mode, irq: %u\n",
11974 host_irq);
11975 goto out;
11976 }
11977
Feng Wuefc64402015-09-18 22:29:51 +080011978 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011979 }
Feng Wuefc64402015-09-18 22:29:51 +080011980
11981 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11982 vcpu_info.vector = irq.vector;
11983
Feng Wub6ce9782016-01-25 16:53:35 +080011984 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011985 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11986
11987 if (set)
11988 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080011989 else
Feng Wuefc64402015-09-18 22:29:51 +080011990 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080011991
11992 if (ret < 0) {
11993 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11994 __func__);
11995 goto out;
11996 }
11997 }
11998
11999 ret = 0;
12000out:
12001 srcu_read_unlock(&kvm->irq_srcu, idx);
12002 return ret;
12003}
12004
Ashok Rajc45dcc72016-06-22 14:59:56 +080012005static void vmx_setup_mce(struct kvm_vcpu *vcpu)
12006{
12007 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
12008 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
12009 FEATURE_CONTROL_LMCE;
12010 else
12011 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
12012 ~FEATURE_CONTROL_LMCE;
12013}
12014
Ladi Prosek72d7b372017-10-11 16:54:41 +020012015static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
12016{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012017 /* we need a nested vmexit to enter SMM, postpone if run is pending */
12018 if (to_vmx(vcpu)->nested.nested_run_pending)
12019 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020012020 return 1;
12021}
12022
Ladi Prosek0234bf82017-10-11 16:54:40 +020012023static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
12024{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012025 struct vcpu_vmx *vmx = to_vmx(vcpu);
12026
12027 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
12028 if (vmx->nested.smm.guest_mode)
12029 nested_vmx_vmexit(vcpu, -1, 0, 0);
12030
12031 vmx->nested.smm.vmxon = vmx->nested.vmxon;
12032 vmx->nested.vmxon = false;
Ladi Prosek0234bf82017-10-11 16:54:40 +020012033 return 0;
12034}
12035
12036static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
12037{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012038 struct vcpu_vmx *vmx = to_vmx(vcpu);
12039 int ret;
12040
12041 if (vmx->nested.smm.vmxon) {
12042 vmx->nested.vmxon = true;
12043 vmx->nested.smm.vmxon = false;
12044 }
12045
12046 if (vmx->nested.smm.guest_mode) {
12047 vcpu->arch.hflags &= ~HF_SMM_MASK;
12048 ret = enter_vmx_non_root_mode(vcpu, false);
12049 vcpu->arch.hflags |= HF_SMM_MASK;
12050 if (ret)
12051 return ret;
12052
12053 vmx->nested.smm.guest_mode = false;
12054 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020012055 return 0;
12056}
12057
Ladi Prosekcc3d9672017-10-17 16:02:39 +020012058static int enable_smi_window(struct kvm_vcpu *vcpu)
12059{
12060 return 0;
12061}
12062
Kees Cook404f6aa2016-08-08 16:29:06 -070012063static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080012064 .cpu_has_kvm_support = cpu_has_kvm_support,
12065 .disabled_by_bios = vmx_disabled_by_bios,
12066 .hardware_setup = hardware_setup,
12067 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030012068 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012069 .hardware_enable = hardware_enable,
12070 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080012071 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020012072 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012073
12074 .vcpu_create = vmx_create_vcpu,
12075 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030012076 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012077
Avi Kivity04d2cc72007-09-10 18:10:54 +030012078 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012079 .vcpu_load = vmx_vcpu_load,
12080 .vcpu_put = vmx_vcpu_put,
12081
Paolo Bonzinia96036b2015-11-10 11:55:36 +010012082 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012083 .get_msr = vmx_get_msr,
12084 .set_msr = vmx_set_msr,
12085 .get_segment_base = vmx_get_segment_base,
12086 .get_segment = vmx_get_segment,
12087 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020012088 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012089 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020012090 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020012091 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030012092 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012093 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012094 .set_cr3 = vmx_set_cr3,
12095 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012096 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012097 .get_idt = vmx_get_idt,
12098 .set_idt = vmx_set_idt,
12099 .get_gdt = vmx_get_gdt,
12100 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010012101 .get_dr6 = vmx_get_dr6,
12102 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030012103 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010012104 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030012105 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012106 .get_rflags = vmx_get_rflags,
12107 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080012108
Avi Kivity6aa8b732006-12-10 02:21:36 -080012109 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012110
Avi Kivity6aa8b732006-12-10 02:21:36 -080012111 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020012112 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012113 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040012114 .set_interrupt_shadow = vmx_set_interrupt_shadow,
12115 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020012116 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030012117 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012118 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020012119 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030012120 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020012121 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012122 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010012123 .get_nmi_mask = vmx_get_nmi_mask,
12124 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012125 .enable_nmi_window = enable_nmi_window,
12126 .enable_irq_window = enable_irq_window,
12127 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080012128 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080012129 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030012130 .get_enable_apicv = vmx_get_enable_apicv,
12131 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012132 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010012133 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012134 .hwapic_irr_update = vmx_hwapic_irr_update,
12135 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080012136 .sync_pir_to_irr = vmx_sync_pir_to_irr,
12137 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012138
Izik Eiduscbc94022007-10-25 00:29:55 +020012139 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080012140 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080012141 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012142
Avi Kivity586f9602010-11-18 13:09:54 +020012143 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020012144
Sheng Yang17cc3932010-01-05 19:02:27 +080012145 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080012146
12147 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080012148
12149 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000012150 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020012151
12152 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080012153
12154 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012155
12156 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020012157
12158 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012159
12160 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080012161 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000012162 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080012163 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012164
12165 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012166
12167 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080012168
12169 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
12170 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
12171 .flush_log_dirty = vmx_flush_log_dirty,
12172 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040012173 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +020012174
Feng Wubf9f6ac2015-09-18 22:29:55 +080012175 .pre_block = vmx_pre_block,
12176 .post_block = vmx_post_block,
12177
Wei Huang25462f72015-06-19 15:45:05 +020012178 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080012179
12180 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070012181
12182#ifdef CONFIG_X86_64
12183 .set_hv_timer = vmx_set_hv_timer,
12184 .cancel_hv_timer = vmx_cancel_hv_timer,
12185#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080012186
12187 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012188
Ladi Prosek72d7b372017-10-11 16:54:41 +020012189 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012190 .pre_enter_smm = vmx_pre_enter_smm,
12191 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020012192 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012193};
12194
12195static int __init vmx_init(void)
12196{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012197 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
12198 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030012199 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012200 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080012201
Dave Young2965faa2015-09-09 15:38:55 -070012202#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012203 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
12204 crash_vmclear_local_loaded_vmcss);
12205#endif
12206
He, Qingfdef3ad2007-04-30 09:45:24 +030012207 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080012208}
12209
12210static void __exit vmx_exit(void)
12211{
Dave Young2965faa2015-09-09 15:38:55 -070012212#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053012213 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012214 synchronize_rcu();
12215#endif
12216
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080012217 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080012218}
12219
12220module_init(vmx_init)
12221module_exit(vmx_exit)