blob: 19aa69af7c2d41f17b4bfe10aa24b8cdf9b70270 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030037#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030038#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040039
Feng Wu28b835d2015-09-18 22:29:54 +080040#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080042#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020043#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020044#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080045#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020046#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020047#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010048#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080049#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010050#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080051#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070052#include <asm/mmu_context.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054#include "trace.h"
Wei Huang25462f7f2015-06-19 15:45:05 +020055#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040058#define __ex_clear(x, reg) \
59 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030060
Avi Kivity6aa8b732006-12-10 02:21:36 -080061MODULE_AUTHOR("Qumranet");
62MODULE_LICENSE("GPL");
63
Josh Triplette9bda3b2012-03-20 23:33:51 -070064static const struct x86_cpu_id vmx_cpu_id[] = {
65 X86_FEATURE_MATCH(X86_FEATURE_VMX),
66 {}
67};
68MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
69
Rusty Russell476bc002012-01-13 09:32:18 +103070static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020071module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080072
Rusty Russell476bc002012-01-13 09:32:18 +103073static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020074module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020075
Rusty Russell476bc002012-01-13 09:32:18 +103076static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020077module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080078
Rusty Russell476bc002012-01-13 09:32:18 +103079static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070080module_param_named(unrestricted_guest,
81 enable_unrestricted_guest, bool, S_IRUGO);
82
Xudong Hao83c3a332012-05-28 19:33:35 +080083static bool __read_mostly enable_ept_ad_bits = 1;
84module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
85
Avi Kivitya27685c2012-06-12 20:30:18 +030086static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020087module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030088
Rusty Russell476bc002012-01-13 09:32:18 +103089static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030090module_param(fasteoi, bool, S_IRUGO);
91
Yang Zhang5a717852013-04-11 19:25:16 +080092static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080093module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080094
Abel Gordonabc4fc52013-04-18 14:35:25 +030095static bool __read_mostly enable_shadow_vmcs = 1;
96module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030097/*
98 * If nested=1, nested virtualization is supported, i.e., guests may use
99 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
100 * use VMX instructions.
101 */
Rusty Russell476bc002012-01-13 09:32:18 +1030102static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300103module_param(nested, bool, S_IRUGO);
104
Wanpeng Li20300092014-12-02 19:14:59 +0800105static u64 __read_mostly host_xss;
106
Kai Huang843e4332015-01-28 10:54:28 +0800107static bool __read_mostly enable_pml = 1;
108module_param_named(pml, enable_pml, bool, S_IRUGO);
109
Haozhong Zhang64903d62015-10-20 15:39:09 +0800110#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
111
Yunhong Jiang64672c92016-06-13 14:19:59 -0700112/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
113static int __read_mostly cpu_preemption_timer_multi;
114static bool __read_mostly enable_preemption_timer = 1;
115#ifdef CONFIG_X86_64
116module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
117#endif
118
Gleb Natapov50378782013-02-04 16:00:28 +0200119#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
120#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200121#define KVM_VM_CR0_ALWAYS_ON \
122 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200123#define KVM_CR4_GUEST_OWNED_BITS \
124 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700125 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200126
Avi Kivitycdc0e242009-12-06 17:21:14 +0200127#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
128#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
129
Avi Kivity78ac8b42010-04-08 18:19:35 +0300130#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
131
Jan Kiszkaf4124502014-03-07 20:03:13 +0100132#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
133
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800134/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300135 * Hyper-V requires all of these, so mark them as supported even though
136 * they are just treated the same as all-context.
137 */
138#define VMX_VPID_EXTENT_SUPPORTED_MASK \
139 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
140 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
141 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
142 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
143
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800144/*
145 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
146 * ple_gap: upper bound on the amount of time between two successive
147 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500148 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800149 * ple_window: upper bound on the amount of time a guest is allowed to execute
150 * in a PAUSE loop. Tests indicate that most spinlocks are held for
151 * less than 2^12 cycles
152 * Time is measured based on a counter that runs at the same rate as the TSC,
153 * refer SDM volume 3b section 21.6.13 & 22.1.3.
154 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200155#define KVM_VMX_DEFAULT_PLE_GAP 128
156#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
157#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
158#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
159#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
160 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
161
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800162static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
163module_param(ple_gap, int, S_IRUGO);
164
165static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
166module_param(ple_window, int, S_IRUGO);
167
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200168/* Default doubles per-vcpu window every exit. */
169static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
170module_param(ple_window_grow, int, S_IRUGO);
171
172/* Default resets per-vcpu window every exit to ple_window. */
173static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
174module_param(ple_window_shrink, int, S_IRUGO);
175
176/* Default is to compute the maximum so we can never overflow. */
177static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
178static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179module_param(ple_window_max, int, S_IRUGO);
180
Avi Kivity83287ea422012-09-16 15:10:57 +0300181extern const ulong vmx_return;
182
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200183#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300184#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300185
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400186struct vmcs {
187 u32 revision_id;
188 u32 abort;
189 char data[0];
190};
191
Nadav Har'Eld462b812011-05-24 15:26:10 +0300192/*
193 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
194 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
195 * loaded on this CPU (so we can clear them if the CPU goes down).
196 */
197struct loaded_vmcs {
198 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700199 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300200 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200201 bool launched;
202 bool nmi_known_unmasked;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300203 struct list_head loaded_vmcss_on_cpu_link;
204};
205
Avi Kivity26bb0982009-09-07 11:14:12 +0300206struct shared_msr_entry {
207 unsigned index;
208 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200209 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300210};
211
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300212/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300213 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
214 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
215 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
216 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
217 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
218 * More than one of these structures may exist, if L1 runs multiple L2 guests.
219 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
220 * underlying hardware which will be used to run L2.
221 * This structure is packed to ensure that its layout is identical across
222 * machines (necessary for live migration).
223 * If there are changes in this struct, VMCS12_REVISION must be changed.
224 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300225typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300226struct __packed vmcs12 {
227 /* According to the Intel spec, a VMCS region must start with the
228 * following two fields. Then follow implementation-specific data.
229 */
230 u32 revision_id;
231 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300232
Nadav Har'El27d6c862011-05-25 23:06:59 +0300233 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
234 u32 padding[7]; /* room for future expansion */
235
Nadav Har'El22bd0352011-05-25 23:05:57 +0300236 u64 io_bitmap_a;
237 u64 io_bitmap_b;
238 u64 msr_bitmap;
239 u64 vm_exit_msr_store_addr;
240 u64 vm_exit_msr_load_addr;
241 u64 vm_entry_msr_load_addr;
242 u64 tsc_offset;
243 u64 virtual_apic_page_addr;
244 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800245 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400246 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300247 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800248 u64 eoi_exit_bitmap0;
249 u64 eoi_exit_bitmap1;
250 u64 eoi_exit_bitmap2;
251 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400252 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800253 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300254 u64 guest_physical_address;
255 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400256 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300257 u64 guest_ia32_debugctl;
258 u64 guest_ia32_pat;
259 u64 guest_ia32_efer;
260 u64 guest_ia32_perf_global_ctrl;
261 u64 guest_pdptr0;
262 u64 guest_pdptr1;
263 u64 guest_pdptr2;
264 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100265 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300266 u64 host_ia32_pat;
267 u64 host_ia32_efer;
268 u64 host_ia32_perf_global_ctrl;
269 u64 padding64[8]; /* room for future expansion */
270 /*
271 * To allow migration of L1 (complete with its L2 guests) between
272 * machines of different natural widths (32 or 64 bit), we cannot have
273 * unsigned long fields with no explict size. We use u64 (aliased
274 * natural_width) instead. Luckily, x86 is little-endian.
275 */
276 natural_width cr0_guest_host_mask;
277 natural_width cr4_guest_host_mask;
278 natural_width cr0_read_shadow;
279 natural_width cr4_read_shadow;
280 natural_width cr3_target_value0;
281 natural_width cr3_target_value1;
282 natural_width cr3_target_value2;
283 natural_width cr3_target_value3;
284 natural_width exit_qualification;
285 natural_width guest_linear_address;
286 natural_width guest_cr0;
287 natural_width guest_cr3;
288 natural_width guest_cr4;
289 natural_width guest_es_base;
290 natural_width guest_cs_base;
291 natural_width guest_ss_base;
292 natural_width guest_ds_base;
293 natural_width guest_fs_base;
294 natural_width guest_gs_base;
295 natural_width guest_ldtr_base;
296 natural_width guest_tr_base;
297 natural_width guest_gdtr_base;
298 natural_width guest_idtr_base;
299 natural_width guest_dr7;
300 natural_width guest_rsp;
301 natural_width guest_rip;
302 natural_width guest_rflags;
303 natural_width guest_pending_dbg_exceptions;
304 natural_width guest_sysenter_esp;
305 natural_width guest_sysenter_eip;
306 natural_width host_cr0;
307 natural_width host_cr3;
308 natural_width host_cr4;
309 natural_width host_fs_base;
310 natural_width host_gs_base;
311 natural_width host_tr_base;
312 natural_width host_gdtr_base;
313 natural_width host_idtr_base;
314 natural_width host_ia32_sysenter_esp;
315 natural_width host_ia32_sysenter_eip;
316 natural_width host_rsp;
317 natural_width host_rip;
318 natural_width paddingl[8]; /* room for future expansion */
319 u32 pin_based_vm_exec_control;
320 u32 cpu_based_vm_exec_control;
321 u32 exception_bitmap;
322 u32 page_fault_error_code_mask;
323 u32 page_fault_error_code_match;
324 u32 cr3_target_count;
325 u32 vm_exit_controls;
326 u32 vm_exit_msr_store_count;
327 u32 vm_exit_msr_load_count;
328 u32 vm_entry_controls;
329 u32 vm_entry_msr_load_count;
330 u32 vm_entry_intr_info_field;
331 u32 vm_entry_exception_error_code;
332 u32 vm_entry_instruction_len;
333 u32 tpr_threshold;
334 u32 secondary_vm_exec_control;
335 u32 vm_instruction_error;
336 u32 vm_exit_reason;
337 u32 vm_exit_intr_info;
338 u32 vm_exit_intr_error_code;
339 u32 idt_vectoring_info_field;
340 u32 idt_vectoring_error_code;
341 u32 vm_exit_instruction_len;
342 u32 vmx_instruction_info;
343 u32 guest_es_limit;
344 u32 guest_cs_limit;
345 u32 guest_ss_limit;
346 u32 guest_ds_limit;
347 u32 guest_fs_limit;
348 u32 guest_gs_limit;
349 u32 guest_ldtr_limit;
350 u32 guest_tr_limit;
351 u32 guest_gdtr_limit;
352 u32 guest_idtr_limit;
353 u32 guest_es_ar_bytes;
354 u32 guest_cs_ar_bytes;
355 u32 guest_ss_ar_bytes;
356 u32 guest_ds_ar_bytes;
357 u32 guest_fs_ar_bytes;
358 u32 guest_gs_ar_bytes;
359 u32 guest_ldtr_ar_bytes;
360 u32 guest_tr_ar_bytes;
361 u32 guest_interruptibility_info;
362 u32 guest_activity_state;
363 u32 guest_sysenter_cs;
364 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100365 u32 vmx_preemption_timer_value;
366 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300367 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800368 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300369 u16 guest_es_selector;
370 u16 guest_cs_selector;
371 u16 guest_ss_selector;
372 u16 guest_ds_selector;
373 u16 guest_fs_selector;
374 u16 guest_gs_selector;
375 u16 guest_ldtr_selector;
376 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800377 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400378 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300379 u16 host_es_selector;
380 u16 host_cs_selector;
381 u16 host_ss_selector;
382 u16 host_ds_selector;
383 u16 host_fs_selector;
384 u16 host_gs_selector;
385 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300386};
387
388/*
389 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
390 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
391 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
392 */
393#define VMCS12_REVISION 0x11e57ed0
394
395/*
396 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
397 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
398 * current implementation, 4K are reserved to avoid future complications.
399 */
400#define VMCS12_SIZE 0x1000
401
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300402/* Used to remember the last vmcs02 used for some recently used vmcs12s */
403struct vmcs02_list {
404 struct list_head list;
405 gpa_t vmptr;
406 struct loaded_vmcs vmcs02;
407};
408
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300409/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300410 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
411 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
412 */
413struct nested_vmx {
414 /* Has the level1 guest done vmxon? */
415 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400416 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400417 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300418
419 /* The guest-physical address of the current VMCS L1 keeps for L2 */
420 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700421 /*
422 * Cache of the guest's VMCS, existing outside of guest memory.
423 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700424 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700425 */
426 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300427 /*
428 * Indicates if the shadow vmcs must be updated with the
429 * data hold by vmcs12
430 */
431 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300432
433 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
434 struct list_head vmcs02_pool;
435 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200436 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300437 /* L2 must run next, and mustn't decide to exit to L1. */
438 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300439 /*
440 * Guest pages referred to in vmcs02 with host-physical pointers, so
441 * we must keep them pinned while L2 runs.
442 */
443 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800444 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800445 struct page *pi_desc_page;
446 struct pi_desc *pi_desc;
447 bool pi_pending;
448 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100449
Radim Krčmářd048c092016-08-08 20:16:22 +0200450 unsigned long *msr_bitmap;
451
Jan Kiszkaf4124502014-03-07 20:03:13 +0100452 struct hrtimer preemption_timer;
453 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200454
455 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
456 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800457
Wanpeng Li5c614b32015-10-13 09:18:36 -0700458 u16 vpid02;
459 u16 last_vpid;
460
David Matlack0115f9c2016-11-29 18:14:06 -0800461 /*
462 * We only store the "true" versions of the VMX capability MSRs. We
463 * generate the "non-true" versions by setting the must-be-1 bits
464 * according to the SDM.
465 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466 u32 nested_vmx_procbased_ctls_low;
467 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800468 u32 nested_vmx_secondary_ctls_low;
469 u32 nested_vmx_secondary_ctls_high;
470 u32 nested_vmx_pinbased_ctls_low;
471 u32 nested_vmx_pinbased_ctls_high;
472 u32 nested_vmx_exit_ctls_low;
473 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800474 u32 nested_vmx_entry_ctls_low;
475 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800476 u32 nested_vmx_misc_low;
477 u32 nested_vmx_misc_high;
478 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700479 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800480 u64 nested_vmx_basic;
481 u64 nested_vmx_cr0_fixed0;
482 u64 nested_vmx_cr0_fixed1;
483 u64 nested_vmx_cr4_fixed0;
484 u64 nested_vmx_cr4_fixed1;
485 u64 nested_vmx_vmcs_enum;
Bandan Das27c42a12017-08-03 15:54:42 -0400486 u64 nested_vmx_vmfunc_controls;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300487};
488
Yang Zhang01e439b2013-04-11 19:25:12 +0800489#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800490#define POSTED_INTR_SN 1
491
Yang Zhang01e439b2013-04-11 19:25:12 +0800492/* Posted-Interrupt Descriptor */
493struct pi_desc {
494 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800495 union {
496 struct {
497 /* bit 256 - Outstanding Notification */
498 u16 on : 1,
499 /* bit 257 - Suppress Notification */
500 sn : 1,
501 /* bit 271:258 - Reserved */
502 rsvd_1 : 14;
503 /* bit 279:272 - Notification Vector */
504 u8 nv;
505 /* bit 287:280 - Reserved */
506 u8 rsvd_2;
507 /* bit 319:288 - Notification Destination */
508 u32 ndst;
509 };
510 u64 control;
511 };
512 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800513} __aligned(64);
514
Yang Zhanga20ed542013-04-11 19:25:15 +0800515static bool pi_test_and_set_on(struct pi_desc *pi_desc)
516{
517 return test_and_set_bit(POSTED_INTR_ON,
518 (unsigned long *)&pi_desc->control);
519}
520
521static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
522{
523 return test_and_clear_bit(POSTED_INTR_ON,
524 (unsigned long *)&pi_desc->control);
525}
526
527static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
528{
529 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
530}
531
Feng Wuebbfc762015-09-18 22:29:46 +0800532static inline void pi_clear_sn(struct pi_desc *pi_desc)
533{
534 return clear_bit(POSTED_INTR_SN,
535 (unsigned long *)&pi_desc->control);
536}
537
538static inline void pi_set_sn(struct pi_desc *pi_desc)
539{
540 return set_bit(POSTED_INTR_SN,
541 (unsigned long *)&pi_desc->control);
542}
543
Paolo Bonziniad361092016-09-20 16:15:05 +0200544static inline void pi_clear_on(struct pi_desc *pi_desc)
545{
546 clear_bit(POSTED_INTR_ON,
547 (unsigned long *)&pi_desc->control);
548}
549
Feng Wuebbfc762015-09-18 22:29:46 +0800550static inline int pi_test_on(struct pi_desc *pi_desc)
551{
552 return test_bit(POSTED_INTR_ON,
553 (unsigned long *)&pi_desc->control);
554}
555
556static inline int pi_test_sn(struct pi_desc *pi_desc)
557{
558 return test_bit(POSTED_INTR_SN,
559 (unsigned long *)&pi_desc->control);
560}
561
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400562struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000563 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300564 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300565 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300566 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200567 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200568 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300569 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400570 int nmsrs;
571 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800572 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300574 u64 msr_host_kernel_gs_base;
575 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400576#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200577 u32 vm_entry_controls_shadow;
578 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300579 /*
580 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
581 * non-nested (L1) guest, it always points to vmcs01. For a nested
582 * guest (L2), it points to a different VMCS.
583 */
584 struct loaded_vmcs vmcs01;
585 struct loaded_vmcs *loaded_vmcs;
586 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300587 struct msr_autoload {
588 unsigned nr;
589 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
590 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
591 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400592 struct {
593 int loaded;
594 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300595#ifdef CONFIG_X86_64
596 u16 ds_sel, es_sel;
597#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200598 int gs_ldt_reload_needed;
599 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000600 u64 msr_host_bndcfgs;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -0700601 unsigned long vmcs_host_cr3; /* May not match real cr3 */
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700602 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400603 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200604 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300605 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300606 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300607 struct kvm_segment segs[8];
608 } rmode;
609 struct {
610 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300611 struct kvm_save_segment {
612 u16 selector;
613 unsigned long base;
614 u32 limit;
615 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300616 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300617 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800618 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300619 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200620
Andi Kleena0861c02009-06-08 17:37:09 +0800621 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800622
Yang Zhang01e439b2013-04-11 19:25:12 +0800623 /* Posted interrupt descriptor */
624 struct pi_desc pi_desc;
625
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300626 /* Support for a guest hypervisor (nested VMX) */
627 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200628
629 /* Dynamic PLE window. */
630 int ple_window;
631 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800632
633 /* Support for PML */
634#define PML_ENTITY_NUM 512
635 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800636
Yunhong Jiang64672c92016-06-13 14:19:59 -0700637 /* apic deadline value in host tsc */
638 u64 hv_deadline_tsc;
639
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800640 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800641
642 bool guest_pkru_valid;
643 u32 guest_pkru;
644 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800645
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800646 /*
647 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
648 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
649 * in msr_ia32_feature_control_valid_bits.
650 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800651 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800652 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400653};
654
Avi Kivity2fb92db2011-04-27 19:42:18 +0300655enum segment_cache_field {
656 SEG_FIELD_SEL = 0,
657 SEG_FIELD_BASE = 1,
658 SEG_FIELD_LIMIT = 2,
659 SEG_FIELD_AR = 3,
660
661 SEG_FIELD_NR = 4
662};
663
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400664static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
665{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000666 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400667}
668
Feng Wuefc64402015-09-18 22:29:51 +0800669static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
670{
671 return &(to_vmx(vcpu)->pi_desc);
672}
673
Nadav Har'El22bd0352011-05-25 23:05:57 +0300674#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
675#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
676#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
677 [number##_HIGH] = VMCS12_OFFSET(name)+4
678
Abel Gordon4607c2d2013-04-18 14:35:55 +0300679
Bandan Dasfe2b2012014-04-21 15:20:14 -0400680static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300681 /*
682 * We do NOT shadow fields that are modified when L0
683 * traps and emulates any vmx instruction (e.g. VMPTRLD,
684 * VMXON...) executed by L1.
685 * For example, VM_INSTRUCTION_ERROR is read
686 * by L1 if a vmx instruction fails (part of the error path).
687 * Note the code assumes this logic. If for some reason
688 * we start shadowing these fields then we need to
689 * force a shadow sync when L0 emulates vmx instructions
690 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
691 * by nested_vmx_failValid)
692 */
693 VM_EXIT_REASON,
694 VM_EXIT_INTR_INFO,
695 VM_EXIT_INSTRUCTION_LEN,
696 IDT_VECTORING_INFO_FIELD,
697 IDT_VECTORING_ERROR_CODE,
698 VM_EXIT_INTR_ERROR_CODE,
699 EXIT_QUALIFICATION,
700 GUEST_LINEAR_ADDRESS,
701 GUEST_PHYSICAL_ADDRESS
702};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400703static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300704 ARRAY_SIZE(shadow_read_only_fields);
705
Bandan Dasfe2b2012014-04-21 15:20:14 -0400706static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800707 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300708 GUEST_RIP,
709 GUEST_RSP,
710 GUEST_CR0,
711 GUEST_CR3,
712 GUEST_CR4,
713 GUEST_INTERRUPTIBILITY_INFO,
714 GUEST_RFLAGS,
715 GUEST_CS_SELECTOR,
716 GUEST_CS_AR_BYTES,
717 GUEST_CS_LIMIT,
718 GUEST_CS_BASE,
719 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100720 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300721 CR0_GUEST_HOST_MASK,
722 CR0_READ_SHADOW,
723 CR4_READ_SHADOW,
724 TSC_OFFSET,
725 EXCEPTION_BITMAP,
726 CPU_BASED_VM_EXEC_CONTROL,
727 VM_ENTRY_EXCEPTION_ERROR_CODE,
728 VM_ENTRY_INTR_INFO_FIELD,
729 VM_ENTRY_INSTRUCTION_LEN,
730 VM_ENTRY_EXCEPTION_ERROR_CODE,
731 HOST_FS_BASE,
732 HOST_GS_BASE,
733 HOST_FS_SELECTOR,
734 HOST_GS_SELECTOR
735};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400736static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300737 ARRAY_SIZE(shadow_read_write_fields);
738
Mathias Krause772e0312012-08-30 01:30:19 +0200739static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300740 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800741 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300742 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
743 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
744 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
745 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
746 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
747 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
748 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
749 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800750 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400751 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300752 FIELD(HOST_ES_SELECTOR, host_es_selector),
753 FIELD(HOST_CS_SELECTOR, host_cs_selector),
754 FIELD(HOST_SS_SELECTOR, host_ss_selector),
755 FIELD(HOST_DS_SELECTOR, host_ds_selector),
756 FIELD(HOST_FS_SELECTOR, host_fs_selector),
757 FIELD(HOST_GS_SELECTOR, host_gs_selector),
758 FIELD(HOST_TR_SELECTOR, host_tr_selector),
759 FIELD64(IO_BITMAP_A, io_bitmap_a),
760 FIELD64(IO_BITMAP_B, io_bitmap_b),
761 FIELD64(MSR_BITMAP, msr_bitmap),
762 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
763 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
764 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
765 FIELD64(TSC_OFFSET, tsc_offset),
766 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
767 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800768 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400769 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300770 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800771 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
772 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
773 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
774 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400775 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800776 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300777 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
778 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400779 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300780 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
781 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
782 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
783 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
784 FIELD64(GUEST_PDPTR0, guest_pdptr0),
785 FIELD64(GUEST_PDPTR1, guest_pdptr1),
786 FIELD64(GUEST_PDPTR2, guest_pdptr2),
787 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100788 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300789 FIELD64(HOST_IA32_PAT, host_ia32_pat),
790 FIELD64(HOST_IA32_EFER, host_ia32_efer),
791 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
792 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
793 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
794 FIELD(EXCEPTION_BITMAP, exception_bitmap),
795 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
796 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
797 FIELD(CR3_TARGET_COUNT, cr3_target_count),
798 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
799 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
800 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
801 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
802 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
803 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
804 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
805 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
806 FIELD(TPR_THRESHOLD, tpr_threshold),
807 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
808 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
809 FIELD(VM_EXIT_REASON, vm_exit_reason),
810 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
811 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
812 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
813 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
814 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
815 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
816 FIELD(GUEST_ES_LIMIT, guest_es_limit),
817 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
818 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
819 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
820 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
821 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
822 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
823 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
824 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
825 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
826 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
827 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
828 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
829 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
830 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
831 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
832 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
833 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
834 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
835 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
836 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
837 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100838 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300839 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
840 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
841 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
842 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
843 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
844 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
845 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
846 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
847 FIELD(EXIT_QUALIFICATION, exit_qualification),
848 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
849 FIELD(GUEST_CR0, guest_cr0),
850 FIELD(GUEST_CR3, guest_cr3),
851 FIELD(GUEST_CR4, guest_cr4),
852 FIELD(GUEST_ES_BASE, guest_es_base),
853 FIELD(GUEST_CS_BASE, guest_cs_base),
854 FIELD(GUEST_SS_BASE, guest_ss_base),
855 FIELD(GUEST_DS_BASE, guest_ds_base),
856 FIELD(GUEST_FS_BASE, guest_fs_base),
857 FIELD(GUEST_GS_BASE, guest_gs_base),
858 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
859 FIELD(GUEST_TR_BASE, guest_tr_base),
860 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
861 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
862 FIELD(GUEST_DR7, guest_dr7),
863 FIELD(GUEST_RSP, guest_rsp),
864 FIELD(GUEST_RIP, guest_rip),
865 FIELD(GUEST_RFLAGS, guest_rflags),
866 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
867 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
868 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
869 FIELD(HOST_CR0, host_cr0),
870 FIELD(HOST_CR3, host_cr3),
871 FIELD(HOST_CR4, host_cr4),
872 FIELD(HOST_FS_BASE, host_fs_base),
873 FIELD(HOST_GS_BASE, host_gs_base),
874 FIELD(HOST_TR_BASE, host_tr_base),
875 FIELD(HOST_GDTR_BASE, host_gdtr_base),
876 FIELD(HOST_IDTR_BASE, host_idtr_base),
877 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
878 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
879 FIELD(HOST_RSP, host_rsp),
880 FIELD(HOST_RIP, host_rip),
881};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300882
883static inline short vmcs_field_to_offset(unsigned long field)
884{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100885 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
886
887 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
888 vmcs_field_to_offset_table[field] == 0)
889 return -ENOENT;
890
Nadav Har'El22bd0352011-05-25 23:05:57 +0300891 return vmcs_field_to_offset_table[field];
892}
893
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300894static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
895{
David Matlack4f2777b2016-07-13 17:16:37 -0700896 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300897}
898
Peter Feiner995f00a2017-06-30 17:26:32 -0700899static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300900static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700901static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800902static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200903static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300904static void vmx_set_segment(struct kvm_vcpu *vcpu,
905 struct kvm_segment *var, int seg);
906static void vmx_get_segment(struct kvm_vcpu *vcpu,
907 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200908static bool guest_state_valid(struct kvm_vcpu *vcpu);
909static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300910static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300911static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800912static int alloc_identity_pagetable(struct kvm *kvm);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200913static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
914static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
915static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
916 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300917
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918static DEFINE_PER_CPU(struct vmcs *, vmxarea);
919static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300920/*
921 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
922 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
923 */
924static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925
Feng Wubf9f6ac2015-09-18 22:29:55 +0800926/*
927 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
928 * can find which vCPU should be waken up.
929 */
930static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
931static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
932
Radim Krčmář23611332016-09-29 22:41:33 +0200933enum {
934 VMX_IO_BITMAP_A,
935 VMX_IO_BITMAP_B,
936 VMX_MSR_BITMAP_LEGACY,
937 VMX_MSR_BITMAP_LONGMODE,
938 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
939 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
940 VMX_MSR_BITMAP_LEGACY_X2APIC,
941 VMX_MSR_BITMAP_LONGMODE_X2APIC,
942 VMX_VMREAD_BITMAP,
943 VMX_VMWRITE_BITMAP,
944 VMX_BITMAP_NR
945};
946
947static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
948
949#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
950#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
951#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
952#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
953#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
954#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
955#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
956#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
957#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
958#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300959
Avi Kivity110312c2010-12-21 12:54:20 +0200960static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200961static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200962
Sheng Yang2384d2b2008-01-17 15:14:33 +0800963static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
964static DEFINE_SPINLOCK(vmx_vpid_lock);
965
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300966static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967 int size;
968 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300969 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300971 u32 pin_based_exec_ctrl;
972 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800973 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300974 u32 vmexit_ctrl;
975 u32 vmentry_ctrl;
976} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977
Hannes Ederefff9e52008-11-28 17:02:06 +0100978static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800979 u32 ept;
980 u32 vpid;
981} vmx_capability;
982
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983#define VMX_SEGMENT_FIELD(seg) \
984 [VCPU_SREG_##seg] = { \
985 .selector = GUEST_##seg##_SELECTOR, \
986 .base = GUEST_##seg##_BASE, \
987 .limit = GUEST_##seg##_LIMIT, \
988 .ar_bytes = GUEST_##seg##_AR_BYTES, \
989 }
990
Mathias Krause772e0312012-08-30 01:30:19 +0200991static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 unsigned selector;
993 unsigned base;
994 unsigned limit;
995 unsigned ar_bytes;
996} kvm_vmx_segment_fields[] = {
997 VMX_SEGMENT_FIELD(CS),
998 VMX_SEGMENT_FIELD(DS),
999 VMX_SEGMENT_FIELD(ES),
1000 VMX_SEGMENT_FIELD(FS),
1001 VMX_SEGMENT_FIELD(GS),
1002 VMX_SEGMENT_FIELD(SS),
1003 VMX_SEGMENT_FIELD(TR),
1004 VMX_SEGMENT_FIELD(LDTR),
1005};
1006
Avi Kivity26bb0982009-09-07 11:14:12 +03001007static u64 host_efer;
1008
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001009static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1010
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001011/*
Brian Gerst8c065852010-07-17 09:03:26 -04001012 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001013 * away by decrementing the array size.
1014 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001016#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001017 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001019 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021
Jan Kiszka5bb16012016-02-09 20:14:21 +01001022static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
1024 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1025 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001026 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1027}
1028
Jan Kiszka6f054852016-02-09 20:15:18 +01001029static inline bool is_debug(u32 intr_info)
1030{
1031 return is_exception_n(intr_info, DB_VECTOR);
1032}
1033
1034static inline bool is_breakpoint(u32 intr_info)
1035{
1036 return is_exception_n(intr_info, BP_VECTOR);
1037}
1038
Jan Kiszka5bb16012016-02-09 20:14:21 +01001039static inline bool is_page_fault(u32 intr_info)
1040{
1041 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042}
1043
Gui Jianfeng31299942010-03-15 17:29:09 +08001044static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001045{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001046 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001047}
1048
Gui Jianfeng31299942010-03-15 17:29:09 +08001049static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001050{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001051 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001052}
1053
Gui Jianfeng31299942010-03-15 17:29:09 +08001054static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055{
1056 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1057 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1058}
1059
Gui Jianfeng31299942010-03-15 17:29:09 +08001060static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001061{
1062 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1063 INTR_INFO_VALID_MASK)) ==
1064 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1065}
1066
Gui Jianfeng31299942010-03-15 17:29:09 +08001067static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001068{
Sheng Yang04547152009-04-01 15:52:31 +08001069 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001070}
1071
Gui Jianfeng31299942010-03-15 17:29:09 +08001072static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001073{
Sheng Yang04547152009-04-01 15:52:31 +08001074 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001075}
1076
Paolo Bonzini35754c92015-07-29 12:05:37 +02001077static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001078{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001079 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080}
1081
Gui Jianfeng31299942010-03-15 17:29:09 +08001082static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001083{
Sheng Yang04547152009-04-01 15:52:31 +08001084 return vmcs_config.cpu_based_exec_ctrl &
1085 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001086}
1087
Avi Kivity774ead32007-12-26 13:57:04 +02001088static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001089{
Sheng Yang04547152009-04-01 15:52:31 +08001090 return vmcs_config.cpu_based_2nd_exec_ctrl &
1091 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1092}
1093
Yang Zhang8d146952013-01-25 10:18:50 +08001094static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1095{
1096 return vmcs_config.cpu_based_2nd_exec_ctrl &
1097 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1098}
1099
Yang Zhang83d4c282013-01-25 10:18:49 +08001100static inline bool cpu_has_vmx_apic_register_virt(void)
1101{
1102 return vmcs_config.cpu_based_2nd_exec_ctrl &
1103 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1104}
1105
Yang Zhangc7c9c562013-01-25 10:18:51 +08001106static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1107{
1108 return vmcs_config.cpu_based_2nd_exec_ctrl &
1109 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1110}
1111
Yunhong Jiang64672c92016-06-13 14:19:59 -07001112/*
1113 * Comment's format: document - errata name - stepping - processor name.
1114 * Refer from
1115 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1116 */
1117static u32 vmx_preemption_cpu_tfms[] = {
1118/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11190x000206E6,
1120/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1121/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1122/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11230x00020652,
1124/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11250x00020655,
1126/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1127/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1128/*
1129 * 320767.pdf - AAP86 - B1 -
1130 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1131 */
11320x000106E5,
1133/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11340x000106A0,
1135/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11360x000106A1,
1137/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11380x000106A4,
1139 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1140 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1141 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11420x000106A5,
1143};
1144
1145static inline bool cpu_has_broken_vmx_preemption_timer(void)
1146{
1147 u32 eax = cpuid_eax(0x00000001), i;
1148
1149 /* Clear the reserved bits */
1150 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001151 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001152 if (eax == vmx_preemption_cpu_tfms[i])
1153 return true;
1154
1155 return false;
1156}
1157
1158static inline bool cpu_has_vmx_preemption_timer(void)
1159{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001160 return vmcs_config.pin_based_exec_ctrl &
1161 PIN_BASED_VMX_PREEMPTION_TIMER;
1162}
1163
Yang Zhang01e439b2013-04-11 19:25:12 +08001164static inline bool cpu_has_vmx_posted_intr(void)
1165{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001166 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1167 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001168}
1169
1170static inline bool cpu_has_vmx_apicv(void)
1171{
1172 return cpu_has_vmx_apic_register_virt() &&
1173 cpu_has_vmx_virtual_intr_delivery() &&
1174 cpu_has_vmx_posted_intr();
1175}
1176
Sheng Yang04547152009-04-01 15:52:31 +08001177static inline bool cpu_has_vmx_flexpriority(void)
1178{
1179 return cpu_has_vmx_tpr_shadow() &&
1180 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001181}
1182
Marcelo Tosattie7997942009-06-11 12:07:40 -03001183static inline bool cpu_has_vmx_ept_execute_only(void)
1184{
Gui Jianfeng31299942010-03-15 17:29:09 +08001185 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001186}
1187
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188static inline bool cpu_has_vmx_ept_2m_page(void)
1189{
Gui Jianfeng31299942010-03-15 17:29:09 +08001190 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001191}
1192
Sheng Yang878403b2010-01-05 19:02:29 +08001193static inline bool cpu_has_vmx_ept_1g_page(void)
1194{
Gui Jianfeng31299942010-03-15 17:29:09 +08001195 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001196}
1197
Sheng Yang4bc9b982010-06-02 14:05:24 +08001198static inline bool cpu_has_vmx_ept_4levels(void)
1199{
1200 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1201}
1202
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001203static inline bool cpu_has_vmx_ept_mt_wb(void)
1204{
1205 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1206}
1207
Xudong Hao83c3a332012-05-28 19:33:35 +08001208static inline bool cpu_has_vmx_ept_ad_bits(void)
1209{
1210 return vmx_capability.ept & VMX_EPT_AD_BIT;
1211}
1212
Gui Jianfeng31299942010-03-15 17:29:09 +08001213static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001214{
Gui Jianfeng31299942010-03-15 17:29:09 +08001215 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001216}
1217
Gui Jianfeng31299942010-03-15 17:29:09 +08001218static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001219{
Gui Jianfeng31299942010-03-15 17:29:09 +08001220 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001221}
1222
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001223static inline bool cpu_has_vmx_invvpid_single(void)
1224{
1225 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1226}
1227
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001228static inline bool cpu_has_vmx_invvpid_global(void)
1229{
1230 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1231}
1232
Wanpeng Li08d839c2017-03-23 05:30:08 -07001233static inline bool cpu_has_vmx_invvpid(void)
1234{
1235 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1236}
1237
Gui Jianfeng31299942010-03-15 17:29:09 +08001238static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001239{
Sheng Yang04547152009-04-01 15:52:31 +08001240 return vmcs_config.cpu_based_2nd_exec_ctrl &
1241 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001242}
1243
Gui Jianfeng31299942010-03-15 17:29:09 +08001244static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001245{
1246 return vmcs_config.cpu_based_2nd_exec_ctrl &
1247 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1248}
1249
Gui Jianfeng31299942010-03-15 17:29:09 +08001250static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001251{
1252 return vmcs_config.cpu_based_2nd_exec_ctrl &
1253 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1254}
1255
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001256static inline bool cpu_has_vmx_basic_inout(void)
1257{
1258 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1259}
1260
Paolo Bonzini35754c92015-07-29 12:05:37 +02001261static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001262{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001263 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001264}
1265
Gui Jianfeng31299942010-03-15 17:29:09 +08001266static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001267{
Sheng Yang04547152009-04-01 15:52:31 +08001268 return vmcs_config.cpu_based_2nd_exec_ctrl &
1269 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001270}
1271
Gui Jianfeng31299942010-03-15 17:29:09 +08001272static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001273{
1274 return vmcs_config.cpu_based_2nd_exec_ctrl &
1275 SECONDARY_EXEC_RDTSCP;
1276}
1277
Mao, Junjiead756a12012-07-02 01:18:48 +00001278static inline bool cpu_has_vmx_invpcid(void)
1279{
1280 return vmcs_config.cpu_based_2nd_exec_ctrl &
1281 SECONDARY_EXEC_ENABLE_INVPCID;
1282}
1283
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001284static inline bool cpu_has_vmx_wbinvd_exit(void)
1285{
1286 return vmcs_config.cpu_based_2nd_exec_ctrl &
1287 SECONDARY_EXEC_WBINVD_EXITING;
1288}
1289
Abel Gordonabc4fc52013-04-18 14:35:25 +03001290static inline bool cpu_has_vmx_shadow_vmcs(void)
1291{
1292 u64 vmx_msr;
1293 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1294 /* check if the cpu supports writing r/o exit information fields */
1295 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1296 return false;
1297
1298 return vmcs_config.cpu_based_2nd_exec_ctrl &
1299 SECONDARY_EXEC_SHADOW_VMCS;
1300}
1301
Kai Huang843e4332015-01-28 10:54:28 +08001302static inline bool cpu_has_vmx_pml(void)
1303{
1304 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1305}
1306
Haozhong Zhang64903d62015-10-20 15:39:09 +08001307static inline bool cpu_has_vmx_tsc_scaling(void)
1308{
1309 return vmcs_config.cpu_based_2nd_exec_ctrl &
1310 SECONDARY_EXEC_TSC_SCALING;
1311}
1312
Bandan Das2a499e42017-08-03 15:54:41 -04001313static inline bool cpu_has_vmx_vmfunc(void)
1314{
1315 return vmcs_config.cpu_based_2nd_exec_ctrl &
1316 SECONDARY_EXEC_ENABLE_VMFUNC;
1317}
1318
Sheng Yang04547152009-04-01 15:52:31 +08001319static inline bool report_flexpriority(void)
1320{
1321 return flexpriority_enabled;
1322}
1323
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001324static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1325{
1326 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1327}
1328
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001329static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1330{
1331 return vmcs12->cpu_based_vm_exec_control & bit;
1332}
1333
1334static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1335{
1336 return (vmcs12->cpu_based_vm_exec_control &
1337 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1338 (vmcs12->secondary_vm_exec_control & bit);
1339}
1340
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001341static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001342{
1343 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1344}
1345
Jan Kiszkaf4124502014-03-07 20:03:13 +01001346static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1347{
1348 return vmcs12->pin_based_vm_exec_control &
1349 PIN_BASED_VMX_PREEMPTION_TIMER;
1350}
1351
Nadav Har'El155a97a2013-08-05 11:07:16 +03001352static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1353{
1354 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1355}
1356
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001357static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1358{
1359 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1360 vmx_xsaves_supported();
1361}
1362
Bandan Dasc5f983f2017-05-05 15:25:14 -04001363static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1364{
1365 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1366}
1367
Wincy Vanf2b93282015-02-03 23:56:03 +08001368static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1369{
1370 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1371}
1372
Wanpeng Li5c614b32015-10-13 09:18:36 -07001373static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1374{
1375 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1376}
1377
Wincy Van82f0dd42015-02-03 23:57:18 +08001378static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1379{
1380 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1381}
1382
Wincy Van608406e2015-02-03 23:57:51 +08001383static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1384{
1385 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1386}
1387
Wincy Van705699a2015-02-03 23:58:17 +08001388static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1389{
1390 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1391}
1392
Bandan Das27c42a12017-08-03 15:54:42 -04001393static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1394{
1395 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1396}
1397
Bandan Das41ab9372017-08-03 15:54:43 -04001398static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1399{
1400 return nested_cpu_has_vmfunc(vmcs12) &&
1401 (vmcs12->vm_function_control &
1402 VMX_VMFUNC_EPTP_SWITCHING);
1403}
1404
Jim Mattsonef85b672016-12-12 11:01:37 -08001405static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001406{
1407 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001408 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001409}
1410
Jan Kiszka533558b2014-01-04 18:47:20 +01001411static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1412 u32 exit_intr_info,
1413 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001414static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1415 struct vmcs12 *vmcs12,
1416 u32 reason, unsigned long qualification);
1417
Rusty Russell8b9cf982007-07-30 16:31:43 +10001418static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001419{
1420 int i;
1421
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001422 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001423 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001424 return i;
1425 return -1;
1426}
1427
Sheng Yang2384d2b2008-01-17 15:14:33 +08001428static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1429{
1430 struct {
1431 u64 vpid : 16;
1432 u64 rsvd : 48;
1433 u64 gva;
1434 } operand = { vpid, 0, gva };
1435
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001436 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001437 /* CF==1 or ZF==1 --> rc = -1 */
1438 "; ja 1f ; ud2 ; 1:"
1439 : : "a"(&operand), "c"(ext) : "cc", "memory");
1440}
1441
Sheng Yang14394422008-04-28 12:24:45 +08001442static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1443{
1444 struct {
1445 u64 eptp, gpa;
1446 } operand = {eptp, gpa};
1447
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001448 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001449 /* CF==1 or ZF==1 --> rc = -1 */
1450 "; ja 1f ; ud2 ; 1:\n"
1451 : : "a" (&operand), "c" (ext) : "cc", "memory");
1452}
1453
Avi Kivity26bb0982009-09-07 11:14:12 +03001454static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001455{
1456 int i;
1457
Rusty Russell8b9cf982007-07-30 16:31:43 +10001458 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001459 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001460 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001461 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001462}
1463
Avi Kivity6aa8b732006-12-10 02:21:36 -08001464static void vmcs_clear(struct vmcs *vmcs)
1465{
1466 u64 phys_addr = __pa(vmcs);
1467 u8 error;
1468
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001469 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001470 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001471 : "cc", "memory");
1472 if (error)
1473 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1474 vmcs, phys_addr);
1475}
1476
Nadav Har'Eld462b812011-05-24 15:26:10 +03001477static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1478{
1479 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001480 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1481 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001482 loaded_vmcs->cpu = -1;
1483 loaded_vmcs->launched = 0;
1484}
1485
Dongxiao Xu7725b892010-05-11 18:29:38 +08001486static void vmcs_load(struct vmcs *vmcs)
1487{
1488 u64 phys_addr = __pa(vmcs);
1489 u8 error;
1490
1491 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001492 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001493 : "cc", "memory");
1494 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001495 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001496 vmcs, phys_addr);
1497}
1498
Dave Young2965faa2015-09-09 15:38:55 -07001499#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001500/*
1501 * This bitmap is used to indicate whether the vmclear
1502 * operation is enabled on all cpus. All disabled by
1503 * default.
1504 */
1505static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1506
1507static inline void crash_enable_local_vmclear(int cpu)
1508{
1509 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1510}
1511
1512static inline void crash_disable_local_vmclear(int cpu)
1513{
1514 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1515}
1516
1517static inline int crash_local_vmclear_enabled(int cpu)
1518{
1519 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1520}
1521
1522static void crash_vmclear_local_loaded_vmcss(void)
1523{
1524 int cpu = raw_smp_processor_id();
1525 struct loaded_vmcs *v;
1526
1527 if (!crash_local_vmclear_enabled(cpu))
1528 return;
1529
1530 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1531 loaded_vmcss_on_cpu_link)
1532 vmcs_clear(v->vmcs);
1533}
1534#else
1535static inline void crash_enable_local_vmclear(int cpu) { }
1536static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001537#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001538
Nadav Har'Eld462b812011-05-24 15:26:10 +03001539static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001540{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001541 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001542 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001543
Nadav Har'Eld462b812011-05-24 15:26:10 +03001544 if (loaded_vmcs->cpu != cpu)
1545 return; /* vcpu migration can race with cpu offline */
1546 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001548 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001549 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001550
1551 /*
1552 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1553 * is before setting loaded_vmcs->vcpu to -1 which is done in
1554 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1555 * then adds the vmcs into percpu list before it is deleted.
1556 */
1557 smp_wmb();
1558
Nadav Har'Eld462b812011-05-24 15:26:10 +03001559 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001560 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561}
1562
Nadav Har'Eld462b812011-05-24 15:26:10 +03001563static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001564{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001565 int cpu = loaded_vmcs->cpu;
1566
1567 if (cpu != -1)
1568 smp_call_function_single(cpu,
1569 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001570}
1571
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001572static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001573{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001574 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001575 return;
1576
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001577 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001578 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001579}
1580
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001581static inline void vpid_sync_vcpu_global(void)
1582{
1583 if (cpu_has_vmx_invvpid_global())
1584 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1585}
1586
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001587static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001588{
1589 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001590 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001591 else
1592 vpid_sync_vcpu_global();
1593}
1594
Sheng Yang14394422008-04-28 12:24:45 +08001595static inline void ept_sync_global(void)
1596{
1597 if (cpu_has_vmx_invept_global())
1598 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1599}
1600
1601static inline void ept_sync_context(u64 eptp)
1602{
Avi Kivity089d0342009-03-23 18:26:32 +02001603 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001604 if (cpu_has_vmx_invept_context())
1605 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1606 else
1607 ept_sync_global();
1608 }
1609}
1610
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001611static __always_inline void vmcs_check16(unsigned long field)
1612{
1613 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1614 "16-bit accessor invalid for 64-bit field");
1615 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1616 "16-bit accessor invalid for 64-bit high field");
1617 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1618 "16-bit accessor invalid for 32-bit high field");
1619 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1620 "16-bit accessor invalid for natural width field");
1621}
1622
1623static __always_inline void vmcs_check32(unsigned long field)
1624{
1625 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1626 "32-bit accessor invalid for 16-bit field");
1627 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1628 "32-bit accessor invalid for natural width field");
1629}
1630
1631static __always_inline void vmcs_check64(unsigned long field)
1632{
1633 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1634 "64-bit accessor invalid for 16-bit field");
1635 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1636 "64-bit accessor invalid for 64-bit high field");
1637 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1638 "64-bit accessor invalid for 32-bit field");
1639 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1640 "64-bit accessor invalid for natural width field");
1641}
1642
1643static __always_inline void vmcs_checkl(unsigned long field)
1644{
1645 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1646 "Natural width accessor invalid for 16-bit field");
1647 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1648 "Natural width accessor invalid for 64-bit field");
1649 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1650 "Natural width accessor invalid for 64-bit high field");
1651 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1652 "Natural width accessor invalid for 32-bit field");
1653}
1654
1655static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656{
Avi Kivity5e520e62011-05-15 10:13:12 -04001657 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658
Avi Kivity5e520e62011-05-15 10:13:12 -04001659 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1660 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001661 return value;
1662}
1663
Avi Kivity96304212011-05-15 10:13:13 -04001664static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001665{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001666 vmcs_check16(field);
1667 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001668}
1669
Avi Kivity96304212011-05-15 10:13:13 -04001670static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001671{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001672 vmcs_check32(field);
1673 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674}
1675
Avi Kivity96304212011-05-15 10:13:13 -04001676static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001677{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001678 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001679#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001680 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001682 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001683#endif
1684}
1685
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001686static __always_inline unsigned long vmcs_readl(unsigned long field)
1687{
1688 vmcs_checkl(field);
1689 return __vmcs_readl(field);
1690}
1691
Avi Kivitye52de1b2007-01-05 16:36:56 -08001692static noinline void vmwrite_error(unsigned long field, unsigned long value)
1693{
1694 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1695 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1696 dump_stack();
1697}
1698
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001699static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700{
1701 u8 error;
1702
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001703 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001704 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001705 if (unlikely(error))
1706 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707}
1708
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001709static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001710{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001711 vmcs_check16(field);
1712 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001713}
1714
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001715static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001716{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001717 vmcs_check32(field);
1718 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001719}
1720
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001721static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001722{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001723 vmcs_check64(field);
1724 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001725#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001726 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001727 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728#endif
1729}
1730
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001731static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001732{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001733 vmcs_checkl(field);
1734 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001735}
1736
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001737static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001738{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001739 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1740 "vmcs_clear_bits does not support 64-bit fields");
1741 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1742}
1743
1744static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1745{
1746 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1747 "vmcs_set_bits does not support 64-bit fields");
1748 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001749}
1750
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001751static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1752{
1753 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1754}
1755
Gleb Natapov2961e8762013-11-25 15:37:13 +02001756static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1757{
1758 vmcs_write32(VM_ENTRY_CONTROLS, val);
1759 vmx->vm_entry_controls_shadow = val;
1760}
1761
1762static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1763{
1764 if (vmx->vm_entry_controls_shadow != val)
1765 vm_entry_controls_init(vmx, val);
1766}
1767
1768static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1769{
1770 return vmx->vm_entry_controls_shadow;
1771}
1772
1773
1774static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1775{
1776 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1777}
1778
1779static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1780{
1781 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1782}
1783
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001784static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1785{
1786 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1787}
1788
Gleb Natapov2961e8762013-11-25 15:37:13 +02001789static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1790{
1791 vmcs_write32(VM_EXIT_CONTROLS, val);
1792 vmx->vm_exit_controls_shadow = val;
1793}
1794
1795static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1796{
1797 if (vmx->vm_exit_controls_shadow != val)
1798 vm_exit_controls_init(vmx, val);
1799}
1800
1801static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1802{
1803 return vmx->vm_exit_controls_shadow;
1804}
1805
1806
1807static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1808{
1809 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1810}
1811
1812static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1813{
1814 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1815}
1816
Avi Kivity2fb92db2011-04-27 19:42:18 +03001817static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1818{
1819 vmx->segment_cache.bitmask = 0;
1820}
1821
1822static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1823 unsigned field)
1824{
1825 bool ret;
1826 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1827
1828 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1829 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1830 vmx->segment_cache.bitmask = 0;
1831 }
1832 ret = vmx->segment_cache.bitmask & mask;
1833 vmx->segment_cache.bitmask |= mask;
1834 return ret;
1835}
1836
1837static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1838{
1839 u16 *p = &vmx->segment_cache.seg[seg].selector;
1840
1841 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1842 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1843 return *p;
1844}
1845
1846static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1847{
1848 ulong *p = &vmx->segment_cache.seg[seg].base;
1849
1850 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1851 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1852 return *p;
1853}
1854
1855static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1856{
1857 u32 *p = &vmx->segment_cache.seg[seg].limit;
1858
1859 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1860 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1861 return *p;
1862}
1863
1864static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1865{
1866 u32 *p = &vmx->segment_cache.seg[seg].ar;
1867
1868 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1869 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1870 return *p;
1871}
1872
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001873static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1874{
1875 u32 eb;
1876
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001877 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001878 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001879 if ((vcpu->guest_debug &
1880 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1881 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1882 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001883 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001884 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001885 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001886 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001887
1888 /* When we are running a nested L2 guest and L1 specified for it a
1889 * certain exception bitmap, we must trap the same exceptions and pass
1890 * them to L1. When running L2, we will only handle the exceptions
1891 * specified above if L1 did not want them.
1892 */
1893 if (is_guest_mode(vcpu))
1894 eb |= get_vmcs12(vcpu)->exception_bitmap;
1895
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001896 vmcs_write32(EXCEPTION_BITMAP, eb);
1897}
1898
Gleb Natapov2961e8762013-11-25 15:37:13 +02001899static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1900 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001901{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001902 vm_entry_controls_clearbit(vmx, entry);
1903 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001904}
1905
Avi Kivity61d2ef22010-04-28 16:40:38 +03001906static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1907{
1908 unsigned i;
1909 struct msr_autoload *m = &vmx->msr_autoload;
1910
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001911 switch (msr) {
1912 case MSR_EFER:
1913 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001914 clear_atomic_switch_msr_special(vmx,
1915 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001916 VM_EXIT_LOAD_IA32_EFER);
1917 return;
1918 }
1919 break;
1920 case MSR_CORE_PERF_GLOBAL_CTRL:
1921 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001922 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001923 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1924 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1925 return;
1926 }
1927 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001928 }
1929
Avi Kivity61d2ef22010-04-28 16:40:38 +03001930 for (i = 0; i < m->nr; ++i)
1931 if (m->guest[i].index == msr)
1932 break;
1933
1934 if (i == m->nr)
1935 return;
1936 --m->nr;
1937 m->guest[i] = m->guest[m->nr];
1938 m->host[i] = m->host[m->nr];
1939 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1940 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1941}
1942
Gleb Natapov2961e8762013-11-25 15:37:13 +02001943static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1944 unsigned long entry, unsigned long exit,
1945 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1946 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001947{
1948 vmcs_write64(guest_val_vmcs, guest_val);
1949 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001950 vm_entry_controls_setbit(vmx, entry);
1951 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001952}
1953
Avi Kivity61d2ef22010-04-28 16:40:38 +03001954static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1955 u64 guest_val, u64 host_val)
1956{
1957 unsigned i;
1958 struct msr_autoload *m = &vmx->msr_autoload;
1959
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001960 switch (msr) {
1961 case MSR_EFER:
1962 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001963 add_atomic_switch_msr_special(vmx,
1964 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001965 VM_EXIT_LOAD_IA32_EFER,
1966 GUEST_IA32_EFER,
1967 HOST_IA32_EFER,
1968 guest_val, host_val);
1969 return;
1970 }
1971 break;
1972 case MSR_CORE_PERF_GLOBAL_CTRL:
1973 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001974 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001975 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1976 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1977 GUEST_IA32_PERF_GLOBAL_CTRL,
1978 HOST_IA32_PERF_GLOBAL_CTRL,
1979 guest_val, host_val);
1980 return;
1981 }
1982 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001983 case MSR_IA32_PEBS_ENABLE:
1984 /* PEBS needs a quiescent period after being disabled (to write
1985 * a record). Disabling PEBS through VMX MSR swapping doesn't
1986 * provide that period, so a CPU could write host's record into
1987 * guest's memory.
1988 */
1989 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001990 }
1991
Avi Kivity61d2ef22010-04-28 16:40:38 +03001992 for (i = 0; i < m->nr; ++i)
1993 if (m->guest[i].index == msr)
1994 break;
1995
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001996 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001997 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001998 "Can't add msr %x\n", msr);
1999 return;
2000 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002001 ++m->nr;
2002 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2003 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2004 }
2005
2006 m->guest[i].index = msr;
2007 m->guest[i].value = guest_val;
2008 m->host[i].index = msr;
2009 m->host[i].value = host_val;
2010}
2011
Avi Kivity92c0d902009-10-29 11:00:16 +02002012static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002013{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002014 u64 guest_efer = vmx->vcpu.arch.efer;
2015 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002016
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002017 if (!enable_ept) {
2018 /*
2019 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2020 * host CPUID is more efficient than testing guest CPUID
2021 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2022 */
2023 if (boot_cpu_has(X86_FEATURE_SMEP))
2024 guest_efer |= EFER_NX;
2025 else if (!(guest_efer & EFER_NX))
2026 ignore_bits |= EFER_NX;
2027 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002028
Avi Kivity51c6cf62007-08-29 03:48:05 +03002029 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002030 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002031 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002032 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002033#ifdef CONFIG_X86_64
2034 ignore_bits |= EFER_LMA | EFER_LME;
2035 /* SCE is meaningful only in long mode on Intel */
2036 if (guest_efer & EFER_LMA)
2037 ignore_bits &= ~(u64)EFER_SCE;
2038#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002039
2040 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002041
2042 /*
2043 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2044 * On CPUs that support "load IA32_EFER", always switch EFER
2045 * atomically, since it's faster than switching it manually.
2046 */
2047 if (cpu_has_load_ia32_efer ||
2048 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002049 if (!(guest_efer & EFER_LMA))
2050 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002051 if (guest_efer != host_efer)
2052 add_atomic_switch_msr(vmx, MSR_EFER,
2053 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002054 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002055 } else {
2056 guest_efer &= ~ignore_bits;
2057 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002058
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002059 vmx->guest_msrs[efer_offset].data = guest_efer;
2060 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2061
2062 return true;
2063 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002064}
2065
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002066#ifdef CONFIG_X86_32
2067/*
2068 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2069 * VMCS rather than the segment table. KVM uses this helper to figure
2070 * out the current bases to poke them into the VMCS before entry.
2071 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002072static unsigned long segment_base(u16 selector)
2073{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002074 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002075 unsigned long v;
2076
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002077 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002078 return 0;
2079
Thomas Garnier45fc8752017-03-14 10:05:08 -07002080 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002081
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002082 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002083 u16 ldt_selector = kvm_read_ldt();
2084
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002085 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002086 return 0;
2087
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002088 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002089 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002090 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002091 return v;
2092}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002093#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002094
Avi Kivity04d2cc72007-09-10 18:10:54 +03002095static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002096{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002097 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002098 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002099
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002100 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002101 return;
2102
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002103 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002104 /*
2105 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2106 * allow segment selectors with cpl > 0 or ti == 1.
2107 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002108 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002109 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002110 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002111 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002112 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002113 vmx->host_state.fs_reload_needed = 0;
2114 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002115 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002116 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002117 }
Avi Kivity9581d442010-10-19 16:46:55 +02002118 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002119 if (!(vmx->host_state.gs_sel & 7))
2120 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002121 else {
2122 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002123 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002124 }
2125
2126#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002127 savesegment(ds, vmx->host_state.ds_sel);
2128 savesegment(es, vmx->host_state.es_sel);
2129#endif
2130
2131#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002132 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2133 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2134#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002135 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2136 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002137#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002138
2139#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002140 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2141 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002142 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002143#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002144 if (boot_cpu_has(X86_FEATURE_MPX))
2145 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002146 for (i = 0; i < vmx->save_nmsrs; ++i)
2147 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002148 vmx->guest_msrs[i].data,
2149 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002150}
2151
Avi Kivitya9b21b62008-06-24 11:48:49 +03002152static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002153{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002154 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002155 return;
2156
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002157 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002158 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002159#ifdef CONFIG_X86_64
2160 if (is_long_mode(&vmx->vcpu))
2161 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2162#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002163 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002164 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002165#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002166 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002167#else
2168 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002169#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002170 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002171 if (vmx->host_state.fs_reload_needed)
2172 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002173#ifdef CONFIG_X86_64
2174 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2175 loadsegment(ds, vmx->host_state.ds_sel);
2176 loadsegment(es, vmx->host_state.es_sel);
2177 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002178#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002179 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002180#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002181 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002182#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002183 if (vmx->host_state.msr_host_bndcfgs)
2184 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002185 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002186}
2187
Avi Kivitya9b21b62008-06-24 11:48:49 +03002188static void vmx_load_host_state(struct vcpu_vmx *vmx)
2189{
2190 preempt_disable();
2191 __vmx_load_host_state(vmx);
2192 preempt_enable();
2193}
2194
Feng Wu28b835d2015-09-18 22:29:54 +08002195static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2196{
2197 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2198 struct pi_desc old, new;
2199 unsigned int dest;
2200
2201 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002202 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2203 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002204 return;
2205
2206 do {
2207 old.control = new.control = pi_desc->control;
2208
2209 /*
2210 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2211 * are two possible cases:
2212 * 1. After running 'pre_block', context switch
2213 * happened. For this case, 'sn' was set in
2214 * vmx_vcpu_put(), so we need to clear it here.
2215 * 2. After running 'pre_block', we were blocked,
2216 * and woken up by some other guy. For this case,
2217 * we don't need to do anything, 'pi_post_block'
2218 * will do everything for us. However, we cannot
2219 * check whether it is case #1 or case #2 here
2220 * (maybe, not needed), so we also clear sn here,
2221 * I think it is not a big deal.
2222 */
2223 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2224 if (vcpu->cpu != cpu) {
2225 dest = cpu_physical_id(cpu);
2226
2227 if (x2apic_enabled())
2228 new.ndst = dest;
2229 else
2230 new.ndst = (dest << 8) & 0xFF00;
2231 }
2232
2233 /* set 'NV' to 'notification vector' */
2234 new.nv = POSTED_INTR_VECTOR;
2235 }
2236
2237 /* Allow posting non-urgent interrupts */
2238 new.sn = 0;
2239 } while (cmpxchg(&pi_desc->control, old.control,
2240 new.control) != old.control);
2241}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002242
Peter Feinerc95ba922016-08-17 09:36:47 -07002243static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2244{
2245 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2246 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2247}
2248
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249/*
2250 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2251 * vcpu mutex is already taken.
2252 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002253static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002254{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002255 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002256 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002258 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002259 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002260 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002261 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002262
2263 /*
2264 * Read loaded_vmcs->cpu should be before fetching
2265 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2266 * See the comments in __loaded_vmcs_clear().
2267 */
2268 smp_rmb();
2269
Nadav Har'Eld462b812011-05-24 15:26:10 +03002270 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2271 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002272 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002273 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002274 }
2275
2276 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2277 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2278 vmcs_load(vmx->loaded_vmcs->vmcs);
2279 }
2280
2281 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002282 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002283 unsigned long sysenter_esp;
2284
2285 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002286
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 /*
2288 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002289 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002290 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002291 vmcs_writel(HOST_TR_BASE,
2292 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002293 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002295 /*
2296 * VM exits change the host TR limit to 0x67 after a VM
2297 * exit. This is okay, since 0x67 covers everything except
2298 * the IO bitmap and have have code to handle the IO bitmap
2299 * being lost after a VM exit.
2300 */
2301 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2302
Avi Kivity6aa8b732006-12-10 02:21:36 -08002303 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2304 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002305
Nadav Har'Eld462b812011-05-24 15:26:10 +03002306 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002307 }
Feng Wu28b835d2015-09-18 22:29:54 +08002308
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002309 /* Setup TSC multiplier */
2310 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002311 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2312 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002313
Feng Wu28b835d2015-09-18 22:29:54 +08002314 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002315 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002316}
2317
2318static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2319{
2320 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2321
2322 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002323 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2324 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002325 return;
2326
2327 /* Set SN when the vCPU is preempted */
2328 if (vcpu->preempted)
2329 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330}
2331
2332static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2333{
Feng Wu28b835d2015-09-18 22:29:54 +08002334 vmx_vcpu_pi_put(vcpu);
2335
Avi Kivitya9b21b62008-06-24 11:48:49 +03002336 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337}
2338
Wanpeng Lif244dee2017-07-20 01:11:54 -07002339static bool emulation_required(struct kvm_vcpu *vcpu)
2340{
2341 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2342}
2343
Avi Kivityedcafe32009-12-30 18:07:40 +02002344static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2345
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002346/*
2347 * Return the cr0 value that a nested guest would read. This is a combination
2348 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2349 * its hypervisor (cr0_read_shadow).
2350 */
2351static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2352{
2353 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2354 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2355}
2356static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2357{
2358 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2359 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2360}
2361
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2363{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002364 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002365
Avi Kivity6de12732011-03-07 12:51:22 +02002366 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2367 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2368 rflags = vmcs_readl(GUEST_RFLAGS);
2369 if (to_vmx(vcpu)->rmode.vm86_active) {
2370 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2371 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2372 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2373 }
2374 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002375 }
Avi Kivity6de12732011-03-07 12:51:22 +02002376 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377}
2378
2379static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2380{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002381 unsigned long old_rflags = vmx_get_rflags(vcpu);
2382
Avi Kivity6de12732011-03-07 12:51:22 +02002383 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2384 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002385 if (to_vmx(vcpu)->rmode.vm86_active) {
2386 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002387 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002388 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002390
2391 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2392 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393}
2394
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002395static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2396{
2397 return to_vmx(vcpu)->guest_pkru;
2398}
2399
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002400static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002401{
2402 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2403 int ret = 0;
2404
2405 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002406 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002407 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002408 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002409
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002410 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002411}
2412
2413static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2414{
2415 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2416 u32 interruptibility = interruptibility_old;
2417
2418 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2419
Jan Kiszka48005f62010-02-19 19:38:07 +01002420 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002421 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002422 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002423 interruptibility |= GUEST_INTR_STATE_STI;
2424
2425 if ((interruptibility != interruptibility_old))
2426 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2427}
2428
Avi Kivity6aa8b732006-12-10 02:21:36 -08002429static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2430{
2431 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002433 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002435 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002436
Glauber Costa2809f5d2009-05-12 16:21:05 -04002437 /* skipping an emulated instruction also counts */
2438 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439}
2440
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002441static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2442 unsigned long exit_qual)
2443{
2444 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2445 unsigned int nr = vcpu->arch.exception.nr;
2446 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2447
2448 if (vcpu->arch.exception.has_error_code) {
2449 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2450 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2451 }
2452
2453 if (kvm_exception_is_soft(nr))
2454 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2455 else
2456 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2457
2458 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2459 vmx_get_nmi_mask(vcpu))
2460 intr_info |= INTR_INFO_UNBLOCK_NMI;
2461
2462 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2463}
2464
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002465/*
2466 * KVM wants to inject page-faults which it got to the guest. This function
2467 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002468 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002469static int nested_vmx_check_exception(struct kvm_vcpu *vcpu)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002470{
2471 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002472 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002473
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002474 if (nr == PF_VECTOR) {
2475 if (vcpu->arch.exception.nested_apf) {
2476 nested_vmx_inject_exception_vmexit(vcpu,
2477 vcpu->arch.apf.nested_apf_token);
2478 return 1;
2479 }
2480 /*
2481 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2482 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2483 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2484 * can be written only when inject_pending_event runs. This should be
2485 * conditional on a new capability---if the capability is disabled,
2486 * kvm_multiple_exception would write the ancillary information to
2487 * CR2 or DR6, for backwards ABI-compatibility.
2488 */
2489 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2490 vcpu->arch.exception.error_code)) {
2491 nested_vmx_inject_exception_vmexit(vcpu, vcpu->arch.cr2);
2492 return 1;
2493 }
2494 } else {
2495 unsigned long exit_qual = 0;
2496 if (nr == DB_VECTOR)
2497 exit_qual = vcpu->arch.dr6;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002498
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002499 if (vmcs12->exception_bitmap & (1u << nr)) {
2500 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
2501 return 1;
2502 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002503 }
2504
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002505 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002506}
2507
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002508static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002509{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002510 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002511 unsigned nr = vcpu->arch.exception.nr;
2512 bool has_error_code = vcpu->arch.exception.has_error_code;
2513 bool reinject = vcpu->arch.exception.reinject;
2514 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002515 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002516
Gleb Natapove011c662013-09-25 12:51:35 +03002517 if (!reinject && is_guest_mode(vcpu) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002518 nested_vmx_check_exception(vcpu))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002519 return;
2520
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002521 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002522 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002523 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2524 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002525
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002526 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002527 int inc_eip = 0;
2528 if (kvm_exception_is_soft(nr))
2529 inc_eip = vcpu->arch.event_exit_inst_len;
2530 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002531 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002532 return;
2533 }
2534
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002535 if (kvm_exception_is_soft(nr)) {
2536 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2537 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002538 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2539 } else
2540 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2541
2542 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002543}
2544
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002545static bool vmx_rdtscp_supported(void)
2546{
2547 return cpu_has_vmx_rdtscp();
2548}
2549
Mao, Junjiead756a12012-07-02 01:18:48 +00002550static bool vmx_invpcid_supported(void)
2551{
2552 return cpu_has_vmx_invpcid() && enable_ept;
2553}
2554
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555/*
Eddie Donga75beee2007-05-17 18:55:15 +03002556 * Swap MSR entry in host/guest MSR entry array.
2557 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002558static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002559{
Avi Kivity26bb0982009-09-07 11:14:12 +03002560 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002561
2562 tmp = vmx->guest_msrs[to];
2563 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2564 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002565}
2566
Yang Zhang8d146952013-01-25 10:18:50 +08002567static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2568{
2569 unsigned long *msr_bitmap;
2570
Wincy Van670125b2015-03-04 14:31:56 +08002571 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002572 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002573 else if (cpu_has_secondary_exec_ctrls() &&
2574 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2575 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002576 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2577 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002578 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2579 else
2580 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2581 } else {
2582 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002583 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2584 else
2585 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002586 }
Yang Zhang8d146952013-01-25 10:18:50 +08002587 } else {
2588 if (is_long_mode(vcpu))
2589 msr_bitmap = vmx_msr_bitmap_longmode;
2590 else
2591 msr_bitmap = vmx_msr_bitmap_legacy;
2592 }
2593
2594 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2595}
2596
Eddie Donga75beee2007-05-17 18:55:15 +03002597/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002598 * Set up the vmcs to automatically save and restore system
2599 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2600 * mode, as fiddling with msrs is very expensive.
2601 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002602static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002603{
Avi Kivity26bb0982009-09-07 11:14:12 +03002604 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002605
Eddie Donga75beee2007-05-17 18:55:15 +03002606 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002607#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002608 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002609 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002610 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002611 move_msr_up(vmx, index, save_nmsrs++);
2612 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002613 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002614 move_msr_up(vmx, index, save_nmsrs++);
2615 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002616 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002617 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002618 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002619 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002620 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002621 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002622 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002623 * if efer.sce is enabled.
2624 */
Brian Gerst8c065852010-07-17 09:03:26 -04002625 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002626 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002627 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002628 }
Eddie Donga75beee2007-05-17 18:55:15 +03002629#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002630 index = __find_msr_index(vmx, MSR_EFER);
2631 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002632 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002633
Avi Kivity26bb0982009-09-07 11:14:12 +03002634 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002635
Yang Zhang8d146952013-01-25 10:18:50 +08002636 if (cpu_has_vmx_msr_bitmap())
2637 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002638}
2639
2640/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002642 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2643 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002645static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646{
2647 u64 host_tsc, tsc_offset;
2648
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002649 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002651 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002652}
2653
2654/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002655 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002657static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002658{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002659 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002660 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002661 * We're here if L1 chose not to trap WRMSR to TSC. According
2662 * to the spec, this should set L1's TSC; The offset that L1
2663 * set for L2 remains unchanged, and still needs to be added
2664 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002665 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002666 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002667 /* recalculate vmcs02.TSC_OFFSET: */
2668 vmcs12 = get_vmcs12(vcpu);
2669 vmcs_write64(TSC_OFFSET, offset +
2670 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2671 vmcs12->tsc_offset : 0));
2672 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002673 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2674 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002675 vmcs_write64(TSC_OFFSET, offset);
2676 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677}
2678
Nadav Har'El801d3422011-05-25 23:02:23 +03002679/*
2680 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2681 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2682 * all guests if the "nested" module option is off, and can also be disabled
2683 * for a single guest by disabling its VMX cpuid bit.
2684 */
2685static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2686{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002687 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002688}
2689
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002691 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2692 * returned for the various VMX controls MSRs when nested VMX is enabled.
2693 * The same values should also be used to verify that vmcs12 control fields are
2694 * valid during nested entry from L1 to L2.
2695 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2696 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2697 * bit in the high half is on if the corresponding bit in the control field
2698 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002699 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002700static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002701{
2702 /*
2703 * Note that as a general rule, the high half of the MSRs (bits in
2704 * the control fields which may be 1) should be initialized by the
2705 * intersection of the underlying hardware's MSR (i.e., features which
2706 * can be supported) and the list of features we want to expose -
2707 * because they are known to be properly supported in our code.
2708 * Also, usually, the low half of the MSRs (bits which must be 1) can
2709 * be set to 0, meaning that L1 may turn off any of these bits. The
2710 * reason is that if one of these bits is necessary, it will appear
2711 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2712 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002713 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002714 * These rules have exceptions below.
2715 */
2716
2717 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002718 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002719 vmx->nested.nested_vmx_pinbased_ctls_low,
2720 vmx->nested.nested_vmx_pinbased_ctls_high);
2721 vmx->nested.nested_vmx_pinbased_ctls_low |=
2722 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2723 vmx->nested.nested_vmx_pinbased_ctls_high &=
2724 PIN_BASED_EXT_INTR_MASK |
2725 PIN_BASED_NMI_EXITING |
2726 PIN_BASED_VIRTUAL_NMIS;
2727 vmx->nested.nested_vmx_pinbased_ctls_high |=
2728 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002729 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002730 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002731 vmx->nested.nested_vmx_pinbased_ctls_high |=
2732 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002733
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002734 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002735 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002736 vmx->nested.nested_vmx_exit_ctls_low,
2737 vmx->nested.nested_vmx_exit_ctls_high);
2738 vmx->nested.nested_vmx_exit_ctls_low =
2739 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002740
Wincy Vanb9c237b2015-02-03 23:56:30 +08002741 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002742#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002743 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002744#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002745 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002746 vmx->nested.nested_vmx_exit_ctls_high |=
2747 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002748 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002749 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2750
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002751 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002752 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002753
Jan Kiszka2996fca2014-06-16 13:59:43 +02002754 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002755 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002756
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002757 /* entry controls */
2758 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002759 vmx->nested.nested_vmx_entry_ctls_low,
2760 vmx->nested.nested_vmx_entry_ctls_high);
2761 vmx->nested.nested_vmx_entry_ctls_low =
2762 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2763 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002764#ifdef CONFIG_X86_64
2765 VM_ENTRY_IA32E_MODE |
2766#endif
2767 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002768 vmx->nested.nested_vmx_entry_ctls_high |=
2769 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002770 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002771 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002772
Jan Kiszka2996fca2014-06-16 13:59:43 +02002773 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002774 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002775
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002776 /* cpu-based controls */
2777 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002778 vmx->nested.nested_vmx_procbased_ctls_low,
2779 vmx->nested.nested_vmx_procbased_ctls_high);
2780 vmx->nested.nested_vmx_procbased_ctls_low =
2781 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2782 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002783 CPU_BASED_VIRTUAL_INTR_PENDING |
2784 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002785 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2786 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2787 CPU_BASED_CR3_STORE_EXITING |
2788#ifdef CONFIG_X86_64
2789 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2790#endif
2791 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002792 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2793 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2794 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2795 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002796 /*
2797 * We can allow some features even when not supported by the
2798 * hardware. For example, L1 can specify an MSR bitmap - and we
2799 * can use it to avoid exits to L1 - even when L0 runs L2
2800 * without MSR bitmaps.
2801 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002802 vmx->nested.nested_vmx_procbased_ctls_high |=
2803 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002804 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002805
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002806 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002807 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002808 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2809
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002810 /* secondary cpu-based controls */
2811 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002812 vmx->nested.nested_vmx_secondary_ctls_low,
2813 vmx->nested.nested_vmx_secondary_ctls_high);
2814 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2815 vmx->nested.nested_vmx_secondary_ctls_high &=
Paolo Bonzinia5f46452017-03-30 11:55:32 +02002816 SECONDARY_EXEC_RDRAND | SECONDARY_EXEC_RDSEED |
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002817 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002818 SECONDARY_EXEC_RDTSCP |
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 |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002823 SECONDARY_EXEC_WBINVD_EXITING |
Dan Williamsdfa169b2016-06-02 11:17:24 -07002824 SECONDARY_EXEC_XSAVES;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002825
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002826 if (enable_ept) {
2827 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002828 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002829 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002830 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002831 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002832 if (cpu_has_vmx_ept_execute_only())
2833 vmx->nested.nested_vmx_ept_caps |=
2834 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002835 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002836 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002837 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2838 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002839 if (enable_ept_ad_bits) {
2840 vmx->nested.nested_vmx_secondary_ctls_high |=
2841 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002842 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002843 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002844 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002845 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002846
Bandan Das27c42a12017-08-03 15:54:42 -04002847 if (cpu_has_vmx_vmfunc()) {
2848 vmx->nested.nested_vmx_secondary_ctls_high |=
2849 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002850 /*
2851 * Advertise EPTP switching unconditionally
2852 * since we emulate it
2853 */
2854 vmx->nested.nested_vmx_vmfunc_controls =
2855 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002856 }
2857
Paolo Bonzinief697a72016-03-18 16:58:38 +01002858 /*
2859 * Old versions of KVM use the single-context version without
2860 * checking for support, so declare that it is supported even
2861 * though it is treated as global context. The alternative is
2862 * not failing the single-context invvpid, and it is worse.
2863 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002864 if (enable_vpid) {
2865 vmx->nested.nested_vmx_secondary_ctls_high |=
2866 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002867 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002868 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002869 } else
Wanpeng Li089d7b62015-10-13 09:18:37 -07002870 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002871
Radim Krčmář0790ec12015-03-17 14:02:32 +01002872 if (enable_unrestricted_guest)
2873 vmx->nested.nested_vmx_secondary_ctls_high |=
2874 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2875
Jan Kiszkac18911a2013-03-13 16:06:41 +01002876 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002877 rdmsr(MSR_IA32_VMX_MISC,
2878 vmx->nested.nested_vmx_misc_low,
2879 vmx->nested.nested_vmx_misc_high);
2880 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2881 vmx->nested.nested_vmx_misc_low |=
2882 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002883 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002884 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002885
2886 /*
2887 * This MSR reports some information about VMX support. We
2888 * should return information about the VMX we emulate for the
2889 * guest, and the VMCS structure we give it - not about the
2890 * VMX support of the underlying hardware.
2891 */
2892 vmx->nested.nested_vmx_basic =
2893 VMCS12_REVISION |
2894 VMX_BASIC_TRUE_CTLS |
2895 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2896 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2897
2898 if (cpu_has_vmx_basic_inout())
2899 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2900
2901 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002902 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002903 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2904 * We picked the standard core2 setting.
2905 */
2906#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2907#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2908 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002909 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002910
2911 /* These MSRs specify bits which the guest must keep fixed off. */
2912 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2913 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002914
2915 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2916 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002917}
2918
David Matlack38991522016-11-29 18:14:08 -08002919/*
2920 * if fixed0[i] == 1: val[i] must be 1
2921 * if fixed1[i] == 0: val[i] must be 0
2922 */
2923static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2924{
2925 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002926}
2927
2928static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2929{
David Matlack38991522016-11-29 18:14:08 -08002930 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002931}
2932
2933static inline u64 vmx_control_msr(u32 low, u32 high)
2934{
2935 return low | ((u64)high << 32);
2936}
2937
David Matlack62cc6b9d2016-11-29 18:14:07 -08002938static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2939{
2940 superset &= mask;
2941 subset &= mask;
2942
2943 return (superset | subset) == superset;
2944}
2945
2946static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2947{
2948 const u64 feature_and_reserved =
2949 /* feature (except bit 48; see below) */
2950 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2951 /* reserved */
2952 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2953 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2954
2955 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2956 return -EINVAL;
2957
2958 /*
2959 * KVM does not emulate a version of VMX that constrains physical
2960 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2961 */
2962 if (data & BIT_ULL(48))
2963 return -EINVAL;
2964
2965 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2966 vmx_basic_vmcs_revision_id(data))
2967 return -EINVAL;
2968
2969 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2970 return -EINVAL;
2971
2972 vmx->nested.nested_vmx_basic = data;
2973 return 0;
2974}
2975
2976static int
2977vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2978{
2979 u64 supported;
2980 u32 *lowp, *highp;
2981
2982 switch (msr_index) {
2983 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2984 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2985 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2986 break;
2987 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2988 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2989 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2990 break;
2991 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2992 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2993 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2994 break;
2995 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2996 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2997 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2998 break;
2999 case MSR_IA32_VMX_PROCBASED_CTLS2:
3000 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
3001 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
3002 break;
3003 default:
3004 BUG();
3005 }
3006
3007 supported = vmx_control_msr(*lowp, *highp);
3008
3009 /* Check must-be-1 bits are still 1. */
3010 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3011 return -EINVAL;
3012
3013 /* Check must-be-0 bits are still 0. */
3014 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3015 return -EINVAL;
3016
3017 *lowp = data;
3018 *highp = data >> 32;
3019 return 0;
3020}
3021
3022static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3023{
3024 const u64 feature_and_reserved_bits =
3025 /* feature */
3026 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3027 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3028 /* reserved */
3029 GENMASK_ULL(13, 9) | BIT_ULL(31);
3030 u64 vmx_misc;
3031
3032 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3033 vmx->nested.nested_vmx_misc_high);
3034
3035 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3036 return -EINVAL;
3037
3038 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3039 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3040 vmx_misc_preemption_timer_rate(data) !=
3041 vmx_misc_preemption_timer_rate(vmx_misc))
3042 return -EINVAL;
3043
3044 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3045 return -EINVAL;
3046
3047 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3048 return -EINVAL;
3049
3050 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3051 return -EINVAL;
3052
3053 vmx->nested.nested_vmx_misc_low = data;
3054 vmx->nested.nested_vmx_misc_high = data >> 32;
3055 return 0;
3056}
3057
3058static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3059{
3060 u64 vmx_ept_vpid_cap;
3061
3062 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3063 vmx->nested.nested_vmx_vpid_caps);
3064
3065 /* Every bit is either reserved or a feature bit. */
3066 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3067 return -EINVAL;
3068
3069 vmx->nested.nested_vmx_ept_caps = data;
3070 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3071 return 0;
3072}
3073
3074static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3075{
3076 u64 *msr;
3077
3078 switch (msr_index) {
3079 case MSR_IA32_VMX_CR0_FIXED0:
3080 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3081 break;
3082 case MSR_IA32_VMX_CR4_FIXED0:
3083 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3084 break;
3085 default:
3086 BUG();
3087 }
3088
3089 /*
3090 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3091 * must be 1 in the restored value.
3092 */
3093 if (!is_bitwise_subset(data, *msr, -1ULL))
3094 return -EINVAL;
3095
3096 *msr = data;
3097 return 0;
3098}
3099
3100/*
3101 * Called when userspace is restoring VMX MSRs.
3102 *
3103 * Returns 0 on success, non-0 otherwise.
3104 */
3105static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3106{
3107 struct vcpu_vmx *vmx = to_vmx(vcpu);
3108
3109 switch (msr_index) {
3110 case MSR_IA32_VMX_BASIC:
3111 return vmx_restore_vmx_basic(vmx, data);
3112 case MSR_IA32_VMX_PINBASED_CTLS:
3113 case MSR_IA32_VMX_PROCBASED_CTLS:
3114 case MSR_IA32_VMX_EXIT_CTLS:
3115 case MSR_IA32_VMX_ENTRY_CTLS:
3116 /*
3117 * The "non-true" VMX capability MSRs are generated from the
3118 * "true" MSRs, so we do not support restoring them directly.
3119 *
3120 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3121 * should restore the "true" MSRs with the must-be-1 bits
3122 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3123 * DEFAULT SETTINGS".
3124 */
3125 return -EINVAL;
3126 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3127 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3128 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3129 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3130 case MSR_IA32_VMX_PROCBASED_CTLS2:
3131 return vmx_restore_control_msr(vmx, msr_index, data);
3132 case MSR_IA32_VMX_MISC:
3133 return vmx_restore_vmx_misc(vmx, data);
3134 case MSR_IA32_VMX_CR0_FIXED0:
3135 case MSR_IA32_VMX_CR4_FIXED0:
3136 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3137 case MSR_IA32_VMX_CR0_FIXED1:
3138 case MSR_IA32_VMX_CR4_FIXED1:
3139 /*
3140 * These MSRs are generated based on the vCPU's CPUID, so we
3141 * do not support restoring them directly.
3142 */
3143 return -EINVAL;
3144 case MSR_IA32_VMX_EPT_VPID_CAP:
3145 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3146 case MSR_IA32_VMX_VMCS_ENUM:
3147 vmx->nested.nested_vmx_vmcs_enum = data;
3148 return 0;
3149 default:
3150 /*
3151 * The rest of the VMX capability MSRs do not support restore.
3152 */
3153 return -EINVAL;
3154 }
3155}
3156
Jan Kiszkacae50132014-01-04 18:47:22 +01003157/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003158static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3159{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003160 struct vcpu_vmx *vmx = to_vmx(vcpu);
3161
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003162 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003163 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003164 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003165 break;
3166 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3167 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003168 *pdata = vmx_control_msr(
3169 vmx->nested.nested_vmx_pinbased_ctls_low,
3170 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003171 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3172 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003173 break;
3174 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3175 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003176 *pdata = vmx_control_msr(
3177 vmx->nested.nested_vmx_procbased_ctls_low,
3178 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003179 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3180 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003181 break;
3182 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3183 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003184 *pdata = vmx_control_msr(
3185 vmx->nested.nested_vmx_exit_ctls_low,
3186 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003187 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3188 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003189 break;
3190 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3191 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003192 *pdata = vmx_control_msr(
3193 vmx->nested.nested_vmx_entry_ctls_low,
3194 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003195 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3196 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003197 break;
3198 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003199 *pdata = vmx_control_msr(
3200 vmx->nested.nested_vmx_misc_low,
3201 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003202 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003203 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003204 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003205 break;
3206 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003207 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003208 break;
3209 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003210 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003211 break;
3212 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003213 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003214 break;
3215 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003216 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003217 break;
3218 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003219 *pdata = vmx_control_msr(
3220 vmx->nested.nested_vmx_secondary_ctls_low,
3221 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003222 break;
3223 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003224 *pdata = vmx->nested.nested_vmx_ept_caps |
3225 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003226 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003227 case MSR_IA32_VMX_VMFUNC:
3228 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3229 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003230 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003231 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003232 }
3233
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003234 return 0;
3235}
3236
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003237static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3238 uint64_t val)
3239{
3240 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3241
3242 return !(val & ~valid_bits);
3243}
3244
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003245/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003246 * Reads an msr value (of 'msr_index') into 'pdata'.
3247 * Returns 0 on success, non-0 otherwise.
3248 * Assumes vcpu_load() was already called.
3249 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003250static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251{
Avi Kivity26bb0982009-09-07 11:14:12 +03003252 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003254 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003255#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003257 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258 break;
3259 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003260 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003261 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003262 case MSR_KERNEL_GS_BASE:
3263 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003264 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003265 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003266#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003267 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003268 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303269 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003270 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003271 break;
3272 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003273 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003274 break;
3275 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003276 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003277 break;
3278 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003279 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003280 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003281 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003282 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003283 (!msr_info->host_initiated &&
3284 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003285 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003286 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003287 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003288 case MSR_IA32_MCG_EXT_CTL:
3289 if (!msr_info->host_initiated &&
3290 !(to_vmx(vcpu)->msr_ia32_feature_control &
3291 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003292 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003293 msr_info->data = vcpu->arch.mcg_ext_ctl;
3294 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003295 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003296 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003297 break;
3298 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3299 if (!nested_vmx_allowed(vcpu))
3300 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003301 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003302 case MSR_IA32_XSS:
3303 if (!vmx_xsaves_supported())
3304 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003305 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003306 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003307 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003308 if (!msr_info->host_initiated &&
3309 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003310 return 1;
3311 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003312 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003313 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003314 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003315 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003316 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003318 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003319 }
3320
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321 return 0;
3322}
3323
Jan Kiszkacae50132014-01-04 18:47:22 +01003324static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3325
Avi Kivity6aa8b732006-12-10 02:21:36 -08003326/*
3327 * Writes msr value into into the appropriate "register".
3328 * Returns 0 on success, non-0 otherwise.
3329 * Assumes vcpu_load() was already called.
3330 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003331static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003332{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003333 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003334 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003335 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003336 u32 msr_index = msr_info->index;
3337 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003338
Avi Kivity6aa8b732006-12-10 02:21:36 -08003339 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003340 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003341 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003342 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003343#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003344 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003345 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003346 vmcs_writel(GUEST_FS_BASE, data);
3347 break;
3348 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003349 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003350 vmcs_writel(GUEST_GS_BASE, data);
3351 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003352 case MSR_KERNEL_GS_BASE:
3353 vmx_load_host_state(vmx);
3354 vmx->msr_guest_kernel_gs_base = data;
3355 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003356#endif
3357 case MSR_IA32_SYSENTER_CS:
3358 vmcs_write32(GUEST_SYSENTER_CS, data);
3359 break;
3360 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003361 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362 break;
3363 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003364 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003365 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003366 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003367 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003368 (!msr_info->host_initiated &&
3369 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003370 return 1;
Jim Mattson45316622017-05-23 11:52:54 -07003371 if (is_noncanonical_address(data & PAGE_MASK) ||
3372 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003373 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003374 vmcs_write64(GUEST_BNDCFGS, data);
3375 break;
3376 case MSR_IA32_TSC:
3377 kvm_write_tsc(vcpu, msr_info);
3378 break;
3379 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003380 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003381 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3382 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003383 vmcs_write64(GUEST_IA32_PAT, data);
3384 vcpu->arch.pat = data;
3385 break;
3386 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003387 ret = kvm_set_msr_common(vcpu, msr_info);
3388 break;
Will Auldba904632012-11-29 12:42:50 -08003389 case MSR_IA32_TSC_ADJUST:
3390 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003391 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003392 case MSR_IA32_MCG_EXT_CTL:
3393 if ((!msr_info->host_initiated &&
3394 !(to_vmx(vcpu)->msr_ia32_feature_control &
3395 FEATURE_CONTROL_LMCE)) ||
3396 (data & ~MCG_EXT_CTL_LMCE_EN))
3397 return 1;
3398 vcpu->arch.mcg_ext_ctl = data;
3399 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003400 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003401 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003402 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003403 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3404 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003405 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003406 if (msr_info->host_initiated && data == 0)
3407 vmx_leave_nested(vcpu);
3408 break;
3409 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003410 if (!msr_info->host_initiated)
3411 return 1; /* they are read-only */
3412 if (!nested_vmx_allowed(vcpu))
3413 return 1;
3414 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003415 case MSR_IA32_XSS:
3416 if (!vmx_xsaves_supported())
3417 return 1;
3418 /*
3419 * The only supported bit as of Skylake is bit 8, but
3420 * it is not supported on KVM.
3421 */
3422 if (data != 0)
3423 return 1;
3424 vcpu->arch.ia32_xss = data;
3425 if (vcpu->arch.ia32_xss != host_xss)
3426 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3427 vcpu->arch.ia32_xss, host_xss);
3428 else
3429 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3430 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003431 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003432 if (!msr_info->host_initiated &&
3433 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003434 return 1;
3435 /* Check reserved bit, higher 32 bits should be zero */
3436 if ((data >> 32) != 0)
3437 return 1;
3438 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003439 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003440 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003441 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003442 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003443 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003444 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3445 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003446 ret = kvm_set_shared_msr(msr->index, msr->data,
3447 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003448 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003449 if (ret)
3450 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003451 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003452 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003454 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003455 }
3456
Eddie Dong2cc51562007-05-21 07:28:09 +03003457 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003458}
3459
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003460static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003461{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003462 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3463 switch (reg) {
3464 case VCPU_REGS_RSP:
3465 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3466 break;
3467 case VCPU_REGS_RIP:
3468 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3469 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003470 case VCPU_EXREG_PDPTR:
3471 if (enable_ept)
3472 ept_save_pdptrs(vcpu);
3473 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003474 default:
3475 break;
3476 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477}
3478
Avi Kivity6aa8b732006-12-10 02:21:36 -08003479static __init int cpu_has_kvm_support(void)
3480{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003481 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003482}
3483
3484static __init int vmx_disabled_by_bios(void)
3485{
3486 u64 msr;
3487
3488 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003489 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003490 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003491 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3492 && tboot_enabled())
3493 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003494 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003495 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003496 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003497 && !tboot_enabled()) {
3498 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003499 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003500 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003501 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003502 /* launched w/o TXT and VMX disabled */
3503 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3504 && !tboot_enabled())
3505 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003506 }
3507
3508 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509}
3510
Dongxiao Xu7725b892010-05-11 18:29:38 +08003511static void kvm_cpu_vmxon(u64 addr)
3512{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003513 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003514 intel_pt_handle_vmx(1);
3515
Dongxiao Xu7725b892010-05-11 18:29:38 +08003516 asm volatile (ASM_VMX_VMXON_RAX
3517 : : "a"(&addr), "m"(addr)
3518 : "memory", "cc");
3519}
3520
Radim Krčmář13a34e02014-08-28 15:13:03 +02003521static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003522{
3523 int cpu = raw_smp_processor_id();
3524 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003525 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003526
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003527 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003528 return -EBUSY;
3529
Nadav Har'Eld462b812011-05-24 15:26:10 +03003530 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003531 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3532 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003533
3534 /*
3535 * Now we can enable the vmclear operation in kdump
3536 * since the loaded_vmcss_on_cpu list on this cpu
3537 * has been initialized.
3538 *
3539 * Though the cpu is not in VMX operation now, there
3540 * is no problem to enable the vmclear operation
3541 * for the loaded_vmcss_on_cpu list is empty!
3542 */
3543 crash_enable_local_vmclear(cpu);
3544
Avi Kivity6aa8b732006-12-10 02:21:36 -08003545 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003546
3547 test_bits = FEATURE_CONTROL_LOCKED;
3548 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3549 if (tboot_enabled())
3550 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3551
3552 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003553 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003554 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3555 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003556 kvm_cpu_vmxon(phys_addr);
3557 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003558
3559 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003560}
3561
Nadav Har'Eld462b812011-05-24 15:26:10 +03003562static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003563{
3564 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003565 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003566
Nadav Har'Eld462b812011-05-24 15:26:10 +03003567 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3568 loaded_vmcss_on_cpu_link)
3569 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003570}
3571
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003572
3573/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3574 * tricks.
3575 */
3576static void kvm_cpu_vmxoff(void)
3577{
3578 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003579
3580 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003581 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003582}
3583
Radim Krčmář13a34e02014-08-28 15:13:03 +02003584static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003585{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003586 vmclear_local_loaded_vmcss();
3587 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003588}
3589
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003590static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003591 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003592{
3593 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003594 u32 ctl = ctl_min | ctl_opt;
3595
3596 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3597
3598 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3599 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3600
3601 /* Ensure minimum (required) set of control bits are supported. */
3602 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003603 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003604
3605 *result = ctl;
3606 return 0;
3607}
3608
Avi Kivity110312c2010-12-21 12:54:20 +02003609static __init bool allow_1_setting(u32 msr, u32 ctl)
3610{
3611 u32 vmx_msr_low, vmx_msr_high;
3612
3613 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3614 return vmx_msr_high & ctl;
3615}
3616
Yang, Sheng002c7f72007-07-31 14:23:01 +03003617static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003618{
3619 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003620 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003621 u32 _pin_based_exec_control = 0;
3622 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003623 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003624 u32 _vmexit_control = 0;
3625 u32 _vmentry_control = 0;
3626
Raghavendra K T10166742012-02-07 23:19:20 +05303627 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003628#ifdef CONFIG_X86_64
3629 CPU_BASED_CR8_LOAD_EXITING |
3630 CPU_BASED_CR8_STORE_EXITING |
3631#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003632 CPU_BASED_CR3_LOAD_EXITING |
3633 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003634 CPU_BASED_USE_IO_BITMAPS |
3635 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003636 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003637 CPU_BASED_INVLPG_EXITING |
3638 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003639
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003640 if (!kvm_mwait_in_guest())
3641 min |= CPU_BASED_MWAIT_EXITING |
3642 CPU_BASED_MONITOR_EXITING;
3643
Sheng Yangf78e0e22007-10-29 09:40:42 +08003644 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003645 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003646 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003647 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3648 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003649 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003650#ifdef CONFIG_X86_64
3651 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3652 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3653 ~CPU_BASED_CR8_STORE_EXITING;
3654#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003655 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003656 min2 = 0;
3657 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003658 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003659 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003660 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003661 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003662 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003663 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003664 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003665 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003666 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003667 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003668 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003669 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003670 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003671 SECONDARY_EXEC_TSC_SCALING |
3672 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003673 if (adjust_vmx_controls(min2, opt2,
3674 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003675 &_cpu_based_2nd_exec_control) < 0)
3676 return -EIO;
3677 }
3678#ifndef CONFIG_X86_64
3679 if (!(_cpu_based_2nd_exec_control &
3680 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3681 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3682#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003683
3684 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3685 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003686 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003687 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3688 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003689
Sheng Yangd56f5462008-04-25 10:13:16 +08003690 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003691 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3692 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003693 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3694 CPU_BASED_CR3_STORE_EXITING |
3695 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003696 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3697 vmx_capability.ept, vmx_capability.vpid);
3698 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003699
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003700 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003701#ifdef CONFIG_X86_64
3702 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3703#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003704 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003705 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003706 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3707 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003708 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003709
Paolo Bonzini2c828782017-03-27 14:37:28 +02003710 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3711 PIN_BASED_VIRTUAL_NMIS;
3712 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003713 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3714 &_pin_based_exec_control) < 0)
3715 return -EIO;
3716
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003717 if (cpu_has_broken_vmx_preemption_timer())
3718 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003719 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003720 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003721 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3722
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003723 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003724 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003725 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3726 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003727 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003729 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003730
3731 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3732 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003733 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003734
3735#ifdef CONFIG_X86_64
3736 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3737 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003738 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003739#endif
3740
3741 /* Require Write-Back (WB) memory type for VMCS accesses. */
3742 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003743 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003744
Yang, Sheng002c7f72007-07-31 14:23:01 +03003745 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003746 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003747 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003748 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003749
Yang, Sheng002c7f72007-07-31 14:23:01 +03003750 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3751 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003752 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003753 vmcs_conf->vmexit_ctrl = _vmexit_control;
3754 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003755
Avi Kivity110312c2010-12-21 12:54:20 +02003756 cpu_has_load_ia32_efer =
3757 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3758 VM_ENTRY_LOAD_IA32_EFER)
3759 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3760 VM_EXIT_LOAD_IA32_EFER);
3761
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003762 cpu_has_load_perf_global_ctrl =
3763 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3764 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3765 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3766 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3767
3768 /*
3769 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003770 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003771 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3772 *
3773 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3774 *
3775 * AAK155 (model 26)
3776 * AAP115 (model 30)
3777 * AAT100 (model 37)
3778 * BC86,AAY89,BD102 (model 44)
3779 * BA97 (model 46)
3780 *
3781 */
3782 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3783 switch (boot_cpu_data.x86_model) {
3784 case 26:
3785 case 30:
3786 case 37:
3787 case 44:
3788 case 46:
3789 cpu_has_load_perf_global_ctrl = false;
3790 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3791 "does not work properly. Using workaround\n");
3792 break;
3793 default:
3794 break;
3795 }
3796 }
3797
Borislav Petkov782511b2016-04-04 22:25:03 +02003798 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003799 rdmsrl(MSR_IA32_XSS, host_xss);
3800
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003801 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003802}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803
3804static struct vmcs *alloc_vmcs_cpu(int cpu)
3805{
3806 int node = cpu_to_node(cpu);
3807 struct page *pages;
3808 struct vmcs *vmcs;
3809
Vlastimil Babka96db8002015-09-08 15:03:50 -07003810 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003811 if (!pages)
3812 return NULL;
3813 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003814 memset(vmcs, 0, vmcs_config.size);
3815 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003816 return vmcs;
3817}
3818
3819static struct vmcs *alloc_vmcs(void)
3820{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003821 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003822}
3823
3824static void free_vmcs(struct vmcs *vmcs)
3825{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003826 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827}
3828
Nadav Har'Eld462b812011-05-24 15:26:10 +03003829/*
3830 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3831 */
3832static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3833{
3834 if (!loaded_vmcs->vmcs)
3835 return;
3836 loaded_vmcs_clear(loaded_vmcs);
3837 free_vmcs(loaded_vmcs->vmcs);
3838 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003839 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003840}
3841
Sam Ravnborg39959582007-06-01 00:47:13 -07003842static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003843{
3844 int cpu;
3845
Zachary Amsden3230bb42009-09-29 11:38:37 -10003846 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003847 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003848 per_cpu(vmxarea, cpu) = NULL;
3849 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003850}
3851
Jim Mattson85fd5142017-07-07 12:51:41 -07003852enum vmcs_field_type {
3853 VMCS_FIELD_TYPE_U16 = 0,
3854 VMCS_FIELD_TYPE_U64 = 1,
3855 VMCS_FIELD_TYPE_U32 = 2,
3856 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3857};
3858
3859static inline int vmcs_field_type(unsigned long field)
3860{
3861 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3862 return VMCS_FIELD_TYPE_U32;
3863 return (field >> 13) & 0x3 ;
3864}
3865
3866static inline int vmcs_field_readonly(unsigned long field)
3867{
3868 return (((field >> 10) & 0x3) == 1);
3869}
3870
Bandan Dasfe2b2012014-04-21 15:20:14 -04003871static void init_vmcs_shadow_fields(void)
3872{
3873 int i, j;
3874
3875 /* No checks for read only fields yet */
3876
3877 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3878 switch (shadow_read_write_fields[i]) {
3879 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003880 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003881 continue;
3882 break;
3883 default:
3884 break;
3885 }
3886
3887 if (j < i)
3888 shadow_read_write_fields[j] =
3889 shadow_read_write_fields[i];
3890 j++;
3891 }
3892 max_shadow_read_write_fields = j;
3893
3894 /* shadowed fields guest access without vmexit */
3895 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003896 unsigned long field = shadow_read_write_fields[i];
3897
3898 clear_bit(field, vmx_vmwrite_bitmap);
3899 clear_bit(field, vmx_vmread_bitmap);
3900 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3901 clear_bit(field + 1, vmx_vmwrite_bitmap);
3902 clear_bit(field + 1, vmx_vmread_bitmap);
3903 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003904 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003905 for (i = 0; i < max_shadow_read_only_fields; i++) {
3906 unsigned long field = shadow_read_only_fields[i];
3907
3908 clear_bit(field, vmx_vmread_bitmap);
3909 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3910 clear_bit(field + 1, vmx_vmread_bitmap);
3911 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003912}
3913
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914static __init int alloc_kvm_area(void)
3915{
3916 int cpu;
3917
Zachary Amsden3230bb42009-09-29 11:38:37 -10003918 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003919 struct vmcs *vmcs;
3920
3921 vmcs = alloc_vmcs_cpu(cpu);
3922 if (!vmcs) {
3923 free_kvm_area();
3924 return -ENOMEM;
3925 }
3926
3927 per_cpu(vmxarea, cpu) = vmcs;
3928 }
3929 return 0;
3930}
3931
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003932static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003933 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003934{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003935 if (!emulate_invalid_guest_state) {
3936 /*
3937 * CS and SS RPL should be equal during guest entry according
3938 * to VMX spec, but in reality it is not always so. Since vcpu
3939 * is in the middle of the transition from real mode to
3940 * protected mode it is safe to assume that RPL 0 is a good
3941 * default value.
3942 */
3943 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003944 save->selector &= ~SEGMENT_RPL_MASK;
3945 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003946 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003948 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949}
3950
3951static void enter_pmode(struct kvm_vcpu *vcpu)
3952{
3953 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003954 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003955
Gleb Natapovd99e4152012-12-20 16:57:45 +02003956 /*
3957 * Update real mode segment cache. It may be not up-to-date if sement
3958 * register was written while vcpu was in a guest mode.
3959 */
3960 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3961 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3962 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3963 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3964 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3965 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3966
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003967 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003968
Avi Kivity2fb92db2011-04-27 19:42:18 +03003969 vmx_segment_cache_clear(vmx);
3970
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003971 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003972
3973 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003974 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3975 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003976 vmcs_writel(GUEST_RFLAGS, flags);
3977
Rusty Russell66aee912007-07-17 23:34:16 +10003978 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3979 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980
3981 update_exception_bitmap(vcpu);
3982
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003983 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3984 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3985 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3986 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3987 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3988 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003989}
3990
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003991static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003992{
Mathias Krause772e0312012-08-30 01:30:19 +02003993 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003994 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003995
Gleb Natapovd99e4152012-12-20 16:57:45 +02003996 var.dpl = 0x3;
3997 if (seg == VCPU_SREG_CS)
3998 var.type = 0x3;
3999
4000 if (!emulate_invalid_guest_state) {
4001 var.selector = var.base >> 4;
4002 var.base = var.base & 0xffff0;
4003 var.limit = 0xffff;
4004 var.g = 0;
4005 var.db = 0;
4006 var.present = 1;
4007 var.s = 1;
4008 var.l = 0;
4009 var.unusable = 0;
4010 var.type = 0x3;
4011 var.avl = 0;
4012 if (save->base & 0xf)
4013 printk_once(KERN_WARNING "kvm: segment base is not "
4014 "paragraph aligned when entering "
4015 "protected mode (seg=%d)", seg);
4016 }
4017
4018 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004019 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004020 vmcs_write32(sf->limit, var.limit);
4021 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004022}
4023
4024static void enter_rmode(struct kvm_vcpu *vcpu)
4025{
4026 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004027 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004028
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004029 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4030 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4031 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4032 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4033 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004034 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4035 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004036
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004037 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004038
Gleb Natapov776e58e2011-03-13 12:34:27 +02004039 /*
4040 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004041 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004042 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004043 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004044 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4045 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004046
Avi Kivity2fb92db2011-04-27 19:42:18 +03004047 vmx_segment_cache_clear(vmx);
4048
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004049 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4052
4053 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004054 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004056 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004057
4058 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004059 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004060 update_exception_bitmap(vcpu);
4061
Gleb Natapovd99e4152012-12-20 16:57:45 +02004062 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4063 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4064 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4065 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4066 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4067 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004068
Eddie Dong8668a3c2007-10-10 14:26:45 +08004069 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004070}
4071
Amit Shah401d10d2009-02-20 22:53:37 +05304072static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4073{
4074 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004075 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4076
4077 if (!msr)
4078 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304079
Avi Kivity44ea2b12009-09-06 15:55:37 +03004080 /*
4081 * Force kernel_gs_base reloading before EFER changes, as control
4082 * of this msr depends on is_long_mode().
4083 */
4084 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004085 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304086 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004087 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304088 msr->data = efer;
4089 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004090 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304091
4092 msr->data = efer & ~EFER_LME;
4093 }
4094 setup_msrs(vmx);
4095}
4096
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004097#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004098
4099static void enter_lmode(struct kvm_vcpu *vcpu)
4100{
4101 u32 guest_tr_ar;
4102
Avi Kivity2fb92db2011-04-27 19:42:18 +03004103 vmx_segment_cache_clear(to_vmx(vcpu));
4104
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004106 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004107 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4108 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004110 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4111 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004112 }
Avi Kivityda38f432010-07-06 11:30:49 +03004113 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004114}
4115
4116static void exit_lmode(struct kvm_vcpu *vcpu)
4117{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004118 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004119 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004120}
4121
4122#endif
4123
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004124static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004125{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004126 if (enable_ept) {
4127 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4128 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004129 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004130 } else {
4131 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004132 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004133}
4134
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004135static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4136{
4137 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4138}
4139
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004140static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4141{
4142 if (enable_ept)
4143 vmx_flush_tlb(vcpu);
4144}
4145
Avi Kivitye8467fd2009-12-29 18:43:06 +02004146static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4147{
4148 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4149
4150 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4151 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4152}
4153
Avi Kivityaff48ba2010-12-05 18:56:11 +02004154static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4155{
4156 if (enable_ept && is_paging(vcpu))
4157 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4158 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4159}
4160
Anthony Liguori25c4c272007-04-27 09:29:21 +03004161static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004162{
Avi Kivityfc78f512009-12-07 12:16:48 +02004163 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4164
4165 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4166 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004167}
4168
Sheng Yang14394422008-04-28 12:24:45 +08004169static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4170{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004171 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4172
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004173 if (!test_bit(VCPU_EXREG_PDPTR,
4174 (unsigned long *)&vcpu->arch.regs_dirty))
4175 return;
4176
Sheng Yang14394422008-04-28 12:24:45 +08004177 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004178 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4179 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4180 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4181 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004182 }
4183}
4184
Avi Kivity8f5d5492009-05-31 18:41:29 +03004185static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4186{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004187 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4188
Avi Kivity8f5d5492009-05-31 18:41:29 +03004189 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004190 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4191 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4192 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4193 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004194 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004195
4196 __set_bit(VCPU_EXREG_PDPTR,
4197 (unsigned long *)&vcpu->arch.regs_avail);
4198 __set_bit(VCPU_EXREG_PDPTR,
4199 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004200}
4201
David Matlack38991522016-11-29 18:14:08 -08004202static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4203{
4204 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4205 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4206 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4207
4208 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4209 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4210 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4211 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4212
4213 return fixed_bits_valid(val, fixed0, fixed1);
4214}
4215
4216static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4217{
4218 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4219 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4220
4221 return fixed_bits_valid(val, fixed0, fixed1);
4222}
4223
4224static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4225{
4226 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4227 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4228
4229 return fixed_bits_valid(val, fixed0, fixed1);
4230}
4231
4232/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4233#define nested_guest_cr4_valid nested_cr4_valid
4234#define nested_host_cr4_valid nested_cr4_valid
4235
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004236static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004237
4238static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4239 unsigned long cr0,
4240 struct kvm_vcpu *vcpu)
4241{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004242 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4243 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004244 if (!(cr0 & X86_CR0_PG)) {
4245 /* From paging/starting to nonpaging */
4246 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004247 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004248 (CPU_BASED_CR3_LOAD_EXITING |
4249 CPU_BASED_CR3_STORE_EXITING));
4250 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004251 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004252 } else if (!is_paging(vcpu)) {
4253 /* From nonpaging to paging */
4254 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004255 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004256 ~(CPU_BASED_CR3_LOAD_EXITING |
4257 CPU_BASED_CR3_STORE_EXITING));
4258 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004259 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004260 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004261
4262 if (!(cr0 & X86_CR0_WP))
4263 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004264}
4265
Avi Kivity6aa8b732006-12-10 02:21:36 -08004266static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4267{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004268 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004269 unsigned long hw_cr0;
4270
Gleb Natapov50378782013-02-04 16:00:28 +02004271 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004272 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004273 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004274 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004275 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004276
Gleb Natapov218e7632013-01-21 15:36:45 +02004277 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4278 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004279
Gleb Natapov218e7632013-01-21 15:36:45 +02004280 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4281 enter_rmode(vcpu);
4282 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004284#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004285 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004286 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004287 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004288 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004289 exit_lmode(vcpu);
4290 }
4291#endif
4292
Avi Kivity089d0342009-03-23 18:26:32 +02004293 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004294 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4295
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004297 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004298 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004299
4300 /* depends on vcpu->arch.cr0 to be set to a new value */
4301 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004302}
4303
Peter Feiner995f00a2017-06-30 17:26:32 -07004304static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004305{
David Hildenbrandbb97a012017-08-10 23:15:28 +02004306 u64 eptp = VMX_EPTP_MT_WB | VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004307
Peter Feiner995f00a2017-06-30 17:26:32 -07004308 if (enable_ept_ad_bits &&
4309 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004310 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004311 eptp |= (root_hpa & PAGE_MASK);
4312
4313 return eptp;
4314}
4315
Avi Kivity6aa8b732006-12-10 02:21:36 -08004316static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4317{
Sheng Yang14394422008-04-28 12:24:45 +08004318 unsigned long guest_cr3;
4319 u64 eptp;
4320
4321 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004322 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004323 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004324 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004325 if (is_paging(vcpu) || is_guest_mode(vcpu))
4326 guest_cr3 = kvm_read_cr3(vcpu);
4327 else
4328 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004329 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004330 }
4331
Sheng Yang2384d2b2008-01-17 15:14:33 +08004332 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004333 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004334}
4335
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004336static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004338 /*
4339 * Pass through host's Machine Check Enable value to hw_cr4, which
4340 * is in force while we are in guest mode. Do not let guests control
4341 * this bit, even if host CR4.MCE == 0.
4342 */
4343 unsigned long hw_cr4 =
4344 (cr4_read_shadow() & X86_CR4_MCE) |
4345 (cr4 & ~X86_CR4_MCE) |
4346 (to_vmx(vcpu)->rmode.vm86_active ?
4347 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004348
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004349 if (cr4 & X86_CR4_VMXE) {
4350 /*
4351 * To use VMXON (and later other VMX instructions), a guest
4352 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4353 * So basically the check on whether to allow nested VMX
4354 * is here.
4355 */
4356 if (!nested_vmx_allowed(vcpu))
4357 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004358 }
David Matlack38991522016-11-29 18:14:08 -08004359
4360 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004361 return 1;
4362
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004363 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004364 if (enable_ept) {
4365 if (!is_paging(vcpu)) {
4366 hw_cr4 &= ~X86_CR4_PAE;
4367 hw_cr4 |= X86_CR4_PSE;
4368 } else if (!(cr4 & X86_CR4_PAE)) {
4369 hw_cr4 &= ~X86_CR4_PAE;
4370 }
4371 }
Sheng Yang14394422008-04-28 12:24:45 +08004372
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004373 if (!enable_unrestricted_guest && !is_paging(vcpu))
4374 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004375 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4376 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4377 * to be manually disabled when guest switches to non-paging
4378 * mode.
4379 *
4380 * If !enable_unrestricted_guest, the CPU is always running
4381 * with CR0.PG=1 and CR4 needs to be modified.
4382 * If enable_unrestricted_guest, the CPU automatically
4383 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004384 */
Huaitong Handdba2622016-03-22 16:51:15 +08004385 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004386
Sheng Yang14394422008-04-28 12:24:45 +08004387 vmcs_writel(CR4_READ_SHADOW, cr4);
4388 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004389 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004390}
4391
Avi Kivity6aa8b732006-12-10 02:21:36 -08004392static void vmx_get_segment(struct kvm_vcpu *vcpu,
4393 struct kvm_segment *var, int seg)
4394{
Avi Kivitya9179492011-01-03 14:28:52 +02004395 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004396 u32 ar;
4397
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004398 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004399 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004400 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004401 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004402 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004403 var->base = vmx_read_guest_seg_base(vmx, seg);
4404 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4405 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004406 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004407 var->base = vmx_read_guest_seg_base(vmx, seg);
4408 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4409 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4410 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004411 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004412 var->type = ar & 15;
4413 var->s = (ar >> 4) & 1;
4414 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004415 /*
4416 * Some userspaces do not preserve unusable property. Since usable
4417 * segment has to be present according to VMX spec we can use present
4418 * property to amend userspace bug by making unusable segment always
4419 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4420 * segment as unusable.
4421 */
4422 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004423 var->avl = (ar >> 12) & 1;
4424 var->l = (ar >> 13) & 1;
4425 var->db = (ar >> 14) & 1;
4426 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004427}
4428
Avi Kivitya9179492011-01-03 14:28:52 +02004429static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4430{
Avi Kivitya9179492011-01-03 14:28:52 +02004431 struct kvm_segment s;
4432
4433 if (to_vmx(vcpu)->rmode.vm86_active) {
4434 vmx_get_segment(vcpu, &s, seg);
4435 return s.base;
4436 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004437 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004438}
4439
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004440static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004441{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004442 struct vcpu_vmx *vmx = to_vmx(vcpu);
4443
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004444 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004445 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004446 else {
4447 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004448 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004449 }
Avi Kivity69c73022011-03-07 15:26:44 +02004450}
4451
Avi Kivity653e3102007-05-07 10:55:37 +03004452static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004454 u32 ar;
4455
Avi Kivityf0495f92012-06-07 17:06:10 +03004456 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457 ar = 1 << 16;
4458 else {
4459 ar = var->type & 15;
4460 ar |= (var->s & 1) << 4;
4461 ar |= (var->dpl & 3) << 5;
4462 ar |= (var->present & 1) << 7;
4463 ar |= (var->avl & 1) << 12;
4464 ar |= (var->l & 1) << 13;
4465 ar |= (var->db & 1) << 14;
4466 ar |= (var->g & 1) << 15;
4467 }
Avi Kivity653e3102007-05-07 10:55:37 +03004468
4469 return ar;
4470}
4471
4472static void vmx_set_segment(struct kvm_vcpu *vcpu,
4473 struct kvm_segment *var, int seg)
4474{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004475 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004476 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004477
Avi Kivity2fb92db2011-04-27 19:42:18 +03004478 vmx_segment_cache_clear(vmx);
4479
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004480 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4481 vmx->rmode.segs[seg] = *var;
4482 if (seg == VCPU_SREG_TR)
4483 vmcs_write16(sf->selector, var->selector);
4484 else if (var->s)
4485 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004486 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004487 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004488
Avi Kivity653e3102007-05-07 10:55:37 +03004489 vmcs_writel(sf->base, var->base);
4490 vmcs_write32(sf->limit, var->limit);
4491 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004492
4493 /*
4494 * Fix the "Accessed" bit in AR field of segment registers for older
4495 * qemu binaries.
4496 * IA32 arch specifies that at the time of processor reset the
4497 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004498 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004499 * state vmexit when "unrestricted guest" mode is turned on.
4500 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4501 * tree. Newer qemu binaries with that qemu fix would not need this
4502 * kvm hack.
4503 */
4504 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004505 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004506
Gleb Natapovf924d662012-12-12 19:10:55 +02004507 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004508
4509out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004510 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004511}
4512
Avi Kivity6aa8b732006-12-10 02:21:36 -08004513static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4514{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004515 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004516
4517 *db = (ar >> 14) & 1;
4518 *l = (ar >> 13) & 1;
4519}
4520
Gleb Natapov89a27f42010-02-16 10:51:48 +02004521static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004522{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004523 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4524 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004525}
4526
Gleb Natapov89a27f42010-02-16 10:51:48 +02004527static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004528{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004529 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4530 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004531}
4532
Gleb Natapov89a27f42010-02-16 10:51:48 +02004533static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004534{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004535 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4536 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004537}
4538
Gleb Natapov89a27f42010-02-16 10:51:48 +02004539static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004540{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004541 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4542 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004543}
4544
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004545static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4546{
4547 struct kvm_segment var;
4548 u32 ar;
4549
4550 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004551 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004552 if (seg == VCPU_SREG_CS)
4553 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004554 ar = vmx_segment_access_rights(&var);
4555
4556 if (var.base != (var.selector << 4))
4557 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004558 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004559 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004560 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004561 return false;
4562
4563 return true;
4564}
4565
4566static bool code_segment_valid(struct kvm_vcpu *vcpu)
4567{
4568 struct kvm_segment cs;
4569 unsigned int cs_rpl;
4570
4571 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004572 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004573
Avi Kivity1872a3f2009-01-04 23:26:52 +02004574 if (cs.unusable)
4575 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004576 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004577 return false;
4578 if (!cs.s)
4579 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004580 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004581 if (cs.dpl > cs_rpl)
4582 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004583 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004584 if (cs.dpl != cs_rpl)
4585 return false;
4586 }
4587 if (!cs.present)
4588 return false;
4589
4590 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4591 return true;
4592}
4593
4594static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4595{
4596 struct kvm_segment ss;
4597 unsigned int ss_rpl;
4598
4599 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004600 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004601
Avi Kivity1872a3f2009-01-04 23:26:52 +02004602 if (ss.unusable)
4603 return true;
4604 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004605 return false;
4606 if (!ss.s)
4607 return false;
4608 if (ss.dpl != ss_rpl) /* DPL != RPL */
4609 return false;
4610 if (!ss.present)
4611 return false;
4612
4613 return true;
4614}
4615
4616static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4617{
4618 struct kvm_segment var;
4619 unsigned int rpl;
4620
4621 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004622 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004623
Avi Kivity1872a3f2009-01-04 23:26:52 +02004624 if (var.unusable)
4625 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004626 if (!var.s)
4627 return false;
4628 if (!var.present)
4629 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004630 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004631 if (var.dpl < rpl) /* DPL < RPL */
4632 return false;
4633 }
4634
4635 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4636 * rights flags
4637 */
4638 return true;
4639}
4640
4641static bool tr_valid(struct kvm_vcpu *vcpu)
4642{
4643 struct kvm_segment tr;
4644
4645 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4646
Avi Kivity1872a3f2009-01-04 23:26:52 +02004647 if (tr.unusable)
4648 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004649 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004650 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004651 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004652 return false;
4653 if (!tr.present)
4654 return false;
4655
4656 return true;
4657}
4658
4659static bool ldtr_valid(struct kvm_vcpu *vcpu)
4660{
4661 struct kvm_segment ldtr;
4662
4663 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4664
Avi Kivity1872a3f2009-01-04 23:26:52 +02004665 if (ldtr.unusable)
4666 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004667 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004668 return false;
4669 if (ldtr.type != 2)
4670 return false;
4671 if (!ldtr.present)
4672 return false;
4673
4674 return true;
4675}
4676
4677static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4678{
4679 struct kvm_segment cs, ss;
4680
4681 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4682 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4683
Nadav Amitb32a9912015-03-29 16:33:04 +03004684 return ((cs.selector & SEGMENT_RPL_MASK) ==
4685 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004686}
4687
4688/*
4689 * Check if guest state is valid. Returns true if valid, false if
4690 * not.
4691 * We assume that registers are always usable
4692 */
4693static bool guest_state_valid(struct kvm_vcpu *vcpu)
4694{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004695 if (enable_unrestricted_guest)
4696 return true;
4697
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004698 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004699 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004700 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4701 return false;
4702 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4703 return false;
4704 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4705 return false;
4706 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4707 return false;
4708 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4709 return false;
4710 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4711 return false;
4712 } else {
4713 /* protected mode guest state checks */
4714 if (!cs_ss_rpl_check(vcpu))
4715 return false;
4716 if (!code_segment_valid(vcpu))
4717 return false;
4718 if (!stack_segment_valid(vcpu))
4719 return false;
4720 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4721 return false;
4722 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4723 return false;
4724 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4725 return false;
4726 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4727 return false;
4728 if (!tr_valid(vcpu))
4729 return false;
4730 if (!ldtr_valid(vcpu))
4731 return false;
4732 }
4733 /* TODO:
4734 * - Add checks on RIP
4735 * - Add checks on RFLAGS
4736 */
4737
4738 return true;
4739}
4740
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004741static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4742{
4743 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4744}
4745
Mike Dayd77c26f2007-10-08 09:02:08 -04004746static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004747{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004748 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004749 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004750 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004751
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004752 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004753 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004754 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4755 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004756 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004757 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004758 r = kvm_write_guest_page(kvm, fn++, &data,
4759 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004760 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004761 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004762 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4763 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004764 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004765 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4766 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004767 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004768 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004769 r = kvm_write_guest_page(kvm, fn, &data,
4770 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4771 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004772out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004773 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004774 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004775}
4776
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004777static int init_rmode_identity_map(struct kvm *kvm)
4778{
Tang Chenf51770e2014-09-16 18:41:59 +08004779 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004780 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004781 u32 tmp;
4782
Avi Kivity089d0342009-03-23 18:26:32 +02004783 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004784 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004785
4786 /* Protect kvm->arch.ept_identity_pagetable_done. */
4787 mutex_lock(&kvm->slots_lock);
4788
Tang Chenf51770e2014-09-16 18:41:59 +08004789 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004790 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004791
Sheng Yangb927a3c2009-07-21 10:42:48 +08004792 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004793
4794 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004795 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004796 goto out2;
4797
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004798 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004799 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4800 if (r < 0)
4801 goto out;
4802 /* Set up identity-mapping pagetable for EPT in real mode */
4803 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4804 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4805 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4806 r = kvm_write_guest_page(kvm, identity_map_pfn,
4807 &tmp, i * sizeof(tmp), sizeof(tmp));
4808 if (r < 0)
4809 goto out;
4810 }
4811 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004812
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004813out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004814 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004815
4816out2:
4817 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004818 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004819}
4820
Avi Kivity6aa8b732006-12-10 02:21:36 -08004821static void seg_setup(int seg)
4822{
Mathias Krause772e0312012-08-30 01:30:19 +02004823 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004824 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825
4826 vmcs_write16(sf->selector, 0);
4827 vmcs_writel(sf->base, 0);
4828 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004829 ar = 0x93;
4830 if (seg == VCPU_SREG_CS)
4831 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004832
4833 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004834}
4835
Sheng Yangf78e0e22007-10-29 09:40:42 +08004836static int alloc_apic_access_page(struct kvm *kvm)
4837{
Xiao Guangrong44841412012-09-07 14:14:20 +08004838 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004839 int r = 0;
4840
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004841 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004842 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004843 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004844 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4845 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004846 if (r)
4847 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004848
Tang Chen73a6d942014-09-11 13:38:00 +08004849 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004850 if (is_error_page(page)) {
4851 r = -EFAULT;
4852 goto out;
4853 }
4854
Tang Chenc24ae0d2014-09-24 15:57:58 +08004855 /*
4856 * Do not pin the page in memory, so that memory hot-unplug
4857 * is able to migrate it.
4858 */
4859 put_page(page);
4860 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004861out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004862 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004863 return r;
4864}
4865
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004866static int alloc_identity_pagetable(struct kvm *kvm)
4867{
Tang Chena255d472014-09-16 18:41:58 +08004868 /* Called with kvm->slots_lock held. */
4869
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004870 int r = 0;
4871
Tang Chena255d472014-09-16 18:41:58 +08004872 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4873
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004874 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4875 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004876
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004877 return r;
4878}
4879
Wanpeng Li991e7a02015-09-16 17:30:05 +08004880static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004881{
4882 int vpid;
4883
Avi Kivity919818a2009-03-23 18:01:29 +02004884 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004885 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004886 spin_lock(&vmx_vpid_lock);
4887 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004888 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004889 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004890 else
4891 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004892 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004893 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004894}
4895
Wanpeng Li991e7a02015-09-16 17:30:05 +08004896static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004897{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004898 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004899 return;
4900 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004901 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004902 spin_unlock(&vmx_vpid_lock);
4903}
4904
Yang Zhang8d146952013-01-25 10:18:50 +08004905#define MSR_TYPE_R 1
4906#define MSR_TYPE_W 2
4907static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4908 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004909{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004910 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004911
4912 if (!cpu_has_vmx_msr_bitmap())
4913 return;
4914
4915 /*
4916 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4917 * have the write-low and read-high bitmap offsets the wrong way round.
4918 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4919 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004920 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004921 if (type & MSR_TYPE_R)
4922 /* read-low */
4923 __clear_bit(msr, msr_bitmap + 0x000 / f);
4924
4925 if (type & MSR_TYPE_W)
4926 /* write-low */
4927 __clear_bit(msr, msr_bitmap + 0x800 / f);
4928
Sheng Yang25c5f222008-03-28 13:18:56 +08004929 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4930 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004931 if (type & MSR_TYPE_R)
4932 /* read-high */
4933 __clear_bit(msr, msr_bitmap + 0x400 / f);
4934
4935 if (type & MSR_TYPE_W)
4936 /* write-high */
4937 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4938
4939 }
4940}
4941
Wincy Vanf2b93282015-02-03 23:56:03 +08004942/*
4943 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4944 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4945 */
4946static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4947 unsigned long *msr_bitmap_nested,
4948 u32 msr, int type)
4949{
4950 int f = sizeof(unsigned long);
4951
4952 if (!cpu_has_vmx_msr_bitmap()) {
4953 WARN_ON(1);
4954 return;
4955 }
4956
4957 /*
4958 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4959 * have the write-low and read-high bitmap offsets the wrong way round.
4960 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4961 */
4962 if (msr <= 0x1fff) {
4963 if (type & MSR_TYPE_R &&
4964 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4965 /* read-low */
4966 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4967
4968 if (type & MSR_TYPE_W &&
4969 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4970 /* write-low */
4971 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4972
4973 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4974 msr &= 0x1fff;
4975 if (type & MSR_TYPE_R &&
4976 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4977 /* read-high */
4978 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4979
4980 if (type & MSR_TYPE_W &&
4981 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4982 /* write-high */
4983 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4984
4985 }
4986}
4987
Avi Kivity58972972009-02-24 22:26:47 +02004988static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4989{
4990 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004991 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4992 msr, MSR_TYPE_R | MSR_TYPE_W);
4993 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4994 msr, MSR_TYPE_R | MSR_TYPE_W);
4995}
4996
Radim Krčmář2e69f862016-09-29 22:41:32 +02004997static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004998{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004999 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08005000 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005001 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08005002 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005003 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005004 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005005 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005006 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005007 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005008 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005009 }
Avi Kivity58972972009-02-24 22:26:47 +02005010}
5011
Andrey Smetanind62caab2015-11-10 15:36:33 +03005012static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005013{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005014 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005015}
5016
David Matlackc9f04402017-08-01 14:00:40 -07005017static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5018{
5019 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5020 gfn_t gfn;
5021
5022 /*
5023 * Don't need to mark the APIC access page dirty; it is never
5024 * written to by the CPU during APIC virtualization.
5025 */
5026
5027 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5028 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5029 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5030 }
5031
5032 if (nested_cpu_has_posted_intr(vmcs12)) {
5033 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5034 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5035 }
5036}
5037
5038
David Hildenbrand6342c502017-01-25 11:58:58 +01005039static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005040{
5041 struct vcpu_vmx *vmx = to_vmx(vcpu);
5042 int max_irr;
5043 void *vapic_page;
5044 u16 status;
5045
David Matlackc9f04402017-08-01 14:00:40 -07005046 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5047 return;
Wincy Van705699a2015-02-03 23:58:17 +08005048
David Matlackc9f04402017-08-01 14:00:40 -07005049 vmx->nested.pi_pending = false;
5050 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5051 return;
Wincy Van705699a2015-02-03 23:58:17 +08005052
David Matlackc9f04402017-08-01 14:00:40 -07005053 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5054 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005055 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005056 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5057 kunmap(vmx->nested.virtual_apic_page);
5058
5059 status = vmcs_read16(GUEST_INTR_STATUS);
5060 if ((u8)max_irr > ((u8)status & 0xff)) {
5061 status &= ~0xff;
5062 status |= (u8)max_irr;
5063 vmcs_write16(GUEST_INTR_STATUS, status);
5064 }
5065 }
David Matlackc9f04402017-08-01 14:00:40 -07005066
5067 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005068}
5069
Wincy Van06a55242017-04-28 13:13:59 +08005070static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5071 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005072{
5073#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005074 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5075
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005076 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005077 struct vcpu_vmx *vmx = to_vmx(vcpu);
5078
5079 /*
5080 * Currently, we don't support urgent interrupt,
5081 * all interrupts are recognized as non-urgent
5082 * interrupt, so we cannot post interrupts when
5083 * 'SN' is set.
5084 *
5085 * If the vcpu is in guest mode, it means it is
5086 * running instead of being scheduled out and
5087 * waiting in the run queue, and that's the only
5088 * case when 'SN' is set currently, warning if
5089 * 'SN' is set.
5090 */
5091 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
5092
Wincy Van06a55242017-04-28 13:13:59 +08005093 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005094 return true;
5095 }
5096#endif
5097 return false;
5098}
5099
Wincy Van705699a2015-02-03 23:58:17 +08005100static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5101 int vector)
5102{
5103 struct vcpu_vmx *vmx = to_vmx(vcpu);
5104
5105 if (is_guest_mode(vcpu) &&
5106 vector == vmx->nested.posted_intr_nv) {
5107 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005108 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005109 /*
5110 * If a posted intr is not recognized by hardware,
5111 * we will accomplish it in the next vmentry.
5112 */
5113 vmx->nested.pi_pending = true;
5114 kvm_make_request(KVM_REQ_EVENT, vcpu);
5115 return 0;
5116 }
5117 return -1;
5118}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005119/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005120 * Send interrupt to vcpu via posted interrupt way.
5121 * 1. If target vcpu is running(non-root mode), send posted interrupt
5122 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5123 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5124 * interrupt from PIR in next vmentry.
5125 */
5126static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5127{
5128 struct vcpu_vmx *vmx = to_vmx(vcpu);
5129 int r;
5130
Wincy Van705699a2015-02-03 23:58:17 +08005131 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5132 if (!r)
5133 return;
5134
Yang Zhanga20ed542013-04-11 19:25:15 +08005135 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5136 return;
5137
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005138 /* If a previous notification has sent the IPI, nothing to do. */
5139 if (pi_test_and_set_on(&vmx->pi_desc))
5140 return;
5141
Wincy Van06a55242017-04-28 13:13:59 +08005142 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005143 kvm_vcpu_kick(vcpu);
5144}
5145
Avi Kivity6aa8b732006-12-10 02:21:36 -08005146/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005147 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5148 * will not change in the lifetime of the guest.
5149 * Note that host-state that does change is set elsewhere. E.g., host-state
5150 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5151 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005152static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005153{
5154 u32 low32, high32;
5155 unsigned long tmpl;
5156 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005157 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005158
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005159 cr0 = read_cr0();
5160 WARN_ON(cr0 & X86_CR0_TS);
5161 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005162
5163 /*
5164 * Save the most likely value for this task's CR3 in the VMCS.
5165 * We can't use __get_current_cr3_fast() because we're not atomic.
5166 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005167 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005168 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
5169 vmx->host_state.vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005170
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005171 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005172 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005173 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5174 vmx->host_state.vmcs_host_cr4 = cr4;
5175
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005176 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005177#ifdef CONFIG_X86_64
5178 /*
5179 * Load null selectors, so we can avoid reloading them in
5180 * __vmx_load_host_state(), in case userspace uses the null selectors
5181 * too (the expected case).
5182 */
5183 vmcs_write16(HOST_DS_SELECTOR, 0);
5184 vmcs_write16(HOST_ES_SELECTOR, 0);
5185#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005186 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5187 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005188#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005189 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5190 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5191
5192 native_store_idt(&dt);
5193 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005194 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005195
Avi Kivity83287ea422012-09-16 15:10:57 +03005196 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005197
5198 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5199 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5200 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5201 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5202
5203 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5204 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5205 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5206 }
5207}
5208
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005209static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5210{
5211 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5212 if (enable_ept)
5213 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005214 if (is_guest_mode(&vmx->vcpu))
5215 vmx->vcpu.arch.cr4_guest_owned_bits &=
5216 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005217 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5218}
5219
Yang Zhang01e439b2013-04-11 19:25:12 +08005220static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5221{
5222 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5223
Andrey Smetanind62caab2015-11-10 15:36:33 +03005224 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005225 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005226 /* Enable the preemption timer dynamically */
5227 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005228 return pin_based_exec_ctrl;
5229}
5230
Andrey Smetanind62caab2015-11-10 15:36:33 +03005231static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5232{
5233 struct vcpu_vmx *vmx = to_vmx(vcpu);
5234
5235 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005236 if (cpu_has_secondary_exec_ctrls()) {
5237 if (kvm_vcpu_apicv_active(vcpu))
5238 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5239 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5240 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5241 else
5242 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5243 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5244 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5245 }
5246
5247 if (cpu_has_vmx_msr_bitmap())
5248 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005249}
5250
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005251static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5252{
5253 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005254
5255 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5256 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5257
Paolo Bonzini35754c92015-07-29 12:05:37 +02005258 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005259 exec_control &= ~CPU_BASED_TPR_SHADOW;
5260#ifdef CONFIG_X86_64
5261 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5262 CPU_BASED_CR8_LOAD_EXITING;
5263#endif
5264 }
5265 if (!enable_ept)
5266 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5267 CPU_BASED_CR3_LOAD_EXITING |
5268 CPU_BASED_INVLPG_EXITING;
5269 return exec_control;
5270}
5271
5272static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
5273{
5274 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005275 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005276 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5277 if (vmx->vpid == 0)
5278 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5279 if (!enable_ept) {
5280 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5281 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005282 /* Enable INVPCID for non-ept guests may cause performance regression. */
5283 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005284 }
5285 if (!enable_unrestricted_guest)
5286 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5287 if (!ple_gap)
5288 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03005289 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005290 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5291 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005292 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005293 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5294 (handle_vmptrld).
5295 We can NOT enable shadow_vmcs here because we don't have yet
5296 a current VMCS12
5297 */
5298 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005299
5300 if (!enable_pml)
5301 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005302
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005303 return exec_control;
5304}
5305
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005306static void ept_set_mmio_spte_mask(void)
5307{
5308 /*
5309 * EPT Misconfigurations can be generated if the value of bits 2:0
5310 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005311 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005312 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5313 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005314}
5315
Wanpeng Lif53cd632014-12-02 19:14:58 +08005316#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005317/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005318 * Sets up the vmcs for emulated real mode.
5319 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005320static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005321{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005322#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005323 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005324#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005325 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005326
Avi Kivity6aa8b732006-12-10 02:21:36 -08005327 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005328 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5329 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005330
Abel Gordon4607c2d2013-04-18 14:35:55 +03005331 if (enable_shadow_vmcs) {
5332 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5333 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5334 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005335 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005336 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005337
Avi Kivity6aa8b732006-12-10 02:21:36 -08005338 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5339
Avi Kivity6aa8b732006-12-10 02:21:36 -08005340 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005341 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005342 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005343
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005344 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005345
Dan Williamsdfa169b2016-06-02 11:17:24 -07005346 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005347 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5348 vmx_secondary_exec_control(vmx));
Dan Williamsdfa169b2016-06-02 11:17:24 -07005349 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005350
Andrey Smetanind62caab2015-11-10 15:36:33 +03005351 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005352 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5353 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5354 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5355 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5356
5357 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005358
Li RongQing0bcf2612015-12-03 13:29:34 +08005359 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005360 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005361 }
5362
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005363 if (ple_gap) {
5364 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005365 vmx->ple_window = ple_window;
5366 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005367 }
5368
Xiao Guangrongc3707952011-07-12 03:28:04 +08005369 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5370 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005371 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5372
Avi Kivity9581d442010-10-19 16:46:55 +02005373 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5374 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005375 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005376#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005377 rdmsrl(MSR_FS_BASE, a);
5378 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5379 rdmsrl(MSR_GS_BASE, a);
5380 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5381#else
5382 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5383 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5384#endif
5385
Bandan Das2a499e42017-08-03 15:54:41 -04005386 if (cpu_has_vmx_vmfunc())
5387 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5388
Eddie Dong2cc51562007-05-21 07:28:09 +03005389 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5390 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005391 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005392 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005393 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005394
Radim Krčmář74545702015-04-27 15:11:25 +02005395 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5396 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005397
Paolo Bonzini03916db2014-07-24 14:21:57 +02005398 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005399 u32 index = vmx_msr_index[i];
5400 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005401 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005402
5403 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5404 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005405 if (wrmsr_safe(index, data_low, data_high) < 0)
5406 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005407 vmx->guest_msrs[j].index = i;
5408 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005409 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005410 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005411 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005412
Gleb Natapov2961e8762013-11-25 15:37:13 +02005413
5414 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005415
5416 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005417 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005418
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005419 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5420 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5421
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005422 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005423
Wanpeng Lif53cd632014-12-02 19:14:58 +08005424 if (vmx_xsaves_supported())
5425 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5426
Peter Feiner4e595162016-07-07 14:49:58 -07005427 if (enable_pml) {
5428 ASSERT(vmx->pml_pg);
5429 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5430 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5431 }
5432
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005433 return 0;
5434}
5435
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005436static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005437{
5438 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005439 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005440 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005441
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005442 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005443
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005444 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005445 kvm_set_cr8(vcpu, 0);
5446
5447 if (!init_event) {
5448 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5449 MSR_IA32_APICBASE_ENABLE;
5450 if (kvm_vcpu_is_reset_bsp(vcpu))
5451 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5452 apic_base_msr.host_initiated = true;
5453 kvm_set_apic_base(vcpu, &apic_base_msr);
5454 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005455
Avi Kivity2fb92db2011-04-27 19:42:18 +03005456 vmx_segment_cache_clear(vmx);
5457
Avi Kivity5706be02008-08-20 15:07:31 +03005458 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005459 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005460 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005461
5462 seg_setup(VCPU_SREG_DS);
5463 seg_setup(VCPU_SREG_ES);
5464 seg_setup(VCPU_SREG_FS);
5465 seg_setup(VCPU_SREG_GS);
5466 seg_setup(VCPU_SREG_SS);
5467
5468 vmcs_write16(GUEST_TR_SELECTOR, 0);
5469 vmcs_writel(GUEST_TR_BASE, 0);
5470 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5471 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5472
5473 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5474 vmcs_writel(GUEST_LDTR_BASE, 0);
5475 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5476 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5477
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005478 if (!init_event) {
5479 vmcs_write32(GUEST_SYSENTER_CS, 0);
5480 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5481 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5482 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5483 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005484
5485 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005486 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005487
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005488 vmcs_writel(GUEST_GDTR_BASE, 0);
5489 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5490
5491 vmcs_writel(GUEST_IDTR_BASE, 0);
5492 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5493
Anthony Liguori443381a2010-12-06 10:53:38 -06005494 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005495 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005496 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005497
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005498 setup_msrs(vmx);
5499
Avi Kivity6aa8b732006-12-10 02:21:36 -08005500 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5501
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005502 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005503 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005504 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005505 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005506 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005507 vmcs_write32(TPR_THRESHOLD, 0);
5508 }
5509
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005510 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005511
Andrey Smetanind62caab2015-11-10 15:36:33 +03005512 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005513 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5514
Sheng Yang2384d2b2008-01-17 15:14:33 +08005515 if (vmx->vpid != 0)
5516 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5517
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005518 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005519 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005520 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005521 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005522 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005523
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005524 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005525
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005526 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005527}
5528
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005529/*
5530 * In nested virtualization, check if L1 asked to exit on external interrupts.
5531 * For most existing hypervisors, this will always return true.
5532 */
5533static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5534{
5535 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5536 PIN_BASED_EXT_INTR_MASK;
5537}
5538
Bandan Das77b0f5d2014-04-19 18:17:45 -04005539/*
5540 * In nested virtualization, check if L1 has set
5541 * VM_EXIT_ACK_INTR_ON_EXIT
5542 */
5543static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5544{
5545 return get_vmcs12(vcpu)->vm_exit_controls &
5546 VM_EXIT_ACK_INTR_ON_EXIT;
5547}
5548
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005549static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5550{
5551 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5552 PIN_BASED_NMI_EXITING;
5553}
5554
Jan Kiszkac9a79532014-03-07 20:03:15 +01005555static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005556{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005557 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5558 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005559}
5560
Jan Kiszkac9a79532014-03-07 20:03:15 +01005561static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005562{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005563 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005564 enable_irq_window(vcpu);
5565 return;
5566 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005567
Paolo Bonzini47c01522016-12-19 11:44:07 +01005568 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5569 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005570}
5571
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005572static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005573{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005574 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005575 uint32_t intr;
5576 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005577
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005578 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005579
Avi Kivityfa89a812008-09-01 15:57:51 +03005580 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005581 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005582 int inc_eip = 0;
5583 if (vcpu->arch.interrupt.soft)
5584 inc_eip = vcpu->arch.event_exit_inst_len;
5585 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005586 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005587 return;
5588 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005589 intr = irq | INTR_INFO_VALID_MASK;
5590 if (vcpu->arch.interrupt.soft) {
5591 intr |= INTR_TYPE_SOFT_INTR;
5592 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5593 vmx->vcpu.arch.event_exit_inst_len);
5594 } else
5595 intr |= INTR_TYPE_EXT_INTR;
5596 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005597}
5598
Sheng Yangf08864b2008-05-15 18:23:25 +08005599static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5600{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005601 struct vcpu_vmx *vmx = to_vmx(vcpu);
5602
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005603 ++vcpu->stat.nmi_injections;
5604 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005605
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005606 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005607 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005608 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005609 return;
5610 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005611
Sheng Yangf08864b2008-05-15 18:23:25 +08005612 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5613 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005614}
5615
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005616static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5617{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005618 struct vcpu_vmx *vmx = to_vmx(vcpu);
5619 bool masked;
5620
5621 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005622 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005623 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5624 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5625 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005626}
5627
5628static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5629{
5630 struct vcpu_vmx *vmx = to_vmx(vcpu);
5631
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005632 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005633 if (masked)
5634 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5635 GUEST_INTR_STATE_NMI);
5636 else
5637 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5638 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005639}
5640
Jan Kiszka2505dc92013-04-14 12:12:47 +02005641static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5642{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005643 if (to_vmx(vcpu)->nested.nested_run_pending)
5644 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005645
Jan Kiszka2505dc92013-04-14 12:12:47 +02005646 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5647 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5648 | GUEST_INTR_STATE_NMI));
5649}
5650
Gleb Natapov78646122009-03-23 12:12:11 +02005651static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5652{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005653 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5654 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005655 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5656 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005657}
5658
Izik Eiduscbc94022007-10-25 00:29:55 +02005659static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5660{
5661 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005662
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005663 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5664 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005665 if (ret)
5666 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005667 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005668 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005669}
5670
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005671static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005672{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005673 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005674 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005675 /*
5676 * Update instruction length as we may reinject the exception
5677 * from user space while in guest debugging mode.
5678 */
5679 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5680 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005681 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005682 return false;
5683 /* fall through */
5684 case DB_VECTOR:
5685 if (vcpu->guest_debug &
5686 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5687 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005688 /* fall through */
5689 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005690 case OF_VECTOR:
5691 case BR_VECTOR:
5692 case UD_VECTOR:
5693 case DF_VECTOR:
5694 case SS_VECTOR:
5695 case GP_VECTOR:
5696 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005697 return true;
5698 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005699 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005700 return false;
5701}
5702
5703static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5704 int vec, u32 err_code)
5705{
5706 /*
5707 * Instruction with address size override prefix opcode 0x67
5708 * Cause the #SS fault with 0 error code in VM86 mode.
5709 */
5710 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5711 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5712 if (vcpu->arch.halt_request) {
5713 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005714 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005715 }
5716 return 1;
5717 }
5718 return 0;
5719 }
5720
5721 /*
5722 * Forward all other exceptions that are valid in real mode.
5723 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5724 * the required debugging infrastructure rework.
5725 */
5726 kvm_queue_exception(vcpu, vec);
5727 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005728}
5729
Andi Kleena0861c02009-06-08 17:37:09 +08005730/*
5731 * Trigger machine check on the host. We assume all the MSRs are already set up
5732 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5733 * We pass a fake environment to the machine check handler because we want
5734 * the guest to be always treated like user space, no matter what context
5735 * it used internally.
5736 */
5737static void kvm_machine_check(void)
5738{
5739#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5740 struct pt_regs regs = {
5741 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5742 .flags = X86_EFLAGS_IF,
5743 };
5744
5745 do_machine_check(&regs, 0);
5746#endif
5747}
5748
Avi Kivity851ba692009-08-24 11:10:17 +03005749static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005750{
5751 /* already handled by vcpu_run */
5752 return 1;
5753}
5754
Avi Kivity851ba692009-08-24 11:10:17 +03005755static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005756{
Avi Kivity1155f762007-11-22 11:30:47 +02005757 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005758 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005759 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005760 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005761 u32 vect_info;
5762 enum emulation_result er;
5763
Avi Kivity1155f762007-11-22 11:30:47 +02005764 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005765 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005766
Andi Kleena0861c02009-06-08 17:37:09 +08005767 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005768 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005769
Jim Mattsonef85b672016-12-12 11:01:37 -08005770 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005771 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005772
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005773 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005774 if (is_guest_mode(vcpu)) {
5775 kvm_queue_exception(vcpu, UD_VECTOR);
5776 return 1;
5777 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005778 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005779 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005780 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005781 return 1;
5782 }
5783
Avi Kivity6aa8b732006-12-10 02:21:36 -08005784 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005785 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005786 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005787
5788 /*
5789 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5790 * MMIO, it is better to report an internal error.
5791 * See the comments in vmx_handle_exit.
5792 */
5793 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5794 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5795 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5796 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005797 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005798 vcpu->run->internal.data[0] = vect_info;
5799 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005800 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005801 return 0;
5802 }
5803
Avi Kivity6aa8b732006-12-10 02:21:36 -08005804 if (is_page_fault(intr_info)) {
5805 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005806 /* EPT won't cause page fault directly */
5807 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
5808 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0,
5809 true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005810 }
5811
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005812 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005813
5814 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5815 return handle_rmode_exception(vcpu, ex_no, error_code);
5816
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005817 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005818 case AC_VECTOR:
5819 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5820 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005821 case DB_VECTOR:
5822 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5823 if (!(vcpu->guest_debug &
5824 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005825 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005826 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005827 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5828 skip_emulated_instruction(vcpu);
5829
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005830 kvm_queue_exception(vcpu, DB_VECTOR);
5831 return 1;
5832 }
5833 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5834 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5835 /* fall through */
5836 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005837 /*
5838 * Update instruction length as we may reinject #BP from
5839 * user space while in guest debugging mode. Reading it for
5840 * #DB as well causes no harm, it is not used in that case.
5841 */
5842 vmx->vcpu.arch.event_exit_inst_len =
5843 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005844 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005845 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005846 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5847 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005848 break;
5849 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005850 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5851 kvm_run->ex.exception = ex_no;
5852 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005853 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005854 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005855 return 0;
5856}
5857
Avi Kivity851ba692009-08-24 11:10:17 +03005858static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005859{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005860 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005861 return 1;
5862}
5863
Avi Kivity851ba692009-08-24 11:10:17 +03005864static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005865{
Avi Kivity851ba692009-08-24 11:10:17 +03005866 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005867 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005868 return 0;
5869}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005870
Avi Kivity851ba692009-08-24 11:10:17 +03005871static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005872{
He, Qingbfdaab02007-09-12 14:18:28 +08005873 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005874 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005875 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005876
He, Qingbfdaab02007-09-12 14:18:28 +08005877 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005878 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005879 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005880
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005881 ++vcpu->stat.io_exits;
5882
5883 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005884 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005885
5886 port = exit_qualification >> 16;
5887 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005888
Kyle Huey6affcbe2016-11-29 12:40:40 -08005889 ret = kvm_skip_emulated_instruction(vcpu);
5890
5891 /*
5892 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5893 * KVM_EXIT_DEBUG here.
5894 */
5895 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005896}
5897
Ingo Molnar102d8322007-02-19 14:37:47 +02005898static void
5899vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5900{
5901 /*
5902 * Patch in the VMCALL instruction:
5903 */
5904 hypercall[0] = 0x0f;
5905 hypercall[1] = 0x01;
5906 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005907}
5908
Guo Chao0fa06072012-06-28 15:16:19 +08005909/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005910static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5911{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005912 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005913 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5914 unsigned long orig_val = val;
5915
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005916 /*
5917 * We get here when L2 changed cr0 in a way that did not change
5918 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005919 * but did change L0 shadowed bits. So we first calculate the
5920 * effective cr0 value that L1 would like to write into the
5921 * hardware. It consists of the L2-owned bits from the new
5922 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005923 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005924 val = (val & ~vmcs12->cr0_guest_host_mask) |
5925 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5926
David Matlack38991522016-11-29 18:14:08 -08005927 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005928 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005929
5930 if (kvm_set_cr0(vcpu, val))
5931 return 1;
5932 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005933 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005934 } else {
5935 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005936 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005937 return 1;
David Matlack38991522016-11-29 18:14:08 -08005938
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005939 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005940 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005941}
5942
5943static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5944{
5945 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005946 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5947 unsigned long orig_val = val;
5948
5949 /* analogously to handle_set_cr0 */
5950 val = (val & ~vmcs12->cr4_guest_host_mask) |
5951 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5952 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005953 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005954 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005955 return 0;
5956 } else
5957 return kvm_set_cr4(vcpu, val);
5958}
5959
Avi Kivity851ba692009-08-24 11:10:17 +03005960static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005961{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005962 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005963 int cr;
5964 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005965 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005966 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005967
He, Qingbfdaab02007-09-12 14:18:28 +08005968 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005969 cr = exit_qualification & 15;
5970 reg = (exit_qualification >> 8) & 15;
5971 switch ((exit_qualification >> 4) & 3) {
5972 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005973 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005974 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005975 switch (cr) {
5976 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005977 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005978 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005979 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005980 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005981 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005982 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005983 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005984 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005985 case 8: {
5986 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005987 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005988 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005989 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005990 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005991 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005992 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005993 return ret;
5994 /*
5995 * TODO: we might be squashing a
5996 * KVM_GUESTDBG_SINGLESTEP-triggered
5997 * KVM_EXIT_DEBUG here.
5998 */
Avi Kivity851ba692009-08-24 11:10:17 +03005999 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006000 return 0;
6001 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006002 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006003 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006004 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006005 WARN_ONCE(1, "Guest should always own CR0.TS");
6006 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006007 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006008 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006009 case 1: /*mov from cr*/
6010 switch (cr) {
6011 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006012 val = kvm_read_cr3(vcpu);
6013 kvm_register_write(vcpu, reg, val);
6014 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006015 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006016 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006017 val = kvm_get_cr8(vcpu);
6018 kvm_register_write(vcpu, reg, val);
6019 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006020 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006021 }
6022 break;
6023 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006024 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006025 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006026 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006027
Kyle Huey6affcbe2016-11-29 12:40:40 -08006028 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006029 default:
6030 break;
6031 }
Avi Kivity851ba692009-08-24 11:10:17 +03006032 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006033 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006034 (int)(exit_qualification >> 4) & 3, cr);
6035 return 0;
6036}
6037
Avi Kivity851ba692009-08-24 11:10:17 +03006038static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006039{
He, Qingbfdaab02007-09-12 14:18:28 +08006040 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006041 int dr, dr7, reg;
6042
6043 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6044 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6045
6046 /* First, if DR does not exist, trigger UD */
6047 if (!kvm_require_dr(vcpu, dr))
6048 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006049
Jan Kiszkaf2483412010-01-20 18:20:20 +01006050 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006051 if (!kvm_require_cpl(vcpu, 0))
6052 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006053 dr7 = vmcs_readl(GUEST_DR7);
6054 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006055 /*
6056 * As the vm-exit takes precedence over the debug trap, we
6057 * need to emulate the latter, either for the host or the
6058 * guest debugging itself.
6059 */
6060 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006061 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006062 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006063 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006064 vcpu->run->debug.arch.exception = DB_VECTOR;
6065 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006066 return 0;
6067 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006068 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006069 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006070 kvm_queue_exception(vcpu, DB_VECTOR);
6071 return 1;
6072 }
6073 }
6074
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006075 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006076 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6077 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006078
6079 /*
6080 * No more DR vmexits; force a reload of the debug registers
6081 * and reenter on this instruction. The next vmexit will
6082 * retrieve the full state of the debug registers.
6083 */
6084 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6085 return 1;
6086 }
6087
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006088 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6089 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006090 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006091
6092 if (kvm_get_dr(vcpu, dr, &val))
6093 return 1;
6094 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006095 } else
Nadav Amit57773922014-06-18 17:19:23 +03006096 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006097 return 1;
6098
Kyle Huey6affcbe2016-11-29 12:40:40 -08006099 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006100}
6101
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006102static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6103{
6104 return vcpu->arch.dr6;
6105}
6106
6107static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6108{
6109}
6110
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006111static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6112{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006113 get_debugreg(vcpu->arch.db[0], 0);
6114 get_debugreg(vcpu->arch.db[1], 1);
6115 get_debugreg(vcpu->arch.db[2], 2);
6116 get_debugreg(vcpu->arch.db[3], 3);
6117 get_debugreg(vcpu->arch.dr6, 6);
6118 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6119
6120 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006121 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006122}
6123
Gleb Natapov020df072010-04-13 10:05:23 +03006124static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6125{
6126 vmcs_writel(GUEST_DR7, val);
6127}
6128
Avi Kivity851ba692009-08-24 11:10:17 +03006129static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006130{
Kyle Huey6a908b62016-11-29 12:40:37 -08006131 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006132}
6133
Avi Kivity851ba692009-08-24 11:10:17 +03006134static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006135{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006136 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006137 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006138
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006139 msr_info.index = ecx;
6140 msr_info.host_initiated = false;
6141 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006142 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006143 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006144 return 1;
6145 }
6146
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006147 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006148
Avi Kivity6aa8b732006-12-10 02:21:36 -08006149 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006150 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6151 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006152 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006153}
6154
Avi Kivity851ba692009-08-24 11:10:17 +03006155static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006156{
Will Auld8fe8ab42012-11-29 12:42:12 -08006157 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006158 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6159 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6160 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006161
Will Auld8fe8ab42012-11-29 12:42:12 -08006162 msr.data = data;
6163 msr.index = ecx;
6164 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006165 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006166 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006167 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006168 return 1;
6169 }
6170
Avi Kivity59200272010-01-25 19:47:02 +02006171 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006172 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006173}
6174
Avi Kivity851ba692009-08-24 11:10:17 +03006175static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006176{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006177 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006178 return 1;
6179}
6180
Avi Kivity851ba692009-08-24 11:10:17 +03006181static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006182{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006183 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6184 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006185
Avi Kivity3842d132010-07-27 12:30:24 +03006186 kvm_make_request(KVM_REQ_EVENT, vcpu);
6187
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006188 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006189 return 1;
6190}
6191
Avi Kivity851ba692009-08-24 11:10:17 +03006192static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006193{
Avi Kivityd3bef152007-06-05 15:53:05 +03006194 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006195}
6196
Avi Kivity851ba692009-08-24 11:10:17 +03006197static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006198{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006199 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006200}
6201
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006202static int handle_invd(struct kvm_vcpu *vcpu)
6203{
Andre Przywara51d8b662010-12-21 11:12:02 +01006204 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006205}
6206
Avi Kivity851ba692009-08-24 11:10:17 +03006207static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006208{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006209 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006210
6211 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006212 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006213}
6214
Avi Kivityfee84b02011-11-10 14:57:25 +02006215static int handle_rdpmc(struct kvm_vcpu *vcpu)
6216{
6217 int err;
6218
6219 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006220 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006221}
6222
Avi Kivity851ba692009-08-24 11:10:17 +03006223static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006224{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006225 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006226}
6227
Dexuan Cui2acf9232010-06-10 11:27:12 +08006228static int handle_xsetbv(struct kvm_vcpu *vcpu)
6229{
6230 u64 new_bv = kvm_read_edx_eax(vcpu);
6231 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6232
6233 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006234 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006235 return 1;
6236}
6237
Wanpeng Lif53cd632014-12-02 19:14:58 +08006238static int handle_xsaves(struct kvm_vcpu *vcpu)
6239{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006240 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006241 WARN(1, "this should never happen\n");
6242 return 1;
6243}
6244
6245static int handle_xrstors(struct kvm_vcpu *vcpu)
6246{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006247 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006248 WARN(1, "this should never happen\n");
6249 return 1;
6250}
6251
Avi Kivity851ba692009-08-24 11:10:17 +03006252static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006253{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006254 if (likely(fasteoi)) {
6255 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6256 int access_type, offset;
6257
6258 access_type = exit_qualification & APIC_ACCESS_TYPE;
6259 offset = exit_qualification & APIC_ACCESS_OFFSET;
6260 /*
6261 * Sane guest uses MOV to write EOI, with written value
6262 * not cared. So make a short-circuit here by avoiding
6263 * heavy instruction emulation.
6264 */
6265 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6266 (offset == APIC_EOI)) {
6267 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006268 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006269 }
6270 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006271 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006272}
6273
Yang Zhangc7c9c562013-01-25 10:18:51 +08006274static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6275{
6276 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6277 int vector = exit_qualification & 0xff;
6278
6279 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6280 kvm_apic_set_eoi_accelerated(vcpu, vector);
6281 return 1;
6282}
6283
Yang Zhang83d4c282013-01-25 10:18:49 +08006284static int handle_apic_write(struct kvm_vcpu *vcpu)
6285{
6286 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6287 u32 offset = exit_qualification & 0xfff;
6288
6289 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6290 kvm_apic_write_nodecode(vcpu, offset);
6291 return 1;
6292}
6293
Avi Kivity851ba692009-08-24 11:10:17 +03006294static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006295{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006296 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006297 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006298 bool has_error_code = false;
6299 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006300 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006301 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006302
6303 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006304 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006305 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006306
6307 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6308
6309 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006310 if (reason == TASK_SWITCH_GATE && idt_v) {
6311 switch (type) {
6312 case INTR_TYPE_NMI_INTR:
6313 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006314 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006315 break;
6316 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006317 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006318 kvm_clear_interrupt_queue(vcpu);
6319 break;
6320 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006321 if (vmx->idt_vectoring_info &
6322 VECTORING_INFO_DELIVER_CODE_MASK) {
6323 has_error_code = true;
6324 error_code =
6325 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6326 }
6327 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006328 case INTR_TYPE_SOFT_EXCEPTION:
6329 kvm_clear_exception_queue(vcpu);
6330 break;
6331 default:
6332 break;
6333 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006334 }
Izik Eidus37817f22008-03-24 23:14:53 +02006335 tss_selector = exit_qualification;
6336
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006337 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6338 type != INTR_TYPE_EXT_INTR &&
6339 type != INTR_TYPE_NMI_INTR))
6340 skip_emulated_instruction(vcpu);
6341
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006342 if (kvm_task_switch(vcpu, tss_selector,
6343 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6344 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006345 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6346 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6347 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006348 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006349 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006350
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006351 /*
6352 * TODO: What about debug traps on tss switch?
6353 * Are we supposed to inject them and update dr6?
6354 */
6355
6356 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006357}
6358
Avi Kivity851ba692009-08-24 11:10:17 +03006359static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006360{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006361 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006362 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006363 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006364
Sheng Yangf9c617f2009-03-25 10:08:52 +08006365 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006366
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006367 /*
6368 * EPT violation happened while executing iret from NMI,
6369 * "blocked by NMI" bit has to be set before next VM entry.
6370 * There are errata that may cause this bit to not be set:
6371 * AAK134, BY25.
6372 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006373 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006374 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006375 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6376
Sheng Yang14394422008-04-28 12:24:45 +08006377 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006378 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006379
Junaid Shahid27959a42016-12-06 16:46:10 -08006380 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006381 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006382 ? PFERR_USER_MASK : 0;
6383 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006384 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006385 ? PFERR_WRITE_MASK : 0;
6386 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006387 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006388 ? PFERR_FETCH_MASK : 0;
6389 /* ept page table entry is present? */
6390 error_code |= (exit_qualification &
6391 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6392 EPT_VIOLATION_EXECUTABLE))
6393 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006394
Paolo Bonzinieebed242016-11-28 14:39:58 +01006395 error_code |= (exit_qualification & 0x100) != 0 ?
6396 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
6397
Yang Zhang25d92082013-08-06 12:00:32 +03006398 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006399 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006400}
6401
Avi Kivity851ba692009-08-24 11:10:17 +03006402static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006403{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006404 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006405 gpa_t gpa;
6406
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006407 /*
6408 * A nested guest cannot optimize MMIO vmexits, because we have an
6409 * nGPA here instead of the required GPA.
6410 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006411 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006412 if (!is_guest_mode(vcpu) &&
6413 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006414 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006415 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006416 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006417
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006418 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6419 if (ret >= 0)
6420 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006421
6422 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006423 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006424
Avi Kivity851ba692009-08-24 11:10:17 +03006425 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6426 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006427
6428 return 0;
6429}
6430
Avi Kivity851ba692009-08-24 11:10:17 +03006431static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006432{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006433 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6434 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006435 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006436 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006437
6438 return 1;
6439}
6440
Mohammed Gamal80ced182009-09-01 12:48:18 +02006441static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006442{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006443 struct vcpu_vmx *vmx = to_vmx(vcpu);
6444 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006445 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006446 u32 cpu_exec_ctrl;
6447 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006448 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006449
6450 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6451 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006452
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006453 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006454 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006455 return handle_interrupt_window(&vmx->vcpu);
6456
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006457 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006458 return 1;
6459
Gleb Natapov991eebf2013-04-11 12:10:51 +03006460 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006461
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006462 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006463 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006464 ret = 0;
6465 goto out;
6466 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006467
Avi Kivityde5f70e2012-06-12 20:22:28 +03006468 if (err != EMULATE_DONE) {
6469 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6470 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6471 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006472 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006473 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006474
Gleb Natapov8d76c492013-05-08 18:38:44 +03006475 if (vcpu->arch.halt_request) {
6476 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006477 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006478 goto out;
6479 }
6480
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006481 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006482 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006483 if (need_resched())
6484 schedule();
6485 }
6486
Mohammed Gamal80ced182009-09-01 12:48:18 +02006487out:
6488 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006489}
6490
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006491static int __grow_ple_window(int val)
6492{
6493 if (ple_window_grow < 1)
6494 return ple_window;
6495
6496 val = min(val, ple_window_actual_max);
6497
6498 if (ple_window_grow < ple_window)
6499 val *= ple_window_grow;
6500 else
6501 val += ple_window_grow;
6502
6503 return val;
6504}
6505
6506static int __shrink_ple_window(int val, int modifier, int minimum)
6507{
6508 if (modifier < 1)
6509 return ple_window;
6510
6511 if (modifier < ple_window)
6512 val /= modifier;
6513 else
6514 val -= modifier;
6515
6516 return max(val, minimum);
6517}
6518
6519static void grow_ple_window(struct kvm_vcpu *vcpu)
6520{
6521 struct vcpu_vmx *vmx = to_vmx(vcpu);
6522 int old = vmx->ple_window;
6523
6524 vmx->ple_window = __grow_ple_window(old);
6525
6526 if (vmx->ple_window != old)
6527 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006528
6529 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006530}
6531
6532static void shrink_ple_window(struct kvm_vcpu *vcpu)
6533{
6534 struct vcpu_vmx *vmx = to_vmx(vcpu);
6535 int old = vmx->ple_window;
6536
6537 vmx->ple_window = __shrink_ple_window(old,
6538 ple_window_shrink, ple_window);
6539
6540 if (vmx->ple_window != old)
6541 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006542
6543 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006544}
6545
6546/*
6547 * ple_window_actual_max is computed to be one grow_ple_window() below
6548 * ple_window_max. (See __grow_ple_window for the reason.)
6549 * This prevents overflows, because ple_window_max is int.
6550 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6551 * this process.
6552 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6553 */
6554static void update_ple_window_actual_max(void)
6555{
6556 ple_window_actual_max =
6557 __shrink_ple_window(max(ple_window_max, ple_window),
6558 ple_window_grow, INT_MIN);
6559}
6560
Feng Wubf9f6ac2015-09-18 22:29:55 +08006561/*
6562 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6563 */
6564static void wakeup_handler(void)
6565{
6566 struct kvm_vcpu *vcpu;
6567 int cpu = smp_processor_id();
6568
6569 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6570 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6571 blocked_vcpu_list) {
6572 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6573
6574 if (pi_test_on(pi_desc) == 1)
6575 kvm_vcpu_kick(vcpu);
6576 }
6577 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6578}
6579
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006580void vmx_enable_tdp(void)
6581{
6582 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6583 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6584 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6585 0ull, VMX_EPT_EXECUTABLE_MASK,
6586 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Peter Feiner995f00a2017-06-30 17:26:32 -07006587 VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006588
6589 ept_set_mmio_spte_mask();
6590 kvm_enable_tdp();
6591}
6592
Tiejun Chenf2c76482014-10-28 10:14:47 +08006593static __init int hardware_setup(void)
6594{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006595 int r = -ENOMEM, i, msr;
6596
6597 rdmsrl_safe(MSR_EFER, &host_efer);
6598
6599 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6600 kvm_define_shared_msr(i, vmx_msr_index[i]);
6601
Radim Krčmář23611332016-09-29 22:41:33 +02006602 for (i = 0; i < VMX_BITMAP_NR; i++) {
6603 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6604 if (!vmx_bitmap[i])
6605 goto out;
6606 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006607
6608 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006609 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6610 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6611
6612 /*
6613 * Allow direct access to the PC debug port (it is often used for I/O
6614 * delays, but the vmexits simply slow things down).
6615 */
6616 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6617 clear_bit(0x80, vmx_io_bitmap_a);
6618
6619 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6620
6621 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6622 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6623
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006624 if (setup_vmcs_config(&vmcs_config) < 0) {
6625 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006626 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006627 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006628
6629 if (boot_cpu_has(X86_FEATURE_NX))
6630 kvm_enable_efer_bits(EFER_NX);
6631
Wanpeng Li08d839c2017-03-23 05:30:08 -07006632 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6633 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006634 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006635
Tiejun Chenf2c76482014-10-28 10:14:47 +08006636 if (!cpu_has_vmx_shadow_vmcs())
6637 enable_shadow_vmcs = 0;
6638 if (enable_shadow_vmcs)
6639 init_vmcs_shadow_fields();
6640
6641 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006642 !cpu_has_vmx_ept_4levels() ||
6643 !cpu_has_vmx_ept_mt_wb()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006644 enable_ept = 0;
6645 enable_unrestricted_guest = 0;
6646 enable_ept_ad_bits = 0;
6647 }
6648
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006649 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006650 enable_ept_ad_bits = 0;
6651
6652 if (!cpu_has_vmx_unrestricted_guest())
6653 enable_unrestricted_guest = 0;
6654
Paolo Bonziniad15a292015-01-30 16:18:49 +01006655 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006656 flexpriority_enabled = 0;
6657
Paolo Bonziniad15a292015-01-30 16:18:49 +01006658 /*
6659 * set_apic_access_page_addr() is used to reload apic access
6660 * page upon invalidation. No need to do anything if not
6661 * using the APIC_ACCESS_ADDR VMCS field.
6662 */
6663 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006664 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006665
6666 if (!cpu_has_vmx_tpr_shadow())
6667 kvm_x86_ops->update_cr8_intercept = NULL;
6668
6669 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6670 kvm_disable_largepages();
6671
6672 if (!cpu_has_vmx_ple())
6673 ple_gap = 0;
6674
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006675 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006676 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006677 kvm_x86_ops->sync_pir_to_irr = NULL;
6678 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006679
Haozhong Zhang64903d62015-10-20 15:39:09 +08006680 if (cpu_has_vmx_tsc_scaling()) {
6681 kvm_has_tsc_control = true;
6682 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6683 kvm_tsc_scaling_ratio_frac_bits = 48;
6684 }
6685
Tiejun Chenbaa03522014-12-23 16:21:11 +08006686 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6687 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6688 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6689 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6690 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6691 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006692
Wanpeng Lic63e4562016-09-23 19:17:16 +08006693 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6694 vmx_msr_bitmap_legacy, PAGE_SIZE);
6695 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6696 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006697 memcpy(vmx_msr_bitmap_legacy_x2apic,
6698 vmx_msr_bitmap_legacy, PAGE_SIZE);
6699 memcpy(vmx_msr_bitmap_longmode_x2apic,
6700 vmx_msr_bitmap_longmode, PAGE_SIZE);
6701
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006702 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6703
Radim Krčmář40d83382016-09-29 22:41:31 +02006704 for (msr = 0x800; msr <= 0x8ff; msr++) {
6705 if (msr == 0x839 /* TMCCT */)
6706 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006707 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006708 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006709
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006710 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006711 * TPR reads and writes can be virtualized even if virtual interrupt
6712 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006713 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006714 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6715 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6716
Roman Kagan3ce424e2016-05-18 17:48:20 +03006717 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006718 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006719 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006720 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006721
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006722 if (enable_ept)
6723 vmx_enable_tdp();
6724 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006725 kvm_disable_tdp();
6726
6727 update_ple_window_actual_max();
6728
Kai Huang843e4332015-01-28 10:54:28 +08006729 /*
6730 * Only enable PML when hardware supports PML feature, and both EPT
6731 * and EPT A/D bit features are enabled -- PML depends on them to work.
6732 */
6733 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6734 enable_pml = 0;
6735
6736 if (!enable_pml) {
6737 kvm_x86_ops->slot_enable_log_dirty = NULL;
6738 kvm_x86_ops->slot_disable_log_dirty = NULL;
6739 kvm_x86_ops->flush_log_dirty = NULL;
6740 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6741 }
6742
Yunhong Jiang64672c92016-06-13 14:19:59 -07006743 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6744 u64 vmx_msr;
6745
6746 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6747 cpu_preemption_timer_multi =
6748 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6749 } else {
6750 kvm_x86_ops->set_hv_timer = NULL;
6751 kvm_x86_ops->cancel_hv_timer = NULL;
6752 }
6753
Feng Wubf9f6ac2015-09-18 22:29:55 +08006754 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6755
Ashok Rajc45dcc72016-06-22 14:59:56 +08006756 kvm_mce_cap_supported |= MCG_LMCE_P;
6757
Tiejun Chenf2c76482014-10-28 10:14:47 +08006758 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006759
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006760out:
Radim Krčmář23611332016-09-29 22:41:33 +02006761 for (i = 0; i < VMX_BITMAP_NR; i++)
6762 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006763
6764 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006765}
6766
6767static __exit void hardware_unsetup(void)
6768{
Radim Krčmář23611332016-09-29 22:41:33 +02006769 int i;
6770
6771 for (i = 0; i < VMX_BITMAP_NR; i++)
6772 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006773
Tiejun Chenf2c76482014-10-28 10:14:47 +08006774 free_kvm_area();
6775}
6776
Avi Kivity6aa8b732006-12-10 02:21:36 -08006777/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006778 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6779 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6780 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006781static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006782{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006783 if (ple_gap)
6784 grow_ple_window(vcpu);
6785
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006786 /*
6787 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6788 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6789 * never set PAUSE_EXITING and just set PLE if supported,
6790 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6791 */
6792 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006793 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006794}
6795
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006796static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006797{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006798 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006799}
6800
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006801static int handle_mwait(struct kvm_vcpu *vcpu)
6802{
6803 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6804 return handle_nop(vcpu);
6805}
6806
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006807static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6808{
6809 return 1;
6810}
6811
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006812static int handle_monitor(struct kvm_vcpu *vcpu)
6813{
6814 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6815 return handle_nop(vcpu);
6816}
6817
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006818/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006819 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6820 * We could reuse a single VMCS for all the L2 guests, but we also want the
6821 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6822 * allows keeping them loaded on the processor, and in the future will allow
6823 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6824 * every entry if they never change.
6825 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6826 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6827 *
6828 * The following functions allocate and free a vmcs02 in this pool.
6829 */
6830
6831/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6832static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6833{
6834 struct vmcs02_list *item;
6835 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6836 if (item->vmptr == vmx->nested.current_vmptr) {
6837 list_move(&item->list, &vmx->nested.vmcs02_pool);
6838 return &item->vmcs02;
6839 }
6840
6841 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6842 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006843 item = list_last_entry(&vmx->nested.vmcs02_pool,
6844 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006845 item->vmptr = vmx->nested.current_vmptr;
6846 list_move(&item->list, &vmx->nested.vmcs02_pool);
6847 return &item->vmcs02;
6848 }
6849
6850 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006851 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006852 if (!item)
6853 return NULL;
6854 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006855 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006856 if (!item->vmcs02.vmcs) {
6857 kfree(item);
6858 return NULL;
6859 }
6860 loaded_vmcs_init(&item->vmcs02);
6861 item->vmptr = vmx->nested.current_vmptr;
6862 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6863 vmx->nested.vmcs02_num++;
6864 return &item->vmcs02;
6865}
6866
6867/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6868static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6869{
6870 struct vmcs02_list *item;
6871 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6872 if (item->vmptr == vmptr) {
6873 free_loaded_vmcs(&item->vmcs02);
6874 list_del(&item->list);
6875 kfree(item);
6876 vmx->nested.vmcs02_num--;
6877 return;
6878 }
6879}
6880
6881/*
6882 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006883 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6884 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006885 */
6886static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6887{
6888 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006889
6890 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006891 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006892 /*
6893 * Something will leak if the above WARN triggers. Better than
6894 * a use-after-free.
6895 */
6896 if (vmx->loaded_vmcs == &item->vmcs02)
6897 continue;
6898
6899 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006900 list_del(&item->list);
6901 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006902 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006903 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006904}
6905
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006906/*
6907 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6908 * set the success or error code of an emulated VMX instruction, as specified
6909 * by Vol 2B, VMX Instruction Reference, "Conventions".
6910 */
6911static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6912{
6913 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6914 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6915 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6916}
6917
6918static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6919{
6920 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6921 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6922 X86_EFLAGS_SF | X86_EFLAGS_OF))
6923 | X86_EFLAGS_CF);
6924}
6925
Abel Gordon145c28d2013-04-18 14:36:55 +03006926static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006927 u32 vm_instruction_error)
6928{
6929 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6930 /*
6931 * failValid writes the error number to the current VMCS, which
6932 * can't be done there isn't a current VMCS.
6933 */
6934 nested_vmx_failInvalid(vcpu);
6935 return;
6936 }
6937 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6938 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6939 X86_EFLAGS_SF | X86_EFLAGS_OF))
6940 | X86_EFLAGS_ZF);
6941 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6942 /*
6943 * We don't need to force a shadow sync because
6944 * VM_INSTRUCTION_ERROR is not shadowed
6945 */
6946}
Abel Gordon145c28d2013-04-18 14:36:55 +03006947
Wincy Vanff651cb2014-12-11 08:52:58 +03006948static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6949{
6950 /* TODO: not to reset guest simply here. */
6951 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02006952 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03006953}
6954
Jan Kiszkaf4124502014-03-07 20:03:13 +01006955static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6956{
6957 struct vcpu_vmx *vmx =
6958 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6959
6960 vmx->nested.preemption_timer_expired = true;
6961 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6962 kvm_vcpu_kick(&vmx->vcpu);
6963
6964 return HRTIMER_NORESTART;
6965}
6966
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006967/*
Bandan Das19677e32014-05-06 02:19:15 -04006968 * Decode the memory-address operand of a vmx instruction, as recorded on an
6969 * exit caused by such an instruction (run by a guest hypervisor).
6970 * On success, returns 0. When the operand is invalid, returns 1 and throws
6971 * #UD or #GP.
6972 */
6973static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6974 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006975 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006976{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006977 gva_t off;
6978 bool exn;
6979 struct kvm_segment s;
6980
Bandan Das19677e32014-05-06 02:19:15 -04006981 /*
6982 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6983 * Execution", on an exit, vmx_instruction_info holds most of the
6984 * addressing components of the operand. Only the displacement part
6985 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6986 * For how an actual address is calculated from all these components,
6987 * refer to Vol. 1, "Operand Addressing".
6988 */
6989 int scaling = vmx_instruction_info & 3;
6990 int addr_size = (vmx_instruction_info >> 7) & 7;
6991 bool is_reg = vmx_instruction_info & (1u << 10);
6992 int seg_reg = (vmx_instruction_info >> 15) & 7;
6993 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6994 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6995 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6996 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6997
6998 if (is_reg) {
6999 kvm_queue_exception(vcpu, UD_VECTOR);
7000 return 1;
7001 }
7002
7003 /* Addr = segment_base + offset */
7004 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007005 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007006 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007007 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007008 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007009 off += kvm_register_read(vcpu, index_reg)<<scaling;
7010 vmx_get_segment(vcpu, &s, seg_reg);
7011 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007012
7013 if (addr_size == 1) /* 32 bit */
7014 *ret &= 0xffffffff;
7015
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007016 /* Checks for #GP/#SS exceptions. */
7017 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007018 if (is_long_mode(vcpu)) {
7019 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7020 * non-canonical form. This is the only check on the memory
7021 * destination for long mode!
7022 */
7023 exn = is_noncanonical_address(*ret);
7024 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007025 /* Protected mode: apply checks for segment validity in the
7026 * following order:
7027 * - segment type check (#GP(0) may be thrown)
7028 * - usability check (#GP(0)/#SS(0))
7029 * - limit check (#GP(0)/#SS(0))
7030 */
7031 if (wr)
7032 /* #GP(0) if the destination operand is located in a
7033 * read-only data segment or any code segment.
7034 */
7035 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7036 else
7037 /* #GP(0) if the source operand is located in an
7038 * execute-only code segment
7039 */
7040 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007041 if (exn) {
7042 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7043 return 1;
7044 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007045 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7046 */
7047 exn = (s.unusable != 0);
7048 /* Protected mode: #GP(0)/#SS(0) if the memory
7049 * operand is outside the segment limit.
7050 */
7051 exn = exn || (off + sizeof(u64) > s.limit);
7052 }
7053 if (exn) {
7054 kvm_queue_exception_e(vcpu,
7055 seg_reg == VCPU_SREG_SS ?
7056 SS_VECTOR : GP_VECTOR,
7057 0);
7058 return 1;
7059 }
7060
Bandan Das19677e32014-05-06 02:19:15 -04007061 return 0;
7062}
7063
Radim Krčmářcbf71272017-05-19 15:48:51 +02007064static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007065{
7066 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007067 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007068
7069 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007070 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007071 return 1;
7072
Radim Krčmářcbf71272017-05-19 15:48:51 +02007073 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7074 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007075 kvm_inject_page_fault(vcpu, &e);
7076 return 1;
7077 }
7078
Bandan Das3573e222014-05-06 02:19:16 -04007079 return 0;
7080}
7081
Jim Mattsone29acc52016-11-30 12:03:43 -08007082static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7083{
7084 struct vcpu_vmx *vmx = to_vmx(vcpu);
7085 struct vmcs *shadow_vmcs;
7086
7087 if (cpu_has_vmx_msr_bitmap()) {
7088 vmx->nested.msr_bitmap =
7089 (unsigned long *)__get_free_page(GFP_KERNEL);
7090 if (!vmx->nested.msr_bitmap)
7091 goto out_msr_bitmap;
7092 }
7093
7094 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7095 if (!vmx->nested.cached_vmcs12)
7096 goto out_cached_vmcs12;
7097
7098 if (enable_shadow_vmcs) {
7099 shadow_vmcs = alloc_vmcs();
7100 if (!shadow_vmcs)
7101 goto out_shadow_vmcs;
7102 /* mark vmcs as shadow */
7103 shadow_vmcs->revision_id |= (1u << 31);
7104 /* init shadow vmcs */
7105 vmcs_clear(shadow_vmcs);
7106 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7107 }
7108
7109 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7110 vmx->nested.vmcs02_num = 0;
7111
7112 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7113 HRTIMER_MODE_REL_PINNED);
7114 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7115
7116 vmx->nested.vmxon = true;
7117 return 0;
7118
7119out_shadow_vmcs:
7120 kfree(vmx->nested.cached_vmcs12);
7121
7122out_cached_vmcs12:
7123 free_page((unsigned long)vmx->nested.msr_bitmap);
7124
7125out_msr_bitmap:
7126 return -ENOMEM;
7127}
7128
Bandan Das3573e222014-05-06 02:19:16 -04007129/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007130 * Emulate the VMXON instruction.
7131 * Currently, we just remember that VMX is active, and do not save or even
7132 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7133 * do not currently need to store anything in that guest-allocated memory
7134 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7135 * argument is different from the VMXON pointer (which the spec says they do).
7136 */
7137static int handle_vmon(struct kvm_vcpu *vcpu)
7138{
Jim Mattsone29acc52016-11-30 12:03:43 -08007139 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007140 gpa_t vmptr;
7141 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007142 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007143 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7144 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007145
Jim Mattson70f3aac2017-04-26 08:53:46 -07007146 /*
7147 * The Intel VMX Instruction Reference lists a bunch of bits that are
7148 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7149 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7150 * Otherwise, we should fail with #UD. But most faulting conditions
7151 * have already been checked by hardware, prior to the VM-exit for
7152 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7153 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007154 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007155 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007156 kvm_queue_exception(vcpu, UD_VECTOR);
7157 return 1;
7158 }
7159
Abel Gordon145c28d2013-04-18 14:36:55 +03007160 if (vmx->nested.vmxon) {
7161 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007162 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007163 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007164
Haozhong Zhang3b840802016-06-22 14:59:54 +08007165 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007166 != VMXON_NEEDED_FEATURES) {
7167 kvm_inject_gp(vcpu, 0);
7168 return 1;
7169 }
7170
Radim Krčmářcbf71272017-05-19 15:48:51 +02007171 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007172 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007173
7174 /*
7175 * SDM 3: 24.11.5
7176 * The first 4 bytes of VMXON region contain the supported
7177 * VMCS revision identifier
7178 *
7179 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7180 * which replaces physical address width with 32
7181 */
7182 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7183 nested_vmx_failInvalid(vcpu);
7184 return kvm_skip_emulated_instruction(vcpu);
7185 }
7186
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007187 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7188 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007189 nested_vmx_failInvalid(vcpu);
7190 return kvm_skip_emulated_instruction(vcpu);
7191 }
7192 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7193 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007194 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007195 nested_vmx_failInvalid(vcpu);
7196 return kvm_skip_emulated_instruction(vcpu);
7197 }
7198 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007199 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007200
7201 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007202 ret = enter_vmx_operation(vcpu);
7203 if (ret)
7204 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007205
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007206 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007207 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007208}
7209
7210/*
7211 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7212 * for running VMX instructions (except VMXON, whose prerequisites are
7213 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007214 * Note that many of these exceptions have priority over VM exits, so they
7215 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007216 */
7217static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7218{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007219 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007220 kvm_queue_exception(vcpu, UD_VECTOR);
7221 return 0;
7222 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007223 return 1;
7224}
7225
David Matlack8ca44e82017-08-01 14:00:39 -07007226static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7227{
7228 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7229 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7230}
7231
Abel Gordone7953d72013-04-18 14:37:55 +03007232static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7233{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007234 if (vmx->nested.current_vmptr == -1ull)
7235 return;
7236
Abel Gordon012f83c2013-04-18 14:39:25 +03007237 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007238 /* copy to memory all shadowed fields in case
7239 they were modified */
7240 copy_shadow_to_vmcs12(vmx);
7241 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007242 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007243 }
Wincy Van705699a2015-02-03 23:58:17 +08007244 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007245
7246 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007247 kvm_vcpu_write_guest_page(&vmx->vcpu,
7248 vmx->nested.current_vmptr >> PAGE_SHIFT,
7249 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007250
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007251 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007252}
7253
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007254/*
7255 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7256 * just stops using VMX.
7257 */
7258static void free_nested(struct vcpu_vmx *vmx)
7259{
7260 if (!vmx->nested.vmxon)
7261 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007262
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007263 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007264 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007265 vmx->nested.posted_intr_nv = -1;
7266 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007267 if (vmx->nested.msr_bitmap) {
7268 free_page((unsigned long)vmx->nested.msr_bitmap);
7269 vmx->nested.msr_bitmap = NULL;
7270 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007271 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007272 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007273 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7274 free_vmcs(vmx->vmcs01.shadow_vmcs);
7275 vmx->vmcs01.shadow_vmcs = NULL;
7276 }
David Matlack4f2777b2016-07-13 17:16:37 -07007277 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007278 /* Unpin physical memory we referred to in current vmcs02 */
7279 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007280 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007281 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007282 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007283 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007284 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007285 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007286 }
Wincy Van705699a2015-02-03 23:58:17 +08007287 if (vmx->nested.pi_desc_page) {
7288 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007289 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007290 vmx->nested.pi_desc_page = NULL;
7291 vmx->nested.pi_desc = NULL;
7292 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007293
7294 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007295}
7296
7297/* Emulate the VMXOFF instruction */
7298static int handle_vmoff(struct kvm_vcpu *vcpu)
7299{
7300 if (!nested_vmx_check_permission(vcpu))
7301 return 1;
7302 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007303 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007304 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007305}
7306
Nadav Har'El27d6c862011-05-25 23:06:59 +03007307/* Emulate the VMCLEAR instruction */
7308static int handle_vmclear(struct kvm_vcpu *vcpu)
7309{
7310 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007311 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007312 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007313
7314 if (!nested_vmx_check_permission(vcpu))
7315 return 1;
7316
Radim Krčmářcbf71272017-05-19 15:48:51 +02007317 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007318 return 1;
7319
Radim Krčmářcbf71272017-05-19 15:48:51 +02007320 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7321 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7322 return kvm_skip_emulated_instruction(vcpu);
7323 }
7324
7325 if (vmptr == vmx->nested.vmxon_ptr) {
7326 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7327 return kvm_skip_emulated_instruction(vcpu);
7328 }
7329
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007330 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007331 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007332
Jim Mattson587d7e722017-03-02 12:41:48 -08007333 kvm_vcpu_write_guest(vcpu,
7334 vmptr + offsetof(struct vmcs12, launch_state),
7335 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007336
7337 nested_free_vmcs02(vmx, vmptr);
7338
Nadav Har'El27d6c862011-05-25 23:06:59 +03007339 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007340 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007341}
7342
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007343static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7344
7345/* Emulate the VMLAUNCH instruction */
7346static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7347{
7348 return nested_vmx_run(vcpu, true);
7349}
7350
7351/* Emulate the VMRESUME instruction */
7352static int handle_vmresume(struct kvm_vcpu *vcpu)
7353{
7354
7355 return nested_vmx_run(vcpu, false);
7356}
7357
Nadav Har'El49f705c2011-05-25 23:08:30 +03007358/*
7359 * Read a vmcs12 field. Since these can have varying lengths and we return
7360 * one type, we chose the biggest type (u64) and zero-extend the return value
7361 * to that size. Note that the caller, handle_vmread, might need to use only
7362 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7363 * 64-bit fields are to be returned).
7364 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007365static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7366 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007367{
7368 short offset = vmcs_field_to_offset(field);
7369 char *p;
7370
7371 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007372 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007373
7374 p = ((char *)(get_vmcs12(vcpu))) + offset;
7375
7376 switch (vmcs_field_type(field)) {
7377 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7378 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007379 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007380 case VMCS_FIELD_TYPE_U16:
7381 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007382 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007383 case VMCS_FIELD_TYPE_U32:
7384 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007385 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007386 case VMCS_FIELD_TYPE_U64:
7387 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007388 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007389 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007390 WARN_ON(1);
7391 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007392 }
7393}
7394
Abel Gordon20b97fe2013-04-18 14:36:25 +03007395
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007396static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7397 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007398 short offset = vmcs_field_to_offset(field);
7399 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7400 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007401 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007402
7403 switch (vmcs_field_type(field)) {
7404 case VMCS_FIELD_TYPE_U16:
7405 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007406 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007407 case VMCS_FIELD_TYPE_U32:
7408 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007409 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007410 case VMCS_FIELD_TYPE_U64:
7411 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007412 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007413 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7414 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007415 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007416 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007417 WARN_ON(1);
7418 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007419 }
7420
7421}
7422
Abel Gordon16f5b902013-04-18 14:38:25 +03007423static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7424{
7425 int i;
7426 unsigned long field;
7427 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007428 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007429 const unsigned long *fields = shadow_read_write_fields;
7430 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007431
Jan Kiszka282da872014-10-08 18:05:39 +02007432 preempt_disable();
7433
Abel Gordon16f5b902013-04-18 14:38:25 +03007434 vmcs_load(shadow_vmcs);
7435
7436 for (i = 0; i < num_fields; i++) {
7437 field = fields[i];
7438 switch (vmcs_field_type(field)) {
7439 case VMCS_FIELD_TYPE_U16:
7440 field_value = vmcs_read16(field);
7441 break;
7442 case VMCS_FIELD_TYPE_U32:
7443 field_value = vmcs_read32(field);
7444 break;
7445 case VMCS_FIELD_TYPE_U64:
7446 field_value = vmcs_read64(field);
7447 break;
7448 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7449 field_value = vmcs_readl(field);
7450 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007451 default:
7452 WARN_ON(1);
7453 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007454 }
7455 vmcs12_write_any(&vmx->vcpu, field, field_value);
7456 }
7457
7458 vmcs_clear(shadow_vmcs);
7459 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007460
7461 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007462}
7463
Abel Gordonc3114422013-04-18 14:38:55 +03007464static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7465{
Mathias Krausec2bae892013-06-26 20:36:21 +02007466 const unsigned long *fields[] = {
7467 shadow_read_write_fields,
7468 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007469 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007470 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007471 max_shadow_read_write_fields,
7472 max_shadow_read_only_fields
7473 };
7474 int i, q;
7475 unsigned long field;
7476 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007477 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007478
7479 vmcs_load(shadow_vmcs);
7480
Mathias Krausec2bae892013-06-26 20:36:21 +02007481 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007482 for (i = 0; i < max_fields[q]; i++) {
7483 field = fields[q][i];
7484 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7485
7486 switch (vmcs_field_type(field)) {
7487 case VMCS_FIELD_TYPE_U16:
7488 vmcs_write16(field, (u16)field_value);
7489 break;
7490 case VMCS_FIELD_TYPE_U32:
7491 vmcs_write32(field, (u32)field_value);
7492 break;
7493 case VMCS_FIELD_TYPE_U64:
7494 vmcs_write64(field, (u64)field_value);
7495 break;
7496 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7497 vmcs_writel(field, (long)field_value);
7498 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007499 default:
7500 WARN_ON(1);
7501 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007502 }
7503 }
7504 }
7505
7506 vmcs_clear(shadow_vmcs);
7507 vmcs_load(vmx->loaded_vmcs->vmcs);
7508}
7509
Nadav Har'El49f705c2011-05-25 23:08:30 +03007510/*
7511 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7512 * used before) all generate the same failure when it is missing.
7513 */
7514static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7515{
7516 struct vcpu_vmx *vmx = to_vmx(vcpu);
7517 if (vmx->nested.current_vmptr == -1ull) {
7518 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007519 return 0;
7520 }
7521 return 1;
7522}
7523
7524static int handle_vmread(struct kvm_vcpu *vcpu)
7525{
7526 unsigned long field;
7527 u64 field_value;
7528 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7529 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7530 gva_t gva = 0;
7531
Kyle Hueyeb277562016-11-29 12:40:39 -08007532 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007533 return 1;
7534
Kyle Huey6affcbe2016-11-29 12:40:40 -08007535 if (!nested_vmx_check_vmcs12(vcpu))
7536 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007537
Nadav Har'El49f705c2011-05-25 23:08:30 +03007538 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007539 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007540 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007541 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007542 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007543 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007544 }
7545 /*
7546 * Now copy part of this value to register or memory, as requested.
7547 * Note that the number of bits actually copied is 32 or 64 depending
7548 * on the guest's mode (32 or 64 bit), not on the given field's length.
7549 */
7550 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007551 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007552 field_value);
7553 } else {
7554 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007555 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007556 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007557 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007558 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7559 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7560 }
7561
7562 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007563 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007564}
7565
7566
7567static int handle_vmwrite(struct kvm_vcpu *vcpu)
7568{
7569 unsigned long field;
7570 gva_t gva;
7571 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7572 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007573 /* The value to write might be 32 or 64 bits, depending on L1's long
7574 * mode, and eventually we need to write that into a field of several
7575 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007576 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007577 * bits into the vmcs12 field.
7578 */
7579 u64 field_value = 0;
7580 struct x86_exception e;
7581
Kyle Hueyeb277562016-11-29 12:40:39 -08007582 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007583 return 1;
7584
Kyle Huey6affcbe2016-11-29 12:40:40 -08007585 if (!nested_vmx_check_vmcs12(vcpu))
7586 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007587
Nadav Har'El49f705c2011-05-25 23:08:30 +03007588 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007589 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007590 (((vmx_instruction_info) >> 3) & 0xf));
7591 else {
7592 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007593 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007594 return 1;
7595 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007596 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007597 kvm_inject_page_fault(vcpu, &e);
7598 return 1;
7599 }
7600 }
7601
7602
Nadav Amit27e6fb52014-06-18 17:19:26 +03007603 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007604 if (vmcs_field_readonly(field)) {
7605 nested_vmx_failValid(vcpu,
7606 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007607 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007608 }
7609
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007610 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007611 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007612 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007613 }
7614
7615 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007616 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007617}
7618
Jim Mattsona8bc2842016-11-30 12:03:44 -08007619static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7620{
7621 vmx->nested.current_vmptr = vmptr;
7622 if (enable_shadow_vmcs) {
7623 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7624 SECONDARY_EXEC_SHADOW_VMCS);
7625 vmcs_write64(VMCS_LINK_POINTER,
7626 __pa(vmx->vmcs01.shadow_vmcs));
7627 vmx->nested.sync_shadow_vmcs = true;
7628 }
7629}
7630
Nadav Har'El63846662011-05-25 23:07:29 +03007631/* Emulate the VMPTRLD instruction */
7632static int handle_vmptrld(struct kvm_vcpu *vcpu)
7633{
7634 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007635 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007636
7637 if (!nested_vmx_check_permission(vcpu))
7638 return 1;
7639
Radim Krčmářcbf71272017-05-19 15:48:51 +02007640 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007641 return 1;
7642
Radim Krčmářcbf71272017-05-19 15:48:51 +02007643 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7644 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7645 return kvm_skip_emulated_instruction(vcpu);
7646 }
7647
7648 if (vmptr == vmx->nested.vmxon_ptr) {
7649 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7650 return kvm_skip_emulated_instruction(vcpu);
7651 }
7652
Nadav Har'El63846662011-05-25 23:07:29 +03007653 if (vmx->nested.current_vmptr != vmptr) {
7654 struct vmcs12 *new_vmcs12;
7655 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007656 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7657 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007658 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007659 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007660 }
7661 new_vmcs12 = kmap(page);
7662 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7663 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007664 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007665 nested_vmx_failValid(vcpu,
7666 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007667 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007668 }
Nadav Har'El63846662011-05-25 23:07:29 +03007669
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007670 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007671 /*
7672 * Load VMCS12 from guest memory since it is not already
7673 * cached.
7674 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007675 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7676 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007677 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007678
Jim Mattsona8bc2842016-11-30 12:03:44 -08007679 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007680 }
7681
7682 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007683 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007684}
7685
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007686/* Emulate the VMPTRST instruction */
7687static int handle_vmptrst(struct kvm_vcpu *vcpu)
7688{
7689 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7690 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7691 gva_t vmcs_gva;
7692 struct x86_exception e;
7693
7694 if (!nested_vmx_check_permission(vcpu))
7695 return 1;
7696
7697 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007698 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007699 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007700 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007701 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7702 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7703 sizeof(u64), &e)) {
7704 kvm_inject_page_fault(vcpu, &e);
7705 return 1;
7706 }
7707 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007708 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007709}
7710
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007711/* Emulate the INVEPT instruction */
7712static int handle_invept(struct kvm_vcpu *vcpu)
7713{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007714 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007715 u32 vmx_instruction_info, types;
7716 unsigned long type;
7717 gva_t gva;
7718 struct x86_exception e;
7719 struct {
7720 u64 eptp, gpa;
7721 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007722
Wincy Vanb9c237b2015-02-03 23:56:30 +08007723 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7724 SECONDARY_EXEC_ENABLE_EPT) ||
7725 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007726 kvm_queue_exception(vcpu, UD_VECTOR);
7727 return 1;
7728 }
7729
7730 if (!nested_vmx_check_permission(vcpu))
7731 return 1;
7732
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007733 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007734 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007735
Wincy Vanb9c237b2015-02-03 23:56:30 +08007736 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007737
Jim Mattson85c856b2016-10-26 08:38:38 -07007738 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007739 nested_vmx_failValid(vcpu,
7740 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007741 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007742 }
7743
7744 /* According to the Intel VMX instruction reference, the memory
7745 * operand is read even if it isn't needed (e.g., for type==global)
7746 */
7747 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007748 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007749 return 1;
7750 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7751 sizeof(operand), &e)) {
7752 kvm_inject_page_fault(vcpu, &e);
7753 return 1;
7754 }
7755
7756 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007757 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007758 /*
7759 * TODO: track mappings and invalidate
7760 * single context requests appropriately
7761 */
7762 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007763 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007764 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007765 nested_vmx_succeed(vcpu);
7766 break;
7767 default:
7768 BUG_ON(1);
7769 break;
7770 }
7771
Kyle Huey6affcbe2016-11-29 12:40:40 -08007772 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007773}
7774
Petr Matouseka642fc32014-09-23 20:22:30 +02007775static int handle_invvpid(struct kvm_vcpu *vcpu)
7776{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007777 struct vcpu_vmx *vmx = to_vmx(vcpu);
7778 u32 vmx_instruction_info;
7779 unsigned long type, types;
7780 gva_t gva;
7781 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007782 struct {
7783 u64 vpid;
7784 u64 gla;
7785 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007786
7787 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7788 SECONDARY_EXEC_ENABLE_VPID) ||
7789 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7790 kvm_queue_exception(vcpu, UD_VECTOR);
7791 return 1;
7792 }
7793
7794 if (!nested_vmx_check_permission(vcpu))
7795 return 1;
7796
7797 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7798 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7799
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007800 types = (vmx->nested.nested_vmx_vpid_caps &
7801 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007802
Jim Mattson85c856b2016-10-26 08:38:38 -07007803 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007804 nested_vmx_failValid(vcpu,
7805 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007806 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007807 }
7808
7809 /* according to the intel vmx instruction reference, the memory
7810 * operand is read even if it isn't needed (e.g., for type==global)
7811 */
7812 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7813 vmx_instruction_info, false, &gva))
7814 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007815 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7816 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007817 kvm_inject_page_fault(vcpu, &e);
7818 return 1;
7819 }
Jim Mattson40352602017-06-28 09:37:37 -07007820 if (operand.vpid >> 16) {
7821 nested_vmx_failValid(vcpu,
7822 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7823 return kvm_skip_emulated_instruction(vcpu);
7824 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007825
7826 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007827 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Jim Mattson40352602017-06-28 09:37:37 -07007828 if (is_noncanonical_address(operand.gla)) {
7829 nested_vmx_failValid(vcpu,
7830 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7831 return kvm_skip_emulated_instruction(vcpu);
7832 }
7833 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007834 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007835 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007836 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007837 nested_vmx_failValid(vcpu,
7838 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007839 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007840 }
7841 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007842 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007843 break;
7844 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007845 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007846 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007847 }
7848
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007849 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7850 nested_vmx_succeed(vcpu);
7851
Kyle Huey6affcbe2016-11-29 12:40:40 -08007852 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007853}
7854
Kai Huang843e4332015-01-28 10:54:28 +08007855static int handle_pml_full(struct kvm_vcpu *vcpu)
7856{
7857 unsigned long exit_qualification;
7858
7859 trace_kvm_pml_full(vcpu->vcpu_id);
7860
7861 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7862
7863 /*
7864 * PML buffer FULL happened while executing iret from NMI,
7865 * "blocked by NMI" bit has to be set before next VM entry.
7866 */
7867 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007868 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7869 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7870 GUEST_INTR_STATE_NMI);
7871
7872 /*
7873 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7874 * here.., and there's no userspace involvement needed for PML.
7875 */
7876 return 1;
7877}
7878
Yunhong Jiang64672c92016-06-13 14:19:59 -07007879static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7880{
7881 kvm_lapic_expired_hv_timer(vcpu);
7882 return 1;
7883}
7884
Bandan Das41ab9372017-08-03 15:54:43 -04007885static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
7886{
7887 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04007888 int maxphyaddr = cpuid_maxphyaddr(vcpu);
7889
7890 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007891 switch (address & VMX_EPTP_MT_MASK) {
7892 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04007893 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
7894 return false;
7895 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02007896 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04007897 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
7898 return false;
7899 break;
7900 default:
7901 return false;
7902 }
7903
David Hildenbrandbb97a012017-08-10 23:15:28 +02007904 /* only 4 levels page-walk length are valid */
7905 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04007906 return false;
7907
7908 /* Reserved bits should not be set */
7909 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
7910 return false;
7911
7912 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007913 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04007914 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
7915 return false;
7916 }
7917
7918 return true;
7919}
7920
7921static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
7922 struct vmcs12 *vmcs12)
7923{
7924 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
7925 u64 address;
7926 bool accessed_dirty;
7927 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
7928
7929 if (!nested_cpu_has_eptp_switching(vmcs12) ||
7930 !nested_cpu_has_ept(vmcs12))
7931 return 1;
7932
7933 if (index >= VMFUNC_EPTP_ENTRIES)
7934 return 1;
7935
7936
7937 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
7938 &address, index * 8, 8))
7939 return 1;
7940
David Hildenbrandbb97a012017-08-10 23:15:28 +02007941 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04007942
7943 /*
7944 * If the (L2) guest does a vmfunc to the currently
7945 * active ept pointer, we don't have to do anything else
7946 */
7947 if (vmcs12->ept_pointer != address) {
7948 if (!valid_ept_address(vcpu, address))
7949 return 1;
7950
7951 kvm_mmu_unload(vcpu);
7952 mmu->ept_ad = accessed_dirty;
7953 mmu->base_role.ad_disabled = !accessed_dirty;
7954 vmcs12->ept_pointer = address;
7955 /*
7956 * TODO: Check what's the correct approach in case
7957 * mmu reload fails. Currently, we just let the next
7958 * reload potentially fail
7959 */
7960 kvm_mmu_reload(vcpu);
7961 }
7962
7963 return 0;
7964}
7965
Bandan Das2a499e42017-08-03 15:54:41 -04007966static int handle_vmfunc(struct kvm_vcpu *vcpu)
7967{
Bandan Das27c42a12017-08-03 15:54:42 -04007968 struct vcpu_vmx *vmx = to_vmx(vcpu);
7969 struct vmcs12 *vmcs12;
7970 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
7971
7972 /*
7973 * VMFUNC is only supported for nested guests, but we always enable the
7974 * secondary control for simplicity; for non-nested mode, fake that we
7975 * didn't by injecting #UD.
7976 */
7977 if (!is_guest_mode(vcpu)) {
7978 kvm_queue_exception(vcpu, UD_VECTOR);
7979 return 1;
7980 }
7981
7982 vmcs12 = get_vmcs12(vcpu);
7983 if ((vmcs12->vm_function_control & (1 << function)) == 0)
7984 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04007985
7986 switch (function) {
7987 case 0:
7988 if (nested_vmx_eptp_switching(vcpu, vmcs12))
7989 goto fail;
7990 break;
7991 default:
7992 goto fail;
7993 }
7994 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04007995
7996fail:
7997 nested_vmx_vmexit(vcpu, vmx->exit_reason,
7998 vmcs_read32(VM_EXIT_INTR_INFO),
7999 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008000 return 1;
8001}
8002
Nadav Har'El0140cae2011-05-25 23:06:28 +03008003/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008004 * The exit handlers return 1 if the exit was handled fully and guest execution
8005 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8006 * to be done to userspace and return 0.
8007 */
Mathias Krause772e0312012-08-30 01:30:19 +02008008static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008009 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8010 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008011 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008012 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008013 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008014 [EXIT_REASON_CR_ACCESS] = handle_cr,
8015 [EXIT_REASON_DR_ACCESS] = handle_dr,
8016 [EXIT_REASON_CPUID] = handle_cpuid,
8017 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8018 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8019 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8020 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008021 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008022 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008023 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008024 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008025 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008026 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008027 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008028 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008029 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008030 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008031 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008032 [EXIT_REASON_VMOFF] = handle_vmoff,
8033 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008034 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8035 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008036 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008037 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008038 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008039 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008040 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008041 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008042 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8043 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008044 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008045 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008046 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008047 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008048 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008049 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008050 [EXIT_REASON_XSAVES] = handle_xsaves,
8051 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008052 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008053 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008054 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008055};
8056
8057static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008058 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008059
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008060static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8061 struct vmcs12 *vmcs12)
8062{
8063 unsigned long exit_qualification;
8064 gpa_t bitmap, last_bitmap;
8065 unsigned int port;
8066 int size;
8067 u8 b;
8068
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008069 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008070 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008071
8072 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8073
8074 port = exit_qualification >> 16;
8075 size = (exit_qualification & 7) + 1;
8076
8077 last_bitmap = (gpa_t)-1;
8078 b = -1;
8079
8080 while (size > 0) {
8081 if (port < 0x8000)
8082 bitmap = vmcs12->io_bitmap_a;
8083 else if (port < 0x10000)
8084 bitmap = vmcs12->io_bitmap_b;
8085 else
Joe Perches1d804d02015-03-30 16:46:09 -07008086 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008087 bitmap += (port & 0x7fff) / 8;
8088
8089 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008090 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008091 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008092 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008093 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008094
8095 port++;
8096 size--;
8097 last_bitmap = bitmap;
8098 }
8099
Joe Perches1d804d02015-03-30 16:46:09 -07008100 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008101}
8102
Nadav Har'El644d7112011-05-25 23:12:35 +03008103/*
8104 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8105 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8106 * disinterest in the current event (read or write a specific MSR) by using an
8107 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8108 */
8109static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8110 struct vmcs12 *vmcs12, u32 exit_reason)
8111{
8112 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8113 gpa_t bitmap;
8114
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008115 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008116 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008117
8118 /*
8119 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8120 * for the four combinations of read/write and low/high MSR numbers.
8121 * First we need to figure out which of the four to use:
8122 */
8123 bitmap = vmcs12->msr_bitmap;
8124 if (exit_reason == EXIT_REASON_MSR_WRITE)
8125 bitmap += 2048;
8126 if (msr_index >= 0xc0000000) {
8127 msr_index -= 0xc0000000;
8128 bitmap += 1024;
8129 }
8130
8131 /* Then read the msr_index'th bit from this bitmap: */
8132 if (msr_index < 1024*8) {
8133 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008134 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008135 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008136 return 1 & (b >> (msr_index & 7));
8137 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008138 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008139}
8140
8141/*
8142 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8143 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8144 * intercept (via guest_host_mask etc.) the current event.
8145 */
8146static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8147 struct vmcs12 *vmcs12)
8148{
8149 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8150 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008151 int reg;
8152 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008153
8154 switch ((exit_qualification >> 4) & 3) {
8155 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008156 reg = (exit_qualification >> 8) & 15;
8157 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008158 switch (cr) {
8159 case 0:
8160 if (vmcs12->cr0_guest_host_mask &
8161 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008162 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008163 break;
8164 case 3:
8165 if ((vmcs12->cr3_target_count >= 1 &&
8166 vmcs12->cr3_target_value0 == val) ||
8167 (vmcs12->cr3_target_count >= 2 &&
8168 vmcs12->cr3_target_value1 == val) ||
8169 (vmcs12->cr3_target_count >= 3 &&
8170 vmcs12->cr3_target_value2 == val) ||
8171 (vmcs12->cr3_target_count >= 4 &&
8172 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008173 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008174 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008175 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008176 break;
8177 case 4:
8178 if (vmcs12->cr4_guest_host_mask &
8179 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008180 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008181 break;
8182 case 8:
8183 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008184 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008185 break;
8186 }
8187 break;
8188 case 2: /* clts */
8189 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8190 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008191 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008192 break;
8193 case 1: /* mov from cr */
8194 switch (cr) {
8195 case 3:
8196 if (vmcs12->cpu_based_vm_exec_control &
8197 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008198 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008199 break;
8200 case 8:
8201 if (vmcs12->cpu_based_vm_exec_control &
8202 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008203 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008204 break;
8205 }
8206 break;
8207 case 3: /* lmsw */
8208 /*
8209 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8210 * cr0. Other attempted changes are ignored, with no exit.
8211 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008212 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008213 if (vmcs12->cr0_guest_host_mask & 0xe &
8214 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008215 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008216 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8217 !(vmcs12->cr0_read_shadow & 0x1) &&
8218 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008219 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008220 break;
8221 }
Joe Perches1d804d02015-03-30 16:46:09 -07008222 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008223}
8224
8225/*
8226 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8227 * should handle it ourselves in L0 (and then continue L2). Only call this
8228 * when in is_guest_mode (L2).
8229 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008230static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008231{
Nadav Har'El644d7112011-05-25 23:12:35 +03008232 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8233 struct vcpu_vmx *vmx = to_vmx(vcpu);
8234 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8235
Jan Kiszka542060e2014-01-04 18:47:21 +01008236 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8237 vmcs_readl(EXIT_QUALIFICATION),
8238 vmx->idt_vectoring_info,
8239 intr_info,
8240 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8241 KVM_ISA_VMX);
8242
David Matlackc9f04402017-08-01 14:00:40 -07008243 /*
8244 * The host physical addresses of some pages of guest memory
8245 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8246 * may write to these pages via their host physical address while
8247 * L2 is running, bypassing any address-translation-based dirty
8248 * tracking (e.g. EPT write protection).
8249 *
8250 * Mark them dirty on every exit from L2 to prevent them from
8251 * getting out of sync with dirty tracking.
8252 */
8253 nested_mark_vmcs12_pages_dirty(vcpu);
8254
Nadav Har'El644d7112011-05-25 23:12:35 +03008255 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008256 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008257
8258 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008259 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8260 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008261 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008262 }
8263
8264 switch (exit_reason) {
8265 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008266 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008267 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008268 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008269 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008270 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008271 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008272 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008273 else if (is_debug(intr_info) &&
8274 vcpu->guest_debug &
8275 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8276 return false;
8277 else if (is_breakpoint(intr_info) &&
8278 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8279 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008280 return vmcs12->exception_bitmap &
8281 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8282 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008283 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008284 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008285 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008286 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008287 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008288 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008289 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008290 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008291 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008292 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008293 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008294 case EXIT_REASON_HLT:
8295 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8296 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008297 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008298 case EXIT_REASON_INVLPG:
8299 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8300 case EXIT_REASON_RDPMC:
8301 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008302 case EXIT_REASON_RDRAND:
8303 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND);
8304 case EXIT_REASON_RDSEED:
8305 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008306 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008307 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8308 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8309 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8310 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8311 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8312 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008313 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008314 /*
8315 * VMX instructions trap unconditionally. This allows L1 to
8316 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8317 */
Joe Perches1d804d02015-03-30 16:46:09 -07008318 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008319 case EXIT_REASON_CR_ACCESS:
8320 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8321 case EXIT_REASON_DR_ACCESS:
8322 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8323 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008324 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008325 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8326 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008327 case EXIT_REASON_MSR_READ:
8328 case EXIT_REASON_MSR_WRITE:
8329 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8330 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008331 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008332 case EXIT_REASON_MWAIT_INSTRUCTION:
8333 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008334 case EXIT_REASON_MONITOR_TRAP_FLAG:
8335 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008336 case EXIT_REASON_MONITOR_INSTRUCTION:
8337 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8338 case EXIT_REASON_PAUSE_INSTRUCTION:
8339 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8340 nested_cpu_has2(vmcs12,
8341 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8342 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008343 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008344 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008345 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008346 case EXIT_REASON_APIC_ACCESS:
8347 return nested_cpu_has2(vmcs12,
8348 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008349 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008350 case EXIT_REASON_EOI_INDUCED:
8351 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008352 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008353 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008354 /*
8355 * L0 always deals with the EPT violation. If nested EPT is
8356 * used, and the nested mmu code discovers that the address is
8357 * missing in the guest EPT table (EPT12), the EPT violation
8358 * will be injected with nested_ept_inject_page_fault()
8359 */
Joe Perches1d804d02015-03-30 16:46:09 -07008360 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008361 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008362 /*
8363 * L2 never uses directly L1's EPT, but rather L0's own EPT
8364 * table (shadow on EPT) or a merged EPT table that L0 built
8365 * (EPT on EPT). So any problems with the structure of the
8366 * table is L0's fault.
8367 */
Joe Perches1d804d02015-03-30 16:46:09 -07008368 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008369 case EXIT_REASON_INVPCID:
8370 return
8371 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8372 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008373 case EXIT_REASON_WBINVD:
8374 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8375 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008376 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008377 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8378 /*
8379 * This should never happen, since it is not possible to
8380 * set XSS to a non-zero value---neither in L1 nor in L2.
8381 * If if it were, XSS would have to be checked against
8382 * the XSS exit bitmap in vmcs12.
8383 */
8384 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008385 case EXIT_REASON_PREEMPTION_TIMER:
8386 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008387 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008388 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008389 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008390 case EXIT_REASON_VMFUNC:
8391 /* VM functions are emulated through L2->L0 vmexits. */
8392 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008393 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008394 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008395 }
8396}
8397
Paolo Bonzini7313c692017-07-27 10:31:25 +02008398static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8399{
8400 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8401
8402 /*
8403 * At this point, the exit interruption info in exit_intr_info
8404 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8405 * we need to query the in-kernel LAPIC.
8406 */
8407 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8408 if ((exit_intr_info &
8409 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8410 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8411 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8412 vmcs12->vm_exit_intr_error_code =
8413 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8414 }
8415
8416 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8417 vmcs_readl(EXIT_QUALIFICATION));
8418 return 1;
8419}
8420
Avi Kivity586f9602010-11-18 13:09:54 +02008421static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8422{
8423 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8424 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8425}
8426
Kai Huanga3eaa862015-11-04 13:46:05 +08008427static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008428{
Kai Huanga3eaa862015-11-04 13:46:05 +08008429 if (vmx->pml_pg) {
8430 __free_page(vmx->pml_pg);
8431 vmx->pml_pg = NULL;
8432 }
Kai Huang843e4332015-01-28 10:54:28 +08008433}
8434
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008435static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008436{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008437 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008438 u64 *pml_buf;
8439 u16 pml_idx;
8440
8441 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8442
8443 /* Do nothing if PML buffer is empty */
8444 if (pml_idx == (PML_ENTITY_NUM - 1))
8445 return;
8446
8447 /* PML index always points to next available PML buffer entity */
8448 if (pml_idx >= PML_ENTITY_NUM)
8449 pml_idx = 0;
8450 else
8451 pml_idx++;
8452
8453 pml_buf = page_address(vmx->pml_pg);
8454 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8455 u64 gpa;
8456
8457 gpa = pml_buf[pml_idx];
8458 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008459 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008460 }
8461
8462 /* reset PML index */
8463 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8464}
8465
8466/*
8467 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8468 * Called before reporting dirty_bitmap to userspace.
8469 */
8470static void kvm_flush_pml_buffers(struct kvm *kvm)
8471{
8472 int i;
8473 struct kvm_vcpu *vcpu;
8474 /*
8475 * We only need to kick vcpu out of guest mode here, as PML buffer
8476 * is flushed at beginning of all VMEXITs, and it's obvious that only
8477 * vcpus running in guest are possible to have unflushed GPAs in PML
8478 * buffer.
8479 */
8480 kvm_for_each_vcpu(i, vcpu, kvm)
8481 kvm_vcpu_kick(vcpu);
8482}
8483
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008484static void vmx_dump_sel(char *name, uint32_t sel)
8485{
8486 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008487 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008488 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8489 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8490 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8491}
8492
8493static void vmx_dump_dtsel(char *name, uint32_t limit)
8494{
8495 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8496 name, vmcs_read32(limit),
8497 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8498}
8499
8500static void dump_vmcs(void)
8501{
8502 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8503 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8504 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8505 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8506 u32 secondary_exec_control = 0;
8507 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008508 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008509 int i, n;
8510
8511 if (cpu_has_secondary_exec_ctrls())
8512 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8513
8514 pr_err("*** Guest State ***\n");
8515 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8516 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8517 vmcs_readl(CR0_GUEST_HOST_MASK));
8518 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8519 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8520 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8521 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8522 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8523 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008524 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8525 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8526 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8527 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008528 }
8529 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8530 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8531 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8532 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8533 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8534 vmcs_readl(GUEST_SYSENTER_ESP),
8535 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8536 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8537 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8538 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8539 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8540 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8541 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8542 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8543 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8544 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8545 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8546 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8547 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008548 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8549 efer, vmcs_read64(GUEST_IA32_PAT));
8550 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8551 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008552 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8553 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008554 pr_err("PerfGlobCtl = 0x%016llx\n",
8555 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008556 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008557 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008558 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8559 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8560 vmcs_read32(GUEST_ACTIVITY_STATE));
8561 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8562 pr_err("InterruptStatus = %04x\n",
8563 vmcs_read16(GUEST_INTR_STATUS));
8564
8565 pr_err("*** Host State ***\n");
8566 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8567 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8568 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8569 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8570 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8571 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8572 vmcs_read16(HOST_TR_SELECTOR));
8573 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8574 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8575 vmcs_readl(HOST_TR_BASE));
8576 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8577 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8578 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8579 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8580 vmcs_readl(HOST_CR4));
8581 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8582 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8583 vmcs_read32(HOST_IA32_SYSENTER_CS),
8584 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8585 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008586 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8587 vmcs_read64(HOST_IA32_EFER),
8588 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008589 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008590 pr_err("PerfGlobCtl = 0x%016llx\n",
8591 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008592
8593 pr_err("*** Control State ***\n");
8594 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8595 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8596 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8597 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8598 vmcs_read32(EXCEPTION_BITMAP),
8599 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8600 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8601 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8602 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8603 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8604 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8605 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8606 vmcs_read32(VM_EXIT_INTR_INFO),
8607 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8608 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8609 pr_err(" reason=%08x qualification=%016lx\n",
8610 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8611 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8612 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8613 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008614 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008615 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008616 pr_err("TSC Multiplier = 0x%016llx\n",
8617 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008618 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8619 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8620 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8621 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8622 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008623 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008624 n = vmcs_read32(CR3_TARGET_COUNT);
8625 for (i = 0; i + 1 < n; i += 4)
8626 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8627 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8628 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8629 if (i < n)
8630 pr_err("CR3 target%u=%016lx\n",
8631 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8632 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8633 pr_err("PLE Gap=%08x Window=%08x\n",
8634 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8635 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8636 pr_err("Virtual processor ID = 0x%04x\n",
8637 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8638}
8639
Avi Kivity6aa8b732006-12-10 02:21:36 -08008640/*
8641 * The guest has exited. See if we can fix it or if we need userspace
8642 * assistance.
8643 */
Avi Kivity851ba692009-08-24 11:10:17 +03008644static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008645{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008646 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008647 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008648 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008649
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008650 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8651
Kai Huang843e4332015-01-28 10:54:28 +08008652 /*
8653 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8654 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8655 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8656 * mode as if vcpus is in root mode, the PML buffer must has been
8657 * flushed already.
8658 */
8659 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008660 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008661
Mohammed Gamal80ced182009-09-01 12:48:18 +02008662 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008663 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008664 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008665
Paolo Bonzini7313c692017-07-27 10:31:25 +02008666 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8667 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008668
Mohammed Gamal51207022010-05-31 22:40:54 +03008669 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008670 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008671 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8672 vcpu->run->fail_entry.hardware_entry_failure_reason
8673 = exit_reason;
8674 return 0;
8675 }
8676
Avi Kivity29bd8a72007-09-10 17:27:03 +03008677 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008678 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8679 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008680 = vmcs_read32(VM_INSTRUCTION_ERROR);
8681 return 0;
8682 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008683
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008684 /*
8685 * Note:
8686 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8687 * delivery event since it indicates guest is accessing MMIO.
8688 * The vm-exit can be triggered again after return to guest that
8689 * will cause infinite loop.
8690 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008691 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008692 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008693 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008694 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008695 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8696 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8697 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008698 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008699 vcpu->run->internal.data[0] = vectoring_info;
8700 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008701 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8702 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8703 vcpu->run->internal.ndata++;
8704 vcpu->run->internal.data[3] =
8705 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8706 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008707 return 0;
8708 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008709
Avi Kivity6aa8b732006-12-10 02:21:36 -08008710 if (exit_reason < kvm_vmx_max_exit_handlers
8711 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008712 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008713 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008714 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8715 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008716 kvm_queue_exception(vcpu, UD_VECTOR);
8717 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008718 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008719}
8720
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008721static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008722{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008723 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8724
8725 if (is_guest_mode(vcpu) &&
8726 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8727 return;
8728
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008729 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008730 vmcs_write32(TPR_THRESHOLD, 0);
8731 return;
8732 }
8733
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008734 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008735}
8736
Yang Zhang8d146952013-01-25 10:18:50 +08008737static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8738{
8739 u32 sec_exec_control;
8740
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008741 /* Postpone execution until vmcs01 is the current VMCS. */
8742 if (is_guest_mode(vcpu)) {
8743 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8744 return;
8745 }
8746
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008747 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008748 return;
8749
Paolo Bonzini35754c92015-07-29 12:05:37 +02008750 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008751 return;
8752
8753 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8754
8755 if (set) {
8756 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8757 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8758 } else {
8759 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8760 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008761 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008762 }
8763 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8764
8765 vmx_set_msr_bitmap(vcpu);
8766}
8767
Tang Chen38b99172014-09-24 15:57:54 +08008768static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8769{
8770 struct vcpu_vmx *vmx = to_vmx(vcpu);
8771
8772 /*
8773 * Currently we do not handle the nested case where L2 has an
8774 * APIC access page of its own; that page is still pinned.
8775 * Hence, we skip the case where the VCPU is in guest mode _and_
8776 * L1 prepared an APIC access page for L2.
8777 *
8778 * For the case where L1 and L2 share the same APIC access page
8779 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8780 * in the vmcs12), this function will only update either the vmcs01
8781 * or the vmcs02. If the former, the vmcs02 will be updated by
8782 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8783 * the next L2->L1 exit.
8784 */
8785 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008786 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008787 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008788 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008789 vmx_flush_tlb_ept_only(vcpu);
8790 }
Tang Chen38b99172014-09-24 15:57:54 +08008791}
8792
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008793static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008794{
8795 u16 status;
8796 u8 old;
8797
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008798 if (max_isr == -1)
8799 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008800
8801 status = vmcs_read16(GUEST_INTR_STATUS);
8802 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008803 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008804 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008805 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008806 vmcs_write16(GUEST_INTR_STATUS, status);
8807 }
8808}
8809
8810static void vmx_set_rvi(int vector)
8811{
8812 u16 status;
8813 u8 old;
8814
Wei Wang4114c272014-11-05 10:53:43 +08008815 if (vector == -1)
8816 vector = 0;
8817
Yang Zhangc7c9c562013-01-25 10:18:51 +08008818 status = vmcs_read16(GUEST_INTR_STATUS);
8819 old = (u8)status & 0xff;
8820 if ((u8)vector != old) {
8821 status &= ~0xff;
8822 status |= (u8)vector;
8823 vmcs_write16(GUEST_INTR_STATUS, status);
8824 }
8825}
8826
8827static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8828{
Wanpeng Li963fee12014-07-17 19:03:00 +08008829 if (!is_guest_mode(vcpu)) {
8830 vmx_set_rvi(max_irr);
8831 return;
8832 }
8833
Wei Wang4114c272014-11-05 10:53:43 +08008834 if (max_irr == -1)
8835 return;
8836
Wanpeng Li963fee12014-07-17 19:03:00 +08008837 /*
Wei Wang4114c272014-11-05 10:53:43 +08008838 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8839 * handles it.
8840 */
8841 if (nested_exit_on_intr(vcpu))
8842 return;
8843
8844 /*
8845 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008846 * is run without virtual interrupt delivery.
8847 */
8848 if (!kvm_event_needs_reinjection(vcpu) &&
8849 vmx_interrupt_allowed(vcpu)) {
8850 kvm_queue_interrupt(vcpu, max_irr, false);
8851 vmx_inject_irq(vcpu);
8852 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008853}
8854
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008855static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008856{
8857 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008858 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008859
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008860 WARN_ON(!vcpu->arch.apicv_active);
8861 if (pi_test_on(&vmx->pi_desc)) {
8862 pi_clear_on(&vmx->pi_desc);
8863 /*
8864 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8865 * But on x86 this is just a compiler barrier anyway.
8866 */
8867 smp_mb__after_atomic();
8868 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8869 } else {
8870 max_irr = kvm_lapic_find_highest_irr(vcpu);
8871 }
8872 vmx_hwapic_irr_update(vcpu, max_irr);
8873 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008874}
8875
Andrey Smetanin63086302015-11-10 15:36:32 +03008876static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008877{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008878 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008879 return;
8880
Yang Zhangc7c9c562013-01-25 10:18:51 +08008881 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8882 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8883 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8884 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8885}
8886
Paolo Bonzini967235d2016-12-19 14:03:45 +01008887static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8888{
8889 struct vcpu_vmx *vmx = to_vmx(vcpu);
8890
8891 pi_clear_on(&vmx->pi_desc);
8892 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
8893}
8894
Avi Kivity51aa01d2010-07-20 14:31:20 +03008895static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008896{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008897 u32 exit_intr_info = 0;
8898 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02008899
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008900 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8901 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02008902 return;
8903
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008904 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
8905 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8906 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008907
Wanpeng Li1261bfa2017-07-13 18:30:40 -07008908 /* if exit due to PF check for async PF */
8909 if (is_page_fault(exit_intr_info))
8910 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
8911
Andi Kleena0861c02009-06-08 17:37:09 +08008912 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008913 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
8914 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008915 kvm_machine_check();
8916
Gleb Natapov20f65982009-05-11 13:35:55 +03008917 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08008918 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008919 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008920 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008921 kvm_after_handle_nmi(&vmx->vcpu);
8922 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008923}
Gleb Natapov20f65982009-05-11 13:35:55 +03008924
Yang Zhanga547c6d2013-04-11 19:25:10 +08008925static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8926{
8927 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008928 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008929
Yang Zhanga547c6d2013-04-11 19:25:10 +08008930 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8931 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8932 unsigned int vector;
8933 unsigned long entry;
8934 gate_desc *desc;
8935 struct vcpu_vmx *vmx = to_vmx(vcpu);
8936#ifdef CONFIG_X86_64
8937 unsigned long tmp;
8938#endif
8939
8940 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8941 desc = (gate_desc *)vmx->host_idt_base + vector;
8942 entry = gate_offset(*desc);
8943 asm volatile(
8944#ifdef CONFIG_X86_64
8945 "mov %%" _ASM_SP ", %[sp]\n\t"
8946 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8947 "push $%c[ss]\n\t"
8948 "push %[sp]\n\t"
8949#endif
8950 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008951 __ASM_SIZE(push) " $%c[cs]\n\t"
8952 "call *%[entry]\n\t"
8953 :
8954#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008955 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008956#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008957 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008958 :
8959 [entry]"r"(entry),
8960 [ss]"i"(__KERNEL_DS),
8961 [cs]"i"(__KERNEL_CS)
8962 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008963 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08008964}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05008965STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008966
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008967static bool vmx_has_high_real_mode_segbase(void)
8968{
8969 return enable_unrestricted_guest || emulate_invalid_guest_state;
8970}
8971
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008972static bool vmx_mpx_supported(void)
8973{
8974 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8975 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8976}
8977
Wanpeng Li55412b22014-12-02 19:21:30 +08008978static bool vmx_xsaves_supported(void)
8979{
8980 return vmcs_config.cpu_based_2nd_exec_ctrl &
8981 SECONDARY_EXEC_XSAVES;
8982}
8983
Avi Kivity51aa01d2010-07-20 14:31:20 +03008984static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8985{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008986 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008987 bool unblock_nmi;
8988 u8 vector;
8989 bool idtv_info_valid;
8990
8991 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008992
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02008993 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02008994 return;
8995 /*
8996 * Can't use vmx->exit_intr_info since we're not sure what
8997 * the exit reason is.
8998 */
8999 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9000 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9001 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9002 /*
9003 * SDM 3: 27.7.1.2 (September 2008)
9004 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9005 * a guest IRET fault.
9006 * SDM 3: 23.2.2 (September 2008)
9007 * Bit 12 is undefined in any of the following cases:
9008 * If the VM exit sets the valid bit in the IDT-vectoring
9009 * information field.
9010 * If the VM exit is due to a double fault.
9011 */
9012 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9013 vector != DF_VECTOR && !idtv_info_valid)
9014 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9015 GUEST_INTR_STATE_NMI);
9016 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009017 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009018 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9019 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009020}
9021
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009022static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009023 u32 idt_vectoring_info,
9024 int instr_len_field,
9025 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009026{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009027 u8 vector;
9028 int type;
9029 bool idtv_info_valid;
9030
9031 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009032
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009033 vcpu->arch.nmi_injected = false;
9034 kvm_clear_exception_queue(vcpu);
9035 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009036
9037 if (!idtv_info_valid)
9038 return;
9039
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009040 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009041
Avi Kivity668f6122008-07-02 09:28:55 +03009042 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9043 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009044
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009045 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009046 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009047 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009048 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009049 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009050 * Clear bit "block by NMI" before VM entry if a NMI
9051 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009052 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009053 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009054 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009055 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009056 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009057 /* fall through */
9058 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009059 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009060 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009061 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009062 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009063 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009064 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009065 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009066 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009067 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009068 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009069 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009070 break;
9071 default:
9072 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009073 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009074}
9075
Avi Kivity83422e12010-07-20 14:43:23 +03009076static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9077{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009078 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009079 VM_EXIT_INSTRUCTION_LEN,
9080 IDT_VECTORING_ERROR_CODE);
9081}
9082
Avi Kivityb463a6f2010-07-20 15:06:17 +03009083static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9084{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009085 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009086 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9087 VM_ENTRY_INSTRUCTION_LEN,
9088 VM_ENTRY_EXCEPTION_ERROR_CODE);
9089
9090 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9091}
9092
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009093static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9094{
9095 int i, nr_msrs;
9096 struct perf_guest_switch_msr *msrs;
9097
9098 msrs = perf_guest_get_msrs(&nr_msrs);
9099
9100 if (!msrs)
9101 return;
9102
9103 for (i = 0; i < nr_msrs; i++)
9104 if (msrs[i].host == msrs[i].guest)
9105 clear_atomic_switch_msr(vmx, msrs[i].msr);
9106 else
9107 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9108 msrs[i].host);
9109}
9110
Jiang Biao33365e72016-11-03 15:03:37 +08009111static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009112{
9113 struct vcpu_vmx *vmx = to_vmx(vcpu);
9114 u64 tscl;
9115 u32 delta_tsc;
9116
9117 if (vmx->hv_deadline_tsc == -1)
9118 return;
9119
9120 tscl = rdtsc();
9121 if (vmx->hv_deadline_tsc > tscl)
9122 /* sure to be 32 bit only because checked on set_hv_timer */
9123 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9124 cpu_preemption_timer_multi);
9125 else
9126 delta_tsc = 0;
9127
9128 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9129}
9130
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009131static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009132{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009133 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009134 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009135
Avi Kivity104f2262010-11-18 13:12:52 +02009136 /* Don't enter VMX if guest state is invalid, let the exit handler
9137 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009138 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009139 return;
9140
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009141 if (vmx->ple_window_dirty) {
9142 vmx->ple_window_dirty = false;
9143 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9144 }
9145
Abel Gordon012f83c2013-04-18 14:39:25 +03009146 if (vmx->nested.sync_shadow_vmcs) {
9147 copy_vmcs12_to_shadow(vmx);
9148 vmx->nested.sync_shadow_vmcs = false;
9149 }
9150
Avi Kivity104f2262010-11-18 13:12:52 +02009151 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9152 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9153 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9154 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9155
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009156 cr3 = __get_current_cr3_fast();
9157 if (unlikely(cr3 != vmx->host_state.vmcs_host_cr3)) {
9158 vmcs_writel(HOST_CR3, cr3);
9159 vmx->host_state.vmcs_host_cr3 = cr3;
9160 }
9161
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009162 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009163 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
9164 vmcs_writel(HOST_CR4, cr4);
9165 vmx->host_state.vmcs_host_cr4 = cr4;
9166 }
9167
Avi Kivity104f2262010-11-18 13:12:52 +02009168 /* When single-stepping over STI and MOV SS, we must clear the
9169 * corresponding interruptibility bits in the guest state. Otherwise
9170 * vmentry fails as it then expects bit 14 (BS) in pending debug
9171 * exceptions being set, but that's not correct for the guest debugging
9172 * case. */
9173 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9174 vmx_set_interrupt_shadow(vcpu, 0);
9175
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009176 if (vmx->guest_pkru_valid)
9177 __write_pkru(vmx->guest_pkru);
9178
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009179 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009180 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009181
Yunhong Jiang64672c92016-06-13 14:19:59 -07009182 vmx_arm_hv_timer(vcpu);
9183
Nadav Har'Eld462b812011-05-24 15:26:10 +03009184 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009185 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009186 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009187 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9188 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9189 "push %%" _ASM_CX " \n\t"
9190 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009191 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009192 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009193 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009194 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009195 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009196 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9197 "mov %%cr2, %%" _ASM_DX " \n\t"
9198 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009199 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009200 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009201 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009202 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009203 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009204 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009205 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9206 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9207 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9208 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9209 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9210 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009211#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009212 "mov %c[r8](%0), %%r8 \n\t"
9213 "mov %c[r9](%0), %%r9 \n\t"
9214 "mov %c[r10](%0), %%r10 \n\t"
9215 "mov %c[r11](%0), %%r11 \n\t"
9216 "mov %c[r12](%0), %%r12 \n\t"
9217 "mov %c[r13](%0), %%r13 \n\t"
9218 "mov %c[r14](%0), %%r14 \n\t"
9219 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009220#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009221 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009222
Avi Kivity6aa8b732006-12-10 02:21:36 -08009223 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009224 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009225 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009226 "jmp 2f \n\t"
9227 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9228 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009229 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009230 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009231 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009232 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9233 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9234 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9235 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9236 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9237 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9238 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009239#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009240 "mov %%r8, %c[r8](%0) \n\t"
9241 "mov %%r9, %c[r9](%0) \n\t"
9242 "mov %%r10, %c[r10](%0) \n\t"
9243 "mov %%r11, %c[r11](%0) \n\t"
9244 "mov %%r12, %c[r12](%0) \n\t"
9245 "mov %%r13, %c[r13](%0) \n\t"
9246 "mov %%r14, %c[r14](%0) \n\t"
9247 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009248#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009249 "mov %%cr2, %%" _ASM_AX " \n\t"
9250 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009251
Avi Kivityb188c81f2012-09-16 15:10:58 +03009252 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009253 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009254 ".pushsection .rodata \n\t"
9255 ".global vmx_return \n\t"
9256 "vmx_return: " _ASM_PTR " 2b \n\t"
9257 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009258 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009259 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009260 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009261 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009262 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9263 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9264 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9265 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9266 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9267 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9268 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009269#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009270 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9271 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9272 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9273 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9274 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9275 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9276 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9277 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009278#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009279 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9280 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009281 : "cc", "memory"
9282#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009283 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009284 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009285#else
9286 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009287#endif
9288 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009289
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009290 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9291 if (debugctlmsr)
9292 update_debugctlmsr(debugctlmsr);
9293
Avi Kivityaa67f602012-08-01 16:48:03 +03009294#ifndef CONFIG_X86_64
9295 /*
9296 * The sysexit path does not restore ds/es, so we must set them to
9297 * a reasonable value ourselves.
9298 *
9299 * We can't defer this to vmx_load_host_state() since that function
9300 * may be executed in interrupt context, which saves and restore segments
9301 * around it, nullifying its effect.
9302 */
9303 loadsegment(ds, __USER_DS);
9304 loadsegment(es, __USER_DS);
9305#endif
9306
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009307 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009308 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009309 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009310 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009311 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009312 vcpu->arch.regs_dirty = 0;
9313
Avi Kivity1155f762007-11-22 11:30:47 +02009314 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9315
Nadav Har'Eld462b812011-05-24 15:26:10 +03009316 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009317
Avi Kivity51aa01d2010-07-20 14:31:20 +03009318 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009319
Gleb Natapove0b890d2013-09-25 12:51:33 +03009320 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009321 * eager fpu is enabled if PKEY is supported and CR4 is switched
9322 * back on host, so it is safe to read guest PKRU from current
9323 * XSAVE.
9324 */
9325 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9326 vmx->guest_pkru = __read_pkru();
9327 if (vmx->guest_pkru != vmx->host_pkru) {
9328 vmx->guest_pkru_valid = true;
9329 __write_pkru(vmx->host_pkru);
9330 } else
9331 vmx->guest_pkru_valid = false;
9332 }
9333
9334 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009335 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9336 * we did not inject a still-pending event to L1 now because of
9337 * nested_run_pending, we need to re-enable this bit.
9338 */
9339 if (vmx->nested.nested_run_pending)
9340 kvm_make_request(KVM_REQ_EVENT, vcpu);
9341
9342 vmx->nested.nested_run_pending = 0;
9343
Avi Kivity51aa01d2010-07-20 14:31:20 +03009344 vmx_complete_atomic_exit(vmx);
9345 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009346 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009347}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009348STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009349
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009350static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009351{
9352 struct vcpu_vmx *vmx = to_vmx(vcpu);
9353 int cpu;
9354
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009355 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009356 return;
9357
9358 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009359 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009360 vmx_vcpu_put(vcpu);
9361 vmx_vcpu_load(vcpu, cpu);
9362 vcpu->cpu = cpu;
9363 put_cpu();
9364}
9365
Jim Mattson2f1fe812016-07-08 15:36:06 -07009366/*
9367 * Ensure that the current vmcs of the logical processor is the
9368 * vmcs01 of the vcpu before calling free_nested().
9369 */
9370static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9371{
9372 struct vcpu_vmx *vmx = to_vmx(vcpu);
9373 int r;
9374
9375 r = vcpu_load(vcpu);
9376 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009377 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009378 free_nested(vmx);
9379 vcpu_put(vcpu);
9380}
9381
Avi Kivity6aa8b732006-12-10 02:21:36 -08009382static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9383{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009384 struct vcpu_vmx *vmx = to_vmx(vcpu);
9385
Kai Huang843e4332015-01-28 10:54:28 +08009386 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009387 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009388 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009389 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009390 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009391 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009392 kfree(vmx->guest_msrs);
9393 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009394 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009395}
9396
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009397static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009398{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009399 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009400 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009401 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009402
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009403 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009404 return ERR_PTR(-ENOMEM);
9405
Wanpeng Li991e7a02015-09-16 17:30:05 +08009406 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009407
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009408 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9409 if (err)
9410 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009411
Peter Feiner4e595162016-07-07 14:49:58 -07009412 err = -ENOMEM;
9413
9414 /*
9415 * If PML is turned on, failure on enabling PML just results in failure
9416 * of creating the vcpu, therefore we can simplify PML logic (by
9417 * avoiding dealing with cases, such as enabling PML partially on vcpus
9418 * for the guest, etc.
9419 */
9420 if (enable_pml) {
9421 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9422 if (!vmx->pml_pg)
9423 goto uninit_vcpu;
9424 }
9425
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009426 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009427 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9428 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009429
Peter Feiner4e595162016-07-07 14:49:58 -07009430 if (!vmx->guest_msrs)
9431 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009432
Nadav Har'Eld462b812011-05-24 15:26:10 +03009433 vmx->loaded_vmcs = &vmx->vmcs01;
9434 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009435 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009436 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009437 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009438 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009439
Avi Kivity15ad7142007-07-11 18:17:21 +03009440 cpu = get_cpu();
9441 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009442 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009443 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009444 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009445 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009446 if (err)
9447 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009448 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009449 err = alloc_apic_access_page(kvm);
9450 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009451 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009452 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009453
Sheng Yangb927a3c2009-07-21 10:42:48 +08009454 if (enable_ept) {
9455 if (!kvm->arch.ept_identity_map_addr)
9456 kvm->arch.ept_identity_map_addr =
9457 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009458 err = init_rmode_identity_map(kvm);
9459 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009460 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009461 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009462
Wanpeng Li5c614b32015-10-13 09:18:36 -07009463 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009464 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009465 vmx->nested.vpid02 = allocate_vpid();
9466 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009467
Wincy Van705699a2015-02-03 23:58:17 +08009468 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009469 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009470
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009471 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9472
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009473 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009474
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009475free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009476 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009477 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009478free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009479 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009480free_pml:
9481 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009482uninit_vcpu:
9483 kvm_vcpu_uninit(&vmx->vcpu);
9484free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009485 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009486 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009487 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009488}
9489
Yang, Sheng002c7f72007-07-31 14:23:01 +03009490static void __init vmx_check_processor_compat(void *rtn)
9491{
9492 struct vmcs_config vmcs_conf;
9493
9494 *(int *)rtn = 0;
9495 if (setup_vmcs_config(&vmcs_conf) < 0)
9496 *(int *)rtn = -EIO;
9497 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9498 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9499 smp_processor_id());
9500 *(int *)rtn = -EIO;
9501 }
9502}
9503
Sheng Yang67253af2008-04-25 10:20:22 +08009504static int get_ept_level(void)
9505{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009506 return 4;
Sheng Yang67253af2008-04-25 10:20:22 +08009507}
9508
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009509static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009510{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009511 u8 cache;
9512 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009513
Sheng Yang522c68c2009-04-27 20:35:43 +08009514 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009515 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009516 * 2. EPT with VT-d:
9517 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009518 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009519 * b. VT-d with snooping control feature: snooping control feature of
9520 * VT-d engine can guarantee the cache correctness. Just set it
9521 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009522 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009523 * consistent with host MTRR
9524 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009525 if (is_mmio) {
9526 cache = MTRR_TYPE_UNCACHABLE;
9527 goto exit;
9528 }
9529
9530 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009531 ipat = VMX_EPT_IPAT_BIT;
9532 cache = MTRR_TYPE_WRBACK;
9533 goto exit;
9534 }
9535
9536 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9537 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009538 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009539 cache = MTRR_TYPE_WRBACK;
9540 else
9541 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009542 goto exit;
9543 }
9544
Xiao Guangrongff536042015-06-15 16:55:22 +08009545 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009546
9547exit:
9548 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009549}
9550
Sheng Yang17cc3932010-01-05 19:02:27 +08009551static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009552{
Sheng Yang878403b2010-01-05 19:02:29 +08009553 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9554 return PT_DIRECTORY_LEVEL;
9555 else
9556 /* For shadow and EPT supported 1GB page */
9557 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009558}
9559
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009560static void vmcs_set_secondary_exec_control(u32 new_ctl)
9561{
9562 /*
9563 * These bits in the secondary execution controls field
9564 * are dynamic, the others are mostly based on the hypervisor
9565 * architecture and the guest's CPUID. Do not touch the
9566 * dynamic bits.
9567 */
9568 u32 mask =
9569 SECONDARY_EXEC_SHADOW_VMCS |
9570 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9571 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9572
9573 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9574
9575 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9576 (new_ctl & ~mask) | (cur_ctl & mask));
9577}
9578
David Matlack8322ebb2016-11-29 18:14:09 -08009579/*
9580 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9581 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9582 */
9583static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9584{
9585 struct vcpu_vmx *vmx = to_vmx(vcpu);
9586 struct kvm_cpuid_entry2 *entry;
9587
9588 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9589 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9590
9591#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9592 if (entry && (entry->_reg & (_cpuid_mask))) \
9593 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9594} while (0)
9595
9596 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9597 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9598 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9599 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9600 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9601 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9602 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9603 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9604 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9605 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9606 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9607 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9608 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9609 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9610 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9611
9612 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9613 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9614 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9615 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9616 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9617 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9618 cr4_fixed1_update(bit(11), ecx, bit(2));
9619
9620#undef cr4_fixed1_update
9621}
9622
Sheng Yang0e851882009-12-18 16:48:46 +08009623static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9624{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009625 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009626 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009627
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009628 if (vmx_rdtscp_supported()) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02009629 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009630 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009631 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009632
Paolo Bonzini8b972652015-09-15 17:34:42 +02009633 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009634 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009635 vmx->nested.nested_vmx_secondary_ctls_high |=
9636 SECONDARY_EXEC_RDTSCP;
9637 else
9638 vmx->nested.nested_vmx_secondary_ctls_high &=
9639 ~SECONDARY_EXEC_RDTSCP;
9640 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009641 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009642
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009643 if (vmx_invpcid_supported()) {
9644 /* Exposing INVPCID only when PCID is exposed */
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009645 bool invpcid_enabled =
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02009646 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
Radim Krčmářd6321d42017-08-05 00:12:49 +02009647 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009648
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009649 if (!invpcid_enabled) {
9650 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02009651 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009652 }
9653
9654 if (nested) {
9655 if (invpcid_enabled)
9656 vmx->nested.nested_vmx_secondary_ctls_high |=
9657 SECONDARY_EXEC_ENABLE_INVPCID;
9658 else
9659 vmx->nested.nested_vmx_secondary_ctls_high &=
9660 ~SECONDARY_EXEC_ENABLE_INVPCID;
9661 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009662 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009663
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009664 if (cpu_has_secondary_exec_ctrls())
9665 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009666
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009667 if (nested_vmx_allowed(vcpu))
9668 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9669 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9670 else
9671 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9672 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009673
9674 if (nested_vmx_allowed(vcpu))
9675 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009676}
9677
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009678static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9679{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009680 if (func == 1 && nested)
9681 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009682}
9683
Yang Zhang25d92082013-08-06 12:00:32 +03009684static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9685 struct x86_exception *fault)
9686{
Jan Kiszka533558b2014-01-04 18:47:20 +01009687 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009688 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009689 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009690 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009691
Bandan Dasc5f983f2017-05-05 15:25:14 -04009692 if (vmx->nested.pml_full) {
9693 exit_reason = EXIT_REASON_PML_FULL;
9694 vmx->nested.pml_full = false;
9695 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9696 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009697 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009698 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009699 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009700
9701 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009702 vmcs12->guest_physical_address = fault->address;
9703}
9704
Peter Feiner995f00a2017-06-30 17:26:32 -07009705static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9706{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009707 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009708}
9709
Nadav Har'El155a97a2013-08-05 11:07:16 +03009710/* Callbacks for nested_ept_init_mmu_context: */
9711
9712static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9713{
9714 /* return the page table to be shadowed - in our case, EPT12 */
9715 return get_vmcs12(vcpu)->ept_pointer;
9716}
9717
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009718static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009719{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009720 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009721 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009722 return 1;
9723
9724 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009725 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009726 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009727 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009728 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009729 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9730 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9731 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9732
9733 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009734 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009735}
9736
9737static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9738{
9739 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9740}
9741
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009742static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9743 u16 error_code)
9744{
9745 bool inequality, bit;
9746
9747 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9748 inequality =
9749 (error_code & vmcs12->page_fault_error_code_mask) !=
9750 vmcs12->page_fault_error_code_match;
9751 return inequality ^ bit;
9752}
9753
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009754static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9755 struct x86_exception *fault)
9756{
9757 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9758
9759 WARN_ON(!is_guest_mode(vcpu));
9760
Paolo Bonzini7313c692017-07-27 10:31:25 +02009761 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009762 vmcs12->vm_exit_intr_error_code = fault->error_code;
9763 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9764 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9765 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9766 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009767 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009768 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009769 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009770}
9771
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009772static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9773 struct vmcs12 *vmcs12);
9774
9775static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009776 struct vmcs12 *vmcs12)
9777{
9778 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009779 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009780 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009781
9782 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009783 /*
9784 * Translate L1 physical address to host physical
9785 * address for vmcs02. Keep the page pinned, so this
9786 * physical address remains valid. We keep a reference
9787 * to it so we can release it later.
9788 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009789 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009790 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009791 vmx->nested.apic_access_page = NULL;
9792 }
9793 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009794 /*
9795 * If translation failed, no matter: This feature asks
9796 * to exit when accessing the given address, and if it
9797 * can never be accessed, this feature won't do
9798 * anything anyway.
9799 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009800 if (!is_error_page(page)) {
9801 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009802 hpa = page_to_phys(vmx->nested.apic_access_page);
9803 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9804 } else {
9805 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9806 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9807 }
9808 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9809 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9810 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9811 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9812 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009813 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009814
9815 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009816 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009817 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009818 vmx->nested.virtual_apic_page = NULL;
9819 }
9820 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009821
9822 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009823 * If translation failed, VM entry will fail because
9824 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9825 * Failing the vm entry is _not_ what the processor
9826 * does but it's basically the only possibility we
9827 * have. We could still enter the guest if CR8 load
9828 * exits are enabled, CR8 store exits are enabled, and
9829 * virtualize APIC access is disabled; in this case
9830 * the processor would never use the TPR shadow and we
9831 * could simply clear the bit from the execution
9832 * control. But such a configuration is useless, so
9833 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009834 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009835 if (!is_error_page(page)) {
9836 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009837 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9838 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9839 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009840 }
9841
Wincy Van705699a2015-02-03 23:58:17 +08009842 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009843 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9844 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009845 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009846 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009847 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009848 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9849 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009850 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009851 vmx->nested.pi_desc_page = page;
9852 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009853 vmx->nested.pi_desc =
9854 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9855 (unsigned long)(vmcs12->posted_intr_desc_addr &
9856 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009857 vmcs_write64(POSTED_INTR_DESC_ADDR,
9858 page_to_phys(vmx->nested.pi_desc_page) +
9859 (unsigned long)(vmcs12->posted_intr_desc_addr &
9860 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009861 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009862 if (cpu_has_vmx_msr_bitmap() &&
9863 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9864 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9865 ;
9866 else
9867 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9868 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009869}
9870
Jan Kiszkaf4124502014-03-07 20:03:13 +01009871static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9872{
9873 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9874 struct vcpu_vmx *vmx = to_vmx(vcpu);
9875
9876 if (vcpu->arch.virtual_tsc_khz == 0)
9877 return;
9878
9879 /* Make sure short timeouts reliably trigger an immediate vmexit.
9880 * hrtimer_start does not guarantee this. */
9881 if (preemption_timeout <= 1) {
9882 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9883 return;
9884 }
9885
9886 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9887 preemption_timeout *= 1000000;
9888 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9889 hrtimer_start(&vmx->nested.preemption_timer,
9890 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9891}
9892
Jim Mattson56a20512017-07-06 16:33:06 -07009893static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9894 struct vmcs12 *vmcs12)
9895{
9896 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9897 return 0;
9898
9899 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9900 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9901 return -EINVAL;
9902
9903 return 0;
9904}
9905
Wincy Van3af18d92015-02-03 23:49:31 +08009906static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9907 struct vmcs12 *vmcs12)
9908{
Wincy Van3af18d92015-02-03 23:49:31 +08009909 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9910 return 0;
9911
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009912 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +08009913 return -EINVAL;
9914
9915 return 0;
9916}
9917
9918/*
9919 * Merge L0's and L1's MSR bitmap, return false to indicate that
9920 * we do not use the hardware.
9921 */
9922static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9923 struct vmcs12 *vmcs12)
9924{
Wincy Van82f0dd42015-02-03 23:57:18 +08009925 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009926 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +02009927 unsigned long *msr_bitmap_l1;
9928 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +08009929
Radim Krčmářd048c092016-08-08 20:16:22 +02009930 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +08009931 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9932 return false;
9933
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009934 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
9935 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +08009936 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +02009937 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009938
Radim Krčmářd048c092016-08-08 20:16:22 +02009939 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
9940
Wincy Vanf2b93282015-02-03 23:56:03 +08009941 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009942 if (nested_cpu_has_apic_reg_virt(vmcs12))
9943 for (msr = 0x800; msr <= 0x8ff; msr++)
9944 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009945 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +08009946 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +02009947
9948 nested_vmx_disable_intercept_for_msr(
9949 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +08009950 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9951 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +02009952
Wincy Van608406e2015-02-03 23:57:51 +08009953 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +08009954 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009955 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009956 APIC_BASE_MSR + (APIC_EOI >> 4),
9957 MSR_TYPE_W);
9958 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009959 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009960 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9961 MSR_TYPE_W);
9962 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009963 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009964 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009965 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009966
9967 return true;
9968}
9969
9970static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9971 struct vmcs12 *vmcs12)
9972{
Wincy Van82f0dd42015-02-03 23:57:18 +08009973 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009974 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009975 !nested_cpu_has_vid(vmcs12) &&
9976 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009977 return 0;
9978
9979 /*
9980 * If virtualize x2apic mode is enabled,
9981 * virtualize apic access must be disabled.
9982 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009983 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9984 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009985 return -EINVAL;
9986
Wincy Van608406e2015-02-03 23:57:51 +08009987 /*
9988 * If virtual interrupt delivery is enabled,
9989 * we must exit on external interrupts.
9990 */
9991 if (nested_cpu_has_vid(vmcs12) &&
9992 !nested_exit_on_intr(vcpu))
9993 return -EINVAL;
9994
Wincy Van705699a2015-02-03 23:58:17 +08009995 /*
9996 * bits 15:8 should be zero in posted_intr_nv,
9997 * the descriptor address has been already checked
9998 * in nested_get_vmcs12_pages.
9999 */
10000 if (nested_cpu_has_posted_intr(vmcs12) &&
10001 (!nested_cpu_has_vid(vmcs12) ||
10002 !nested_exit_intr_ack_set(vcpu) ||
10003 vmcs12->posted_intr_nv & 0xff00))
10004 return -EINVAL;
10005
Wincy Vanf2b93282015-02-03 23:56:03 +080010006 /* tpr shadow is needed by all apicv features. */
10007 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10008 return -EINVAL;
10009
10010 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010011}
10012
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010013static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10014 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010015 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010016{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010017 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010018 u64 count, addr;
10019
10020 if (vmcs12_read_any(vcpu, count_field, &count) ||
10021 vmcs12_read_any(vcpu, addr_field, &addr)) {
10022 WARN_ON(1);
10023 return -EINVAL;
10024 }
10025 if (count == 0)
10026 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010027 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010028 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10029 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010030 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010031 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10032 addr_field, maxphyaddr, count, addr);
10033 return -EINVAL;
10034 }
10035 return 0;
10036}
10037
10038static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10039 struct vmcs12 *vmcs12)
10040{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010041 if (vmcs12->vm_exit_msr_load_count == 0 &&
10042 vmcs12->vm_exit_msr_store_count == 0 &&
10043 vmcs12->vm_entry_msr_load_count == 0)
10044 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010045 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010046 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010047 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010048 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010049 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010050 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010051 return -EINVAL;
10052 return 0;
10053}
10054
Bandan Dasc5f983f2017-05-05 15:25:14 -040010055static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10056 struct vmcs12 *vmcs12)
10057{
10058 u64 address = vmcs12->pml_address;
10059 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10060
10061 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10062 if (!nested_cpu_has_ept(vmcs12) ||
10063 !IS_ALIGNED(address, 4096) ||
10064 address >> maxphyaddr)
10065 return -EINVAL;
10066 }
10067
10068 return 0;
10069}
10070
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010071static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10072 struct vmx_msr_entry *e)
10073{
10074 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010075 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010076 return -EINVAL;
10077 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10078 e->index == MSR_IA32_UCODE_REV)
10079 return -EINVAL;
10080 if (e->reserved != 0)
10081 return -EINVAL;
10082 return 0;
10083}
10084
10085static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10086 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010087{
10088 if (e->index == MSR_FS_BASE ||
10089 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010090 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10091 nested_vmx_msr_check_common(vcpu, e))
10092 return -EINVAL;
10093 return 0;
10094}
10095
10096static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10097 struct vmx_msr_entry *e)
10098{
10099 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10100 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010101 return -EINVAL;
10102 return 0;
10103}
10104
10105/*
10106 * Load guest's/host's msr at nested entry/exit.
10107 * return 0 for success, entry index for failure.
10108 */
10109static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10110{
10111 u32 i;
10112 struct vmx_msr_entry e;
10113 struct msr_data msr;
10114
10115 msr.host_initiated = false;
10116 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010117 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10118 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010119 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010120 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10121 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010122 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010123 }
10124 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010125 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010126 "%s check failed (%u, 0x%x, 0x%x)\n",
10127 __func__, i, e.index, e.reserved);
10128 goto fail;
10129 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010130 msr.index = e.index;
10131 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010132 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010133 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010134 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10135 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010136 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010137 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010138 }
10139 return 0;
10140fail:
10141 return i + 1;
10142}
10143
10144static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10145{
10146 u32 i;
10147 struct vmx_msr_entry e;
10148
10149 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010150 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010151 if (kvm_vcpu_read_guest(vcpu,
10152 gpa + i * sizeof(e),
10153 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010154 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010155 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10156 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010157 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010158 }
10159 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010160 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010161 "%s check failed (%u, 0x%x, 0x%x)\n",
10162 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010163 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010164 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010165 msr_info.host_initiated = false;
10166 msr_info.index = e.index;
10167 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010168 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010169 "%s cannot read MSR (%u, 0x%x)\n",
10170 __func__, i, e.index);
10171 return -EINVAL;
10172 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010173 if (kvm_vcpu_write_guest(vcpu,
10174 gpa + i * sizeof(e) +
10175 offsetof(struct vmx_msr_entry, value),
10176 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010177 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010178 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010179 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010180 return -EINVAL;
10181 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010182 }
10183 return 0;
10184}
10185
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010186static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10187{
10188 unsigned long invalid_mask;
10189
10190 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10191 return (val & invalid_mask) == 0;
10192}
10193
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010194/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010195 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10196 * emulating VM entry into a guest with EPT enabled.
10197 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10198 * is assigned to entry_failure_code on failure.
10199 */
10200static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010201 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010202{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010203 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010204 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010205 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10206 return 1;
10207 }
10208
10209 /*
10210 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10211 * must not be dereferenced.
10212 */
10213 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10214 !nested_ept) {
10215 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10216 *entry_failure_code = ENTRY_FAIL_PDPTE;
10217 return 1;
10218 }
10219 }
10220
10221 vcpu->arch.cr3 = cr3;
10222 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10223 }
10224
10225 kvm_mmu_reset_context(vcpu);
10226 return 0;
10227}
10228
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010229/*
10230 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10231 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010232 * 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 +030010233 * guest in a way that will both be appropriate to L1's requests, and our
10234 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10235 * function also has additional necessary side-effects, like setting various
10236 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010237 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10238 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010239 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010240static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010241 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010242{
10243 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010244 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010245
10246 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10247 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10248 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10249 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10250 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10251 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10252 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10253 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10254 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10255 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10256 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10257 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10258 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10259 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10260 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10261 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10262 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10263 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10264 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10265 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10266 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10267 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10268 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10269 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10270 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10271 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10272 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10273 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10274 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10275 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10276 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10277 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10278 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10279 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10280 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10281 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10282
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010283 if (from_vmentry &&
10284 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010285 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10286 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10287 } else {
10288 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10289 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10290 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010291 if (from_vmentry) {
10292 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10293 vmcs12->vm_entry_intr_info_field);
10294 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10295 vmcs12->vm_entry_exception_error_code);
10296 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10297 vmcs12->vm_entry_instruction_len);
10298 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10299 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010300 vmx->loaded_vmcs->nmi_known_unmasked =
10301 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010302 } else {
10303 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10304 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010305 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010306 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010307 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10308 vmcs12->guest_pending_dbg_exceptions);
10309 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10310 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10311
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010312 if (nested_cpu_has_xsaves(vmcs12))
10313 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010314 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10315
Jan Kiszkaf4124502014-03-07 20:03:13 +010010316 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010317
Paolo Bonzini93140062016-07-06 13:23:51 +020010318 /* Preemption timer setting is only taken from vmcs01. */
10319 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10320 exec_control |= vmcs_config.pin_based_exec_ctrl;
10321 if (vmx->hv_deadline_tsc == -1)
10322 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10323
10324 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010325 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010326 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10327 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010328 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010329 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010330 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010331 }
Wincy Van705699a2015-02-03 23:58:17 +080010332
Jan Kiszkaf4124502014-03-07 20:03:13 +010010333 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010334
Jan Kiszkaf4124502014-03-07 20:03:13 +010010335 vmx->nested.preemption_timer_expired = false;
10336 if (nested_cpu_has_preemption_timer(vmcs12))
10337 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010338
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010339 /*
10340 * Whether page-faults are trapped is determined by a combination of
10341 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10342 * If enable_ept, L0 doesn't care about page faults and we should
10343 * set all of these to L1's desires. However, if !enable_ept, L0 does
10344 * care about (at least some) page faults, and because it is not easy
10345 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10346 * to exit on each and every L2 page fault. This is done by setting
10347 * MASK=MATCH=0 and (see below) EB.PF=1.
10348 * Note that below we don't need special code to set EB.PF beyond the
10349 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10350 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10351 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010352 */
10353 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10354 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10355 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10356 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10357
10358 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf4124502014-03-07 20:03:13 +010010359 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +080010360
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010361 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010362 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010363 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010364 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010365 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010366 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10367 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010368 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010369 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10370 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10371 ~SECONDARY_EXEC_ENABLE_PML;
10372 exec_control |= vmcs12_exec_ctrl;
10373 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010374
Bandan Das27c42a12017-08-03 15:54:42 -040010375 /* All VMFUNCs are currently emulated through L0 vmexits. */
10376 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10377 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10378
Wincy Van608406e2015-02-03 23:57:51 +080010379 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10380 vmcs_write64(EOI_EXIT_BITMAP0,
10381 vmcs12->eoi_exit_bitmap0);
10382 vmcs_write64(EOI_EXIT_BITMAP1,
10383 vmcs12->eoi_exit_bitmap1);
10384 vmcs_write64(EOI_EXIT_BITMAP2,
10385 vmcs12->eoi_exit_bitmap2);
10386 vmcs_write64(EOI_EXIT_BITMAP3,
10387 vmcs12->eoi_exit_bitmap3);
10388 vmcs_write16(GUEST_INTR_STATUS,
10389 vmcs12->guest_intr_status);
10390 }
10391
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010392 /*
10393 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10394 * nested_get_vmcs12_pages will either fix it up or
10395 * remove the VM execution control.
10396 */
10397 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10398 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10399
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010400 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10401 }
10402
10403
10404 /*
10405 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10406 * Some constant fields are set here by vmx_set_constant_host_state().
10407 * Other fields are different per CPU, and will be set later when
10408 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10409 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010410 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010411
10412 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010413 * Set the MSR load/store lists to match L0's settings.
10414 */
10415 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10416 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10417 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10418 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10419 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10420
10421 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010422 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10423 * entry, but only if the current (host) sp changed from the value
10424 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10425 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10426 * here we just force the write to happen on entry.
10427 */
10428 vmx->host_rsp = 0;
10429
10430 exec_control = vmx_exec_control(vmx); /* L0's desires */
10431 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10432 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10433 exec_control &= ~CPU_BASED_TPR_SHADOW;
10434 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010435
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010436 /*
10437 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10438 * nested_get_vmcs12_pages can't fix it up, the illegal value
10439 * will result in a VM entry failure.
10440 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010441 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010442 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010443 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10444 }
10445
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010446 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010447 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010448 * Rather, exit every time.
10449 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010450 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10451 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10452
10453 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10454
10455 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10456 * bitwise-or of what L1 wants to trap for L2, and what we want to
10457 * trap. Note that CR0.TS also needs updating - we do this later.
10458 */
10459 update_exception_bitmap(vcpu);
10460 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10461 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10462
Nadav Har'El8049d652013-08-05 11:07:06 +030010463 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10464 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10465 * bits are further modified by vmx_set_efer() below.
10466 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010467 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010468
10469 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10470 * emulated by vmx_set_efer(), below.
10471 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010472 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010473 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10474 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010475 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10476
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010477 if (from_vmentry &&
10478 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010479 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010480 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010481 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010482 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010483 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010484
10485 set_cr4_guest_host_mask(vmx);
10486
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010487 if (from_vmentry &&
10488 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010489 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10490
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010491 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10492 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010493 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010494 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010495 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010496 if (kvm_has_tsc_control)
10497 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010498
10499 if (enable_vpid) {
10500 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010501 * There is no direct mapping between vpid02 and vpid12, the
10502 * vpid02 is per-vCPU for L0 and reused while the value of
10503 * vpid12 is changed w/ one invvpid during nested vmentry.
10504 * The vpid12 is allocated by L1 for L2, so it will not
10505 * influence global bitmap(for vpid01 and vpid02 allocation)
10506 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010507 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010508 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10509 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10510 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10511 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10512 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10513 }
10514 } else {
10515 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10516 vmx_flush_tlb(vcpu);
10517 }
10518
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010519 }
10520
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010521 if (enable_pml) {
10522 /*
10523 * Conceptually we want to copy the PML address and index from
10524 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10525 * since we always flush the log on each vmexit, this happens
10526 * to be equivalent to simply resetting the fields in vmcs02.
10527 */
10528 ASSERT(vmx->pml_pg);
10529 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10530 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10531 }
10532
Nadav Har'El155a97a2013-08-05 11:07:16 +030010533 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010534 if (nested_ept_init_mmu_context(vcpu)) {
10535 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10536 return 1;
10537 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010538 } else if (nested_cpu_has2(vmcs12,
10539 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10540 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010541 }
10542
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010543 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010544 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10545 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010546 * The CR0_READ_SHADOW is what L2 should have expected to read given
10547 * the specifications by L1; It's not enough to take
10548 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10549 * have more bits than L1 expected.
10550 */
10551 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10552 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10553
10554 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10555 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10556
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010557 if (from_vmentry &&
10558 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010559 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10560 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10561 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10562 else
10563 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10564 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10565 vmx_set_efer(vcpu, vcpu->arch.efer);
10566
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010567 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010568 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010569 entry_failure_code))
10570 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010571
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010572 if (!enable_ept)
10573 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10574
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010575 /*
10576 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10577 */
10578 if (enable_ept) {
10579 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10580 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10581 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10582 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10583 }
10584
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010585 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10586 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010587 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010588}
10589
Jim Mattsonca0bde22016-11-30 12:03:46 -080010590static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10591{
10592 struct vcpu_vmx *vmx = to_vmx(vcpu);
10593
10594 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10595 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10596 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10597
Jim Mattson56a20512017-07-06 16:33:06 -070010598 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10599 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10600
Jim Mattsonca0bde22016-11-30 12:03:46 -080010601 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10602 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10603
10604 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10605 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10606
10607 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10608 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10609
Bandan Dasc5f983f2017-05-05 15:25:14 -040010610 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10611 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10612
Jim Mattsonca0bde22016-11-30 12:03:46 -080010613 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10614 vmx->nested.nested_vmx_procbased_ctls_low,
10615 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010616 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10617 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10618 vmx->nested.nested_vmx_secondary_ctls_low,
10619 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010620 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10621 vmx->nested.nested_vmx_pinbased_ctls_low,
10622 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10623 !vmx_control_verify(vmcs12->vm_exit_controls,
10624 vmx->nested.nested_vmx_exit_ctls_low,
10625 vmx->nested.nested_vmx_exit_ctls_high) ||
10626 !vmx_control_verify(vmcs12->vm_entry_controls,
10627 vmx->nested.nested_vmx_entry_ctls_low,
10628 vmx->nested.nested_vmx_entry_ctls_high))
10629 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10630
Bandan Das41ab9372017-08-03 15:54:43 -040010631 if (nested_cpu_has_vmfunc(vmcs12)) {
10632 if (vmcs12->vm_function_control &
10633 ~vmx->nested.nested_vmx_vmfunc_controls)
10634 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10635
10636 if (nested_cpu_has_eptp_switching(vmcs12)) {
10637 if (!nested_cpu_has_ept(vmcs12) ||
10638 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10639 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10640 }
10641 }
Bandan Das27c42a12017-08-03 15:54:42 -040010642
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010643 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10644 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10645
Jim Mattsonca0bde22016-11-30 12:03:46 -080010646 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10647 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10648 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10649 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10650
10651 return 0;
10652}
10653
10654static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10655 u32 *exit_qual)
10656{
10657 bool ia32e;
10658
10659 *exit_qual = ENTRY_FAIL_DEFAULT;
10660
10661 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10662 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10663 return 1;
10664
10665 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10666 vmcs12->vmcs_link_pointer != -1ull) {
10667 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10668 return 1;
10669 }
10670
10671 /*
10672 * If the load IA32_EFER VM-entry control is 1, the following checks
10673 * are performed on the field for the IA32_EFER MSR:
10674 * - Bits reserved in the IA32_EFER MSR must be 0.
10675 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10676 * the IA-32e mode guest VM-exit control. It must also be identical
10677 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10678 * CR0.PG) is 1.
10679 */
10680 if (to_vmx(vcpu)->nested.nested_run_pending &&
10681 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10682 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10683 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10684 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10685 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10686 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10687 return 1;
10688 }
10689
10690 /*
10691 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10692 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10693 * the values of the LMA and LME bits in the field must each be that of
10694 * the host address-space size VM-exit control.
10695 */
10696 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10697 ia32e = (vmcs12->vm_exit_controls &
10698 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10699 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10700 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10701 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10702 return 1;
10703 }
10704
10705 return 0;
10706}
10707
Jim Mattson858e25c2016-11-30 12:03:47 -080010708static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10709{
10710 struct vcpu_vmx *vmx = to_vmx(vcpu);
10711 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10712 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010713 u32 msr_entry_idx;
10714 u32 exit_qual;
10715
10716 vmcs02 = nested_get_current_vmcs02(vmx);
10717 if (!vmcs02)
10718 return -ENOMEM;
10719
10720 enter_guest_mode(vcpu);
10721
10722 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10723 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10724
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010725 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010726 vmx_segment_cache_clear(vmx);
10727
10728 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10729 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010730 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010731 nested_vmx_entry_failure(vcpu, vmcs12,
10732 EXIT_REASON_INVALID_STATE, exit_qual);
10733 return 1;
10734 }
10735
10736 nested_get_vmcs12_pages(vcpu, vmcs12);
10737
10738 msr_entry_idx = nested_vmx_load_msr(vcpu,
10739 vmcs12->vm_entry_msr_load_addr,
10740 vmcs12->vm_entry_msr_load_count);
10741 if (msr_entry_idx) {
10742 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010743 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010744 nested_vmx_entry_failure(vcpu, vmcs12,
10745 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10746 return 1;
10747 }
10748
Jim Mattson858e25c2016-11-30 12:03:47 -080010749 /*
10750 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10751 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10752 * returned as far as L1 is concerned. It will only return (and set
10753 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10754 */
10755 return 0;
10756}
10757
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010758/*
10759 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10760 * for running an L2 nested guest.
10761 */
10762static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10763{
10764 struct vmcs12 *vmcs12;
10765 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010766 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010767 u32 exit_qual;
10768 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010769
Kyle Hueyeb277562016-11-29 12:40:39 -080010770 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010771 return 1;
10772
Kyle Hueyeb277562016-11-29 12:40:39 -080010773 if (!nested_vmx_check_vmcs12(vcpu))
10774 goto out;
10775
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010776 vmcs12 = get_vmcs12(vcpu);
10777
Abel Gordon012f83c2013-04-18 14:39:25 +030010778 if (enable_shadow_vmcs)
10779 copy_shadow_to_vmcs12(vmx);
10780
Nadav Har'El7c177932011-05-25 23:12:04 +030010781 /*
10782 * The nested entry process starts with enforcing various prerequisites
10783 * on vmcs12 as required by the Intel SDM, and act appropriately when
10784 * they fail: As the SDM explains, some conditions should cause the
10785 * instruction to fail, while others will cause the instruction to seem
10786 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10787 * To speed up the normal (success) code path, we should avoid checking
10788 * for misconfigurations which will anyway be caught by the processor
10789 * when using the merged vmcs02.
10790 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010791 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10792 nested_vmx_failValid(vcpu,
10793 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10794 goto out;
10795 }
10796
Nadav Har'El7c177932011-05-25 23:12:04 +030010797 if (vmcs12->launch_state == launch) {
10798 nested_vmx_failValid(vcpu,
10799 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10800 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010801 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010802 }
10803
Jim Mattsonca0bde22016-11-30 12:03:46 -080010804 ret = check_vmentry_prereqs(vcpu, vmcs12);
10805 if (ret) {
10806 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010807 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010808 }
10809
Nadav Har'El7c177932011-05-25 23:12:04 +030010810 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010811 * After this point, the trap flag no longer triggers a singlestep trap
10812 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10813 * This is not 100% correct; for performance reasons, we delegate most
10814 * of the checks on host state to the processor. If those fail,
10815 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010816 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010817 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010818
Jim Mattsonca0bde22016-11-30 12:03:46 -080010819 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10820 if (ret) {
10821 nested_vmx_entry_failure(vcpu, vmcs12,
10822 EXIT_REASON_INVALID_STATE, exit_qual);
10823 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010824 }
10825
10826 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010827 * We're finally done with prerequisite checking, and can start with
10828 * the nested entry.
10829 */
10830
Jim Mattson858e25c2016-11-30 12:03:47 -080010831 ret = enter_vmx_non_root_mode(vcpu, true);
10832 if (ret)
10833 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010834
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010835 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010836 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010837
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010838 vmx->nested.nested_run_pending = 1;
10839
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010840 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010841
10842out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010843 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010844}
10845
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010846/*
10847 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10848 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10849 * This function returns the new value we should put in vmcs12.guest_cr0.
10850 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10851 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10852 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10853 * didn't trap the bit, because if L1 did, so would L0).
10854 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10855 * been modified by L2, and L1 knows it. So just leave the old value of
10856 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10857 * isn't relevant, because if L0 traps this bit it can set it to anything.
10858 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10859 * changed these bits, and therefore they need to be updated, but L0
10860 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10861 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10862 */
10863static inline unsigned long
10864vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10865{
10866 return
10867 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10868 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10869 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10870 vcpu->arch.cr0_guest_owned_bits));
10871}
10872
10873static inline unsigned long
10874vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10875{
10876 return
10877 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10878 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10879 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10880 vcpu->arch.cr4_guest_owned_bits));
10881}
10882
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010883static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10884 struct vmcs12 *vmcs12)
10885{
10886 u32 idt_vectoring;
10887 unsigned int nr;
10888
Gleb Natapov851eb6672013-09-25 12:51:34 +030010889 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010890 nr = vcpu->arch.exception.nr;
10891 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10892
10893 if (kvm_exception_is_soft(nr)) {
10894 vmcs12->vm_exit_instruction_len =
10895 vcpu->arch.event_exit_inst_len;
10896 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10897 } else
10898 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10899
10900 if (vcpu->arch.exception.has_error_code) {
10901 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10902 vmcs12->idt_vectoring_error_code =
10903 vcpu->arch.exception.error_code;
10904 }
10905
10906 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010907 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010908 vmcs12->idt_vectoring_info_field =
10909 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10910 } else if (vcpu->arch.interrupt.pending) {
10911 nr = vcpu->arch.interrupt.nr;
10912 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10913
10914 if (vcpu->arch.interrupt.soft) {
10915 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10916 vmcs12->vm_entry_instruction_len =
10917 vcpu->arch.event_exit_inst_len;
10918 } else
10919 idt_vectoring |= INTR_TYPE_EXT_INTR;
10920
10921 vmcs12->idt_vectoring_info_field = idt_vectoring;
10922 }
10923}
10924
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010925static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10926{
10927 struct vcpu_vmx *vmx = to_vmx(vcpu);
10928
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010929 if (vcpu->arch.exception.pending ||
10930 vcpu->arch.nmi_injected ||
10931 vcpu->arch.interrupt.pending)
10932 return -EBUSY;
10933
Jan Kiszkaf4124502014-03-07 20:03:13 +010010934 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10935 vmx->nested.preemption_timer_expired) {
10936 if (vmx->nested.nested_run_pending)
10937 return -EBUSY;
10938 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10939 return 0;
10940 }
10941
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010942 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010943 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010944 return -EBUSY;
10945 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10946 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10947 INTR_INFO_VALID_MASK, 0);
10948 /*
10949 * The NMI-triggered VM exit counts as injection:
10950 * clear this one and block further NMIs.
10951 */
10952 vcpu->arch.nmi_pending = 0;
10953 vmx_set_nmi_mask(vcpu, true);
10954 return 0;
10955 }
10956
10957 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10958 nested_exit_on_intr(vcpu)) {
10959 if (vmx->nested.nested_run_pending)
10960 return -EBUSY;
10961 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010962 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010963 }
10964
David Hildenbrand6342c502017-01-25 11:58:58 +010010965 vmx_complete_nested_posted_interrupt(vcpu);
10966 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010967}
10968
Jan Kiszkaf4124502014-03-07 20:03:13 +010010969static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10970{
10971 ktime_t remaining =
10972 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10973 u64 value;
10974
10975 if (ktime_to_ns(remaining) <= 0)
10976 return 0;
10977
10978 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10979 do_div(value, 1000000);
10980 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10981}
10982
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010983/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010984 * Update the guest state fields of vmcs12 to reflect changes that
10985 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
10986 * VM-entry controls is also updated, since this is really a guest
10987 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010988 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010989static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010990{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010991 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10992 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10993
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010994 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10995 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10996 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10997
10998 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10999 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11000 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11001 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11002 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11003 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11004 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11005 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11006 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11007 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11008 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11009 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11010 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11011 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11012 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11013 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11014 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11015 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11016 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11017 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11018 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11019 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11020 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11021 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11022 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11023 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11024 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11025 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11026 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11027 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11028 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11029 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11030 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11031 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11032 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11033 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11034
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011035 vmcs12->guest_interruptibility_info =
11036 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11037 vmcs12->guest_pending_dbg_exceptions =
11038 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011039 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11040 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11041 else
11042 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011043
Jan Kiszkaf4124502014-03-07 20:03:13 +010011044 if (nested_cpu_has_preemption_timer(vmcs12)) {
11045 if (vmcs12->vm_exit_controls &
11046 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11047 vmcs12->vmx_preemption_timer_value =
11048 vmx_get_preemption_timer_value(vcpu);
11049 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11050 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011051
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011052 /*
11053 * In some cases (usually, nested EPT), L2 is allowed to change its
11054 * own CR3 without exiting. If it has changed it, we must keep it.
11055 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11056 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11057 *
11058 * Additionally, restore L2's PDPTR to vmcs12.
11059 */
11060 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011061 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011062 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11063 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11064 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11065 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11066 }
11067
Jim Mattsond281e132017-06-01 12:44:46 -070011068 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011069
Wincy Van608406e2015-02-03 23:57:51 +080011070 if (nested_cpu_has_vid(vmcs12))
11071 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11072
Jan Kiszkac18911a2013-03-13 16:06:41 +010011073 vmcs12->vm_entry_controls =
11074 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011075 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011076
Jan Kiszka2996fca2014-06-16 13:59:43 +020011077 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11078 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11079 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11080 }
11081
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011082 /* TODO: These cannot have changed unless we have MSR bitmaps and
11083 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011084 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011085 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011086 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11087 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011088 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11089 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11090 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011091 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011092 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011093}
11094
11095/*
11096 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11097 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11098 * and this function updates it to reflect the changes to the guest state while
11099 * L2 was running (and perhaps made some exits which were handled directly by L0
11100 * without going back to L1), and to reflect the exit reason.
11101 * Note that we do not have to copy here all VMCS fields, just those that
11102 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11103 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11104 * which already writes to vmcs12 directly.
11105 */
11106static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11107 u32 exit_reason, u32 exit_intr_info,
11108 unsigned long exit_qualification)
11109{
11110 /* update guest state fields: */
11111 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011112
11113 /* update exit information fields: */
11114
Jan Kiszka533558b2014-01-04 18:47:20 +010011115 vmcs12->vm_exit_reason = exit_reason;
11116 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011117 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011118
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011119 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011120 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11121 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11122
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011123 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011124 vmcs12->launch_state = 1;
11125
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011126 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11127 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011128 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011129
11130 /*
11131 * Transfer the event that L0 or L1 may wanted to inject into
11132 * L2 to IDT_VECTORING_INFO_FIELD.
11133 */
11134 vmcs12_save_pending_event(vcpu, vmcs12);
11135 }
11136
11137 /*
11138 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11139 * preserved above and would only end up incorrectly in L1.
11140 */
11141 vcpu->arch.nmi_injected = false;
11142 kvm_clear_exception_queue(vcpu);
11143 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011144}
11145
11146/*
11147 * A part of what we need to when the nested L2 guest exits and we want to
11148 * run its L1 parent, is to reset L1's guest state to the host state specified
11149 * in vmcs12.
11150 * This function is to be called not only on normal nested exit, but also on
11151 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11152 * Failures During or After Loading Guest State").
11153 * This function should be called when the active VMCS is L1's (vmcs01).
11154 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011155static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11156 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011157{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011158 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011159 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011160
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011161 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11162 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011163 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011164 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11165 else
11166 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11167 vmx_set_efer(vcpu, vcpu->arch.efer);
11168
11169 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11170 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011171 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011172 /*
11173 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011174 * actually changed, because vmx_set_cr0 refers to efer set above.
11175 *
11176 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11177 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011178 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011179 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011180 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011181
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011182 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011183 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
11184 kvm_set_cr4(vcpu, vmcs12->host_cr4);
11185
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011186 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011187
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011188 /*
11189 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11190 * couldn't have changed.
11191 */
11192 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11193 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011194
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011195 if (!enable_ept)
11196 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11197
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011198 if (enable_vpid) {
11199 /*
11200 * Trivially support vpid by letting L2s share their parent
11201 * L1's vpid. TODO: move to a more elaborate solution, giving
11202 * each L2 its own vpid and exposing the vpid feature to L1.
11203 */
11204 vmx_flush_tlb(vcpu);
11205 }
Wincy Van06a55242017-04-28 13:13:59 +080011206 /* Restore posted intr vector. */
11207 if (nested_cpu_has_posted_intr(vmcs12))
11208 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011209
11210 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11211 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11212 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11213 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11214 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011215
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011216 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11217 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11218 vmcs_write64(GUEST_BNDCFGS, 0);
11219
Jan Kiszka44811c02013-08-04 17:17:27 +020011220 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011221 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011222 vcpu->arch.pat = vmcs12->host_ia32_pat;
11223 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011224 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11225 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11226 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011227
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011228 /* Set L1 segment info according to Intel SDM
11229 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11230 seg = (struct kvm_segment) {
11231 .base = 0,
11232 .limit = 0xFFFFFFFF,
11233 .selector = vmcs12->host_cs_selector,
11234 .type = 11,
11235 .present = 1,
11236 .s = 1,
11237 .g = 1
11238 };
11239 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11240 seg.l = 1;
11241 else
11242 seg.db = 1;
11243 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11244 seg = (struct kvm_segment) {
11245 .base = 0,
11246 .limit = 0xFFFFFFFF,
11247 .type = 3,
11248 .present = 1,
11249 .s = 1,
11250 .db = 1,
11251 .g = 1
11252 };
11253 seg.selector = vmcs12->host_ds_selector;
11254 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11255 seg.selector = vmcs12->host_es_selector;
11256 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11257 seg.selector = vmcs12->host_ss_selector;
11258 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11259 seg.selector = vmcs12->host_fs_selector;
11260 seg.base = vmcs12->host_fs_base;
11261 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11262 seg.selector = vmcs12->host_gs_selector;
11263 seg.base = vmcs12->host_gs_base;
11264 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11265 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011266 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011267 .limit = 0x67,
11268 .selector = vmcs12->host_tr_selector,
11269 .type = 11,
11270 .present = 1
11271 };
11272 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11273
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011274 kvm_set_dr(vcpu, 7, 0x400);
11275 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011276
Wincy Van3af18d92015-02-03 23:49:31 +080011277 if (cpu_has_vmx_msr_bitmap())
11278 vmx_set_msr_bitmap(vcpu);
11279
Wincy Vanff651cb2014-12-11 08:52:58 +030011280 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11281 vmcs12->vm_exit_msr_load_count))
11282 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011283}
11284
11285/*
11286 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11287 * and modify vmcs12 to make it see what it would expect to see there if
11288 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11289 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011290static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11291 u32 exit_intr_info,
11292 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011293{
11294 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011295 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011296 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011297
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011298 /* trying to cancel vmlaunch/vmresume is a bug */
11299 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11300
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011301 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011302 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11303 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011304
Wincy Vanff651cb2014-12-11 08:52:58 +030011305 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11306 vmcs12->vm_exit_msr_store_count))
11307 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11308
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011309 if (unlikely(vmx->fail))
11310 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11311
David Hildenbrand1279a6b12017-03-20 10:00:08 +010011312 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Wanpeng Lif3380ca2014-08-05 12:42:23 +080011313
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011314 /*
11315 * TODO: SDM says that with acknowledge interrupt on exit, bit 31 of
11316 * the VM-exit interrupt information (valid interrupt) is always set to
11317 * 1 on EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't need
11318 * kvm_cpu_has_interrupt(). See the commit message for details.
11319 */
11320 if (nested_exit_intr_ack_set(vcpu) &&
11321 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11322 kvm_cpu_has_interrupt(vcpu)) {
Bandan Das77b0f5d2014-04-19 18:17:45 -040011323 int irq = kvm_cpu_get_interrupt(vcpu);
11324 WARN_ON(irq < 0);
11325 vmcs12->vm_exit_intr_info = irq |
11326 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11327 }
11328
Jan Kiszka542060e2014-01-04 18:47:21 +010011329 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11330 vmcs12->exit_qualification,
11331 vmcs12->idt_vectoring_info_field,
11332 vmcs12->vm_exit_intr_info,
11333 vmcs12->vm_exit_intr_error_code,
11334 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011335
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011336 vm_entry_controls_reset_shadow(vmx);
11337 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011338 vmx_segment_cache_clear(vmx);
11339
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011340 /* if no vmcs02 cache requested, remove the one we used */
11341 if (VMCS02_POOL_SIZE == 0)
11342 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11343
11344 load_vmcs12_host_state(vcpu, vmcs12);
11345
Paolo Bonzini93140062016-07-06 13:23:51 +020011346 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011347 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11348 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011349 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020011350 if (vmx->hv_deadline_tsc == -1)
11351 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11352 PIN_BASED_VMX_PREEMPTION_TIMER);
11353 else
11354 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11355 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011356 if (kvm_has_tsc_control)
11357 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011358
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011359 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11360 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11361 vmx_set_virtual_x2apic_mode(vcpu,
11362 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011363 } else if (!nested_cpu_has_ept(vmcs12) &&
11364 nested_cpu_has2(vmcs12,
11365 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11366 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011367 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011368
11369 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11370 vmx->host_rsp = 0;
11371
11372 /* Unpin physical memory we referred to in vmcs02 */
11373 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011374 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011375 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011376 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011377 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011378 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011379 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011380 }
Wincy Van705699a2015-02-03 23:58:17 +080011381 if (vmx->nested.pi_desc_page) {
11382 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011383 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011384 vmx->nested.pi_desc_page = NULL;
11385 vmx->nested.pi_desc = NULL;
11386 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011387
11388 /*
Tang Chen38b99172014-09-24 15:57:54 +080011389 * We are now running in L2, mmu_notifier will force to reload the
11390 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11391 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011392 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011393
11394 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011395 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11396 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11397 * success or failure flag accordingly.
11398 */
11399 if (unlikely(vmx->fail)) {
11400 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011401 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011402 } else
11403 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011404 if (enable_shadow_vmcs)
11405 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011406
11407 /* in case we halted in L2 */
11408 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011409}
11410
Nadav Har'El7c177932011-05-25 23:12:04 +030011411/*
Jan Kiszka42124922014-01-04 18:47:19 +010011412 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11413 */
11414static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11415{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011416 if (is_guest_mode(vcpu)) {
11417 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011418 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011419 }
Jan Kiszka42124922014-01-04 18:47:19 +010011420 free_nested(to_vmx(vcpu));
11421}
11422
11423/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011424 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11425 * 23.7 "VM-entry failures during or after loading guest state" (this also
11426 * lists the acceptable exit-reason and exit-qualification parameters).
11427 * It should only be called before L2 actually succeeded to run, and when
11428 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11429 */
11430static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11431 struct vmcs12 *vmcs12,
11432 u32 reason, unsigned long qualification)
11433{
11434 load_vmcs12_host_state(vcpu, vmcs12);
11435 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11436 vmcs12->exit_qualification = qualification;
11437 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011438 if (enable_shadow_vmcs)
11439 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011440}
11441
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011442static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11443 struct x86_instruction_info *info,
11444 enum x86_intercept_stage stage)
11445{
11446 return X86EMUL_CONTINUE;
11447}
11448
Yunhong Jiang64672c92016-06-13 14:19:59 -070011449#ifdef CONFIG_X86_64
11450/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11451static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11452 u64 divisor, u64 *result)
11453{
11454 u64 low = a << shift, high = a >> (64 - shift);
11455
11456 /* To avoid the overflow on divq */
11457 if (high >= divisor)
11458 return 1;
11459
11460 /* Low hold the result, high hold rem which is discarded */
11461 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11462 "rm" (divisor), "0" (low), "1" (high));
11463 *result = low;
11464
11465 return 0;
11466}
11467
11468static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11469{
11470 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011471 u64 tscl = rdtsc();
11472 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11473 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011474
11475 /* Convert to host delta tsc if tsc scaling is enabled */
11476 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11477 u64_shl_div_u64(delta_tsc,
11478 kvm_tsc_scaling_ratio_frac_bits,
11479 vcpu->arch.tsc_scaling_ratio,
11480 &delta_tsc))
11481 return -ERANGE;
11482
11483 /*
11484 * If the delta tsc can't fit in the 32 bit after the multi shift,
11485 * we can't use the preemption timer.
11486 * It's possible that it fits on later vmentries, but checking
11487 * on every vmentry is costly so we just use an hrtimer.
11488 */
11489 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11490 return -ERANGE;
11491
11492 vmx->hv_deadline_tsc = tscl + delta_tsc;
11493 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11494 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011495
11496 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011497}
11498
11499static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11500{
11501 struct vcpu_vmx *vmx = to_vmx(vcpu);
11502 vmx->hv_deadline_tsc = -1;
11503 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11504 PIN_BASED_VMX_PREEMPTION_TIMER);
11505}
11506#endif
11507
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011508static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011509{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011510 if (ple_gap)
11511 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011512}
11513
Kai Huang843e4332015-01-28 10:54:28 +080011514static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11515 struct kvm_memory_slot *slot)
11516{
11517 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11518 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11519}
11520
11521static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11522 struct kvm_memory_slot *slot)
11523{
11524 kvm_mmu_slot_set_dirty(kvm, slot);
11525}
11526
11527static void vmx_flush_log_dirty(struct kvm *kvm)
11528{
11529 kvm_flush_pml_buffers(kvm);
11530}
11531
Bandan Dasc5f983f2017-05-05 15:25:14 -040011532static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11533{
11534 struct vmcs12 *vmcs12;
11535 struct vcpu_vmx *vmx = to_vmx(vcpu);
11536 gpa_t gpa;
11537 struct page *page = NULL;
11538 u64 *pml_address;
11539
11540 if (is_guest_mode(vcpu)) {
11541 WARN_ON_ONCE(vmx->nested.pml_full);
11542
11543 /*
11544 * Check if PML is enabled for the nested guest.
11545 * Whether eptp bit 6 is set is already checked
11546 * as part of A/D emulation.
11547 */
11548 vmcs12 = get_vmcs12(vcpu);
11549 if (!nested_cpu_has_pml(vmcs12))
11550 return 0;
11551
Dan Carpenter47698862017-05-10 22:43:17 +030011552 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011553 vmx->nested.pml_full = true;
11554 return 1;
11555 }
11556
11557 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11558
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011559 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11560 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011561 return 0;
11562
11563 pml_address = kmap(page);
11564 pml_address[vmcs12->guest_pml_index--] = gpa;
11565 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011566 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011567 }
11568
11569 return 0;
11570}
11571
Kai Huang843e4332015-01-28 10:54:28 +080011572static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11573 struct kvm_memory_slot *memslot,
11574 gfn_t offset, unsigned long mask)
11575{
11576 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11577}
11578
Feng Wuefc64402015-09-18 22:29:51 +080011579/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011580 * This routine does the following things for vCPU which is going
11581 * to be blocked if VT-d PI is enabled.
11582 * - Store the vCPU to the wakeup list, so when interrupts happen
11583 * we can find the right vCPU to wake up.
11584 * - Change the Posted-interrupt descriptor as below:
11585 * 'NDST' <-- vcpu->pre_pcpu
11586 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11587 * - If 'ON' is set during this process, which means at least one
11588 * interrupt is posted for this vCPU, we cannot block it, in
11589 * this case, return 1, otherwise, return 0.
11590 *
11591 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011592static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011593{
11594 unsigned long flags;
11595 unsigned int dest;
11596 struct pi_desc old, new;
11597 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11598
11599 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011600 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11601 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011602 return 0;
11603
11604 vcpu->pre_pcpu = vcpu->cpu;
11605 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11606 vcpu->pre_pcpu), flags);
11607 list_add_tail(&vcpu->blocked_vcpu_list,
11608 &per_cpu(blocked_vcpu_on_cpu,
11609 vcpu->pre_pcpu));
11610 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11611 vcpu->pre_pcpu), flags);
11612
11613 do {
11614 old.control = new.control = pi_desc->control;
11615
11616 /*
11617 * We should not block the vCPU if
11618 * an interrupt is posted for it.
11619 */
11620 if (pi_test_on(pi_desc) == 1) {
11621 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11622 vcpu->pre_pcpu), flags);
11623 list_del(&vcpu->blocked_vcpu_list);
11624 spin_unlock_irqrestore(
11625 &per_cpu(blocked_vcpu_on_cpu_lock,
11626 vcpu->pre_pcpu), flags);
11627 vcpu->pre_pcpu = -1;
11628
11629 return 1;
11630 }
11631
11632 WARN((pi_desc->sn == 1),
11633 "Warning: SN field of posted-interrupts "
11634 "is set before blocking\n");
11635
11636 /*
11637 * Since vCPU can be preempted during this process,
11638 * vcpu->cpu could be different with pre_pcpu, we
11639 * need to set pre_pcpu as the destination of wakeup
11640 * notification event, then we can find the right vCPU
11641 * to wakeup in wakeup handler if interrupts happen
11642 * when the vCPU is in blocked state.
11643 */
11644 dest = cpu_physical_id(vcpu->pre_pcpu);
11645
11646 if (x2apic_enabled())
11647 new.ndst = dest;
11648 else
11649 new.ndst = (dest << 8) & 0xFF00;
11650
11651 /* set 'NV' to 'wakeup vector' */
11652 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11653 } while (cmpxchg(&pi_desc->control, old.control,
11654 new.control) != old.control);
11655
11656 return 0;
11657}
11658
Yunhong Jiangbc225122016-06-13 14:19:58 -070011659static int vmx_pre_block(struct kvm_vcpu *vcpu)
11660{
11661 if (pi_pre_block(vcpu))
11662 return 1;
11663
Yunhong Jiang64672c92016-06-13 14:19:59 -070011664 if (kvm_lapic_hv_timer_in_use(vcpu))
11665 kvm_lapic_switch_to_sw_timer(vcpu);
11666
Yunhong Jiangbc225122016-06-13 14:19:58 -070011667 return 0;
11668}
11669
11670static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011671{
11672 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11673 struct pi_desc old, new;
11674 unsigned int dest;
11675 unsigned long flags;
11676
11677 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011678 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11679 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011680 return;
11681
11682 do {
11683 old.control = new.control = pi_desc->control;
11684
11685 dest = cpu_physical_id(vcpu->cpu);
11686
11687 if (x2apic_enabled())
11688 new.ndst = dest;
11689 else
11690 new.ndst = (dest << 8) & 0xFF00;
11691
11692 /* Allow posting non-urgent interrupts */
11693 new.sn = 0;
11694
11695 /* set 'NV' to 'notification vector' */
11696 new.nv = POSTED_INTR_VECTOR;
11697 } while (cmpxchg(&pi_desc->control, old.control,
11698 new.control) != old.control);
11699
11700 if(vcpu->pre_pcpu != -1) {
11701 spin_lock_irqsave(
11702 &per_cpu(blocked_vcpu_on_cpu_lock,
11703 vcpu->pre_pcpu), flags);
11704 list_del(&vcpu->blocked_vcpu_list);
11705 spin_unlock_irqrestore(
11706 &per_cpu(blocked_vcpu_on_cpu_lock,
11707 vcpu->pre_pcpu), flags);
11708 vcpu->pre_pcpu = -1;
11709 }
11710}
11711
Yunhong Jiangbc225122016-06-13 14:19:58 -070011712static void vmx_post_block(struct kvm_vcpu *vcpu)
11713{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011714 if (kvm_x86_ops->set_hv_timer)
11715 kvm_lapic_switch_to_hv_timer(vcpu);
11716
Yunhong Jiangbc225122016-06-13 14:19:58 -070011717 pi_post_block(vcpu);
11718}
11719
Feng Wubf9f6ac2015-09-18 22:29:55 +080011720/*
Feng Wuefc64402015-09-18 22:29:51 +080011721 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11722 *
11723 * @kvm: kvm
11724 * @host_irq: host irq of the interrupt
11725 * @guest_irq: gsi of the interrupt
11726 * @set: set or unset PI
11727 * returns 0 on success, < 0 on failure
11728 */
11729static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11730 uint32_t guest_irq, bool set)
11731{
11732 struct kvm_kernel_irq_routing_entry *e;
11733 struct kvm_irq_routing_table *irq_rt;
11734 struct kvm_lapic_irq irq;
11735 struct kvm_vcpu *vcpu;
11736 struct vcpu_data vcpu_info;
11737 int idx, ret = -EINVAL;
11738
11739 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011740 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11741 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011742 return 0;
11743
11744 idx = srcu_read_lock(&kvm->irq_srcu);
11745 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11746 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11747
11748 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11749 if (e->type != KVM_IRQ_ROUTING_MSI)
11750 continue;
11751 /*
11752 * VT-d PI cannot support posting multicast/broadcast
11753 * interrupts to a vCPU, we still use interrupt remapping
11754 * for these kind of interrupts.
11755 *
11756 * For lowest-priority interrupts, we only support
11757 * those with single CPU as the destination, e.g. user
11758 * configures the interrupts via /proc/irq or uses
11759 * irqbalance to make the interrupts single-CPU.
11760 *
11761 * We will support full lowest-priority interrupt later.
11762 */
11763
Radim Krčmář371313132016-07-12 22:09:27 +020011764 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011765 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11766 /*
11767 * Make sure the IRTE is in remapped mode if
11768 * we don't handle it in posted mode.
11769 */
11770 ret = irq_set_vcpu_affinity(host_irq, NULL);
11771 if (ret < 0) {
11772 printk(KERN_INFO
11773 "failed to back to remapped mode, irq: %u\n",
11774 host_irq);
11775 goto out;
11776 }
11777
Feng Wuefc64402015-09-18 22:29:51 +080011778 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011779 }
Feng Wuefc64402015-09-18 22:29:51 +080011780
11781 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11782 vcpu_info.vector = irq.vector;
11783
Feng Wub6ce9782016-01-25 16:53:35 +080011784 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011785 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11786
11787 if (set)
11788 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11789 else {
11790 /* suppress notification event before unposting */
11791 pi_set_sn(vcpu_to_pi_desc(vcpu));
11792 ret = irq_set_vcpu_affinity(host_irq, NULL);
11793 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11794 }
11795
11796 if (ret < 0) {
11797 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11798 __func__);
11799 goto out;
11800 }
11801 }
11802
11803 ret = 0;
11804out:
11805 srcu_read_unlock(&kvm->irq_srcu, idx);
11806 return ret;
11807}
11808
Ashok Rajc45dcc72016-06-22 14:59:56 +080011809static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11810{
11811 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11812 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11813 FEATURE_CONTROL_LMCE;
11814 else
11815 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11816 ~FEATURE_CONTROL_LMCE;
11817}
11818
Kees Cook404f6aa2016-08-08 16:29:06 -070011819static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011820 .cpu_has_kvm_support = cpu_has_kvm_support,
11821 .disabled_by_bios = vmx_disabled_by_bios,
11822 .hardware_setup = hardware_setup,
11823 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011824 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011825 .hardware_enable = hardware_enable,
11826 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011827 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011828 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011829
11830 .vcpu_create = vmx_create_vcpu,
11831 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011832 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011833
Avi Kivity04d2cc72007-09-10 18:10:54 +030011834 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011835 .vcpu_load = vmx_vcpu_load,
11836 .vcpu_put = vmx_vcpu_put,
11837
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011838 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011839 .get_msr = vmx_get_msr,
11840 .set_msr = vmx_set_msr,
11841 .get_segment_base = vmx_get_segment_base,
11842 .get_segment = vmx_get_segment,
11843 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011844 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011845 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011846 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011847 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011848 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011849 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011850 .set_cr3 = vmx_set_cr3,
11851 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011852 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011853 .get_idt = vmx_get_idt,
11854 .set_idt = vmx_set_idt,
11855 .get_gdt = vmx_get_gdt,
11856 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011857 .get_dr6 = vmx_get_dr6,
11858 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011859 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011860 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011861 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011862 .get_rflags = vmx_get_rflags,
11863 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011864
11865 .get_pkru = vmx_get_pkru,
11866
Avi Kivity6aa8b732006-12-10 02:21:36 -080011867 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011868
Avi Kivity6aa8b732006-12-10 02:21:36 -080011869 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011870 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011871 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011872 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11873 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011874 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011875 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011876 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011877 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011878 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011879 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011880 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011881 .get_nmi_mask = vmx_get_nmi_mask,
11882 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011883 .enable_nmi_window = enable_nmi_window,
11884 .enable_irq_window = enable_irq_window,
11885 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011886 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011887 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011888 .get_enable_apicv = vmx_get_enable_apicv,
11889 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011890 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011891 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011892 .hwapic_irr_update = vmx_hwapic_irr_update,
11893 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011894 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11895 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011896
Izik Eiduscbc94022007-10-25 00:29:55 +020011897 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011898 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011899 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011900
Avi Kivity586f9602010-11-18 13:09:54 +020011901 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011902
Sheng Yang17cc3932010-01-05 19:02:27 +080011903 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011904
11905 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011906
11907 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011908 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011909
11910 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011911
11912 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011913
11914 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011915
11916 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011917
11918 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011919 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011920 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011921 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011922
11923 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011924
11925 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011926
11927 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11928 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11929 .flush_log_dirty = vmx_flush_log_dirty,
11930 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040011931 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020011932
Feng Wubf9f6ac2015-09-18 22:29:55 +080011933 .pre_block = vmx_pre_block,
11934 .post_block = vmx_post_block,
11935
Wei Huang25462f7f2015-06-19 15:45:05 +020011936 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011937
11938 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011939
11940#ifdef CONFIG_X86_64
11941 .set_hv_timer = vmx_set_hv_timer,
11942 .cancel_hv_timer = vmx_cancel_hv_timer,
11943#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011944
11945 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011946};
11947
11948static int __init vmx_init(void)
11949{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011950 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11951 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011952 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011953 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011954
Dave Young2965faa2015-09-09 15:38:55 -070011955#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011956 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11957 crash_vmclear_local_loaded_vmcss);
11958#endif
11959
He, Qingfdef3ad2007-04-30 09:45:24 +030011960 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011961}
11962
11963static void __exit vmx_exit(void)
11964{
Dave Young2965faa2015-09-09 15:38:55 -070011965#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011966 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011967 synchronize_rcu();
11968#endif
11969
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011970 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011971}
11972
11973module_init(vmx_init)
11974module_exit(vmx_exit)