blob: 08381a5d8879c864c06534d389f28fa3473af6e7 [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;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200579 u32 secondary_exec_control;
580
Nadav Har'Eld462b812011-05-24 15:26:10 +0300581 /*
582 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
583 * non-nested (L1) guest, it always points to vmcs01. For a nested
584 * guest (L2), it points to a different VMCS.
585 */
586 struct loaded_vmcs vmcs01;
587 struct loaded_vmcs *loaded_vmcs;
588 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300589 struct msr_autoload {
590 unsigned nr;
591 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
592 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
593 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400594 struct {
595 int loaded;
596 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300597#ifdef CONFIG_X86_64
598 u16 ds_sel, es_sel;
599#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200600 int gs_ldt_reload_needed;
601 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000602 u64 msr_host_bndcfgs;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -0700603 unsigned long vmcs_host_cr3; /* May not match real cr3 */
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700604 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400605 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200606 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300607 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300608 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300609 struct kvm_segment segs[8];
610 } rmode;
611 struct {
612 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300613 struct kvm_save_segment {
614 u16 selector;
615 unsigned long base;
616 u32 limit;
617 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300618 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300619 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800620 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300621 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200622
Andi Kleena0861c02009-06-08 17:37:09 +0800623 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800624
Yang Zhang01e439b2013-04-11 19:25:12 +0800625 /* Posted interrupt descriptor */
626 struct pi_desc pi_desc;
627
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300628 /* Support for a guest hypervisor (nested VMX) */
629 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200630
631 /* Dynamic PLE window. */
632 int ple_window;
633 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800634
635 /* Support for PML */
636#define PML_ENTITY_NUM 512
637 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800638
Yunhong Jiang64672c92016-06-13 14:19:59 -0700639 /* apic deadline value in host tsc */
640 u64 hv_deadline_tsc;
641
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800642 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800643
644 bool guest_pkru_valid;
645 u32 guest_pkru;
646 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800647
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800648 /*
649 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
650 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
651 * in msr_ia32_feature_control_valid_bits.
652 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800653 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800654 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400655};
656
Avi Kivity2fb92db2011-04-27 19:42:18 +0300657enum segment_cache_field {
658 SEG_FIELD_SEL = 0,
659 SEG_FIELD_BASE = 1,
660 SEG_FIELD_LIMIT = 2,
661 SEG_FIELD_AR = 3,
662
663 SEG_FIELD_NR = 4
664};
665
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400666static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
667{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000668 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669}
670
Feng Wuefc64402015-09-18 22:29:51 +0800671static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
672{
673 return &(to_vmx(vcpu)->pi_desc);
674}
675
Nadav Har'El22bd0352011-05-25 23:05:57 +0300676#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
677#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
678#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
679 [number##_HIGH] = VMCS12_OFFSET(name)+4
680
Abel Gordon4607c2d2013-04-18 14:35:55 +0300681
Bandan Dasfe2b2012014-04-21 15:20:14 -0400682static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300683 /*
684 * We do NOT shadow fields that are modified when L0
685 * traps and emulates any vmx instruction (e.g. VMPTRLD,
686 * VMXON...) executed by L1.
687 * For example, VM_INSTRUCTION_ERROR is read
688 * by L1 if a vmx instruction fails (part of the error path).
689 * Note the code assumes this logic. If for some reason
690 * we start shadowing these fields then we need to
691 * force a shadow sync when L0 emulates vmx instructions
692 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
693 * by nested_vmx_failValid)
694 */
695 VM_EXIT_REASON,
696 VM_EXIT_INTR_INFO,
697 VM_EXIT_INSTRUCTION_LEN,
698 IDT_VECTORING_INFO_FIELD,
699 IDT_VECTORING_ERROR_CODE,
700 VM_EXIT_INTR_ERROR_CODE,
701 EXIT_QUALIFICATION,
702 GUEST_LINEAR_ADDRESS,
703 GUEST_PHYSICAL_ADDRESS
704};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400705static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300706 ARRAY_SIZE(shadow_read_only_fields);
707
Bandan Dasfe2b2012014-04-21 15:20:14 -0400708static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800709 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300710 GUEST_RIP,
711 GUEST_RSP,
712 GUEST_CR0,
713 GUEST_CR3,
714 GUEST_CR4,
715 GUEST_INTERRUPTIBILITY_INFO,
716 GUEST_RFLAGS,
717 GUEST_CS_SELECTOR,
718 GUEST_CS_AR_BYTES,
719 GUEST_CS_LIMIT,
720 GUEST_CS_BASE,
721 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100722 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300723 CR0_GUEST_HOST_MASK,
724 CR0_READ_SHADOW,
725 CR4_READ_SHADOW,
726 TSC_OFFSET,
727 EXCEPTION_BITMAP,
728 CPU_BASED_VM_EXEC_CONTROL,
729 VM_ENTRY_EXCEPTION_ERROR_CODE,
730 VM_ENTRY_INTR_INFO_FIELD,
731 VM_ENTRY_INSTRUCTION_LEN,
732 VM_ENTRY_EXCEPTION_ERROR_CODE,
733 HOST_FS_BASE,
734 HOST_GS_BASE,
735 HOST_FS_SELECTOR,
736 HOST_GS_SELECTOR
737};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400738static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300739 ARRAY_SIZE(shadow_read_write_fields);
740
Mathias Krause772e0312012-08-30 01:30:19 +0200741static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300742 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800743 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300744 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
745 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
746 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
747 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
748 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
749 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
750 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
751 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800752 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400753 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300754 FIELD(HOST_ES_SELECTOR, host_es_selector),
755 FIELD(HOST_CS_SELECTOR, host_cs_selector),
756 FIELD(HOST_SS_SELECTOR, host_ss_selector),
757 FIELD(HOST_DS_SELECTOR, host_ds_selector),
758 FIELD(HOST_FS_SELECTOR, host_fs_selector),
759 FIELD(HOST_GS_SELECTOR, host_gs_selector),
760 FIELD(HOST_TR_SELECTOR, host_tr_selector),
761 FIELD64(IO_BITMAP_A, io_bitmap_a),
762 FIELD64(IO_BITMAP_B, io_bitmap_b),
763 FIELD64(MSR_BITMAP, msr_bitmap),
764 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
765 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
766 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
767 FIELD64(TSC_OFFSET, tsc_offset),
768 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
769 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800770 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400771 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300772 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800773 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
774 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
775 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
776 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400777 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800778 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300779 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
780 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400781 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300782 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
783 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
784 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
785 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
786 FIELD64(GUEST_PDPTR0, guest_pdptr0),
787 FIELD64(GUEST_PDPTR1, guest_pdptr1),
788 FIELD64(GUEST_PDPTR2, guest_pdptr2),
789 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100790 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300791 FIELD64(HOST_IA32_PAT, host_ia32_pat),
792 FIELD64(HOST_IA32_EFER, host_ia32_efer),
793 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
794 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
795 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
796 FIELD(EXCEPTION_BITMAP, exception_bitmap),
797 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
798 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
799 FIELD(CR3_TARGET_COUNT, cr3_target_count),
800 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
801 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
802 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
803 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
804 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
805 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
806 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
807 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
808 FIELD(TPR_THRESHOLD, tpr_threshold),
809 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
810 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
811 FIELD(VM_EXIT_REASON, vm_exit_reason),
812 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
813 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
814 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
815 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
816 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
817 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
818 FIELD(GUEST_ES_LIMIT, guest_es_limit),
819 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
820 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
821 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
822 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
823 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
824 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
825 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
826 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
827 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
828 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
829 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
830 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
831 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
832 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
833 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
834 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
835 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
836 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
837 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
838 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
839 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100840 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300841 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
842 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
843 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
844 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
845 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
846 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
847 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
848 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
849 FIELD(EXIT_QUALIFICATION, exit_qualification),
850 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
851 FIELD(GUEST_CR0, guest_cr0),
852 FIELD(GUEST_CR3, guest_cr3),
853 FIELD(GUEST_CR4, guest_cr4),
854 FIELD(GUEST_ES_BASE, guest_es_base),
855 FIELD(GUEST_CS_BASE, guest_cs_base),
856 FIELD(GUEST_SS_BASE, guest_ss_base),
857 FIELD(GUEST_DS_BASE, guest_ds_base),
858 FIELD(GUEST_FS_BASE, guest_fs_base),
859 FIELD(GUEST_GS_BASE, guest_gs_base),
860 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
861 FIELD(GUEST_TR_BASE, guest_tr_base),
862 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
863 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
864 FIELD(GUEST_DR7, guest_dr7),
865 FIELD(GUEST_RSP, guest_rsp),
866 FIELD(GUEST_RIP, guest_rip),
867 FIELD(GUEST_RFLAGS, guest_rflags),
868 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
869 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
870 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
871 FIELD(HOST_CR0, host_cr0),
872 FIELD(HOST_CR3, host_cr3),
873 FIELD(HOST_CR4, host_cr4),
874 FIELD(HOST_FS_BASE, host_fs_base),
875 FIELD(HOST_GS_BASE, host_gs_base),
876 FIELD(HOST_TR_BASE, host_tr_base),
877 FIELD(HOST_GDTR_BASE, host_gdtr_base),
878 FIELD(HOST_IDTR_BASE, host_idtr_base),
879 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
880 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
881 FIELD(HOST_RSP, host_rsp),
882 FIELD(HOST_RIP, host_rip),
883};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300884
885static inline short vmcs_field_to_offset(unsigned long field)
886{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100887 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
888
889 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
890 vmcs_field_to_offset_table[field] == 0)
891 return -ENOENT;
892
Nadav Har'El22bd0352011-05-25 23:05:57 +0300893 return vmcs_field_to_offset_table[field];
894}
895
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300896static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
897{
David Matlack4f2777b2016-07-13 17:16:37 -0700898 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300899}
900
Peter Feiner995f00a2017-06-30 17:26:32 -0700901static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300902static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700903static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800904static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200905static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300906static void vmx_set_segment(struct kvm_vcpu *vcpu,
907 struct kvm_segment *var, int seg);
908static void vmx_get_segment(struct kvm_vcpu *vcpu,
909 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200910static bool guest_state_valid(struct kvm_vcpu *vcpu);
911static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300912static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300913static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800914static int alloc_identity_pagetable(struct kvm *kvm);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200915static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
916static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
917static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
918 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300919
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920static DEFINE_PER_CPU(struct vmcs *, vmxarea);
921static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300922/*
923 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
924 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
925 */
926static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927
Feng Wubf9f6ac2015-09-18 22:29:55 +0800928/*
929 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
930 * can find which vCPU should be waken up.
931 */
932static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
933static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
934
Radim Krčmář23611332016-09-29 22:41:33 +0200935enum {
936 VMX_IO_BITMAP_A,
937 VMX_IO_BITMAP_B,
938 VMX_MSR_BITMAP_LEGACY,
939 VMX_MSR_BITMAP_LONGMODE,
940 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
941 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
942 VMX_MSR_BITMAP_LEGACY_X2APIC,
943 VMX_MSR_BITMAP_LONGMODE_X2APIC,
944 VMX_VMREAD_BITMAP,
945 VMX_VMWRITE_BITMAP,
946 VMX_BITMAP_NR
947};
948
949static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
950
951#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
952#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
953#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
954#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
955#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
956#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
957#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
958#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
959#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
960#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300961
Avi Kivity110312c2010-12-21 12:54:20 +0200962static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200963static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200964
Sheng Yang2384d2b2008-01-17 15:14:33 +0800965static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
966static DEFINE_SPINLOCK(vmx_vpid_lock);
967
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300968static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969 int size;
970 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300971 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300973 u32 pin_based_exec_ctrl;
974 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800975 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300976 u32 vmexit_ctrl;
977 u32 vmentry_ctrl;
978} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979
Hannes Ederefff9e52008-11-28 17:02:06 +0100980static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800981 u32 ept;
982 u32 vpid;
983} vmx_capability;
984
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985#define VMX_SEGMENT_FIELD(seg) \
986 [VCPU_SREG_##seg] = { \
987 .selector = GUEST_##seg##_SELECTOR, \
988 .base = GUEST_##seg##_BASE, \
989 .limit = GUEST_##seg##_LIMIT, \
990 .ar_bytes = GUEST_##seg##_AR_BYTES, \
991 }
992
Mathias Krause772e0312012-08-30 01:30:19 +0200993static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 unsigned selector;
995 unsigned base;
996 unsigned limit;
997 unsigned ar_bytes;
998} kvm_vmx_segment_fields[] = {
999 VMX_SEGMENT_FIELD(CS),
1000 VMX_SEGMENT_FIELD(DS),
1001 VMX_SEGMENT_FIELD(ES),
1002 VMX_SEGMENT_FIELD(FS),
1003 VMX_SEGMENT_FIELD(GS),
1004 VMX_SEGMENT_FIELD(SS),
1005 VMX_SEGMENT_FIELD(TR),
1006 VMX_SEGMENT_FIELD(LDTR),
1007};
1008
Avi Kivity26bb0982009-09-07 11:14:12 +03001009static u64 host_efer;
1010
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001011static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1012
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001013/*
Brian Gerst8c065852010-07-17 09:03:26 -04001014 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001015 * away by decrementing the array size.
1016 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001018#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001019 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001021 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023
Jan Kiszka5bb16012016-02-09 20:14:21 +01001024static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025{
1026 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1027 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001028 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1029}
1030
Jan Kiszka6f054852016-02-09 20:15:18 +01001031static inline bool is_debug(u32 intr_info)
1032{
1033 return is_exception_n(intr_info, DB_VECTOR);
1034}
1035
1036static inline bool is_breakpoint(u32 intr_info)
1037{
1038 return is_exception_n(intr_info, BP_VECTOR);
1039}
1040
Jan Kiszka5bb16012016-02-09 20:14:21 +01001041static inline bool is_page_fault(u32 intr_info)
1042{
1043 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044}
1045
Gui Jianfeng31299942010-03-15 17:29:09 +08001046static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001047{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001048 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001049}
1050
Gui Jianfeng31299942010-03-15 17:29:09 +08001051static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001052{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001053 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001054}
1055
Gui Jianfeng31299942010-03-15 17:29:09 +08001056static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057{
1058 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1059 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1060}
1061
Gui Jianfeng31299942010-03-15 17:29:09 +08001062static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001063{
1064 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1065 INTR_INFO_VALID_MASK)) ==
1066 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1067}
1068
Gui Jianfeng31299942010-03-15 17:29:09 +08001069static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001070{
Sheng Yang04547152009-04-01 15:52:31 +08001071 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001072}
1073
Gui Jianfeng31299942010-03-15 17:29:09 +08001074static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001075{
Sheng Yang04547152009-04-01 15:52:31 +08001076 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001077}
1078
Paolo Bonzini35754c92015-07-29 12:05:37 +02001079static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001081 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001082}
1083
Gui Jianfeng31299942010-03-15 17:29:09 +08001084static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001085{
Sheng Yang04547152009-04-01 15:52:31 +08001086 return vmcs_config.cpu_based_exec_ctrl &
1087 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001088}
1089
Avi Kivity774ead32007-12-26 13:57:04 +02001090static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001091{
Sheng Yang04547152009-04-01 15:52:31 +08001092 return vmcs_config.cpu_based_2nd_exec_ctrl &
1093 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1094}
1095
Yang Zhang8d146952013-01-25 10:18:50 +08001096static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1097{
1098 return vmcs_config.cpu_based_2nd_exec_ctrl &
1099 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1100}
1101
Yang Zhang83d4c282013-01-25 10:18:49 +08001102static inline bool cpu_has_vmx_apic_register_virt(void)
1103{
1104 return vmcs_config.cpu_based_2nd_exec_ctrl &
1105 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1106}
1107
Yang Zhangc7c9c562013-01-25 10:18:51 +08001108static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1109{
1110 return vmcs_config.cpu_based_2nd_exec_ctrl &
1111 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1112}
1113
Yunhong Jiang64672c92016-06-13 14:19:59 -07001114/*
1115 * Comment's format: document - errata name - stepping - processor name.
1116 * Refer from
1117 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1118 */
1119static u32 vmx_preemption_cpu_tfms[] = {
1120/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11210x000206E6,
1122/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1123/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1124/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11250x00020652,
1126/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11270x00020655,
1128/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1129/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1130/*
1131 * 320767.pdf - AAP86 - B1 -
1132 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1133 */
11340x000106E5,
1135/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11360x000106A0,
1137/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11380x000106A1,
1139/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11400x000106A4,
1141 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1142 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1143 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11440x000106A5,
1145};
1146
1147static inline bool cpu_has_broken_vmx_preemption_timer(void)
1148{
1149 u32 eax = cpuid_eax(0x00000001), i;
1150
1151 /* Clear the reserved bits */
1152 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001153 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001154 if (eax == vmx_preemption_cpu_tfms[i])
1155 return true;
1156
1157 return false;
1158}
1159
1160static inline bool cpu_has_vmx_preemption_timer(void)
1161{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001162 return vmcs_config.pin_based_exec_ctrl &
1163 PIN_BASED_VMX_PREEMPTION_TIMER;
1164}
1165
Yang Zhang01e439b2013-04-11 19:25:12 +08001166static inline bool cpu_has_vmx_posted_intr(void)
1167{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001168 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1169 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001170}
1171
1172static inline bool cpu_has_vmx_apicv(void)
1173{
1174 return cpu_has_vmx_apic_register_virt() &&
1175 cpu_has_vmx_virtual_intr_delivery() &&
1176 cpu_has_vmx_posted_intr();
1177}
1178
Sheng Yang04547152009-04-01 15:52:31 +08001179static inline bool cpu_has_vmx_flexpriority(void)
1180{
1181 return cpu_has_vmx_tpr_shadow() &&
1182 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001183}
1184
Marcelo Tosattie7997942009-06-11 12:07:40 -03001185static inline bool cpu_has_vmx_ept_execute_only(void)
1186{
Gui Jianfeng31299942010-03-15 17:29:09 +08001187 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188}
1189
Marcelo Tosattie7997942009-06-11 12:07:40 -03001190static inline bool cpu_has_vmx_ept_2m_page(void)
1191{
Gui Jianfeng31299942010-03-15 17:29:09 +08001192 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001193}
1194
Sheng Yang878403b2010-01-05 19:02:29 +08001195static inline bool cpu_has_vmx_ept_1g_page(void)
1196{
Gui Jianfeng31299942010-03-15 17:29:09 +08001197 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001198}
1199
Sheng Yang4bc9b982010-06-02 14:05:24 +08001200static inline bool cpu_has_vmx_ept_4levels(void)
1201{
1202 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1203}
1204
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001205static inline bool cpu_has_vmx_ept_mt_wb(void)
1206{
1207 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1208}
1209
Xudong Hao83c3a332012-05-28 19:33:35 +08001210static inline bool cpu_has_vmx_ept_ad_bits(void)
1211{
1212 return vmx_capability.ept & VMX_EPT_AD_BIT;
1213}
1214
Gui Jianfeng31299942010-03-15 17:29:09 +08001215static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001216{
Gui Jianfeng31299942010-03-15 17:29:09 +08001217 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001218}
1219
Gui Jianfeng31299942010-03-15 17:29:09 +08001220static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001221{
Gui Jianfeng31299942010-03-15 17:29:09 +08001222 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001223}
1224
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001225static inline bool cpu_has_vmx_invvpid_single(void)
1226{
1227 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1228}
1229
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001230static inline bool cpu_has_vmx_invvpid_global(void)
1231{
1232 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1233}
1234
Wanpeng Li08d839c2017-03-23 05:30:08 -07001235static inline bool cpu_has_vmx_invvpid(void)
1236{
1237 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1238}
1239
Gui Jianfeng31299942010-03-15 17:29:09 +08001240static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001241{
Sheng Yang04547152009-04-01 15:52:31 +08001242 return vmcs_config.cpu_based_2nd_exec_ctrl &
1243 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001244}
1245
Gui Jianfeng31299942010-03-15 17:29:09 +08001246static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001247{
1248 return vmcs_config.cpu_based_2nd_exec_ctrl &
1249 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1250}
1251
Gui Jianfeng31299942010-03-15 17:29:09 +08001252static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001253{
1254 return vmcs_config.cpu_based_2nd_exec_ctrl &
1255 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1256}
1257
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001258static inline bool cpu_has_vmx_basic_inout(void)
1259{
1260 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1261}
1262
Paolo Bonzini35754c92015-07-29 12:05:37 +02001263static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001264{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001265 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001266}
1267
Gui Jianfeng31299942010-03-15 17:29:09 +08001268static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001269{
Sheng Yang04547152009-04-01 15:52:31 +08001270 return vmcs_config.cpu_based_2nd_exec_ctrl &
1271 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001272}
1273
Gui Jianfeng31299942010-03-15 17:29:09 +08001274static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001275{
1276 return vmcs_config.cpu_based_2nd_exec_ctrl &
1277 SECONDARY_EXEC_RDTSCP;
1278}
1279
Mao, Junjiead756a12012-07-02 01:18:48 +00001280static inline bool cpu_has_vmx_invpcid(void)
1281{
1282 return vmcs_config.cpu_based_2nd_exec_ctrl &
1283 SECONDARY_EXEC_ENABLE_INVPCID;
1284}
1285
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001286static inline bool cpu_has_vmx_wbinvd_exit(void)
1287{
1288 return vmcs_config.cpu_based_2nd_exec_ctrl &
1289 SECONDARY_EXEC_WBINVD_EXITING;
1290}
1291
Abel Gordonabc4fc52013-04-18 14:35:25 +03001292static inline bool cpu_has_vmx_shadow_vmcs(void)
1293{
1294 u64 vmx_msr;
1295 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1296 /* check if the cpu supports writing r/o exit information fields */
1297 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1298 return false;
1299
1300 return vmcs_config.cpu_based_2nd_exec_ctrl &
1301 SECONDARY_EXEC_SHADOW_VMCS;
1302}
1303
Kai Huang843e4332015-01-28 10:54:28 +08001304static inline bool cpu_has_vmx_pml(void)
1305{
1306 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1307}
1308
Haozhong Zhang64903d62015-10-20 15:39:09 +08001309static inline bool cpu_has_vmx_tsc_scaling(void)
1310{
1311 return vmcs_config.cpu_based_2nd_exec_ctrl &
1312 SECONDARY_EXEC_TSC_SCALING;
1313}
1314
Bandan Das2a499e42017-08-03 15:54:41 -04001315static inline bool cpu_has_vmx_vmfunc(void)
1316{
1317 return vmcs_config.cpu_based_2nd_exec_ctrl &
1318 SECONDARY_EXEC_ENABLE_VMFUNC;
1319}
1320
Sheng Yang04547152009-04-01 15:52:31 +08001321static inline bool report_flexpriority(void)
1322{
1323 return flexpriority_enabled;
1324}
1325
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001326static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1327{
1328 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1329}
1330
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001331static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1332{
1333 return vmcs12->cpu_based_vm_exec_control & bit;
1334}
1335
1336static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1337{
1338 return (vmcs12->cpu_based_vm_exec_control &
1339 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1340 (vmcs12->secondary_vm_exec_control & bit);
1341}
1342
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001343static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001344{
1345 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1346}
1347
Jan Kiszkaf4124502014-03-07 20:03:13 +01001348static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1349{
1350 return vmcs12->pin_based_vm_exec_control &
1351 PIN_BASED_VMX_PREEMPTION_TIMER;
1352}
1353
Nadav Har'El155a97a2013-08-05 11:07:16 +03001354static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1355{
1356 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1357}
1358
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001359static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1360{
1361 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1362 vmx_xsaves_supported();
1363}
1364
Bandan Dasc5f983f2017-05-05 15:25:14 -04001365static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1366{
1367 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1368}
1369
Wincy Vanf2b93282015-02-03 23:56:03 +08001370static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1371{
1372 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1373}
1374
Wanpeng Li5c614b32015-10-13 09:18:36 -07001375static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1376{
1377 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1378}
1379
Wincy Van82f0dd42015-02-03 23:57:18 +08001380static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1381{
1382 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1383}
1384
Wincy Van608406e2015-02-03 23:57:51 +08001385static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1386{
1387 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1388}
1389
Wincy Van705699a2015-02-03 23:58:17 +08001390static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1391{
1392 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1393}
1394
Bandan Das27c42a12017-08-03 15:54:42 -04001395static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1396{
1397 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1398}
1399
Bandan Das41ab9372017-08-03 15:54:43 -04001400static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1401{
1402 return nested_cpu_has_vmfunc(vmcs12) &&
1403 (vmcs12->vm_function_control &
1404 VMX_VMFUNC_EPTP_SWITCHING);
1405}
1406
Jim Mattsonef85b672016-12-12 11:01:37 -08001407static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001408{
1409 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001410 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001411}
1412
Jan Kiszka533558b2014-01-04 18:47:20 +01001413static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1414 u32 exit_intr_info,
1415 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001416static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1417 struct vmcs12 *vmcs12,
1418 u32 reason, unsigned long qualification);
1419
Rusty Russell8b9cf982007-07-30 16:31:43 +10001420static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001421{
1422 int i;
1423
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001424 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001425 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001426 return i;
1427 return -1;
1428}
1429
Sheng Yang2384d2b2008-01-17 15:14:33 +08001430static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1431{
1432 struct {
1433 u64 vpid : 16;
1434 u64 rsvd : 48;
1435 u64 gva;
1436 } operand = { vpid, 0, gva };
1437
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001438 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001439 /* CF==1 or ZF==1 --> rc = -1 */
1440 "; ja 1f ; ud2 ; 1:"
1441 : : "a"(&operand), "c"(ext) : "cc", "memory");
1442}
1443
Sheng Yang14394422008-04-28 12:24:45 +08001444static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1445{
1446 struct {
1447 u64 eptp, gpa;
1448 } operand = {eptp, gpa};
1449
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001450 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001451 /* CF==1 or ZF==1 --> rc = -1 */
1452 "; ja 1f ; ud2 ; 1:\n"
1453 : : "a" (&operand), "c" (ext) : "cc", "memory");
1454}
1455
Avi Kivity26bb0982009-09-07 11:14:12 +03001456static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001457{
1458 int i;
1459
Rusty Russell8b9cf982007-07-30 16:31:43 +10001460 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001461 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001462 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001463 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001464}
1465
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466static void vmcs_clear(struct vmcs *vmcs)
1467{
1468 u64 phys_addr = __pa(vmcs);
1469 u8 error;
1470
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001471 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001472 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473 : "cc", "memory");
1474 if (error)
1475 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1476 vmcs, phys_addr);
1477}
1478
Nadav Har'Eld462b812011-05-24 15:26:10 +03001479static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1480{
1481 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001482 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1483 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001484 loaded_vmcs->cpu = -1;
1485 loaded_vmcs->launched = 0;
1486}
1487
Dongxiao Xu7725b892010-05-11 18:29:38 +08001488static void vmcs_load(struct vmcs *vmcs)
1489{
1490 u64 phys_addr = __pa(vmcs);
1491 u8 error;
1492
1493 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001494 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001495 : "cc", "memory");
1496 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001497 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001498 vmcs, phys_addr);
1499}
1500
Dave Young2965faa2015-09-09 15:38:55 -07001501#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001502/*
1503 * This bitmap is used to indicate whether the vmclear
1504 * operation is enabled on all cpus. All disabled by
1505 * default.
1506 */
1507static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1508
1509static inline void crash_enable_local_vmclear(int cpu)
1510{
1511 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1512}
1513
1514static inline void crash_disable_local_vmclear(int cpu)
1515{
1516 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1517}
1518
1519static inline int crash_local_vmclear_enabled(int cpu)
1520{
1521 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1522}
1523
1524static void crash_vmclear_local_loaded_vmcss(void)
1525{
1526 int cpu = raw_smp_processor_id();
1527 struct loaded_vmcs *v;
1528
1529 if (!crash_local_vmclear_enabled(cpu))
1530 return;
1531
1532 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1533 loaded_vmcss_on_cpu_link)
1534 vmcs_clear(v->vmcs);
1535}
1536#else
1537static inline void crash_enable_local_vmclear(int cpu) { }
1538static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001539#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001540
Nadav Har'Eld462b812011-05-24 15:26:10 +03001541static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001543 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001544 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001545
Nadav Har'Eld462b812011-05-24 15:26:10 +03001546 if (loaded_vmcs->cpu != cpu)
1547 return; /* vcpu migration can race with cpu offline */
1548 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001550 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001551 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001552
1553 /*
1554 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1555 * is before setting loaded_vmcs->vcpu to -1 which is done in
1556 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1557 * then adds the vmcs into percpu list before it is deleted.
1558 */
1559 smp_wmb();
1560
Nadav Har'Eld462b812011-05-24 15:26:10 +03001561 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001562 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563}
1564
Nadav Har'Eld462b812011-05-24 15:26:10 +03001565static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001566{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001567 int cpu = loaded_vmcs->cpu;
1568
1569 if (cpu != -1)
1570 smp_call_function_single(cpu,
1571 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001572}
1573
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001574static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001575{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001576 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001577 return;
1578
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001579 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001580 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001581}
1582
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001583static inline void vpid_sync_vcpu_global(void)
1584{
1585 if (cpu_has_vmx_invvpid_global())
1586 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1587}
1588
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001589static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001590{
1591 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001592 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001593 else
1594 vpid_sync_vcpu_global();
1595}
1596
Sheng Yang14394422008-04-28 12:24:45 +08001597static inline void ept_sync_global(void)
1598{
1599 if (cpu_has_vmx_invept_global())
1600 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1601}
1602
1603static inline void ept_sync_context(u64 eptp)
1604{
Avi Kivity089d0342009-03-23 18:26:32 +02001605 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001606 if (cpu_has_vmx_invept_context())
1607 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1608 else
1609 ept_sync_global();
1610 }
1611}
1612
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001613static __always_inline void vmcs_check16(unsigned long field)
1614{
1615 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1616 "16-bit accessor invalid for 64-bit field");
1617 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1618 "16-bit accessor invalid for 64-bit high field");
1619 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1620 "16-bit accessor invalid for 32-bit high field");
1621 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1622 "16-bit accessor invalid for natural width field");
1623}
1624
1625static __always_inline void vmcs_check32(unsigned long field)
1626{
1627 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1628 "32-bit accessor invalid for 16-bit field");
1629 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1630 "32-bit accessor invalid for natural width field");
1631}
1632
1633static __always_inline void vmcs_check64(unsigned long field)
1634{
1635 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1636 "64-bit accessor invalid for 16-bit field");
1637 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1638 "64-bit accessor invalid for 64-bit high field");
1639 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1640 "64-bit accessor invalid for 32-bit field");
1641 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1642 "64-bit accessor invalid for natural width field");
1643}
1644
1645static __always_inline void vmcs_checkl(unsigned long field)
1646{
1647 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1648 "Natural width accessor invalid for 16-bit field");
1649 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1650 "Natural width accessor invalid for 64-bit field");
1651 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1652 "Natural width accessor invalid for 64-bit high field");
1653 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1654 "Natural width accessor invalid for 32-bit field");
1655}
1656
1657static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658{
Avi Kivity5e520e62011-05-15 10:13:12 -04001659 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660
Avi Kivity5e520e62011-05-15 10:13:12 -04001661 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1662 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663 return value;
1664}
1665
Avi Kivity96304212011-05-15 10:13:13 -04001666static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001668 vmcs_check16(field);
1669 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001670}
1671
Avi Kivity96304212011-05-15 10:13:13 -04001672static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001673{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001674 vmcs_check32(field);
1675 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676}
1677
Avi Kivity96304212011-05-15 10:13:13 -04001678static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001679{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001680 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001681#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001682 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001683#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001684 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001685#endif
1686}
1687
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001688static __always_inline unsigned long vmcs_readl(unsigned long field)
1689{
1690 vmcs_checkl(field);
1691 return __vmcs_readl(field);
1692}
1693
Avi Kivitye52de1b2007-01-05 16:36:56 -08001694static noinline void vmwrite_error(unsigned long field, unsigned long value)
1695{
1696 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1697 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1698 dump_stack();
1699}
1700
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001701static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001702{
1703 u8 error;
1704
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001705 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001706 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001707 if (unlikely(error))
1708 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709}
1710
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001711static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001712{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001713 vmcs_check16(field);
1714 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715}
1716
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001717static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001718{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001719 vmcs_check32(field);
1720 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001721}
1722
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001723static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001724{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001725 vmcs_check64(field);
1726 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001727#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001729 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730#endif
1731}
1732
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001733static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001734{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001735 vmcs_checkl(field);
1736 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001737}
1738
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001739static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001740{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001741 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1742 "vmcs_clear_bits does not support 64-bit fields");
1743 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1744}
1745
1746static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1747{
1748 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1749 "vmcs_set_bits does not support 64-bit fields");
1750 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001751}
1752
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001753static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1754{
1755 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1756}
1757
Gleb Natapov2961e8762013-11-25 15:37:13 +02001758static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1759{
1760 vmcs_write32(VM_ENTRY_CONTROLS, val);
1761 vmx->vm_entry_controls_shadow = val;
1762}
1763
1764static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1765{
1766 if (vmx->vm_entry_controls_shadow != val)
1767 vm_entry_controls_init(vmx, val);
1768}
1769
1770static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1771{
1772 return vmx->vm_entry_controls_shadow;
1773}
1774
1775
1776static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1777{
1778 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1779}
1780
1781static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1782{
1783 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1784}
1785
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001786static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1787{
1788 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1789}
1790
Gleb Natapov2961e8762013-11-25 15:37:13 +02001791static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1792{
1793 vmcs_write32(VM_EXIT_CONTROLS, val);
1794 vmx->vm_exit_controls_shadow = val;
1795}
1796
1797static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1798{
1799 if (vmx->vm_exit_controls_shadow != val)
1800 vm_exit_controls_init(vmx, val);
1801}
1802
1803static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1804{
1805 return vmx->vm_exit_controls_shadow;
1806}
1807
1808
1809static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1810{
1811 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1812}
1813
1814static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1815{
1816 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1817}
1818
Avi Kivity2fb92db2011-04-27 19:42:18 +03001819static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1820{
1821 vmx->segment_cache.bitmask = 0;
1822}
1823
1824static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1825 unsigned field)
1826{
1827 bool ret;
1828 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1829
1830 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1831 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1832 vmx->segment_cache.bitmask = 0;
1833 }
1834 ret = vmx->segment_cache.bitmask & mask;
1835 vmx->segment_cache.bitmask |= mask;
1836 return ret;
1837}
1838
1839static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1840{
1841 u16 *p = &vmx->segment_cache.seg[seg].selector;
1842
1843 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1844 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1845 return *p;
1846}
1847
1848static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1849{
1850 ulong *p = &vmx->segment_cache.seg[seg].base;
1851
1852 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1853 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1854 return *p;
1855}
1856
1857static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1858{
1859 u32 *p = &vmx->segment_cache.seg[seg].limit;
1860
1861 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1862 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1863 return *p;
1864}
1865
1866static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1867{
1868 u32 *p = &vmx->segment_cache.seg[seg].ar;
1869
1870 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1871 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1872 return *p;
1873}
1874
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001875static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1876{
1877 u32 eb;
1878
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001879 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001880 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001881 if ((vcpu->guest_debug &
1882 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1883 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1884 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001885 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001886 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001887 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001888 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001889
1890 /* When we are running a nested L2 guest and L1 specified for it a
1891 * certain exception bitmap, we must trap the same exceptions and pass
1892 * them to L1. When running L2, we will only handle the exceptions
1893 * specified above if L1 did not want them.
1894 */
1895 if (is_guest_mode(vcpu))
1896 eb |= get_vmcs12(vcpu)->exception_bitmap;
1897
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001898 vmcs_write32(EXCEPTION_BITMAP, eb);
1899}
1900
Gleb Natapov2961e8762013-11-25 15:37:13 +02001901static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1902 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001903{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001904 vm_entry_controls_clearbit(vmx, entry);
1905 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001906}
1907
Avi Kivity61d2ef22010-04-28 16:40:38 +03001908static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1909{
1910 unsigned i;
1911 struct msr_autoload *m = &vmx->msr_autoload;
1912
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001913 switch (msr) {
1914 case MSR_EFER:
1915 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001916 clear_atomic_switch_msr_special(vmx,
1917 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001918 VM_EXIT_LOAD_IA32_EFER);
1919 return;
1920 }
1921 break;
1922 case MSR_CORE_PERF_GLOBAL_CTRL:
1923 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001924 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001925 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1926 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1927 return;
1928 }
1929 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001930 }
1931
Avi Kivity61d2ef22010-04-28 16:40:38 +03001932 for (i = 0; i < m->nr; ++i)
1933 if (m->guest[i].index == msr)
1934 break;
1935
1936 if (i == m->nr)
1937 return;
1938 --m->nr;
1939 m->guest[i] = m->guest[m->nr];
1940 m->host[i] = m->host[m->nr];
1941 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1942 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1943}
1944
Gleb Natapov2961e8762013-11-25 15:37:13 +02001945static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1946 unsigned long entry, unsigned long exit,
1947 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1948 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001949{
1950 vmcs_write64(guest_val_vmcs, guest_val);
1951 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001952 vm_entry_controls_setbit(vmx, entry);
1953 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001954}
1955
Avi Kivity61d2ef22010-04-28 16:40:38 +03001956static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1957 u64 guest_val, u64 host_val)
1958{
1959 unsigned i;
1960 struct msr_autoload *m = &vmx->msr_autoload;
1961
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001962 switch (msr) {
1963 case MSR_EFER:
1964 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001965 add_atomic_switch_msr_special(vmx,
1966 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001967 VM_EXIT_LOAD_IA32_EFER,
1968 GUEST_IA32_EFER,
1969 HOST_IA32_EFER,
1970 guest_val, host_val);
1971 return;
1972 }
1973 break;
1974 case MSR_CORE_PERF_GLOBAL_CTRL:
1975 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001976 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001977 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1978 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1979 GUEST_IA32_PERF_GLOBAL_CTRL,
1980 HOST_IA32_PERF_GLOBAL_CTRL,
1981 guest_val, host_val);
1982 return;
1983 }
1984 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001985 case MSR_IA32_PEBS_ENABLE:
1986 /* PEBS needs a quiescent period after being disabled (to write
1987 * a record). Disabling PEBS through VMX MSR swapping doesn't
1988 * provide that period, so a CPU could write host's record into
1989 * guest's memory.
1990 */
1991 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001992 }
1993
Avi Kivity61d2ef22010-04-28 16:40:38 +03001994 for (i = 0; i < m->nr; ++i)
1995 if (m->guest[i].index == msr)
1996 break;
1997
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001998 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001999 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002000 "Can't add msr %x\n", msr);
2001 return;
2002 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002003 ++m->nr;
2004 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2005 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2006 }
2007
2008 m->guest[i].index = msr;
2009 m->guest[i].value = guest_val;
2010 m->host[i].index = msr;
2011 m->host[i].value = host_val;
2012}
2013
Avi Kivity92c0d902009-10-29 11:00:16 +02002014static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002015{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002016 u64 guest_efer = vmx->vcpu.arch.efer;
2017 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002018
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002019 if (!enable_ept) {
2020 /*
2021 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2022 * host CPUID is more efficient than testing guest CPUID
2023 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2024 */
2025 if (boot_cpu_has(X86_FEATURE_SMEP))
2026 guest_efer |= EFER_NX;
2027 else if (!(guest_efer & EFER_NX))
2028 ignore_bits |= EFER_NX;
2029 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002030
Avi Kivity51c6cf62007-08-29 03:48:05 +03002031 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002032 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002033 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002034 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002035#ifdef CONFIG_X86_64
2036 ignore_bits |= EFER_LMA | EFER_LME;
2037 /* SCE is meaningful only in long mode on Intel */
2038 if (guest_efer & EFER_LMA)
2039 ignore_bits &= ~(u64)EFER_SCE;
2040#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002041
2042 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002043
2044 /*
2045 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2046 * On CPUs that support "load IA32_EFER", always switch EFER
2047 * atomically, since it's faster than switching it manually.
2048 */
2049 if (cpu_has_load_ia32_efer ||
2050 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002051 if (!(guest_efer & EFER_LMA))
2052 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002053 if (guest_efer != host_efer)
2054 add_atomic_switch_msr(vmx, MSR_EFER,
2055 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002056 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002057 } else {
2058 guest_efer &= ~ignore_bits;
2059 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002060
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002061 vmx->guest_msrs[efer_offset].data = guest_efer;
2062 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2063
2064 return true;
2065 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002066}
2067
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002068#ifdef CONFIG_X86_32
2069/*
2070 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2071 * VMCS rather than the segment table. KVM uses this helper to figure
2072 * out the current bases to poke them into the VMCS before entry.
2073 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002074static unsigned long segment_base(u16 selector)
2075{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002076 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002077 unsigned long v;
2078
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002079 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002080 return 0;
2081
Thomas Garnier45fc8752017-03-14 10:05:08 -07002082 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002083
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002084 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002085 u16 ldt_selector = kvm_read_ldt();
2086
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002087 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002088 return 0;
2089
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002090 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002091 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002092 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002093 return v;
2094}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002095#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002096
Avi Kivity04d2cc72007-09-10 18:10:54 +03002097static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002098{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002099 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002100 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002101
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002102 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002103 return;
2104
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002105 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002106 /*
2107 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2108 * allow segment selectors with cpl > 0 or ti == 1.
2109 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002110 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002111 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002112 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002113 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002114 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002115 vmx->host_state.fs_reload_needed = 0;
2116 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002117 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002118 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002119 }
Avi Kivity9581d442010-10-19 16:46:55 +02002120 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002121 if (!(vmx->host_state.gs_sel & 7))
2122 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002123 else {
2124 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002125 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002126 }
2127
2128#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002129 savesegment(ds, vmx->host_state.ds_sel);
2130 savesegment(es, vmx->host_state.es_sel);
2131#endif
2132
2133#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002134 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2135 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2136#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002137 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2138 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002139#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002140
2141#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002142 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2143 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002144 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002145#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002146 if (boot_cpu_has(X86_FEATURE_MPX))
2147 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002148 for (i = 0; i < vmx->save_nmsrs; ++i)
2149 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002150 vmx->guest_msrs[i].data,
2151 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002152}
2153
Avi Kivitya9b21b62008-06-24 11:48:49 +03002154static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002155{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002156 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002157 return;
2158
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002159 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002160 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002161#ifdef CONFIG_X86_64
2162 if (is_long_mode(&vmx->vcpu))
2163 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2164#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002165 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002166 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002167#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002168 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002169#else
2170 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002171#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002172 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002173 if (vmx->host_state.fs_reload_needed)
2174 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002175#ifdef CONFIG_X86_64
2176 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2177 loadsegment(ds, vmx->host_state.ds_sel);
2178 loadsegment(es, vmx->host_state.es_sel);
2179 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002180#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002181 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002182#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002183 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002184#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002185 if (vmx->host_state.msr_host_bndcfgs)
2186 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002187 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002188}
2189
Avi Kivitya9b21b62008-06-24 11:48:49 +03002190static void vmx_load_host_state(struct vcpu_vmx *vmx)
2191{
2192 preempt_disable();
2193 __vmx_load_host_state(vmx);
2194 preempt_enable();
2195}
2196
Feng Wu28b835d2015-09-18 22:29:54 +08002197static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2198{
2199 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2200 struct pi_desc old, new;
2201 unsigned int dest;
2202
2203 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002204 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2205 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002206 return;
2207
2208 do {
2209 old.control = new.control = pi_desc->control;
2210
2211 /*
2212 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2213 * are two possible cases:
2214 * 1. After running 'pre_block', context switch
2215 * happened. For this case, 'sn' was set in
2216 * vmx_vcpu_put(), so we need to clear it here.
2217 * 2. After running 'pre_block', we were blocked,
2218 * and woken up by some other guy. For this case,
2219 * we don't need to do anything, 'pi_post_block'
2220 * will do everything for us. However, we cannot
2221 * check whether it is case #1 or case #2 here
2222 * (maybe, not needed), so we also clear sn here,
2223 * I think it is not a big deal.
2224 */
2225 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2226 if (vcpu->cpu != cpu) {
2227 dest = cpu_physical_id(cpu);
2228
2229 if (x2apic_enabled())
2230 new.ndst = dest;
2231 else
2232 new.ndst = (dest << 8) & 0xFF00;
2233 }
2234
2235 /* set 'NV' to 'notification vector' */
2236 new.nv = POSTED_INTR_VECTOR;
2237 }
2238
2239 /* Allow posting non-urgent interrupts */
2240 new.sn = 0;
2241 } while (cmpxchg(&pi_desc->control, old.control,
2242 new.control) != old.control);
2243}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002244
Peter Feinerc95ba922016-08-17 09:36:47 -07002245static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2246{
2247 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2248 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2249}
2250
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251/*
2252 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2253 * vcpu mutex is already taken.
2254 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002255static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002257 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002258 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002259
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002260 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002261 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002262 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002263 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002264
2265 /*
2266 * Read loaded_vmcs->cpu should be before fetching
2267 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2268 * See the comments in __loaded_vmcs_clear().
2269 */
2270 smp_rmb();
2271
Nadav Har'Eld462b812011-05-24 15:26:10 +03002272 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2273 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002274 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002275 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002276 }
2277
2278 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2279 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2280 vmcs_load(vmx->loaded_vmcs->vmcs);
2281 }
2282
2283 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002284 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002285 unsigned long sysenter_esp;
2286
2287 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002288
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 /*
2290 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002291 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002292 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002293 vmcs_writel(HOST_TR_BASE,
2294 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002295 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002297 /*
2298 * VM exits change the host TR limit to 0x67 after a VM
2299 * exit. This is okay, since 0x67 covers everything except
2300 * the IO bitmap and have have code to handle the IO bitmap
2301 * being lost after a VM exit.
2302 */
2303 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2304
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2306 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002307
Nadav Har'Eld462b812011-05-24 15:26:10 +03002308 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309 }
Feng Wu28b835d2015-09-18 22:29:54 +08002310
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002311 /* Setup TSC multiplier */
2312 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002313 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2314 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002315
Feng Wu28b835d2015-09-18 22:29:54 +08002316 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002317 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002318}
2319
2320static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2321{
2322 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2323
2324 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002325 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2326 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002327 return;
2328
2329 /* Set SN when the vCPU is preempted */
2330 if (vcpu->preempted)
2331 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
2334static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2335{
Feng Wu28b835d2015-09-18 22:29:54 +08002336 vmx_vcpu_pi_put(vcpu);
2337
Avi Kivitya9b21b62008-06-24 11:48:49 +03002338 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339}
2340
Wanpeng Lif244dee2017-07-20 01:11:54 -07002341static bool emulation_required(struct kvm_vcpu *vcpu)
2342{
2343 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2344}
2345
Avi Kivityedcafe32009-12-30 18:07:40 +02002346static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2347
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002348/*
2349 * Return the cr0 value that a nested guest would read. This is a combination
2350 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2351 * its hypervisor (cr0_read_shadow).
2352 */
2353static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2354{
2355 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2356 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2357}
2358static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2359{
2360 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2361 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2362}
2363
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2365{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002366 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002367
Avi Kivity6de12732011-03-07 12:51:22 +02002368 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2369 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2370 rflags = vmcs_readl(GUEST_RFLAGS);
2371 if (to_vmx(vcpu)->rmode.vm86_active) {
2372 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2373 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2374 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2375 }
2376 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002377 }
Avi Kivity6de12732011-03-07 12:51:22 +02002378 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379}
2380
2381static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2382{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002383 unsigned long old_rflags = vmx_get_rflags(vcpu);
2384
Avi Kivity6de12732011-03-07 12:51:22 +02002385 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2386 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002387 if (to_vmx(vcpu)->rmode.vm86_active) {
2388 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002389 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002390 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002391 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002392
2393 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2394 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002395}
2396
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002397static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2398{
2399 return to_vmx(vcpu)->guest_pkru;
2400}
2401
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002402static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002403{
2404 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2405 int ret = 0;
2406
2407 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002408 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002409 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002410 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002411
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002412 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002413}
2414
2415static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2416{
2417 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2418 u32 interruptibility = interruptibility_old;
2419
2420 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2421
Jan Kiszka48005f62010-02-19 19:38:07 +01002422 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002423 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002424 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002425 interruptibility |= GUEST_INTR_STATE_STI;
2426
2427 if ((interruptibility != interruptibility_old))
2428 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2429}
2430
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2432{
2433 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002435 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002436 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002437 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002438
Glauber Costa2809f5d2009-05-12 16:21:05 -04002439 /* skipping an emulated instruction also counts */
2440 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002441}
2442
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002443static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2444 unsigned long exit_qual)
2445{
2446 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2447 unsigned int nr = vcpu->arch.exception.nr;
2448 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2449
2450 if (vcpu->arch.exception.has_error_code) {
2451 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2452 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2453 }
2454
2455 if (kvm_exception_is_soft(nr))
2456 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2457 else
2458 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2459
2460 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2461 vmx_get_nmi_mask(vcpu))
2462 intr_info |= INTR_INFO_UNBLOCK_NMI;
2463
2464 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2465}
2466
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002467/*
2468 * KVM wants to inject page-faults which it got to the guest. This function
2469 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002470 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002471static int nested_vmx_check_exception(struct kvm_vcpu *vcpu)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002472{
2473 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002474 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002475
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002476 if (nr == PF_VECTOR) {
2477 if (vcpu->arch.exception.nested_apf) {
2478 nested_vmx_inject_exception_vmexit(vcpu,
2479 vcpu->arch.apf.nested_apf_token);
2480 return 1;
2481 }
2482 /*
2483 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2484 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2485 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2486 * can be written only when inject_pending_event runs. This should be
2487 * conditional on a new capability---if the capability is disabled,
2488 * kvm_multiple_exception would write the ancillary information to
2489 * CR2 or DR6, for backwards ABI-compatibility.
2490 */
2491 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2492 vcpu->arch.exception.error_code)) {
2493 nested_vmx_inject_exception_vmexit(vcpu, vcpu->arch.cr2);
2494 return 1;
2495 }
2496 } else {
2497 unsigned long exit_qual = 0;
2498 if (nr == DB_VECTOR)
2499 exit_qual = vcpu->arch.dr6;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002500
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002501 if (vmcs12->exception_bitmap & (1u << nr)) {
2502 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
2503 return 1;
2504 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002505 }
2506
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002507 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002508}
2509
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002510static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002511{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002512 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002513 unsigned nr = vcpu->arch.exception.nr;
2514 bool has_error_code = vcpu->arch.exception.has_error_code;
2515 bool reinject = vcpu->arch.exception.reinject;
2516 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002517 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002518
Gleb Natapove011c662013-09-25 12:51:35 +03002519 if (!reinject && is_guest_mode(vcpu) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002520 nested_vmx_check_exception(vcpu))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002521 return;
2522
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002523 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002524 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002525 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2526 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002527
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002528 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002529 int inc_eip = 0;
2530 if (kvm_exception_is_soft(nr))
2531 inc_eip = vcpu->arch.event_exit_inst_len;
2532 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002533 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002534 return;
2535 }
2536
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002537 if (kvm_exception_is_soft(nr)) {
2538 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2539 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002540 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2541 } else
2542 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2543
2544 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002545}
2546
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002547static bool vmx_rdtscp_supported(void)
2548{
2549 return cpu_has_vmx_rdtscp();
2550}
2551
Mao, Junjiead756a12012-07-02 01:18:48 +00002552static bool vmx_invpcid_supported(void)
2553{
2554 return cpu_has_vmx_invpcid() && enable_ept;
2555}
2556
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557/*
Eddie Donga75beee2007-05-17 18:55:15 +03002558 * Swap MSR entry in host/guest MSR entry array.
2559 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002560static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002561{
Avi Kivity26bb0982009-09-07 11:14:12 +03002562 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002563
2564 tmp = vmx->guest_msrs[to];
2565 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2566 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002567}
2568
Yang Zhang8d146952013-01-25 10:18:50 +08002569static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2570{
2571 unsigned long *msr_bitmap;
2572
Wincy Van670125b2015-03-04 14:31:56 +08002573 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002574 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002575 else if (cpu_has_secondary_exec_ctrls() &&
2576 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2577 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002578 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2579 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002580 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2581 else
2582 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2583 } else {
2584 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002585 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2586 else
2587 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002588 }
Yang Zhang8d146952013-01-25 10:18:50 +08002589 } else {
2590 if (is_long_mode(vcpu))
2591 msr_bitmap = vmx_msr_bitmap_longmode;
2592 else
2593 msr_bitmap = vmx_msr_bitmap_legacy;
2594 }
2595
2596 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2597}
2598
Eddie Donga75beee2007-05-17 18:55:15 +03002599/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002600 * Set up the vmcs to automatically save and restore system
2601 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2602 * mode, as fiddling with msrs is very expensive.
2603 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002604static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002605{
Avi Kivity26bb0982009-09-07 11:14:12 +03002606 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002607
Eddie Donga75beee2007-05-17 18:55:15 +03002608 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002609#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002610 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002611 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002612 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002613 move_msr_up(vmx, index, save_nmsrs++);
2614 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002615 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002616 move_msr_up(vmx, index, save_nmsrs++);
2617 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002618 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002619 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002620 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002621 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002622 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002623 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002624 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002625 * if efer.sce is enabled.
2626 */
Brian Gerst8c065852010-07-17 09:03:26 -04002627 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002628 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002629 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002630 }
Eddie Donga75beee2007-05-17 18:55:15 +03002631#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002632 index = __find_msr_index(vmx, MSR_EFER);
2633 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002634 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002635
Avi Kivity26bb0982009-09-07 11:14:12 +03002636 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002637
Yang Zhang8d146952013-01-25 10:18:50 +08002638 if (cpu_has_vmx_msr_bitmap())
2639 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002640}
2641
2642/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002644 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2645 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002647static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648{
2649 u64 host_tsc, tsc_offset;
2650
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002651 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002652 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002653 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002654}
2655
2656/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002657 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002658 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002659static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002661 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002662 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002663 * We're here if L1 chose not to trap WRMSR to TSC. According
2664 * to the spec, this should set L1's TSC; The offset that L1
2665 * set for L2 remains unchanged, and still needs to be added
2666 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002667 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002668 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002669 /* recalculate vmcs02.TSC_OFFSET: */
2670 vmcs12 = get_vmcs12(vcpu);
2671 vmcs_write64(TSC_OFFSET, offset +
2672 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2673 vmcs12->tsc_offset : 0));
2674 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002675 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2676 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002677 vmcs_write64(TSC_OFFSET, offset);
2678 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679}
2680
Nadav Har'El801d3422011-05-25 23:02:23 +03002681/*
2682 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2683 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2684 * all guests if the "nested" module option is off, and can also be disabled
2685 * for a single guest by disabling its VMX cpuid bit.
2686 */
2687static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2688{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002689 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002690}
2691
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002693 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2694 * returned for the various VMX controls MSRs when nested VMX is enabled.
2695 * The same values should also be used to verify that vmcs12 control fields are
2696 * valid during nested entry from L1 to L2.
2697 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2698 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2699 * bit in the high half is on if the corresponding bit in the control field
2700 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002701 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002702static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002703{
2704 /*
2705 * Note that as a general rule, the high half of the MSRs (bits in
2706 * the control fields which may be 1) should be initialized by the
2707 * intersection of the underlying hardware's MSR (i.e., features which
2708 * can be supported) and the list of features we want to expose -
2709 * because they are known to be properly supported in our code.
2710 * Also, usually, the low half of the MSRs (bits which must be 1) can
2711 * be set to 0, meaning that L1 may turn off any of these bits. The
2712 * reason is that if one of these bits is necessary, it will appear
2713 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2714 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002715 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002716 * These rules have exceptions below.
2717 */
2718
2719 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002720 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002721 vmx->nested.nested_vmx_pinbased_ctls_low,
2722 vmx->nested.nested_vmx_pinbased_ctls_high);
2723 vmx->nested.nested_vmx_pinbased_ctls_low |=
2724 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2725 vmx->nested.nested_vmx_pinbased_ctls_high &=
2726 PIN_BASED_EXT_INTR_MASK |
2727 PIN_BASED_NMI_EXITING |
2728 PIN_BASED_VIRTUAL_NMIS;
2729 vmx->nested.nested_vmx_pinbased_ctls_high |=
2730 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002731 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002732 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002733 vmx->nested.nested_vmx_pinbased_ctls_high |=
2734 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002735
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002736 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002737 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002738 vmx->nested.nested_vmx_exit_ctls_low,
2739 vmx->nested.nested_vmx_exit_ctls_high);
2740 vmx->nested.nested_vmx_exit_ctls_low =
2741 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002742
Wincy Vanb9c237b2015-02-03 23:56:30 +08002743 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002744#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002745 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002746#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002747 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002748 vmx->nested.nested_vmx_exit_ctls_high |=
2749 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002750 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002751 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2752
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002753 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002754 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002755
Jan Kiszka2996fca2014-06-16 13:59:43 +02002756 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002757 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002758
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002759 /* entry controls */
2760 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002761 vmx->nested.nested_vmx_entry_ctls_low,
2762 vmx->nested.nested_vmx_entry_ctls_high);
2763 vmx->nested.nested_vmx_entry_ctls_low =
2764 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2765 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002766#ifdef CONFIG_X86_64
2767 VM_ENTRY_IA32E_MODE |
2768#endif
2769 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002770 vmx->nested.nested_vmx_entry_ctls_high |=
2771 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002772 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002773 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002774
Jan Kiszka2996fca2014-06-16 13:59:43 +02002775 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002776 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002777
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002778 /* cpu-based controls */
2779 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002780 vmx->nested.nested_vmx_procbased_ctls_low,
2781 vmx->nested.nested_vmx_procbased_ctls_high);
2782 vmx->nested.nested_vmx_procbased_ctls_low =
2783 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2784 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002785 CPU_BASED_VIRTUAL_INTR_PENDING |
2786 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002787 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2788 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2789 CPU_BASED_CR3_STORE_EXITING |
2790#ifdef CONFIG_X86_64
2791 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2792#endif
2793 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002794 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2795 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2796 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2797 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002798 /*
2799 * We can allow some features even when not supported by the
2800 * hardware. For example, L1 can specify an MSR bitmap - and we
2801 * can use it to avoid exits to L1 - even when L0 runs L2
2802 * without MSR bitmaps.
2803 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002804 vmx->nested.nested_vmx_procbased_ctls_high |=
2805 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002806 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002807
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002808 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002809 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002810 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2811
Paolo Bonzini80154d72017-08-24 13:55:35 +02002812 /*
2813 * secondary cpu-based controls. Do not include those that
2814 * depend on CPUID bits, they are added later by vmx_cpuid_update.
2815 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002816 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002817 vmx->nested.nested_vmx_secondary_ctls_low,
2818 vmx->nested.nested_vmx_secondary_ctls_high);
2819 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2820 vmx->nested.nested_vmx_secondary_ctls_high &=
Paolo Bonzinia5f46452017-03-30 11:55:32 +02002821 SECONDARY_EXEC_RDRAND | SECONDARY_EXEC_RDSEED |
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002822 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002823 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002824 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002825 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002826 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002827 SECONDARY_EXEC_WBINVD_EXITING |
Dan Williamsdfa169b2016-06-02 11:17:24 -07002828 SECONDARY_EXEC_XSAVES;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002829
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002830 if (enable_ept) {
2831 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002832 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002833 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002834 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002835 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002836 if (cpu_has_vmx_ept_execute_only())
2837 vmx->nested.nested_vmx_ept_caps |=
2838 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002839 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002840 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002841 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2842 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002843 if (enable_ept_ad_bits) {
2844 vmx->nested.nested_vmx_secondary_ctls_high |=
2845 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002846 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002847 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002848 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002849 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002850
Bandan Das27c42a12017-08-03 15:54:42 -04002851 if (cpu_has_vmx_vmfunc()) {
2852 vmx->nested.nested_vmx_secondary_ctls_high |=
2853 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002854 /*
2855 * Advertise EPTP switching unconditionally
2856 * since we emulate it
2857 */
2858 vmx->nested.nested_vmx_vmfunc_controls =
2859 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002860 }
2861
Paolo Bonzinief697a72016-03-18 16:58:38 +01002862 /*
2863 * Old versions of KVM use the single-context version without
2864 * checking for support, so declare that it is supported even
2865 * though it is treated as global context. The alternative is
2866 * not failing the single-context invvpid, and it is worse.
2867 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002868 if (enable_vpid) {
2869 vmx->nested.nested_vmx_secondary_ctls_high |=
2870 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002871 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002872 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002873 } else
Wanpeng Li089d7b62015-10-13 09:18:37 -07002874 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002875
Radim Krčmář0790ec12015-03-17 14:02:32 +01002876 if (enable_unrestricted_guest)
2877 vmx->nested.nested_vmx_secondary_ctls_high |=
2878 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2879
Jan Kiszkac18911a2013-03-13 16:06:41 +01002880 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002881 rdmsr(MSR_IA32_VMX_MISC,
2882 vmx->nested.nested_vmx_misc_low,
2883 vmx->nested.nested_vmx_misc_high);
2884 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2885 vmx->nested.nested_vmx_misc_low |=
2886 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002887 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002888 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002889
2890 /*
2891 * This MSR reports some information about VMX support. We
2892 * should return information about the VMX we emulate for the
2893 * guest, and the VMCS structure we give it - not about the
2894 * VMX support of the underlying hardware.
2895 */
2896 vmx->nested.nested_vmx_basic =
2897 VMCS12_REVISION |
2898 VMX_BASIC_TRUE_CTLS |
2899 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2900 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2901
2902 if (cpu_has_vmx_basic_inout())
2903 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2904
2905 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002906 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002907 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2908 * We picked the standard core2 setting.
2909 */
2910#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2911#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2912 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002913 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002914
2915 /* These MSRs specify bits which the guest must keep fixed off. */
2916 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2917 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002918
2919 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2920 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002921}
2922
David Matlack38991522016-11-29 18:14:08 -08002923/*
2924 * if fixed0[i] == 1: val[i] must be 1
2925 * if fixed1[i] == 0: val[i] must be 0
2926 */
2927static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2928{
2929 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002930}
2931
2932static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2933{
David Matlack38991522016-11-29 18:14:08 -08002934 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002935}
2936
2937static inline u64 vmx_control_msr(u32 low, u32 high)
2938{
2939 return low | ((u64)high << 32);
2940}
2941
David Matlack62cc6b9d2016-11-29 18:14:07 -08002942static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2943{
2944 superset &= mask;
2945 subset &= mask;
2946
2947 return (superset | subset) == superset;
2948}
2949
2950static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2951{
2952 const u64 feature_and_reserved =
2953 /* feature (except bit 48; see below) */
2954 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2955 /* reserved */
2956 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2957 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2958
2959 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2960 return -EINVAL;
2961
2962 /*
2963 * KVM does not emulate a version of VMX that constrains physical
2964 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2965 */
2966 if (data & BIT_ULL(48))
2967 return -EINVAL;
2968
2969 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2970 vmx_basic_vmcs_revision_id(data))
2971 return -EINVAL;
2972
2973 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2974 return -EINVAL;
2975
2976 vmx->nested.nested_vmx_basic = data;
2977 return 0;
2978}
2979
2980static int
2981vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2982{
2983 u64 supported;
2984 u32 *lowp, *highp;
2985
2986 switch (msr_index) {
2987 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2988 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2989 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2990 break;
2991 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2992 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2993 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2994 break;
2995 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2996 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2997 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2998 break;
2999 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3000 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
3001 highp = &vmx->nested.nested_vmx_entry_ctls_high;
3002 break;
3003 case MSR_IA32_VMX_PROCBASED_CTLS2:
3004 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
3005 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
3006 break;
3007 default:
3008 BUG();
3009 }
3010
3011 supported = vmx_control_msr(*lowp, *highp);
3012
3013 /* Check must-be-1 bits are still 1. */
3014 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3015 return -EINVAL;
3016
3017 /* Check must-be-0 bits are still 0. */
3018 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3019 return -EINVAL;
3020
3021 *lowp = data;
3022 *highp = data >> 32;
3023 return 0;
3024}
3025
3026static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3027{
3028 const u64 feature_and_reserved_bits =
3029 /* feature */
3030 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3031 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3032 /* reserved */
3033 GENMASK_ULL(13, 9) | BIT_ULL(31);
3034 u64 vmx_misc;
3035
3036 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3037 vmx->nested.nested_vmx_misc_high);
3038
3039 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3040 return -EINVAL;
3041
3042 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3043 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3044 vmx_misc_preemption_timer_rate(data) !=
3045 vmx_misc_preemption_timer_rate(vmx_misc))
3046 return -EINVAL;
3047
3048 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3049 return -EINVAL;
3050
3051 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3052 return -EINVAL;
3053
3054 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3055 return -EINVAL;
3056
3057 vmx->nested.nested_vmx_misc_low = data;
3058 vmx->nested.nested_vmx_misc_high = data >> 32;
3059 return 0;
3060}
3061
3062static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3063{
3064 u64 vmx_ept_vpid_cap;
3065
3066 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3067 vmx->nested.nested_vmx_vpid_caps);
3068
3069 /* Every bit is either reserved or a feature bit. */
3070 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3071 return -EINVAL;
3072
3073 vmx->nested.nested_vmx_ept_caps = data;
3074 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3075 return 0;
3076}
3077
3078static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3079{
3080 u64 *msr;
3081
3082 switch (msr_index) {
3083 case MSR_IA32_VMX_CR0_FIXED0:
3084 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3085 break;
3086 case MSR_IA32_VMX_CR4_FIXED0:
3087 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3088 break;
3089 default:
3090 BUG();
3091 }
3092
3093 /*
3094 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3095 * must be 1 in the restored value.
3096 */
3097 if (!is_bitwise_subset(data, *msr, -1ULL))
3098 return -EINVAL;
3099
3100 *msr = data;
3101 return 0;
3102}
3103
3104/*
3105 * Called when userspace is restoring VMX MSRs.
3106 *
3107 * Returns 0 on success, non-0 otherwise.
3108 */
3109static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3110{
3111 struct vcpu_vmx *vmx = to_vmx(vcpu);
3112
3113 switch (msr_index) {
3114 case MSR_IA32_VMX_BASIC:
3115 return vmx_restore_vmx_basic(vmx, data);
3116 case MSR_IA32_VMX_PINBASED_CTLS:
3117 case MSR_IA32_VMX_PROCBASED_CTLS:
3118 case MSR_IA32_VMX_EXIT_CTLS:
3119 case MSR_IA32_VMX_ENTRY_CTLS:
3120 /*
3121 * The "non-true" VMX capability MSRs are generated from the
3122 * "true" MSRs, so we do not support restoring them directly.
3123 *
3124 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3125 * should restore the "true" MSRs with the must-be-1 bits
3126 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3127 * DEFAULT SETTINGS".
3128 */
3129 return -EINVAL;
3130 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3131 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3132 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3133 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3134 case MSR_IA32_VMX_PROCBASED_CTLS2:
3135 return vmx_restore_control_msr(vmx, msr_index, data);
3136 case MSR_IA32_VMX_MISC:
3137 return vmx_restore_vmx_misc(vmx, data);
3138 case MSR_IA32_VMX_CR0_FIXED0:
3139 case MSR_IA32_VMX_CR4_FIXED0:
3140 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3141 case MSR_IA32_VMX_CR0_FIXED1:
3142 case MSR_IA32_VMX_CR4_FIXED1:
3143 /*
3144 * These MSRs are generated based on the vCPU's CPUID, so we
3145 * do not support restoring them directly.
3146 */
3147 return -EINVAL;
3148 case MSR_IA32_VMX_EPT_VPID_CAP:
3149 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3150 case MSR_IA32_VMX_VMCS_ENUM:
3151 vmx->nested.nested_vmx_vmcs_enum = data;
3152 return 0;
3153 default:
3154 /*
3155 * The rest of the VMX capability MSRs do not support restore.
3156 */
3157 return -EINVAL;
3158 }
3159}
3160
Jan Kiszkacae50132014-01-04 18:47:22 +01003161/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003162static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3163{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003164 struct vcpu_vmx *vmx = to_vmx(vcpu);
3165
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003166 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003167 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003168 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003169 break;
3170 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3171 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003172 *pdata = vmx_control_msr(
3173 vmx->nested.nested_vmx_pinbased_ctls_low,
3174 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003175 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3176 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003177 break;
3178 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3179 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003180 *pdata = vmx_control_msr(
3181 vmx->nested.nested_vmx_procbased_ctls_low,
3182 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003183 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3184 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003185 break;
3186 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3187 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003188 *pdata = vmx_control_msr(
3189 vmx->nested.nested_vmx_exit_ctls_low,
3190 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003191 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3192 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003193 break;
3194 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3195 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003196 *pdata = vmx_control_msr(
3197 vmx->nested.nested_vmx_entry_ctls_low,
3198 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003199 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3200 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003201 break;
3202 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003203 *pdata = vmx_control_msr(
3204 vmx->nested.nested_vmx_misc_low,
3205 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003206 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003207 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003208 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003209 break;
3210 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003211 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003212 break;
3213 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003214 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003215 break;
3216 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003217 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003218 break;
3219 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003220 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003221 break;
3222 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003223 *pdata = vmx_control_msr(
3224 vmx->nested.nested_vmx_secondary_ctls_low,
3225 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003226 break;
3227 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003228 *pdata = vmx->nested.nested_vmx_ept_caps |
3229 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003230 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003231 case MSR_IA32_VMX_VMFUNC:
3232 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3233 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003234 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003235 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003236 }
3237
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003238 return 0;
3239}
3240
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003241static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3242 uint64_t val)
3243{
3244 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3245
3246 return !(val & ~valid_bits);
3247}
3248
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003249/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250 * Reads an msr value (of 'msr_index') into 'pdata'.
3251 * Returns 0 on success, non-0 otherwise.
3252 * Assumes vcpu_load() was already called.
3253 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003254static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003255{
Avi Kivity26bb0982009-09-07 11:14:12 +03003256 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003257
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003258 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003259#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003260 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003261 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003262 break;
3263 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003264 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003265 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003266 case MSR_KERNEL_GS_BASE:
3267 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003268 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003269 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003270#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003271 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003272 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303273 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003274 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275 break;
3276 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003277 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003278 break;
3279 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003280 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281 break;
3282 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003283 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003284 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003285 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003286 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003287 (!msr_info->host_initiated &&
3288 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003289 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003290 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003291 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003292 case MSR_IA32_MCG_EXT_CTL:
3293 if (!msr_info->host_initiated &&
3294 !(to_vmx(vcpu)->msr_ia32_feature_control &
3295 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003296 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003297 msr_info->data = vcpu->arch.mcg_ext_ctl;
3298 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003299 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003300 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003301 break;
3302 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3303 if (!nested_vmx_allowed(vcpu))
3304 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003305 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003306 case MSR_IA32_XSS:
3307 if (!vmx_xsaves_supported())
3308 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003309 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003310 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003311 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003312 if (!msr_info->host_initiated &&
3313 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003314 return 1;
3315 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003316 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003317 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003318 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003319 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003320 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003322 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003323 }
3324
Avi Kivity6aa8b732006-12-10 02:21:36 -08003325 return 0;
3326}
3327
Jan Kiszkacae50132014-01-04 18:47:22 +01003328static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3329
Avi Kivity6aa8b732006-12-10 02:21:36 -08003330/*
3331 * Writes msr value into into the appropriate "register".
3332 * Returns 0 on success, non-0 otherwise.
3333 * Assumes vcpu_load() was already called.
3334 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003335static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003336{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003337 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003338 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003339 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003340 u32 msr_index = msr_info->index;
3341 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003342
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003344 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003345 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003346 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003347#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003348 case MSR_FS_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_FS_BASE, data);
3351 break;
3352 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003353 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354 vmcs_writel(GUEST_GS_BASE, data);
3355 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003356 case MSR_KERNEL_GS_BASE:
3357 vmx_load_host_state(vmx);
3358 vmx->msr_guest_kernel_gs_base = data;
3359 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360#endif
3361 case MSR_IA32_SYSENTER_CS:
3362 vmcs_write32(GUEST_SYSENTER_CS, data);
3363 break;
3364 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003365 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366 break;
3367 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003368 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003370 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003371 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003372 (!msr_info->host_initiated &&
3373 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003374 return 1;
Jim Mattson45316622017-05-23 11:52:54 -07003375 if (is_noncanonical_address(data & PAGE_MASK) ||
3376 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003377 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003378 vmcs_write64(GUEST_BNDCFGS, data);
3379 break;
3380 case MSR_IA32_TSC:
3381 kvm_write_tsc(vcpu, msr_info);
3382 break;
3383 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003384 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003385 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3386 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003387 vmcs_write64(GUEST_IA32_PAT, data);
3388 vcpu->arch.pat = data;
3389 break;
3390 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003391 ret = kvm_set_msr_common(vcpu, msr_info);
3392 break;
Will Auldba904632012-11-29 12:42:50 -08003393 case MSR_IA32_TSC_ADJUST:
3394 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003395 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003396 case MSR_IA32_MCG_EXT_CTL:
3397 if ((!msr_info->host_initiated &&
3398 !(to_vmx(vcpu)->msr_ia32_feature_control &
3399 FEATURE_CONTROL_LMCE)) ||
3400 (data & ~MCG_EXT_CTL_LMCE_EN))
3401 return 1;
3402 vcpu->arch.mcg_ext_ctl = data;
3403 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003404 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003405 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003406 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003407 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3408 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003409 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003410 if (msr_info->host_initiated && data == 0)
3411 vmx_leave_nested(vcpu);
3412 break;
3413 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003414 if (!msr_info->host_initiated)
3415 return 1; /* they are read-only */
3416 if (!nested_vmx_allowed(vcpu))
3417 return 1;
3418 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003419 case MSR_IA32_XSS:
3420 if (!vmx_xsaves_supported())
3421 return 1;
3422 /*
3423 * The only supported bit as of Skylake is bit 8, but
3424 * it is not supported on KVM.
3425 */
3426 if (data != 0)
3427 return 1;
3428 vcpu->arch.ia32_xss = data;
3429 if (vcpu->arch.ia32_xss != host_xss)
3430 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3431 vcpu->arch.ia32_xss, host_xss);
3432 else
3433 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3434 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003435 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003436 if (!msr_info->host_initiated &&
3437 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003438 return 1;
3439 /* Check reserved bit, higher 32 bits should be zero */
3440 if ((data >> 32) != 0)
3441 return 1;
3442 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003443 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003444 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003445 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003446 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003447 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003448 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3449 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003450 ret = kvm_set_shared_msr(msr->index, msr->data,
3451 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003452 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003453 if (ret)
3454 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003455 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003456 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003458 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003459 }
3460
Eddie Dong2cc51562007-05-21 07:28:09 +03003461 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003462}
3463
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003464static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003465{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003466 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3467 switch (reg) {
3468 case VCPU_REGS_RSP:
3469 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3470 break;
3471 case VCPU_REGS_RIP:
3472 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3473 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003474 case VCPU_EXREG_PDPTR:
3475 if (enable_ept)
3476 ept_save_pdptrs(vcpu);
3477 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003478 default:
3479 break;
3480 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003481}
3482
Avi Kivity6aa8b732006-12-10 02:21:36 -08003483static __init int cpu_has_kvm_support(void)
3484{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003485 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003486}
3487
3488static __init int vmx_disabled_by_bios(void)
3489{
3490 u64 msr;
3491
3492 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003493 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003494 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003495 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3496 && tboot_enabled())
3497 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003498 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003499 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003500 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003501 && !tboot_enabled()) {
3502 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003503 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003504 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003505 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003506 /* launched w/o TXT and VMX disabled */
3507 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3508 && !tboot_enabled())
3509 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003510 }
3511
3512 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003513}
3514
Dongxiao Xu7725b892010-05-11 18:29:38 +08003515static void kvm_cpu_vmxon(u64 addr)
3516{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003517 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003518 intel_pt_handle_vmx(1);
3519
Dongxiao Xu7725b892010-05-11 18:29:38 +08003520 asm volatile (ASM_VMX_VMXON_RAX
3521 : : "a"(&addr), "m"(addr)
3522 : "memory", "cc");
3523}
3524
Radim Krčmář13a34e02014-08-28 15:13:03 +02003525static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003526{
3527 int cpu = raw_smp_processor_id();
3528 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003529 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003530
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003531 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003532 return -EBUSY;
3533
Nadav Har'Eld462b812011-05-24 15:26:10 +03003534 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003535 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3536 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003537
3538 /*
3539 * Now we can enable the vmclear operation in kdump
3540 * since the loaded_vmcss_on_cpu list on this cpu
3541 * has been initialized.
3542 *
3543 * Though the cpu is not in VMX operation now, there
3544 * is no problem to enable the vmclear operation
3545 * for the loaded_vmcss_on_cpu list is empty!
3546 */
3547 crash_enable_local_vmclear(cpu);
3548
Avi Kivity6aa8b732006-12-10 02:21:36 -08003549 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003550
3551 test_bits = FEATURE_CONTROL_LOCKED;
3552 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3553 if (tboot_enabled())
3554 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3555
3556 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003557 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003558 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3559 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003560 kvm_cpu_vmxon(phys_addr);
3561 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003562
3563 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003564}
3565
Nadav Har'Eld462b812011-05-24 15:26:10 +03003566static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003567{
3568 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003569 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003570
Nadav Har'Eld462b812011-05-24 15:26:10 +03003571 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3572 loaded_vmcss_on_cpu_link)
3573 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003574}
3575
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003576
3577/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3578 * tricks.
3579 */
3580static void kvm_cpu_vmxoff(void)
3581{
3582 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003583
3584 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003585 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003586}
3587
Radim Krčmář13a34e02014-08-28 15:13:03 +02003588static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003589{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003590 vmclear_local_loaded_vmcss();
3591 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003592}
3593
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003594static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003595 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003596{
3597 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003598 u32 ctl = ctl_min | ctl_opt;
3599
3600 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3601
3602 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3603 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3604
3605 /* Ensure minimum (required) set of control bits are supported. */
3606 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003607 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003608
3609 *result = ctl;
3610 return 0;
3611}
3612
Avi Kivity110312c2010-12-21 12:54:20 +02003613static __init bool allow_1_setting(u32 msr, u32 ctl)
3614{
3615 u32 vmx_msr_low, vmx_msr_high;
3616
3617 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3618 return vmx_msr_high & ctl;
3619}
3620
Yang, Sheng002c7f72007-07-31 14:23:01 +03003621static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003622{
3623 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003624 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003625 u32 _pin_based_exec_control = 0;
3626 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003627 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003628 u32 _vmexit_control = 0;
3629 u32 _vmentry_control = 0;
3630
Raghavendra K T10166742012-02-07 23:19:20 +05303631 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003632#ifdef CONFIG_X86_64
3633 CPU_BASED_CR8_LOAD_EXITING |
3634 CPU_BASED_CR8_STORE_EXITING |
3635#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003636 CPU_BASED_CR3_LOAD_EXITING |
3637 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003638 CPU_BASED_USE_IO_BITMAPS |
3639 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003640 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003641 CPU_BASED_INVLPG_EXITING |
3642 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003643
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003644 if (!kvm_mwait_in_guest())
3645 min |= CPU_BASED_MWAIT_EXITING |
3646 CPU_BASED_MONITOR_EXITING;
3647
Sheng Yangf78e0e22007-10-29 09:40:42 +08003648 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003649 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003650 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003651 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3652 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003653 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003654#ifdef CONFIG_X86_64
3655 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3656 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3657 ~CPU_BASED_CR8_STORE_EXITING;
3658#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003659 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003660 min2 = 0;
3661 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003662 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003663 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003664 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003665 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003666 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003667 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003668 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003669 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003670 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003671 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003672 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003673 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003674 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003675 SECONDARY_EXEC_TSC_SCALING |
3676 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003677 if (adjust_vmx_controls(min2, opt2,
3678 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003679 &_cpu_based_2nd_exec_control) < 0)
3680 return -EIO;
3681 }
3682#ifndef CONFIG_X86_64
3683 if (!(_cpu_based_2nd_exec_control &
3684 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3685 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3686#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003687
3688 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3689 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003690 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003691 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3692 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003693
Sheng Yangd56f5462008-04-25 10:13:16 +08003694 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003695 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3696 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003697 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3698 CPU_BASED_CR3_STORE_EXITING |
3699 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003700 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3701 vmx_capability.ept, vmx_capability.vpid);
3702 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003703
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003704 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003705#ifdef CONFIG_X86_64
3706 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3707#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003708 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003709 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003710 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3711 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003712 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003713
Paolo Bonzini2c828782017-03-27 14:37:28 +02003714 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3715 PIN_BASED_VIRTUAL_NMIS;
3716 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003717 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3718 &_pin_based_exec_control) < 0)
3719 return -EIO;
3720
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003721 if (cpu_has_broken_vmx_preemption_timer())
3722 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003723 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003724 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003725 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3726
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003727 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003728 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003729 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3730 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003731 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003732
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003733 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003734
3735 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3736 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003737 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003738
3739#ifdef CONFIG_X86_64
3740 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3741 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003742 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003743#endif
3744
3745 /* Require Write-Back (WB) memory type for VMCS accesses. */
3746 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003747 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003748
Yang, Sheng002c7f72007-07-31 14:23:01 +03003749 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003750 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003751 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003752 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003753
Yang, Sheng002c7f72007-07-31 14:23:01 +03003754 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3755 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003756 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003757 vmcs_conf->vmexit_ctrl = _vmexit_control;
3758 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003759
Avi Kivity110312c2010-12-21 12:54:20 +02003760 cpu_has_load_ia32_efer =
3761 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3762 VM_ENTRY_LOAD_IA32_EFER)
3763 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3764 VM_EXIT_LOAD_IA32_EFER);
3765
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003766 cpu_has_load_perf_global_ctrl =
3767 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3768 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3769 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3770 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3771
3772 /*
3773 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003774 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003775 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3776 *
3777 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3778 *
3779 * AAK155 (model 26)
3780 * AAP115 (model 30)
3781 * AAT100 (model 37)
3782 * BC86,AAY89,BD102 (model 44)
3783 * BA97 (model 46)
3784 *
3785 */
3786 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3787 switch (boot_cpu_data.x86_model) {
3788 case 26:
3789 case 30:
3790 case 37:
3791 case 44:
3792 case 46:
3793 cpu_has_load_perf_global_ctrl = false;
3794 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3795 "does not work properly. Using workaround\n");
3796 break;
3797 default:
3798 break;
3799 }
3800 }
3801
Borislav Petkov782511b2016-04-04 22:25:03 +02003802 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003803 rdmsrl(MSR_IA32_XSS, host_xss);
3804
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003805 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003806}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003807
3808static struct vmcs *alloc_vmcs_cpu(int cpu)
3809{
3810 int node = cpu_to_node(cpu);
3811 struct page *pages;
3812 struct vmcs *vmcs;
3813
Vlastimil Babka96db8002015-09-08 15:03:50 -07003814 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815 if (!pages)
3816 return NULL;
3817 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003818 memset(vmcs, 0, vmcs_config.size);
3819 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003820 return vmcs;
3821}
3822
3823static struct vmcs *alloc_vmcs(void)
3824{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003825 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003826}
3827
3828static void free_vmcs(struct vmcs *vmcs)
3829{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003830 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003831}
3832
Nadav Har'Eld462b812011-05-24 15:26:10 +03003833/*
3834 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3835 */
3836static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3837{
3838 if (!loaded_vmcs->vmcs)
3839 return;
3840 loaded_vmcs_clear(loaded_vmcs);
3841 free_vmcs(loaded_vmcs->vmcs);
3842 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003843 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003844}
3845
Sam Ravnborg39959582007-06-01 00:47:13 -07003846static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003847{
3848 int cpu;
3849
Zachary Amsden3230bb42009-09-29 11:38:37 -10003850 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003851 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003852 per_cpu(vmxarea, cpu) = NULL;
3853 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003854}
3855
Jim Mattson85fd5142017-07-07 12:51:41 -07003856enum vmcs_field_type {
3857 VMCS_FIELD_TYPE_U16 = 0,
3858 VMCS_FIELD_TYPE_U64 = 1,
3859 VMCS_FIELD_TYPE_U32 = 2,
3860 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3861};
3862
3863static inline int vmcs_field_type(unsigned long field)
3864{
3865 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3866 return VMCS_FIELD_TYPE_U32;
3867 return (field >> 13) & 0x3 ;
3868}
3869
3870static inline int vmcs_field_readonly(unsigned long field)
3871{
3872 return (((field >> 10) & 0x3) == 1);
3873}
3874
Bandan Dasfe2b2012014-04-21 15:20:14 -04003875static void init_vmcs_shadow_fields(void)
3876{
3877 int i, j;
3878
3879 /* No checks for read only fields yet */
3880
3881 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3882 switch (shadow_read_write_fields[i]) {
3883 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003884 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003885 continue;
3886 break;
3887 default:
3888 break;
3889 }
3890
3891 if (j < i)
3892 shadow_read_write_fields[j] =
3893 shadow_read_write_fields[i];
3894 j++;
3895 }
3896 max_shadow_read_write_fields = j;
3897
3898 /* shadowed fields guest access without vmexit */
3899 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003900 unsigned long field = shadow_read_write_fields[i];
3901
3902 clear_bit(field, vmx_vmwrite_bitmap);
3903 clear_bit(field, vmx_vmread_bitmap);
3904 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3905 clear_bit(field + 1, vmx_vmwrite_bitmap);
3906 clear_bit(field + 1, vmx_vmread_bitmap);
3907 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003908 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003909 for (i = 0; i < max_shadow_read_only_fields; i++) {
3910 unsigned long field = shadow_read_only_fields[i];
3911
3912 clear_bit(field, vmx_vmread_bitmap);
3913 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3914 clear_bit(field + 1, vmx_vmread_bitmap);
3915 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003916}
3917
Avi Kivity6aa8b732006-12-10 02:21:36 -08003918static __init int alloc_kvm_area(void)
3919{
3920 int cpu;
3921
Zachary Amsden3230bb42009-09-29 11:38:37 -10003922 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003923 struct vmcs *vmcs;
3924
3925 vmcs = alloc_vmcs_cpu(cpu);
3926 if (!vmcs) {
3927 free_kvm_area();
3928 return -ENOMEM;
3929 }
3930
3931 per_cpu(vmxarea, cpu) = vmcs;
3932 }
3933 return 0;
3934}
3935
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003936static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003937 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003939 if (!emulate_invalid_guest_state) {
3940 /*
3941 * CS and SS RPL should be equal during guest entry according
3942 * to VMX spec, but in reality it is not always so. Since vcpu
3943 * is in the middle of the transition from real mode to
3944 * protected mode it is safe to assume that RPL 0 is a good
3945 * default value.
3946 */
3947 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003948 save->selector &= ~SEGMENT_RPL_MASK;
3949 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003950 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003951 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003952 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003953}
3954
3955static void enter_pmode(struct kvm_vcpu *vcpu)
3956{
3957 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003958 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003959
Gleb Natapovd99e4152012-12-20 16:57:45 +02003960 /*
3961 * Update real mode segment cache. It may be not up-to-date if sement
3962 * register was written while vcpu was in a guest mode.
3963 */
3964 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3965 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3966 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3967 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3968 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3969 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3970
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003971 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003972
Avi Kivity2fb92db2011-04-27 19:42:18 +03003973 vmx_segment_cache_clear(vmx);
3974
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003975 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003976
3977 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003978 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3979 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980 vmcs_writel(GUEST_RFLAGS, flags);
3981
Rusty Russell66aee912007-07-17 23:34:16 +10003982 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3983 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003984
3985 update_exception_bitmap(vcpu);
3986
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003987 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3988 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3989 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3990 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3991 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3992 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993}
3994
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003995static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996{
Mathias Krause772e0312012-08-30 01:30:19 +02003997 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003998 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003999
Gleb Natapovd99e4152012-12-20 16:57:45 +02004000 var.dpl = 0x3;
4001 if (seg == VCPU_SREG_CS)
4002 var.type = 0x3;
4003
4004 if (!emulate_invalid_guest_state) {
4005 var.selector = var.base >> 4;
4006 var.base = var.base & 0xffff0;
4007 var.limit = 0xffff;
4008 var.g = 0;
4009 var.db = 0;
4010 var.present = 1;
4011 var.s = 1;
4012 var.l = 0;
4013 var.unusable = 0;
4014 var.type = 0x3;
4015 var.avl = 0;
4016 if (save->base & 0xf)
4017 printk_once(KERN_WARNING "kvm: segment base is not "
4018 "paragraph aligned when entering "
4019 "protected mode (seg=%d)", seg);
4020 }
4021
4022 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004023 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004024 vmcs_write32(sf->limit, var.limit);
4025 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004026}
4027
4028static void enter_rmode(struct kvm_vcpu *vcpu)
4029{
4030 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004031 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004033 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4034 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4035 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4036 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4037 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004038 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4039 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004040
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004041 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004042
Gleb Natapov776e58e2011-03-13 12:34:27 +02004043 /*
4044 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004045 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004046 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004047 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004048 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4049 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004050
Avi Kivity2fb92db2011-04-27 19:42:18 +03004051 vmx_segment_cache_clear(vmx);
4052
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004053 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4056
4057 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004058 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004059
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004060 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061
4062 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004063 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 update_exception_bitmap(vcpu);
4065
Gleb Natapovd99e4152012-12-20 16:57:45 +02004066 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4067 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4068 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4069 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4070 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4071 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004072
Eddie Dong8668a3c2007-10-10 14:26:45 +08004073 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074}
4075
Amit Shah401d10d2009-02-20 22:53:37 +05304076static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4077{
4078 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004079 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4080
4081 if (!msr)
4082 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304083
Avi Kivity44ea2b12009-09-06 15:55:37 +03004084 /*
4085 * Force kernel_gs_base reloading before EFER changes, as control
4086 * of this msr depends on is_long_mode().
4087 */
4088 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004089 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304090 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004091 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304092 msr->data = efer;
4093 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004094 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304095
4096 msr->data = efer & ~EFER_LME;
4097 }
4098 setup_msrs(vmx);
4099}
4100
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004101#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004102
4103static void enter_lmode(struct kvm_vcpu *vcpu)
4104{
4105 u32 guest_tr_ar;
4106
Avi Kivity2fb92db2011-04-27 19:42:18 +03004107 vmx_segment_cache_clear(to_vmx(vcpu));
4108
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004110 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004111 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4112 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004113 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004114 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4115 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004116 }
Avi Kivityda38f432010-07-06 11:30:49 +03004117 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004118}
4119
4120static void exit_lmode(struct kvm_vcpu *vcpu)
4121{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004122 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004123 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004124}
4125
4126#endif
4127
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004128static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004129{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004130 if (enable_ept) {
4131 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4132 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004133 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004134 } else {
4135 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004136 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004137}
4138
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004139static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4140{
4141 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4142}
4143
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004144static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4145{
4146 if (enable_ept)
4147 vmx_flush_tlb(vcpu);
4148}
4149
Avi Kivitye8467fd2009-12-29 18:43:06 +02004150static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4151{
4152 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4153
4154 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4155 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4156}
4157
Avi Kivityaff48ba2010-12-05 18:56:11 +02004158static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4159{
4160 if (enable_ept && is_paging(vcpu))
4161 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4162 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4163}
4164
Anthony Liguori25c4c272007-04-27 09:29:21 +03004165static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004166{
Avi Kivityfc78f512009-12-07 12:16:48 +02004167 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4168
4169 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4170 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004171}
4172
Sheng Yang14394422008-04-28 12:24:45 +08004173static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4174{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004175 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4176
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004177 if (!test_bit(VCPU_EXREG_PDPTR,
4178 (unsigned long *)&vcpu->arch.regs_dirty))
4179 return;
4180
Sheng Yang14394422008-04-28 12:24:45 +08004181 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004182 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4183 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4184 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4185 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004186 }
4187}
4188
Avi Kivity8f5d5492009-05-31 18:41:29 +03004189static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4190{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004191 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4192
Avi Kivity8f5d5492009-05-31 18:41:29 +03004193 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004194 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4195 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4196 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4197 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004198 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004199
4200 __set_bit(VCPU_EXREG_PDPTR,
4201 (unsigned long *)&vcpu->arch.regs_avail);
4202 __set_bit(VCPU_EXREG_PDPTR,
4203 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004204}
4205
David Matlack38991522016-11-29 18:14:08 -08004206static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4207{
4208 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4209 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4210 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4211
4212 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4213 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4214 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4215 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4216
4217 return fixed_bits_valid(val, fixed0, fixed1);
4218}
4219
4220static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4221{
4222 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4223 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4224
4225 return fixed_bits_valid(val, fixed0, fixed1);
4226}
4227
4228static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4229{
4230 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4231 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4232
4233 return fixed_bits_valid(val, fixed0, fixed1);
4234}
4235
4236/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4237#define nested_guest_cr4_valid nested_cr4_valid
4238#define nested_host_cr4_valid nested_cr4_valid
4239
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004240static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004241
4242static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4243 unsigned long cr0,
4244 struct kvm_vcpu *vcpu)
4245{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004246 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4247 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004248 if (!(cr0 & X86_CR0_PG)) {
4249 /* From paging/starting to nonpaging */
4250 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004251 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004252 (CPU_BASED_CR3_LOAD_EXITING |
4253 CPU_BASED_CR3_STORE_EXITING));
4254 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004255 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004256 } else if (!is_paging(vcpu)) {
4257 /* From nonpaging to paging */
4258 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004259 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004260 ~(CPU_BASED_CR3_LOAD_EXITING |
4261 CPU_BASED_CR3_STORE_EXITING));
4262 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004263 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004264 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004265
4266 if (!(cr0 & X86_CR0_WP))
4267 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004268}
4269
Avi Kivity6aa8b732006-12-10 02:21:36 -08004270static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4271{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004272 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004273 unsigned long hw_cr0;
4274
Gleb Natapov50378782013-02-04 16:00:28 +02004275 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004276 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004277 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004278 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004279 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004280
Gleb Natapov218e7632013-01-21 15:36:45 +02004281 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4282 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283
Gleb Natapov218e7632013-01-21 15:36:45 +02004284 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4285 enter_rmode(vcpu);
4286 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004287
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004288#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004289 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004290 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004292 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004293 exit_lmode(vcpu);
4294 }
4295#endif
4296
Avi Kivity089d0342009-03-23 18:26:32 +02004297 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004298 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4299
Avi Kivity6aa8b732006-12-10 02:21:36 -08004300 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004301 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004302 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004303
4304 /* depends on vcpu->arch.cr0 to be set to a new value */
4305 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004306}
4307
Peter Feiner995f00a2017-06-30 17:26:32 -07004308static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004309{
David Hildenbrandbb97a012017-08-10 23:15:28 +02004310 u64 eptp = VMX_EPTP_MT_WB | VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004311
Peter Feiner995f00a2017-06-30 17:26:32 -07004312 if (enable_ept_ad_bits &&
4313 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004314 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004315 eptp |= (root_hpa & PAGE_MASK);
4316
4317 return eptp;
4318}
4319
Avi Kivity6aa8b732006-12-10 02:21:36 -08004320static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4321{
Sheng Yang14394422008-04-28 12:24:45 +08004322 unsigned long guest_cr3;
4323 u64 eptp;
4324
4325 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004326 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004327 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004328 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004329 if (is_paging(vcpu) || is_guest_mode(vcpu))
4330 guest_cr3 = kvm_read_cr3(vcpu);
4331 else
4332 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004333 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004334 }
4335
Sheng Yang2384d2b2008-01-17 15:14:33 +08004336 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004337 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004338}
4339
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004340static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004341{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004342 /*
4343 * Pass through host's Machine Check Enable value to hw_cr4, which
4344 * is in force while we are in guest mode. Do not let guests control
4345 * this bit, even if host CR4.MCE == 0.
4346 */
4347 unsigned long hw_cr4 =
4348 (cr4_read_shadow() & X86_CR4_MCE) |
4349 (cr4 & ~X86_CR4_MCE) |
4350 (to_vmx(vcpu)->rmode.vm86_active ?
4351 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004352
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004353 if (cr4 & X86_CR4_VMXE) {
4354 /*
4355 * To use VMXON (and later other VMX instructions), a guest
4356 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4357 * So basically the check on whether to allow nested VMX
4358 * is here.
4359 */
4360 if (!nested_vmx_allowed(vcpu))
4361 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004362 }
David Matlack38991522016-11-29 18:14:08 -08004363
4364 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004365 return 1;
4366
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004367 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004368 if (enable_ept) {
4369 if (!is_paging(vcpu)) {
4370 hw_cr4 &= ~X86_CR4_PAE;
4371 hw_cr4 |= X86_CR4_PSE;
4372 } else if (!(cr4 & X86_CR4_PAE)) {
4373 hw_cr4 &= ~X86_CR4_PAE;
4374 }
4375 }
Sheng Yang14394422008-04-28 12:24:45 +08004376
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004377 if (!enable_unrestricted_guest && !is_paging(vcpu))
4378 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004379 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4380 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4381 * to be manually disabled when guest switches to non-paging
4382 * mode.
4383 *
4384 * If !enable_unrestricted_guest, the CPU is always running
4385 * with CR0.PG=1 and CR4 needs to be modified.
4386 * If enable_unrestricted_guest, the CPU automatically
4387 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004388 */
Huaitong Handdba2622016-03-22 16:51:15 +08004389 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004390
Sheng Yang14394422008-04-28 12:24:45 +08004391 vmcs_writel(CR4_READ_SHADOW, cr4);
4392 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004393 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004394}
4395
Avi Kivity6aa8b732006-12-10 02:21:36 -08004396static void vmx_get_segment(struct kvm_vcpu *vcpu,
4397 struct kvm_segment *var, int seg)
4398{
Avi Kivitya9179492011-01-03 14:28:52 +02004399 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004400 u32 ar;
4401
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004402 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004403 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004404 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004405 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004406 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004407 var->base = vmx_read_guest_seg_base(vmx, seg);
4408 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4409 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004410 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004411 var->base = vmx_read_guest_seg_base(vmx, seg);
4412 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4413 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4414 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004415 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004416 var->type = ar & 15;
4417 var->s = (ar >> 4) & 1;
4418 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004419 /*
4420 * Some userspaces do not preserve unusable property. Since usable
4421 * segment has to be present according to VMX spec we can use present
4422 * property to amend userspace bug by making unusable segment always
4423 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4424 * segment as unusable.
4425 */
4426 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004427 var->avl = (ar >> 12) & 1;
4428 var->l = (ar >> 13) & 1;
4429 var->db = (ar >> 14) & 1;
4430 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004431}
4432
Avi Kivitya9179492011-01-03 14:28:52 +02004433static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4434{
Avi Kivitya9179492011-01-03 14:28:52 +02004435 struct kvm_segment s;
4436
4437 if (to_vmx(vcpu)->rmode.vm86_active) {
4438 vmx_get_segment(vcpu, &s, seg);
4439 return s.base;
4440 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004441 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004442}
4443
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004444static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004445{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004446 struct vcpu_vmx *vmx = to_vmx(vcpu);
4447
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004448 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004449 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004450 else {
4451 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004452 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004453 }
Avi Kivity69c73022011-03-07 15:26:44 +02004454}
4455
Avi Kivity653e3102007-05-07 10:55:37 +03004456static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458 u32 ar;
4459
Avi Kivityf0495f92012-06-07 17:06:10 +03004460 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004461 ar = 1 << 16;
4462 else {
4463 ar = var->type & 15;
4464 ar |= (var->s & 1) << 4;
4465 ar |= (var->dpl & 3) << 5;
4466 ar |= (var->present & 1) << 7;
4467 ar |= (var->avl & 1) << 12;
4468 ar |= (var->l & 1) << 13;
4469 ar |= (var->db & 1) << 14;
4470 ar |= (var->g & 1) << 15;
4471 }
Avi Kivity653e3102007-05-07 10:55:37 +03004472
4473 return ar;
4474}
4475
4476static void vmx_set_segment(struct kvm_vcpu *vcpu,
4477 struct kvm_segment *var, int seg)
4478{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004479 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004480 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004481
Avi Kivity2fb92db2011-04-27 19:42:18 +03004482 vmx_segment_cache_clear(vmx);
4483
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004484 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4485 vmx->rmode.segs[seg] = *var;
4486 if (seg == VCPU_SREG_TR)
4487 vmcs_write16(sf->selector, var->selector);
4488 else if (var->s)
4489 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004490 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004491 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004492
Avi Kivity653e3102007-05-07 10:55:37 +03004493 vmcs_writel(sf->base, var->base);
4494 vmcs_write32(sf->limit, var->limit);
4495 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004496
4497 /*
4498 * Fix the "Accessed" bit in AR field of segment registers for older
4499 * qemu binaries.
4500 * IA32 arch specifies that at the time of processor reset the
4501 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004502 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004503 * state vmexit when "unrestricted guest" mode is turned on.
4504 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4505 * tree. Newer qemu binaries with that qemu fix would not need this
4506 * kvm hack.
4507 */
4508 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004509 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004510
Gleb Natapovf924d662012-12-12 19:10:55 +02004511 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004512
4513out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004514 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004515}
4516
Avi Kivity6aa8b732006-12-10 02:21:36 -08004517static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4518{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004519 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004520
4521 *db = (ar >> 14) & 1;
4522 *l = (ar >> 13) & 1;
4523}
4524
Gleb Natapov89a27f42010-02-16 10:51:48 +02004525static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004526{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004527 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4528 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004529}
4530
Gleb Natapov89a27f42010-02-16 10:51:48 +02004531static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004532{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004533 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4534 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004535}
4536
Gleb Natapov89a27f42010-02-16 10:51:48 +02004537static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004538{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004539 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4540 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004541}
4542
Gleb Natapov89a27f42010-02-16 10:51:48 +02004543static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004544{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004545 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4546 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004547}
4548
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004549static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4550{
4551 struct kvm_segment var;
4552 u32 ar;
4553
4554 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004555 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004556 if (seg == VCPU_SREG_CS)
4557 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004558 ar = vmx_segment_access_rights(&var);
4559
4560 if (var.base != (var.selector << 4))
4561 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004562 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004563 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004564 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004565 return false;
4566
4567 return true;
4568}
4569
4570static bool code_segment_valid(struct kvm_vcpu *vcpu)
4571{
4572 struct kvm_segment cs;
4573 unsigned int cs_rpl;
4574
4575 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004576 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004577
Avi Kivity1872a3f2009-01-04 23:26:52 +02004578 if (cs.unusable)
4579 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004580 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004581 return false;
4582 if (!cs.s)
4583 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004584 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004585 if (cs.dpl > cs_rpl)
4586 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004587 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004588 if (cs.dpl != cs_rpl)
4589 return false;
4590 }
4591 if (!cs.present)
4592 return false;
4593
4594 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4595 return true;
4596}
4597
4598static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4599{
4600 struct kvm_segment ss;
4601 unsigned int ss_rpl;
4602
4603 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004604 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004605
Avi Kivity1872a3f2009-01-04 23:26:52 +02004606 if (ss.unusable)
4607 return true;
4608 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004609 return false;
4610 if (!ss.s)
4611 return false;
4612 if (ss.dpl != ss_rpl) /* DPL != RPL */
4613 return false;
4614 if (!ss.present)
4615 return false;
4616
4617 return true;
4618}
4619
4620static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4621{
4622 struct kvm_segment var;
4623 unsigned int rpl;
4624
4625 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004626 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004627
Avi Kivity1872a3f2009-01-04 23:26:52 +02004628 if (var.unusable)
4629 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004630 if (!var.s)
4631 return false;
4632 if (!var.present)
4633 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004634 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004635 if (var.dpl < rpl) /* DPL < RPL */
4636 return false;
4637 }
4638
4639 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4640 * rights flags
4641 */
4642 return true;
4643}
4644
4645static bool tr_valid(struct kvm_vcpu *vcpu)
4646{
4647 struct kvm_segment tr;
4648
4649 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4650
Avi Kivity1872a3f2009-01-04 23:26:52 +02004651 if (tr.unusable)
4652 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004653 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004654 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004655 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004656 return false;
4657 if (!tr.present)
4658 return false;
4659
4660 return true;
4661}
4662
4663static bool ldtr_valid(struct kvm_vcpu *vcpu)
4664{
4665 struct kvm_segment ldtr;
4666
4667 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4668
Avi Kivity1872a3f2009-01-04 23:26:52 +02004669 if (ldtr.unusable)
4670 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004671 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004672 return false;
4673 if (ldtr.type != 2)
4674 return false;
4675 if (!ldtr.present)
4676 return false;
4677
4678 return true;
4679}
4680
4681static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4682{
4683 struct kvm_segment cs, ss;
4684
4685 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4686 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4687
Nadav Amitb32a9912015-03-29 16:33:04 +03004688 return ((cs.selector & SEGMENT_RPL_MASK) ==
4689 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004690}
4691
4692/*
4693 * Check if guest state is valid. Returns true if valid, false if
4694 * not.
4695 * We assume that registers are always usable
4696 */
4697static bool guest_state_valid(struct kvm_vcpu *vcpu)
4698{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004699 if (enable_unrestricted_guest)
4700 return true;
4701
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004702 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004703 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004704 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4705 return false;
4706 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4707 return false;
4708 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4709 return false;
4710 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4711 return false;
4712 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4713 return false;
4714 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4715 return false;
4716 } else {
4717 /* protected mode guest state checks */
4718 if (!cs_ss_rpl_check(vcpu))
4719 return false;
4720 if (!code_segment_valid(vcpu))
4721 return false;
4722 if (!stack_segment_valid(vcpu))
4723 return false;
4724 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4725 return false;
4726 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4727 return false;
4728 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4729 return false;
4730 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4731 return false;
4732 if (!tr_valid(vcpu))
4733 return false;
4734 if (!ldtr_valid(vcpu))
4735 return false;
4736 }
4737 /* TODO:
4738 * - Add checks on RIP
4739 * - Add checks on RFLAGS
4740 */
4741
4742 return true;
4743}
4744
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004745static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4746{
4747 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4748}
4749
Mike Dayd77c26f2007-10-08 09:02:08 -04004750static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004751{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004752 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004753 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004754 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004755
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004756 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004757 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004758 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4759 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004760 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004761 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004762 r = kvm_write_guest_page(kvm, fn++, &data,
4763 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004764 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004765 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004766 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4767 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004768 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004769 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4770 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004771 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004772 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004773 r = kvm_write_guest_page(kvm, fn, &data,
4774 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4775 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004776out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004777 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004778 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004779}
4780
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004781static int init_rmode_identity_map(struct kvm *kvm)
4782{
Tang Chenf51770e2014-09-16 18:41:59 +08004783 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004784 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004785 u32 tmp;
4786
Avi Kivity089d0342009-03-23 18:26:32 +02004787 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004788 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004789
4790 /* Protect kvm->arch.ept_identity_pagetable_done. */
4791 mutex_lock(&kvm->slots_lock);
4792
Tang Chenf51770e2014-09-16 18:41:59 +08004793 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004794 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004795
Sheng Yangb927a3c2009-07-21 10:42:48 +08004796 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004797
4798 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004799 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004800 goto out2;
4801
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004802 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004803 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4804 if (r < 0)
4805 goto out;
4806 /* Set up identity-mapping pagetable for EPT in real mode */
4807 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4808 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4809 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4810 r = kvm_write_guest_page(kvm, identity_map_pfn,
4811 &tmp, i * sizeof(tmp), sizeof(tmp));
4812 if (r < 0)
4813 goto out;
4814 }
4815 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004816
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004817out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004818 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004819
4820out2:
4821 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004822 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004823}
4824
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825static void seg_setup(int seg)
4826{
Mathias Krause772e0312012-08-30 01:30:19 +02004827 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004828 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829
4830 vmcs_write16(sf->selector, 0);
4831 vmcs_writel(sf->base, 0);
4832 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004833 ar = 0x93;
4834 if (seg == VCPU_SREG_CS)
4835 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004836
4837 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004838}
4839
Sheng Yangf78e0e22007-10-29 09:40:42 +08004840static int alloc_apic_access_page(struct kvm *kvm)
4841{
Xiao Guangrong44841412012-09-07 14:14:20 +08004842 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004843 int r = 0;
4844
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004845 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004846 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004847 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004848 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4849 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004850 if (r)
4851 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004852
Tang Chen73a6d942014-09-11 13:38:00 +08004853 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004854 if (is_error_page(page)) {
4855 r = -EFAULT;
4856 goto out;
4857 }
4858
Tang Chenc24ae0d2014-09-24 15:57:58 +08004859 /*
4860 * Do not pin the page in memory, so that memory hot-unplug
4861 * is able to migrate it.
4862 */
4863 put_page(page);
4864 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004865out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004866 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004867 return r;
4868}
4869
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004870static int alloc_identity_pagetable(struct kvm *kvm)
4871{
Tang Chena255d472014-09-16 18:41:58 +08004872 /* Called with kvm->slots_lock held. */
4873
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004874 int r = 0;
4875
Tang Chena255d472014-09-16 18:41:58 +08004876 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4877
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004878 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4879 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004880
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004881 return r;
4882}
4883
Wanpeng Li991e7a02015-09-16 17:30:05 +08004884static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004885{
4886 int vpid;
4887
Avi Kivity919818a2009-03-23 18:01:29 +02004888 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004889 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004890 spin_lock(&vmx_vpid_lock);
4891 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004892 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004893 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004894 else
4895 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004896 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004897 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004898}
4899
Wanpeng Li991e7a02015-09-16 17:30:05 +08004900static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004901{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004902 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004903 return;
4904 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004905 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004906 spin_unlock(&vmx_vpid_lock);
4907}
4908
Yang Zhang8d146952013-01-25 10:18:50 +08004909#define MSR_TYPE_R 1
4910#define MSR_TYPE_W 2
4911static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4912 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004913{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004914 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004915
4916 if (!cpu_has_vmx_msr_bitmap())
4917 return;
4918
4919 /*
4920 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4921 * have the write-low and read-high bitmap offsets the wrong way round.
4922 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4923 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004924 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004925 if (type & MSR_TYPE_R)
4926 /* read-low */
4927 __clear_bit(msr, msr_bitmap + 0x000 / f);
4928
4929 if (type & MSR_TYPE_W)
4930 /* write-low */
4931 __clear_bit(msr, msr_bitmap + 0x800 / f);
4932
Sheng Yang25c5f222008-03-28 13:18:56 +08004933 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4934 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004935 if (type & MSR_TYPE_R)
4936 /* read-high */
4937 __clear_bit(msr, msr_bitmap + 0x400 / f);
4938
4939 if (type & MSR_TYPE_W)
4940 /* write-high */
4941 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4942
4943 }
4944}
4945
Wincy Vanf2b93282015-02-03 23:56:03 +08004946/*
4947 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4948 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4949 */
4950static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4951 unsigned long *msr_bitmap_nested,
4952 u32 msr, int type)
4953{
4954 int f = sizeof(unsigned long);
4955
4956 if (!cpu_has_vmx_msr_bitmap()) {
4957 WARN_ON(1);
4958 return;
4959 }
4960
4961 /*
4962 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4963 * have the write-low and read-high bitmap offsets the wrong way round.
4964 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4965 */
4966 if (msr <= 0x1fff) {
4967 if (type & MSR_TYPE_R &&
4968 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4969 /* read-low */
4970 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4971
4972 if (type & MSR_TYPE_W &&
4973 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4974 /* write-low */
4975 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4976
4977 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4978 msr &= 0x1fff;
4979 if (type & MSR_TYPE_R &&
4980 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4981 /* read-high */
4982 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4983
4984 if (type & MSR_TYPE_W &&
4985 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4986 /* write-high */
4987 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4988
4989 }
4990}
4991
Avi Kivity58972972009-02-24 22:26:47 +02004992static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4993{
4994 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004995 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4996 msr, MSR_TYPE_R | MSR_TYPE_W);
4997 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4998 msr, MSR_TYPE_R | MSR_TYPE_W);
4999}
5000
Radim Krčmář2e69f862016-09-29 22:41:32 +02005001static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08005002{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005003 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08005004 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005005 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08005006 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005007 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005008 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005009 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005010 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005011 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005012 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005013 }
Avi Kivity58972972009-02-24 22:26:47 +02005014}
5015
Andrey Smetanind62caab2015-11-10 15:36:33 +03005016static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005017{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005018 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005019}
5020
David Matlackc9f04402017-08-01 14:00:40 -07005021static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5022{
5023 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5024 gfn_t gfn;
5025
5026 /*
5027 * Don't need to mark the APIC access page dirty; it is never
5028 * written to by the CPU during APIC virtualization.
5029 */
5030
5031 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5032 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5033 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5034 }
5035
5036 if (nested_cpu_has_posted_intr(vmcs12)) {
5037 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5038 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5039 }
5040}
5041
5042
David Hildenbrand6342c502017-01-25 11:58:58 +01005043static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005044{
5045 struct vcpu_vmx *vmx = to_vmx(vcpu);
5046 int max_irr;
5047 void *vapic_page;
5048 u16 status;
5049
David Matlackc9f04402017-08-01 14:00:40 -07005050 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5051 return;
Wincy Van705699a2015-02-03 23:58:17 +08005052
David Matlackc9f04402017-08-01 14:00:40 -07005053 vmx->nested.pi_pending = false;
5054 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5055 return;
Wincy Van705699a2015-02-03 23:58:17 +08005056
David Matlackc9f04402017-08-01 14:00:40 -07005057 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5058 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005059 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005060 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5061 kunmap(vmx->nested.virtual_apic_page);
5062
5063 status = vmcs_read16(GUEST_INTR_STATUS);
5064 if ((u8)max_irr > ((u8)status & 0xff)) {
5065 status &= ~0xff;
5066 status |= (u8)max_irr;
5067 vmcs_write16(GUEST_INTR_STATUS, status);
5068 }
5069 }
David Matlackc9f04402017-08-01 14:00:40 -07005070
5071 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005072}
5073
Wincy Van06a55242017-04-28 13:13:59 +08005074static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5075 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005076{
5077#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005078 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5079
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005080 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005081 struct vcpu_vmx *vmx = to_vmx(vcpu);
5082
5083 /*
5084 * Currently, we don't support urgent interrupt,
5085 * all interrupts are recognized as non-urgent
5086 * interrupt, so we cannot post interrupts when
5087 * 'SN' is set.
5088 *
5089 * If the vcpu is in guest mode, it means it is
5090 * running instead of being scheduled out and
5091 * waiting in the run queue, and that's the only
5092 * case when 'SN' is set currently, warning if
5093 * 'SN' is set.
5094 */
5095 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
5096
Wincy Van06a55242017-04-28 13:13:59 +08005097 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005098 return true;
5099 }
5100#endif
5101 return false;
5102}
5103
Wincy Van705699a2015-02-03 23:58:17 +08005104static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5105 int vector)
5106{
5107 struct vcpu_vmx *vmx = to_vmx(vcpu);
5108
5109 if (is_guest_mode(vcpu) &&
5110 vector == vmx->nested.posted_intr_nv) {
5111 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005112 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005113 /*
5114 * If a posted intr is not recognized by hardware,
5115 * we will accomplish it in the next vmentry.
5116 */
5117 vmx->nested.pi_pending = true;
5118 kvm_make_request(KVM_REQ_EVENT, vcpu);
5119 return 0;
5120 }
5121 return -1;
5122}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005123/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005124 * Send interrupt to vcpu via posted interrupt way.
5125 * 1. If target vcpu is running(non-root mode), send posted interrupt
5126 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5127 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5128 * interrupt from PIR in next vmentry.
5129 */
5130static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5131{
5132 struct vcpu_vmx *vmx = to_vmx(vcpu);
5133 int r;
5134
Wincy Van705699a2015-02-03 23:58:17 +08005135 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5136 if (!r)
5137 return;
5138
Yang Zhanga20ed542013-04-11 19:25:15 +08005139 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5140 return;
5141
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005142 /* If a previous notification has sent the IPI, nothing to do. */
5143 if (pi_test_and_set_on(&vmx->pi_desc))
5144 return;
5145
Wincy Van06a55242017-04-28 13:13:59 +08005146 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005147 kvm_vcpu_kick(vcpu);
5148}
5149
Avi Kivity6aa8b732006-12-10 02:21:36 -08005150/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005151 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5152 * will not change in the lifetime of the guest.
5153 * Note that host-state that does change is set elsewhere. E.g., host-state
5154 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5155 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005156static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005157{
5158 u32 low32, high32;
5159 unsigned long tmpl;
5160 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005161 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005162
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005163 cr0 = read_cr0();
5164 WARN_ON(cr0 & X86_CR0_TS);
5165 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005166
5167 /*
5168 * Save the most likely value for this task's CR3 in the VMCS.
5169 * We can't use __get_current_cr3_fast() because we're not atomic.
5170 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005171 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005172 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
5173 vmx->host_state.vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005174
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005175 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005176 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005177 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5178 vmx->host_state.vmcs_host_cr4 = cr4;
5179
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005180 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005181#ifdef CONFIG_X86_64
5182 /*
5183 * Load null selectors, so we can avoid reloading them in
5184 * __vmx_load_host_state(), in case userspace uses the null selectors
5185 * too (the expected case).
5186 */
5187 vmcs_write16(HOST_DS_SELECTOR, 0);
5188 vmcs_write16(HOST_ES_SELECTOR, 0);
5189#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005190 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5191 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005192#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005193 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5194 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5195
5196 native_store_idt(&dt);
5197 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005198 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005199
Avi Kivity83287ea422012-09-16 15:10:57 +03005200 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005201
5202 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5203 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5204 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5205 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5206
5207 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5208 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5209 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5210 }
5211}
5212
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005213static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5214{
5215 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5216 if (enable_ept)
5217 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005218 if (is_guest_mode(&vmx->vcpu))
5219 vmx->vcpu.arch.cr4_guest_owned_bits &=
5220 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005221 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5222}
5223
Yang Zhang01e439b2013-04-11 19:25:12 +08005224static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5225{
5226 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5227
Andrey Smetanind62caab2015-11-10 15:36:33 +03005228 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005229 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005230 /* Enable the preemption timer dynamically */
5231 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005232 return pin_based_exec_ctrl;
5233}
5234
Andrey Smetanind62caab2015-11-10 15:36:33 +03005235static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5236{
5237 struct vcpu_vmx *vmx = to_vmx(vcpu);
5238
5239 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005240 if (cpu_has_secondary_exec_ctrls()) {
5241 if (kvm_vcpu_apicv_active(vcpu))
5242 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5243 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5244 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5245 else
5246 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5247 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5248 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5249 }
5250
5251 if (cpu_has_vmx_msr_bitmap())
5252 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005253}
5254
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005255static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5256{
5257 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005258
5259 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5260 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5261
Paolo Bonzini35754c92015-07-29 12:05:37 +02005262 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005263 exec_control &= ~CPU_BASED_TPR_SHADOW;
5264#ifdef CONFIG_X86_64
5265 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5266 CPU_BASED_CR8_LOAD_EXITING;
5267#endif
5268 }
5269 if (!enable_ept)
5270 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5271 CPU_BASED_CR3_LOAD_EXITING |
5272 CPU_BASED_INVLPG_EXITING;
5273 return exec_control;
5274}
5275
Paolo Bonzini80154d72017-08-24 13:55:35 +02005276static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005277{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005278 struct kvm_vcpu *vcpu = &vmx->vcpu;
5279
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005280 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005281 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005282 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5283 if (vmx->vpid == 0)
5284 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5285 if (!enable_ept) {
5286 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5287 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005288 /* Enable INVPCID for non-ept guests may cause performance regression. */
5289 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005290 }
5291 if (!enable_unrestricted_guest)
5292 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5293 if (!ple_gap)
5294 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005295 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005296 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5297 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005298 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005299 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5300 (handle_vmptrld).
5301 We can NOT enable shadow_vmcs here because we don't have yet
5302 a current VMCS12
5303 */
5304 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005305
5306 if (!enable_pml)
5307 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005308
Paolo Bonzini80154d72017-08-24 13:55:35 +02005309 if (vmx_rdtscp_supported()) {
5310 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5311 if (!rdtscp_enabled)
5312 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5313
5314 if (nested) {
5315 if (rdtscp_enabled)
5316 vmx->nested.nested_vmx_secondary_ctls_high |=
5317 SECONDARY_EXEC_RDTSCP;
5318 else
5319 vmx->nested.nested_vmx_secondary_ctls_high &=
5320 ~SECONDARY_EXEC_RDTSCP;
5321 }
5322 }
5323
5324 if (vmx_invpcid_supported()) {
5325 /* Exposing INVPCID only when PCID is exposed */
5326 bool invpcid_enabled =
5327 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5328 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5329
5330 if (!invpcid_enabled) {
5331 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5332 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5333 }
5334
5335 if (nested) {
5336 if (invpcid_enabled)
5337 vmx->nested.nested_vmx_secondary_ctls_high |=
5338 SECONDARY_EXEC_ENABLE_INVPCID;
5339 else
5340 vmx->nested.nested_vmx_secondary_ctls_high &=
5341 ~SECONDARY_EXEC_ENABLE_INVPCID;
5342 }
5343 }
5344
5345 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005346}
5347
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005348static void ept_set_mmio_spte_mask(void)
5349{
5350 /*
5351 * EPT Misconfigurations can be generated if the value of bits 2:0
5352 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005353 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005354 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5355 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005356}
5357
Wanpeng Lif53cd632014-12-02 19:14:58 +08005358#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005359/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005360 * Sets up the vmcs for emulated real mode.
5361 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005362static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005363{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005364#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005365 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005366#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005367 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005368
Avi Kivity6aa8b732006-12-10 02:21:36 -08005369 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005370 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5371 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005372
Abel Gordon4607c2d2013-04-18 14:35:55 +03005373 if (enable_shadow_vmcs) {
5374 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5375 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5376 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005377 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005378 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005379
Avi Kivity6aa8b732006-12-10 02:21:36 -08005380 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5381
Avi Kivity6aa8b732006-12-10 02:21:36 -08005382 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005383 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005384 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005385
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005386 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005387
Dan Williamsdfa169b2016-06-02 11:17:24 -07005388 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005389 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005390 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005391 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005392 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005393
Andrey Smetanind62caab2015-11-10 15:36:33 +03005394 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005395 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5396 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5397 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5398 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5399
5400 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005401
Li RongQing0bcf2612015-12-03 13:29:34 +08005402 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005403 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005404 }
5405
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005406 if (ple_gap) {
5407 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005408 vmx->ple_window = ple_window;
5409 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005410 }
5411
Xiao Guangrongc3707952011-07-12 03:28:04 +08005412 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5413 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005414 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5415
Avi Kivity9581d442010-10-19 16:46:55 +02005416 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5417 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005418 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005419#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005420 rdmsrl(MSR_FS_BASE, a);
5421 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5422 rdmsrl(MSR_GS_BASE, a);
5423 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5424#else
5425 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5426 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5427#endif
5428
Bandan Das2a499e42017-08-03 15:54:41 -04005429 if (cpu_has_vmx_vmfunc())
5430 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5431
Eddie Dong2cc51562007-05-21 07:28:09 +03005432 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5433 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005434 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005435 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005436 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005437
Radim Krčmář74545702015-04-27 15:11:25 +02005438 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5439 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005440
Paolo Bonzini03916db2014-07-24 14:21:57 +02005441 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005442 u32 index = vmx_msr_index[i];
5443 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005444 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445
5446 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5447 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005448 if (wrmsr_safe(index, data_low, data_high) < 0)
5449 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005450 vmx->guest_msrs[j].index = i;
5451 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005452 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005453 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005454 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005455
Gleb Natapov2961e8762013-11-25 15:37:13 +02005456
5457 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005458
5459 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005460 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005461
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005462 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5463 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5464
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005465 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005466
Wanpeng Lif53cd632014-12-02 19:14:58 +08005467 if (vmx_xsaves_supported())
5468 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5469
Peter Feiner4e595162016-07-07 14:49:58 -07005470 if (enable_pml) {
5471 ASSERT(vmx->pml_pg);
5472 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5473 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5474 }
5475
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005476 return 0;
5477}
5478
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005479static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005480{
5481 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005482 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005483 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005484
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005485 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005486
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005487 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005488 kvm_set_cr8(vcpu, 0);
5489
5490 if (!init_event) {
5491 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5492 MSR_IA32_APICBASE_ENABLE;
5493 if (kvm_vcpu_is_reset_bsp(vcpu))
5494 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5495 apic_base_msr.host_initiated = true;
5496 kvm_set_apic_base(vcpu, &apic_base_msr);
5497 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005498
Avi Kivity2fb92db2011-04-27 19:42:18 +03005499 vmx_segment_cache_clear(vmx);
5500
Avi Kivity5706be02008-08-20 15:07:31 +03005501 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005502 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005503 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005504
5505 seg_setup(VCPU_SREG_DS);
5506 seg_setup(VCPU_SREG_ES);
5507 seg_setup(VCPU_SREG_FS);
5508 seg_setup(VCPU_SREG_GS);
5509 seg_setup(VCPU_SREG_SS);
5510
5511 vmcs_write16(GUEST_TR_SELECTOR, 0);
5512 vmcs_writel(GUEST_TR_BASE, 0);
5513 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5514 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5515
5516 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5517 vmcs_writel(GUEST_LDTR_BASE, 0);
5518 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5519 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5520
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005521 if (!init_event) {
5522 vmcs_write32(GUEST_SYSENTER_CS, 0);
5523 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5524 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5525 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5526 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005527
5528 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005529 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005530
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005531 vmcs_writel(GUEST_GDTR_BASE, 0);
5532 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5533
5534 vmcs_writel(GUEST_IDTR_BASE, 0);
5535 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5536
Anthony Liguori443381a2010-12-06 10:53:38 -06005537 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005538 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005539 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005540
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005541 setup_msrs(vmx);
5542
Avi Kivity6aa8b732006-12-10 02:21:36 -08005543 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5544
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005545 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005546 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005547 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005548 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005549 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005550 vmcs_write32(TPR_THRESHOLD, 0);
5551 }
5552
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005553 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005554
Andrey Smetanind62caab2015-11-10 15:36:33 +03005555 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005556 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5557
Sheng Yang2384d2b2008-01-17 15:14:33 +08005558 if (vmx->vpid != 0)
5559 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5560
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005561 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005562 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005563 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005564 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005565 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005566
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005567 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005568
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005569 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005570}
5571
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005572/*
5573 * In nested virtualization, check if L1 asked to exit on external interrupts.
5574 * For most existing hypervisors, this will always return true.
5575 */
5576static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5577{
5578 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5579 PIN_BASED_EXT_INTR_MASK;
5580}
5581
Bandan Das77b0f5d2014-04-19 18:17:45 -04005582/*
5583 * In nested virtualization, check if L1 has set
5584 * VM_EXIT_ACK_INTR_ON_EXIT
5585 */
5586static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5587{
5588 return get_vmcs12(vcpu)->vm_exit_controls &
5589 VM_EXIT_ACK_INTR_ON_EXIT;
5590}
5591
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005592static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5593{
5594 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5595 PIN_BASED_NMI_EXITING;
5596}
5597
Jan Kiszkac9a79532014-03-07 20:03:15 +01005598static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005599{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005600 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5601 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005602}
5603
Jan Kiszkac9a79532014-03-07 20:03:15 +01005604static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005605{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005606 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005607 enable_irq_window(vcpu);
5608 return;
5609 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005610
Paolo Bonzini47c01522016-12-19 11:44:07 +01005611 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5612 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005613}
5614
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005615static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005616{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005617 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005618 uint32_t intr;
5619 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005620
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005621 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005622
Avi Kivityfa89a812008-09-01 15:57:51 +03005623 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005624 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005625 int inc_eip = 0;
5626 if (vcpu->arch.interrupt.soft)
5627 inc_eip = vcpu->arch.event_exit_inst_len;
5628 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005629 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005630 return;
5631 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005632 intr = irq | INTR_INFO_VALID_MASK;
5633 if (vcpu->arch.interrupt.soft) {
5634 intr |= INTR_TYPE_SOFT_INTR;
5635 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5636 vmx->vcpu.arch.event_exit_inst_len);
5637 } else
5638 intr |= INTR_TYPE_EXT_INTR;
5639 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005640}
5641
Sheng Yangf08864b2008-05-15 18:23:25 +08005642static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5643{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005644 struct vcpu_vmx *vmx = to_vmx(vcpu);
5645
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005646 ++vcpu->stat.nmi_injections;
5647 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005648
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005649 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005650 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005651 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005652 return;
5653 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005654
Sheng Yangf08864b2008-05-15 18:23:25 +08005655 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5656 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005657}
5658
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005659static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5660{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005661 struct vcpu_vmx *vmx = to_vmx(vcpu);
5662 bool masked;
5663
5664 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005665 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005666 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5667 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5668 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005669}
5670
5671static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5672{
5673 struct vcpu_vmx *vmx = to_vmx(vcpu);
5674
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005675 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005676 if (masked)
5677 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5678 GUEST_INTR_STATE_NMI);
5679 else
5680 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5681 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005682}
5683
Jan Kiszka2505dc92013-04-14 12:12:47 +02005684static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5685{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005686 if (to_vmx(vcpu)->nested.nested_run_pending)
5687 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005688
Jan Kiszka2505dc92013-04-14 12:12:47 +02005689 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5690 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5691 | GUEST_INTR_STATE_NMI));
5692}
5693
Gleb Natapov78646122009-03-23 12:12:11 +02005694static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5695{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005696 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5697 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005698 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5699 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005700}
5701
Izik Eiduscbc94022007-10-25 00:29:55 +02005702static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5703{
5704 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005705
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005706 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5707 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005708 if (ret)
5709 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005710 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005711 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005712}
5713
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005714static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005715{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005716 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005717 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005718 /*
5719 * Update instruction length as we may reinject the exception
5720 * from user space while in guest debugging mode.
5721 */
5722 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5723 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005724 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005725 return false;
5726 /* fall through */
5727 case DB_VECTOR:
5728 if (vcpu->guest_debug &
5729 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5730 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005731 /* fall through */
5732 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005733 case OF_VECTOR:
5734 case BR_VECTOR:
5735 case UD_VECTOR:
5736 case DF_VECTOR:
5737 case SS_VECTOR:
5738 case GP_VECTOR:
5739 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005740 return true;
5741 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005742 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005743 return false;
5744}
5745
5746static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5747 int vec, u32 err_code)
5748{
5749 /*
5750 * Instruction with address size override prefix opcode 0x67
5751 * Cause the #SS fault with 0 error code in VM86 mode.
5752 */
5753 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5754 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5755 if (vcpu->arch.halt_request) {
5756 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005757 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005758 }
5759 return 1;
5760 }
5761 return 0;
5762 }
5763
5764 /*
5765 * Forward all other exceptions that are valid in real mode.
5766 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5767 * the required debugging infrastructure rework.
5768 */
5769 kvm_queue_exception(vcpu, vec);
5770 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005771}
5772
Andi Kleena0861c02009-06-08 17:37:09 +08005773/*
5774 * Trigger machine check on the host. We assume all the MSRs are already set up
5775 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5776 * We pass a fake environment to the machine check handler because we want
5777 * the guest to be always treated like user space, no matter what context
5778 * it used internally.
5779 */
5780static void kvm_machine_check(void)
5781{
5782#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5783 struct pt_regs regs = {
5784 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5785 .flags = X86_EFLAGS_IF,
5786 };
5787
5788 do_machine_check(&regs, 0);
5789#endif
5790}
5791
Avi Kivity851ba692009-08-24 11:10:17 +03005792static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005793{
5794 /* already handled by vcpu_run */
5795 return 1;
5796}
5797
Avi Kivity851ba692009-08-24 11:10:17 +03005798static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005799{
Avi Kivity1155f762007-11-22 11:30:47 +02005800 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005801 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005802 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005803 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005804 u32 vect_info;
5805 enum emulation_result er;
5806
Avi Kivity1155f762007-11-22 11:30:47 +02005807 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005808 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005809
Andi Kleena0861c02009-06-08 17:37:09 +08005810 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005811 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005812
Jim Mattsonef85b672016-12-12 11:01:37 -08005813 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005814 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005815
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005816 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005817 if (is_guest_mode(vcpu)) {
5818 kvm_queue_exception(vcpu, UD_VECTOR);
5819 return 1;
5820 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005821 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005822 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005823 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005824 return 1;
5825 }
5826
Avi Kivity6aa8b732006-12-10 02:21:36 -08005827 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005828 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005829 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005830
5831 /*
5832 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5833 * MMIO, it is better to report an internal error.
5834 * See the comments in vmx_handle_exit.
5835 */
5836 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5837 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5838 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5839 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005840 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005841 vcpu->run->internal.data[0] = vect_info;
5842 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005843 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005844 return 0;
5845 }
5846
Avi Kivity6aa8b732006-12-10 02:21:36 -08005847 if (is_page_fault(intr_info)) {
5848 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005849 /* EPT won't cause page fault directly */
5850 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
5851 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0,
5852 true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005853 }
5854
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005855 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005856
5857 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5858 return handle_rmode_exception(vcpu, ex_no, error_code);
5859
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005860 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005861 case AC_VECTOR:
5862 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5863 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005864 case DB_VECTOR:
5865 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5866 if (!(vcpu->guest_debug &
5867 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005868 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005869 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005870 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5871 skip_emulated_instruction(vcpu);
5872
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005873 kvm_queue_exception(vcpu, DB_VECTOR);
5874 return 1;
5875 }
5876 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5877 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5878 /* fall through */
5879 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005880 /*
5881 * Update instruction length as we may reinject #BP from
5882 * user space while in guest debugging mode. Reading it for
5883 * #DB as well causes no harm, it is not used in that case.
5884 */
5885 vmx->vcpu.arch.event_exit_inst_len =
5886 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005887 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005888 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005889 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5890 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005891 break;
5892 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005893 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5894 kvm_run->ex.exception = ex_no;
5895 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005896 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005897 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005898 return 0;
5899}
5900
Avi Kivity851ba692009-08-24 11:10:17 +03005901static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005902{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005903 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005904 return 1;
5905}
5906
Avi Kivity851ba692009-08-24 11:10:17 +03005907static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005908{
Avi Kivity851ba692009-08-24 11:10:17 +03005909 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005910 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005911 return 0;
5912}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005913
Avi Kivity851ba692009-08-24 11:10:17 +03005914static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005915{
He, Qingbfdaab02007-09-12 14:18:28 +08005916 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005917 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005918 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005919
He, Qingbfdaab02007-09-12 14:18:28 +08005920 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005921 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005922 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005923
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005924 ++vcpu->stat.io_exits;
5925
5926 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005927 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005928
5929 port = exit_qualification >> 16;
5930 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005931
Kyle Huey6affcbe2016-11-29 12:40:40 -08005932 ret = kvm_skip_emulated_instruction(vcpu);
5933
5934 /*
5935 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5936 * KVM_EXIT_DEBUG here.
5937 */
5938 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005939}
5940
Ingo Molnar102d8322007-02-19 14:37:47 +02005941static void
5942vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5943{
5944 /*
5945 * Patch in the VMCALL instruction:
5946 */
5947 hypercall[0] = 0x0f;
5948 hypercall[1] = 0x01;
5949 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005950}
5951
Guo Chao0fa06072012-06-28 15:16:19 +08005952/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005953static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5954{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005955 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005956 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5957 unsigned long orig_val = val;
5958
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005959 /*
5960 * We get here when L2 changed cr0 in a way that did not change
5961 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005962 * but did change L0 shadowed bits. So we first calculate the
5963 * effective cr0 value that L1 would like to write into the
5964 * hardware. It consists of the L2-owned bits from the new
5965 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005966 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005967 val = (val & ~vmcs12->cr0_guest_host_mask) |
5968 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5969
David Matlack38991522016-11-29 18:14:08 -08005970 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005971 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005972
5973 if (kvm_set_cr0(vcpu, val))
5974 return 1;
5975 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005976 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005977 } else {
5978 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005979 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005980 return 1;
David Matlack38991522016-11-29 18:14:08 -08005981
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005982 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005983 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005984}
5985
5986static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5987{
5988 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005989 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5990 unsigned long orig_val = val;
5991
5992 /* analogously to handle_set_cr0 */
5993 val = (val & ~vmcs12->cr4_guest_host_mask) |
5994 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5995 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005996 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005997 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005998 return 0;
5999 } else
6000 return kvm_set_cr4(vcpu, val);
6001}
6002
Avi Kivity851ba692009-08-24 11:10:17 +03006003static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006004{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006005 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006006 int cr;
6007 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006008 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006009 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006010
He, Qingbfdaab02007-09-12 14:18:28 +08006011 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006012 cr = exit_qualification & 15;
6013 reg = (exit_qualification >> 8) & 15;
6014 switch ((exit_qualification >> 4) & 3) {
6015 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006016 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006017 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006018 switch (cr) {
6019 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006020 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006021 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006022 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006023 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006024 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006025 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006026 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006027 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006028 case 8: {
6029 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006030 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006031 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006032 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006033 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006034 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006035 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006036 return ret;
6037 /*
6038 * TODO: we might be squashing a
6039 * KVM_GUESTDBG_SINGLESTEP-triggered
6040 * KVM_EXIT_DEBUG here.
6041 */
Avi Kivity851ba692009-08-24 11:10:17 +03006042 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006043 return 0;
6044 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006045 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006046 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006047 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006048 WARN_ONCE(1, "Guest should always own CR0.TS");
6049 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006050 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006051 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006052 case 1: /*mov from cr*/
6053 switch (cr) {
6054 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006055 val = kvm_read_cr3(vcpu);
6056 kvm_register_write(vcpu, reg, val);
6057 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006058 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006059 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006060 val = kvm_get_cr8(vcpu);
6061 kvm_register_write(vcpu, reg, val);
6062 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006063 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006064 }
6065 break;
6066 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006067 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006068 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006069 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006070
Kyle Huey6affcbe2016-11-29 12:40:40 -08006071 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006072 default:
6073 break;
6074 }
Avi Kivity851ba692009-08-24 11:10:17 +03006075 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006076 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006077 (int)(exit_qualification >> 4) & 3, cr);
6078 return 0;
6079}
6080
Avi Kivity851ba692009-08-24 11:10:17 +03006081static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006082{
He, Qingbfdaab02007-09-12 14:18:28 +08006083 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006084 int dr, dr7, reg;
6085
6086 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6087 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6088
6089 /* First, if DR does not exist, trigger UD */
6090 if (!kvm_require_dr(vcpu, dr))
6091 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006092
Jan Kiszkaf2483412010-01-20 18:20:20 +01006093 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006094 if (!kvm_require_cpl(vcpu, 0))
6095 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006096 dr7 = vmcs_readl(GUEST_DR7);
6097 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006098 /*
6099 * As the vm-exit takes precedence over the debug trap, we
6100 * need to emulate the latter, either for the host or the
6101 * guest debugging itself.
6102 */
6103 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006104 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006105 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006106 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006107 vcpu->run->debug.arch.exception = DB_VECTOR;
6108 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006109 return 0;
6110 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006111 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006112 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006113 kvm_queue_exception(vcpu, DB_VECTOR);
6114 return 1;
6115 }
6116 }
6117
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006118 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006119 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6120 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006121
6122 /*
6123 * No more DR vmexits; force a reload of the debug registers
6124 * and reenter on this instruction. The next vmexit will
6125 * retrieve the full state of the debug registers.
6126 */
6127 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6128 return 1;
6129 }
6130
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006131 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6132 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006133 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006134
6135 if (kvm_get_dr(vcpu, dr, &val))
6136 return 1;
6137 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006138 } else
Nadav Amit57773922014-06-18 17:19:23 +03006139 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006140 return 1;
6141
Kyle Huey6affcbe2016-11-29 12:40:40 -08006142 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006143}
6144
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006145static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6146{
6147 return vcpu->arch.dr6;
6148}
6149
6150static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6151{
6152}
6153
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006154static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6155{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006156 get_debugreg(vcpu->arch.db[0], 0);
6157 get_debugreg(vcpu->arch.db[1], 1);
6158 get_debugreg(vcpu->arch.db[2], 2);
6159 get_debugreg(vcpu->arch.db[3], 3);
6160 get_debugreg(vcpu->arch.dr6, 6);
6161 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6162
6163 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006164 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006165}
6166
Gleb Natapov020df072010-04-13 10:05:23 +03006167static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6168{
6169 vmcs_writel(GUEST_DR7, val);
6170}
6171
Avi Kivity851ba692009-08-24 11:10:17 +03006172static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006173{
Kyle Huey6a908b62016-11-29 12:40:37 -08006174 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006175}
6176
Avi Kivity851ba692009-08-24 11:10:17 +03006177static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006178{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006179 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006180 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006181
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006182 msr_info.index = ecx;
6183 msr_info.host_initiated = false;
6184 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006185 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006186 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006187 return 1;
6188 }
6189
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006190 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006191
Avi Kivity6aa8b732006-12-10 02:21:36 -08006192 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006193 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6194 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006195 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006196}
6197
Avi Kivity851ba692009-08-24 11:10:17 +03006198static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006199{
Will Auld8fe8ab42012-11-29 12:42:12 -08006200 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006201 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6202 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6203 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006204
Will Auld8fe8ab42012-11-29 12:42:12 -08006205 msr.data = data;
6206 msr.index = ecx;
6207 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006208 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006209 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006210 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006211 return 1;
6212 }
6213
Avi Kivity59200272010-01-25 19:47:02 +02006214 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006215 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006216}
6217
Avi Kivity851ba692009-08-24 11:10:17 +03006218static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006219{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006220 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006221 return 1;
6222}
6223
Avi Kivity851ba692009-08-24 11:10:17 +03006224static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006225{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006226 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6227 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006228
Avi Kivity3842d132010-07-27 12:30:24 +03006229 kvm_make_request(KVM_REQ_EVENT, vcpu);
6230
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006231 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006232 return 1;
6233}
6234
Avi Kivity851ba692009-08-24 11:10:17 +03006235static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006236{
Avi Kivityd3bef152007-06-05 15:53:05 +03006237 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006238}
6239
Avi Kivity851ba692009-08-24 11:10:17 +03006240static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006241{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006242 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006243}
6244
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006245static int handle_invd(struct kvm_vcpu *vcpu)
6246{
Andre Przywara51d8b662010-12-21 11:12:02 +01006247 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006248}
6249
Avi Kivity851ba692009-08-24 11:10:17 +03006250static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006251{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006252 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006253
6254 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006255 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006256}
6257
Avi Kivityfee84b02011-11-10 14:57:25 +02006258static int handle_rdpmc(struct kvm_vcpu *vcpu)
6259{
6260 int err;
6261
6262 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006263 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006264}
6265
Avi Kivity851ba692009-08-24 11:10:17 +03006266static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006267{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006268 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006269}
6270
Dexuan Cui2acf9232010-06-10 11:27:12 +08006271static int handle_xsetbv(struct kvm_vcpu *vcpu)
6272{
6273 u64 new_bv = kvm_read_edx_eax(vcpu);
6274 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6275
6276 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006277 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006278 return 1;
6279}
6280
Wanpeng Lif53cd632014-12-02 19:14:58 +08006281static int handle_xsaves(struct kvm_vcpu *vcpu)
6282{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006283 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006284 WARN(1, "this should never happen\n");
6285 return 1;
6286}
6287
6288static int handle_xrstors(struct kvm_vcpu *vcpu)
6289{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006290 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006291 WARN(1, "this should never happen\n");
6292 return 1;
6293}
6294
Avi Kivity851ba692009-08-24 11:10:17 +03006295static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006296{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006297 if (likely(fasteoi)) {
6298 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6299 int access_type, offset;
6300
6301 access_type = exit_qualification & APIC_ACCESS_TYPE;
6302 offset = exit_qualification & APIC_ACCESS_OFFSET;
6303 /*
6304 * Sane guest uses MOV to write EOI, with written value
6305 * not cared. So make a short-circuit here by avoiding
6306 * heavy instruction emulation.
6307 */
6308 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6309 (offset == APIC_EOI)) {
6310 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006311 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006312 }
6313 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006314 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006315}
6316
Yang Zhangc7c9c562013-01-25 10:18:51 +08006317static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6318{
6319 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6320 int vector = exit_qualification & 0xff;
6321
6322 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6323 kvm_apic_set_eoi_accelerated(vcpu, vector);
6324 return 1;
6325}
6326
Yang Zhang83d4c282013-01-25 10:18:49 +08006327static int handle_apic_write(struct kvm_vcpu *vcpu)
6328{
6329 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6330 u32 offset = exit_qualification & 0xfff;
6331
6332 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6333 kvm_apic_write_nodecode(vcpu, offset);
6334 return 1;
6335}
6336
Avi Kivity851ba692009-08-24 11:10:17 +03006337static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006338{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006339 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006340 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006341 bool has_error_code = false;
6342 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006343 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006344 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006345
6346 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006347 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006348 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006349
6350 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6351
6352 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006353 if (reason == TASK_SWITCH_GATE && idt_v) {
6354 switch (type) {
6355 case INTR_TYPE_NMI_INTR:
6356 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006357 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006358 break;
6359 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006360 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006361 kvm_clear_interrupt_queue(vcpu);
6362 break;
6363 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006364 if (vmx->idt_vectoring_info &
6365 VECTORING_INFO_DELIVER_CODE_MASK) {
6366 has_error_code = true;
6367 error_code =
6368 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6369 }
6370 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006371 case INTR_TYPE_SOFT_EXCEPTION:
6372 kvm_clear_exception_queue(vcpu);
6373 break;
6374 default:
6375 break;
6376 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006377 }
Izik Eidus37817f22008-03-24 23:14:53 +02006378 tss_selector = exit_qualification;
6379
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006380 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6381 type != INTR_TYPE_EXT_INTR &&
6382 type != INTR_TYPE_NMI_INTR))
6383 skip_emulated_instruction(vcpu);
6384
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006385 if (kvm_task_switch(vcpu, tss_selector,
6386 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6387 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006388 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6389 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6390 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006391 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006392 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006393
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006394 /*
6395 * TODO: What about debug traps on tss switch?
6396 * Are we supposed to inject them and update dr6?
6397 */
6398
6399 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006400}
6401
Avi Kivity851ba692009-08-24 11:10:17 +03006402static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006403{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006404 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006405 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006406 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006407
Sheng Yangf9c617f2009-03-25 10:08:52 +08006408 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006409
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006410 /*
6411 * EPT violation happened while executing iret from NMI,
6412 * "blocked by NMI" bit has to be set before next VM entry.
6413 * There are errata that may cause this bit to not be set:
6414 * AAK134, BY25.
6415 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006416 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006417 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006418 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6419
Sheng Yang14394422008-04-28 12:24:45 +08006420 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006421 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006422
Junaid Shahid27959a42016-12-06 16:46:10 -08006423 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006424 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006425 ? PFERR_USER_MASK : 0;
6426 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006427 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006428 ? PFERR_WRITE_MASK : 0;
6429 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006430 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006431 ? PFERR_FETCH_MASK : 0;
6432 /* ept page table entry is present? */
6433 error_code |= (exit_qualification &
6434 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6435 EPT_VIOLATION_EXECUTABLE))
6436 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006437
Paolo Bonzinieebed242016-11-28 14:39:58 +01006438 error_code |= (exit_qualification & 0x100) != 0 ?
6439 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
6440
Yang Zhang25d92082013-08-06 12:00:32 +03006441 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006442 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006443}
6444
Avi Kivity851ba692009-08-24 11:10:17 +03006445static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006446{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006447 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006448 gpa_t gpa;
6449
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006450 /*
6451 * A nested guest cannot optimize MMIO vmexits, because we have an
6452 * nGPA here instead of the required GPA.
6453 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006454 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006455 if (!is_guest_mode(vcpu) &&
6456 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006457 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006458 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006459 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006460
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006461 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6462 if (ret >= 0)
6463 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006464
6465 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006466 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006467
Avi Kivity851ba692009-08-24 11:10:17 +03006468 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6469 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006470
6471 return 0;
6472}
6473
Avi Kivity851ba692009-08-24 11:10:17 +03006474static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006475{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006476 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6477 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006478 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006479 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006480
6481 return 1;
6482}
6483
Mohammed Gamal80ced182009-09-01 12:48:18 +02006484static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006485{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006486 struct vcpu_vmx *vmx = to_vmx(vcpu);
6487 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006488 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006489 u32 cpu_exec_ctrl;
6490 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006491 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006492
6493 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6494 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006495
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006496 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006497 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006498 return handle_interrupt_window(&vmx->vcpu);
6499
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006500 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006501 return 1;
6502
Gleb Natapov991eebf2013-04-11 12:10:51 +03006503 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006504
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006505 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006506 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006507 ret = 0;
6508 goto out;
6509 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006510
Avi Kivityde5f70e2012-06-12 20:22:28 +03006511 if (err != EMULATE_DONE) {
6512 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6513 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6514 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006515 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006516 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006517
Gleb Natapov8d76c492013-05-08 18:38:44 +03006518 if (vcpu->arch.halt_request) {
6519 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006520 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006521 goto out;
6522 }
6523
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006524 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006525 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006526 if (need_resched())
6527 schedule();
6528 }
6529
Mohammed Gamal80ced182009-09-01 12:48:18 +02006530out:
6531 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006532}
6533
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006534static int __grow_ple_window(int val)
6535{
6536 if (ple_window_grow < 1)
6537 return ple_window;
6538
6539 val = min(val, ple_window_actual_max);
6540
6541 if (ple_window_grow < ple_window)
6542 val *= ple_window_grow;
6543 else
6544 val += ple_window_grow;
6545
6546 return val;
6547}
6548
6549static int __shrink_ple_window(int val, int modifier, int minimum)
6550{
6551 if (modifier < 1)
6552 return ple_window;
6553
6554 if (modifier < ple_window)
6555 val /= modifier;
6556 else
6557 val -= modifier;
6558
6559 return max(val, minimum);
6560}
6561
6562static void grow_ple_window(struct kvm_vcpu *vcpu)
6563{
6564 struct vcpu_vmx *vmx = to_vmx(vcpu);
6565 int old = vmx->ple_window;
6566
6567 vmx->ple_window = __grow_ple_window(old);
6568
6569 if (vmx->ple_window != old)
6570 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006571
6572 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006573}
6574
6575static void shrink_ple_window(struct kvm_vcpu *vcpu)
6576{
6577 struct vcpu_vmx *vmx = to_vmx(vcpu);
6578 int old = vmx->ple_window;
6579
6580 vmx->ple_window = __shrink_ple_window(old,
6581 ple_window_shrink, ple_window);
6582
6583 if (vmx->ple_window != old)
6584 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006585
6586 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006587}
6588
6589/*
6590 * ple_window_actual_max is computed to be one grow_ple_window() below
6591 * ple_window_max. (See __grow_ple_window for the reason.)
6592 * This prevents overflows, because ple_window_max is int.
6593 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6594 * this process.
6595 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6596 */
6597static void update_ple_window_actual_max(void)
6598{
6599 ple_window_actual_max =
6600 __shrink_ple_window(max(ple_window_max, ple_window),
6601 ple_window_grow, INT_MIN);
6602}
6603
Feng Wubf9f6ac2015-09-18 22:29:55 +08006604/*
6605 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6606 */
6607static void wakeup_handler(void)
6608{
6609 struct kvm_vcpu *vcpu;
6610 int cpu = smp_processor_id();
6611
6612 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6613 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6614 blocked_vcpu_list) {
6615 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6616
6617 if (pi_test_on(pi_desc) == 1)
6618 kvm_vcpu_kick(vcpu);
6619 }
6620 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6621}
6622
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006623void vmx_enable_tdp(void)
6624{
6625 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6626 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6627 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6628 0ull, VMX_EPT_EXECUTABLE_MASK,
6629 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Peter Feiner995f00a2017-06-30 17:26:32 -07006630 VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006631
6632 ept_set_mmio_spte_mask();
6633 kvm_enable_tdp();
6634}
6635
Tiejun Chenf2c76482014-10-28 10:14:47 +08006636static __init int hardware_setup(void)
6637{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006638 int r = -ENOMEM, i, msr;
6639
6640 rdmsrl_safe(MSR_EFER, &host_efer);
6641
6642 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6643 kvm_define_shared_msr(i, vmx_msr_index[i]);
6644
Radim Krčmář23611332016-09-29 22:41:33 +02006645 for (i = 0; i < VMX_BITMAP_NR; i++) {
6646 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6647 if (!vmx_bitmap[i])
6648 goto out;
6649 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006650
6651 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006652 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6653 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6654
6655 /*
6656 * Allow direct access to the PC debug port (it is often used for I/O
6657 * delays, but the vmexits simply slow things down).
6658 */
6659 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6660 clear_bit(0x80, vmx_io_bitmap_a);
6661
6662 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6663
6664 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6665 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6666
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006667 if (setup_vmcs_config(&vmcs_config) < 0) {
6668 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006669 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006670 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006671
6672 if (boot_cpu_has(X86_FEATURE_NX))
6673 kvm_enable_efer_bits(EFER_NX);
6674
Wanpeng Li08d839c2017-03-23 05:30:08 -07006675 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6676 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006677 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006678
Tiejun Chenf2c76482014-10-28 10:14:47 +08006679 if (!cpu_has_vmx_shadow_vmcs())
6680 enable_shadow_vmcs = 0;
6681 if (enable_shadow_vmcs)
6682 init_vmcs_shadow_fields();
6683
6684 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006685 !cpu_has_vmx_ept_4levels() ||
6686 !cpu_has_vmx_ept_mt_wb()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006687 enable_ept = 0;
6688 enable_unrestricted_guest = 0;
6689 enable_ept_ad_bits = 0;
6690 }
6691
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006692 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006693 enable_ept_ad_bits = 0;
6694
6695 if (!cpu_has_vmx_unrestricted_guest())
6696 enable_unrestricted_guest = 0;
6697
Paolo Bonziniad15a292015-01-30 16:18:49 +01006698 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006699 flexpriority_enabled = 0;
6700
Paolo Bonziniad15a292015-01-30 16:18:49 +01006701 /*
6702 * set_apic_access_page_addr() is used to reload apic access
6703 * page upon invalidation. No need to do anything if not
6704 * using the APIC_ACCESS_ADDR VMCS field.
6705 */
6706 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006707 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006708
6709 if (!cpu_has_vmx_tpr_shadow())
6710 kvm_x86_ops->update_cr8_intercept = NULL;
6711
6712 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6713 kvm_disable_largepages();
6714
6715 if (!cpu_has_vmx_ple())
6716 ple_gap = 0;
6717
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006718 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006719 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006720 kvm_x86_ops->sync_pir_to_irr = NULL;
6721 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006722
Haozhong Zhang64903d62015-10-20 15:39:09 +08006723 if (cpu_has_vmx_tsc_scaling()) {
6724 kvm_has_tsc_control = true;
6725 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6726 kvm_tsc_scaling_ratio_frac_bits = 48;
6727 }
6728
Tiejun Chenbaa03522014-12-23 16:21:11 +08006729 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6730 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6731 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6732 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6733 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6734 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006735
Wanpeng Lic63e4562016-09-23 19:17:16 +08006736 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6737 vmx_msr_bitmap_legacy, PAGE_SIZE);
6738 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6739 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006740 memcpy(vmx_msr_bitmap_legacy_x2apic,
6741 vmx_msr_bitmap_legacy, PAGE_SIZE);
6742 memcpy(vmx_msr_bitmap_longmode_x2apic,
6743 vmx_msr_bitmap_longmode, PAGE_SIZE);
6744
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006745 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6746
Radim Krčmář40d83382016-09-29 22:41:31 +02006747 for (msr = 0x800; msr <= 0x8ff; msr++) {
6748 if (msr == 0x839 /* TMCCT */)
6749 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006750 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006751 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006752
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006753 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006754 * TPR reads and writes can be virtualized even if virtual interrupt
6755 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006756 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006757 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6758 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6759
Roman Kagan3ce424e2016-05-18 17:48:20 +03006760 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006761 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006762 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006763 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006764
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006765 if (enable_ept)
6766 vmx_enable_tdp();
6767 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006768 kvm_disable_tdp();
6769
6770 update_ple_window_actual_max();
6771
Kai Huang843e4332015-01-28 10:54:28 +08006772 /*
6773 * Only enable PML when hardware supports PML feature, and both EPT
6774 * and EPT A/D bit features are enabled -- PML depends on them to work.
6775 */
6776 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6777 enable_pml = 0;
6778
6779 if (!enable_pml) {
6780 kvm_x86_ops->slot_enable_log_dirty = NULL;
6781 kvm_x86_ops->slot_disable_log_dirty = NULL;
6782 kvm_x86_ops->flush_log_dirty = NULL;
6783 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6784 }
6785
Yunhong Jiang64672c92016-06-13 14:19:59 -07006786 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6787 u64 vmx_msr;
6788
6789 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6790 cpu_preemption_timer_multi =
6791 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6792 } else {
6793 kvm_x86_ops->set_hv_timer = NULL;
6794 kvm_x86_ops->cancel_hv_timer = NULL;
6795 }
6796
Feng Wubf9f6ac2015-09-18 22:29:55 +08006797 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6798
Ashok Rajc45dcc72016-06-22 14:59:56 +08006799 kvm_mce_cap_supported |= MCG_LMCE_P;
6800
Tiejun Chenf2c76482014-10-28 10:14:47 +08006801 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006802
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006803out:
Radim Krčmář23611332016-09-29 22:41:33 +02006804 for (i = 0; i < VMX_BITMAP_NR; i++)
6805 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006806
6807 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006808}
6809
6810static __exit void hardware_unsetup(void)
6811{
Radim Krčmář23611332016-09-29 22:41:33 +02006812 int i;
6813
6814 for (i = 0; i < VMX_BITMAP_NR; i++)
6815 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006816
Tiejun Chenf2c76482014-10-28 10:14:47 +08006817 free_kvm_area();
6818}
6819
Avi Kivity6aa8b732006-12-10 02:21:36 -08006820/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006821 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6822 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6823 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006824static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006825{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006826 if (ple_gap)
6827 grow_ple_window(vcpu);
6828
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006829 /*
6830 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6831 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6832 * never set PAUSE_EXITING and just set PLE if supported,
6833 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6834 */
6835 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006836 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006837}
6838
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006839static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006840{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006841 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006842}
6843
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006844static int handle_mwait(struct kvm_vcpu *vcpu)
6845{
6846 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6847 return handle_nop(vcpu);
6848}
6849
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006850static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6851{
6852 return 1;
6853}
6854
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006855static int handle_monitor(struct kvm_vcpu *vcpu)
6856{
6857 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6858 return handle_nop(vcpu);
6859}
6860
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006861/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006862 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6863 * We could reuse a single VMCS for all the L2 guests, but we also want the
6864 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6865 * allows keeping them loaded on the processor, and in the future will allow
6866 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6867 * every entry if they never change.
6868 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6869 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6870 *
6871 * The following functions allocate and free a vmcs02 in this pool.
6872 */
6873
6874/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6875static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6876{
6877 struct vmcs02_list *item;
6878 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6879 if (item->vmptr == vmx->nested.current_vmptr) {
6880 list_move(&item->list, &vmx->nested.vmcs02_pool);
6881 return &item->vmcs02;
6882 }
6883
6884 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6885 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006886 item = list_last_entry(&vmx->nested.vmcs02_pool,
6887 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006888 item->vmptr = vmx->nested.current_vmptr;
6889 list_move(&item->list, &vmx->nested.vmcs02_pool);
6890 return &item->vmcs02;
6891 }
6892
6893 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006894 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006895 if (!item)
6896 return NULL;
6897 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006898 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006899 if (!item->vmcs02.vmcs) {
6900 kfree(item);
6901 return NULL;
6902 }
6903 loaded_vmcs_init(&item->vmcs02);
6904 item->vmptr = vmx->nested.current_vmptr;
6905 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6906 vmx->nested.vmcs02_num++;
6907 return &item->vmcs02;
6908}
6909
6910/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6911static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6912{
6913 struct vmcs02_list *item;
6914 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6915 if (item->vmptr == vmptr) {
6916 free_loaded_vmcs(&item->vmcs02);
6917 list_del(&item->list);
6918 kfree(item);
6919 vmx->nested.vmcs02_num--;
6920 return;
6921 }
6922}
6923
6924/*
6925 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006926 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6927 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006928 */
6929static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6930{
6931 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006932
6933 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006934 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006935 /*
6936 * Something will leak if the above WARN triggers. Better than
6937 * a use-after-free.
6938 */
6939 if (vmx->loaded_vmcs == &item->vmcs02)
6940 continue;
6941
6942 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006943 list_del(&item->list);
6944 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006945 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006946 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006947}
6948
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006949/*
6950 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6951 * set the success or error code of an emulated VMX instruction, as specified
6952 * by Vol 2B, VMX Instruction Reference, "Conventions".
6953 */
6954static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6955{
6956 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6957 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6958 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6959}
6960
6961static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6962{
6963 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6964 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6965 X86_EFLAGS_SF | X86_EFLAGS_OF))
6966 | X86_EFLAGS_CF);
6967}
6968
Abel Gordon145c28d2013-04-18 14:36:55 +03006969static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006970 u32 vm_instruction_error)
6971{
6972 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6973 /*
6974 * failValid writes the error number to the current VMCS, which
6975 * can't be done there isn't a current VMCS.
6976 */
6977 nested_vmx_failInvalid(vcpu);
6978 return;
6979 }
6980 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6981 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6982 X86_EFLAGS_SF | X86_EFLAGS_OF))
6983 | X86_EFLAGS_ZF);
6984 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6985 /*
6986 * We don't need to force a shadow sync because
6987 * VM_INSTRUCTION_ERROR is not shadowed
6988 */
6989}
Abel Gordon145c28d2013-04-18 14:36:55 +03006990
Wincy Vanff651cb2014-12-11 08:52:58 +03006991static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6992{
6993 /* TODO: not to reset guest simply here. */
6994 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02006995 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03006996}
6997
Jan Kiszkaf4124502014-03-07 20:03:13 +01006998static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6999{
7000 struct vcpu_vmx *vmx =
7001 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7002
7003 vmx->nested.preemption_timer_expired = true;
7004 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7005 kvm_vcpu_kick(&vmx->vcpu);
7006
7007 return HRTIMER_NORESTART;
7008}
7009
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007010/*
Bandan Das19677e32014-05-06 02:19:15 -04007011 * Decode the memory-address operand of a vmx instruction, as recorded on an
7012 * exit caused by such an instruction (run by a guest hypervisor).
7013 * On success, returns 0. When the operand is invalid, returns 1 and throws
7014 * #UD or #GP.
7015 */
7016static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7017 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007018 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007019{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007020 gva_t off;
7021 bool exn;
7022 struct kvm_segment s;
7023
Bandan Das19677e32014-05-06 02:19:15 -04007024 /*
7025 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7026 * Execution", on an exit, vmx_instruction_info holds most of the
7027 * addressing components of the operand. Only the displacement part
7028 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7029 * For how an actual address is calculated from all these components,
7030 * refer to Vol. 1, "Operand Addressing".
7031 */
7032 int scaling = vmx_instruction_info & 3;
7033 int addr_size = (vmx_instruction_info >> 7) & 7;
7034 bool is_reg = vmx_instruction_info & (1u << 10);
7035 int seg_reg = (vmx_instruction_info >> 15) & 7;
7036 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7037 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7038 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7039 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7040
7041 if (is_reg) {
7042 kvm_queue_exception(vcpu, UD_VECTOR);
7043 return 1;
7044 }
7045
7046 /* Addr = segment_base + offset */
7047 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007048 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007049 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007050 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007051 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007052 off += kvm_register_read(vcpu, index_reg)<<scaling;
7053 vmx_get_segment(vcpu, &s, seg_reg);
7054 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007055
7056 if (addr_size == 1) /* 32 bit */
7057 *ret &= 0xffffffff;
7058
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007059 /* Checks for #GP/#SS exceptions. */
7060 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007061 if (is_long_mode(vcpu)) {
7062 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7063 * non-canonical form. This is the only check on the memory
7064 * destination for long mode!
7065 */
7066 exn = is_noncanonical_address(*ret);
7067 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007068 /* Protected mode: apply checks for segment validity in the
7069 * following order:
7070 * - segment type check (#GP(0) may be thrown)
7071 * - usability check (#GP(0)/#SS(0))
7072 * - limit check (#GP(0)/#SS(0))
7073 */
7074 if (wr)
7075 /* #GP(0) if the destination operand is located in a
7076 * read-only data segment or any code segment.
7077 */
7078 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7079 else
7080 /* #GP(0) if the source operand is located in an
7081 * execute-only code segment
7082 */
7083 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007084 if (exn) {
7085 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7086 return 1;
7087 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007088 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7089 */
7090 exn = (s.unusable != 0);
7091 /* Protected mode: #GP(0)/#SS(0) if the memory
7092 * operand is outside the segment limit.
7093 */
7094 exn = exn || (off + sizeof(u64) > s.limit);
7095 }
7096 if (exn) {
7097 kvm_queue_exception_e(vcpu,
7098 seg_reg == VCPU_SREG_SS ?
7099 SS_VECTOR : GP_VECTOR,
7100 0);
7101 return 1;
7102 }
7103
Bandan Das19677e32014-05-06 02:19:15 -04007104 return 0;
7105}
7106
Radim Krčmářcbf71272017-05-19 15:48:51 +02007107static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007108{
7109 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007110 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007111
7112 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007113 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007114 return 1;
7115
Radim Krčmářcbf71272017-05-19 15:48:51 +02007116 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7117 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007118 kvm_inject_page_fault(vcpu, &e);
7119 return 1;
7120 }
7121
Bandan Das3573e222014-05-06 02:19:16 -04007122 return 0;
7123}
7124
Jim Mattsone29acc52016-11-30 12:03:43 -08007125static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7126{
7127 struct vcpu_vmx *vmx = to_vmx(vcpu);
7128 struct vmcs *shadow_vmcs;
7129
7130 if (cpu_has_vmx_msr_bitmap()) {
7131 vmx->nested.msr_bitmap =
7132 (unsigned long *)__get_free_page(GFP_KERNEL);
7133 if (!vmx->nested.msr_bitmap)
7134 goto out_msr_bitmap;
7135 }
7136
7137 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7138 if (!vmx->nested.cached_vmcs12)
7139 goto out_cached_vmcs12;
7140
7141 if (enable_shadow_vmcs) {
7142 shadow_vmcs = alloc_vmcs();
7143 if (!shadow_vmcs)
7144 goto out_shadow_vmcs;
7145 /* mark vmcs as shadow */
7146 shadow_vmcs->revision_id |= (1u << 31);
7147 /* init shadow vmcs */
7148 vmcs_clear(shadow_vmcs);
7149 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7150 }
7151
7152 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7153 vmx->nested.vmcs02_num = 0;
7154
7155 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7156 HRTIMER_MODE_REL_PINNED);
7157 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7158
7159 vmx->nested.vmxon = true;
7160 return 0;
7161
7162out_shadow_vmcs:
7163 kfree(vmx->nested.cached_vmcs12);
7164
7165out_cached_vmcs12:
7166 free_page((unsigned long)vmx->nested.msr_bitmap);
7167
7168out_msr_bitmap:
7169 return -ENOMEM;
7170}
7171
Bandan Das3573e222014-05-06 02:19:16 -04007172/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007173 * Emulate the VMXON instruction.
7174 * Currently, we just remember that VMX is active, and do not save or even
7175 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7176 * do not currently need to store anything in that guest-allocated memory
7177 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7178 * argument is different from the VMXON pointer (which the spec says they do).
7179 */
7180static int handle_vmon(struct kvm_vcpu *vcpu)
7181{
Jim Mattsone29acc52016-11-30 12:03:43 -08007182 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007183 gpa_t vmptr;
7184 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007185 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007186 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7187 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007188
Jim Mattson70f3aac2017-04-26 08:53:46 -07007189 /*
7190 * The Intel VMX Instruction Reference lists a bunch of bits that are
7191 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7192 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7193 * Otherwise, we should fail with #UD. But most faulting conditions
7194 * have already been checked by hardware, prior to the VM-exit for
7195 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7196 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007197 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007198 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007199 kvm_queue_exception(vcpu, UD_VECTOR);
7200 return 1;
7201 }
7202
Abel Gordon145c28d2013-04-18 14:36:55 +03007203 if (vmx->nested.vmxon) {
7204 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007205 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007206 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007207
Haozhong Zhang3b840802016-06-22 14:59:54 +08007208 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007209 != VMXON_NEEDED_FEATURES) {
7210 kvm_inject_gp(vcpu, 0);
7211 return 1;
7212 }
7213
Radim Krčmářcbf71272017-05-19 15:48:51 +02007214 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007215 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007216
7217 /*
7218 * SDM 3: 24.11.5
7219 * The first 4 bytes of VMXON region contain the supported
7220 * VMCS revision identifier
7221 *
7222 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7223 * which replaces physical address width with 32
7224 */
7225 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7226 nested_vmx_failInvalid(vcpu);
7227 return kvm_skip_emulated_instruction(vcpu);
7228 }
7229
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007230 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7231 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007232 nested_vmx_failInvalid(vcpu);
7233 return kvm_skip_emulated_instruction(vcpu);
7234 }
7235 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7236 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007237 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007238 nested_vmx_failInvalid(vcpu);
7239 return kvm_skip_emulated_instruction(vcpu);
7240 }
7241 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007242 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007243
7244 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007245 ret = enter_vmx_operation(vcpu);
7246 if (ret)
7247 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007248
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007249 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007250 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007251}
7252
7253/*
7254 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7255 * for running VMX instructions (except VMXON, whose prerequisites are
7256 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007257 * Note that many of these exceptions have priority over VM exits, so they
7258 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007259 */
7260static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7261{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007262 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007263 kvm_queue_exception(vcpu, UD_VECTOR);
7264 return 0;
7265 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007266 return 1;
7267}
7268
David Matlack8ca44e82017-08-01 14:00:39 -07007269static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7270{
7271 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7272 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7273}
7274
Abel Gordone7953d72013-04-18 14:37:55 +03007275static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7276{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007277 if (vmx->nested.current_vmptr == -1ull)
7278 return;
7279
Abel Gordon012f83c2013-04-18 14:39:25 +03007280 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007281 /* copy to memory all shadowed fields in case
7282 they were modified */
7283 copy_shadow_to_vmcs12(vmx);
7284 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007285 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007286 }
Wincy Van705699a2015-02-03 23:58:17 +08007287 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007288
7289 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007290 kvm_vcpu_write_guest_page(&vmx->vcpu,
7291 vmx->nested.current_vmptr >> PAGE_SHIFT,
7292 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007293
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007294 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007295}
7296
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007297/*
7298 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7299 * just stops using VMX.
7300 */
7301static void free_nested(struct vcpu_vmx *vmx)
7302{
7303 if (!vmx->nested.vmxon)
7304 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007305
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007306 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007307 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007308 vmx->nested.posted_intr_nv = -1;
7309 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007310 if (vmx->nested.msr_bitmap) {
7311 free_page((unsigned long)vmx->nested.msr_bitmap);
7312 vmx->nested.msr_bitmap = NULL;
7313 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007314 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007315 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007316 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7317 free_vmcs(vmx->vmcs01.shadow_vmcs);
7318 vmx->vmcs01.shadow_vmcs = NULL;
7319 }
David Matlack4f2777b2016-07-13 17:16:37 -07007320 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007321 /* Unpin physical memory we referred to in current vmcs02 */
7322 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007323 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007324 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007325 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007326 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007327 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007328 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007329 }
Wincy Van705699a2015-02-03 23:58:17 +08007330 if (vmx->nested.pi_desc_page) {
7331 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007332 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007333 vmx->nested.pi_desc_page = NULL;
7334 vmx->nested.pi_desc = NULL;
7335 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007336
7337 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007338}
7339
7340/* Emulate the VMXOFF instruction */
7341static int handle_vmoff(struct kvm_vcpu *vcpu)
7342{
7343 if (!nested_vmx_check_permission(vcpu))
7344 return 1;
7345 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007346 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007347 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007348}
7349
Nadav Har'El27d6c862011-05-25 23:06:59 +03007350/* Emulate the VMCLEAR instruction */
7351static int handle_vmclear(struct kvm_vcpu *vcpu)
7352{
7353 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007354 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007355 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007356
7357 if (!nested_vmx_check_permission(vcpu))
7358 return 1;
7359
Radim Krčmářcbf71272017-05-19 15:48:51 +02007360 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007361 return 1;
7362
Radim Krčmářcbf71272017-05-19 15:48:51 +02007363 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7364 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7365 return kvm_skip_emulated_instruction(vcpu);
7366 }
7367
7368 if (vmptr == vmx->nested.vmxon_ptr) {
7369 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7370 return kvm_skip_emulated_instruction(vcpu);
7371 }
7372
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007373 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007374 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007375
Jim Mattson587d7e722017-03-02 12:41:48 -08007376 kvm_vcpu_write_guest(vcpu,
7377 vmptr + offsetof(struct vmcs12, launch_state),
7378 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007379
7380 nested_free_vmcs02(vmx, vmptr);
7381
Nadav Har'El27d6c862011-05-25 23:06:59 +03007382 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007383 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007384}
7385
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007386static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7387
7388/* Emulate the VMLAUNCH instruction */
7389static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7390{
7391 return nested_vmx_run(vcpu, true);
7392}
7393
7394/* Emulate the VMRESUME instruction */
7395static int handle_vmresume(struct kvm_vcpu *vcpu)
7396{
7397
7398 return nested_vmx_run(vcpu, false);
7399}
7400
Nadav Har'El49f705c2011-05-25 23:08:30 +03007401/*
7402 * Read a vmcs12 field. Since these can have varying lengths and we return
7403 * one type, we chose the biggest type (u64) and zero-extend the return value
7404 * to that size. Note that the caller, handle_vmread, might need to use only
7405 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7406 * 64-bit fields are to be returned).
7407 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007408static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7409 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007410{
7411 short offset = vmcs_field_to_offset(field);
7412 char *p;
7413
7414 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007415 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007416
7417 p = ((char *)(get_vmcs12(vcpu))) + offset;
7418
7419 switch (vmcs_field_type(field)) {
7420 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7421 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007422 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007423 case VMCS_FIELD_TYPE_U16:
7424 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007425 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007426 case VMCS_FIELD_TYPE_U32:
7427 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007428 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007429 case VMCS_FIELD_TYPE_U64:
7430 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007431 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007432 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007433 WARN_ON(1);
7434 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007435 }
7436}
7437
Abel Gordon20b97fe2013-04-18 14:36:25 +03007438
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007439static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7440 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007441 short offset = vmcs_field_to_offset(field);
7442 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7443 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007444 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007445
7446 switch (vmcs_field_type(field)) {
7447 case VMCS_FIELD_TYPE_U16:
7448 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007449 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007450 case VMCS_FIELD_TYPE_U32:
7451 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007452 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007453 case VMCS_FIELD_TYPE_U64:
7454 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007455 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007456 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7457 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007458 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007459 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007460 WARN_ON(1);
7461 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007462 }
7463
7464}
7465
Abel Gordon16f5b902013-04-18 14:38:25 +03007466static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7467{
7468 int i;
7469 unsigned long field;
7470 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007471 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007472 const unsigned long *fields = shadow_read_write_fields;
7473 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007474
Jan Kiszka282da872014-10-08 18:05:39 +02007475 preempt_disable();
7476
Abel Gordon16f5b902013-04-18 14:38:25 +03007477 vmcs_load(shadow_vmcs);
7478
7479 for (i = 0; i < num_fields; i++) {
7480 field = fields[i];
7481 switch (vmcs_field_type(field)) {
7482 case VMCS_FIELD_TYPE_U16:
7483 field_value = vmcs_read16(field);
7484 break;
7485 case VMCS_FIELD_TYPE_U32:
7486 field_value = vmcs_read32(field);
7487 break;
7488 case VMCS_FIELD_TYPE_U64:
7489 field_value = vmcs_read64(field);
7490 break;
7491 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7492 field_value = vmcs_readl(field);
7493 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007494 default:
7495 WARN_ON(1);
7496 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007497 }
7498 vmcs12_write_any(&vmx->vcpu, field, field_value);
7499 }
7500
7501 vmcs_clear(shadow_vmcs);
7502 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007503
7504 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007505}
7506
Abel Gordonc3114422013-04-18 14:38:55 +03007507static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7508{
Mathias Krausec2bae892013-06-26 20:36:21 +02007509 const unsigned long *fields[] = {
7510 shadow_read_write_fields,
7511 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007512 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007513 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007514 max_shadow_read_write_fields,
7515 max_shadow_read_only_fields
7516 };
7517 int i, q;
7518 unsigned long field;
7519 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007520 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007521
7522 vmcs_load(shadow_vmcs);
7523
Mathias Krausec2bae892013-06-26 20:36:21 +02007524 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007525 for (i = 0; i < max_fields[q]; i++) {
7526 field = fields[q][i];
7527 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7528
7529 switch (vmcs_field_type(field)) {
7530 case VMCS_FIELD_TYPE_U16:
7531 vmcs_write16(field, (u16)field_value);
7532 break;
7533 case VMCS_FIELD_TYPE_U32:
7534 vmcs_write32(field, (u32)field_value);
7535 break;
7536 case VMCS_FIELD_TYPE_U64:
7537 vmcs_write64(field, (u64)field_value);
7538 break;
7539 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7540 vmcs_writel(field, (long)field_value);
7541 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007542 default:
7543 WARN_ON(1);
7544 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007545 }
7546 }
7547 }
7548
7549 vmcs_clear(shadow_vmcs);
7550 vmcs_load(vmx->loaded_vmcs->vmcs);
7551}
7552
Nadav Har'El49f705c2011-05-25 23:08:30 +03007553/*
7554 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7555 * used before) all generate the same failure when it is missing.
7556 */
7557static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7558{
7559 struct vcpu_vmx *vmx = to_vmx(vcpu);
7560 if (vmx->nested.current_vmptr == -1ull) {
7561 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007562 return 0;
7563 }
7564 return 1;
7565}
7566
7567static int handle_vmread(struct kvm_vcpu *vcpu)
7568{
7569 unsigned long field;
7570 u64 field_value;
7571 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7572 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7573 gva_t gva = 0;
7574
Kyle Hueyeb277562016-11-29 12:40:39 -08007575 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007576 return 1;
7577
Kyle Huey6affcbe2016-11-29 12:40:40 -08007578 if (!nested_vmx_check_vmcs12(vcpu))
7579 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007580
Nadav Har'El49f705c2011-05-25 23:08:30 +03007581 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007582 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007583 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007584 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007585 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007586 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007587 }
7588 /*
7589 * Now copy part of this value to register or memory, as requested.
7590 * Note that the number of bits actually copied is 32 or 64 depending
7591 * on the guest's mode (32 or 64 bit), not on the given field's length.
7592 */
7593 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007594 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007595 field_value);
7596 } else {
7597 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007598 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007599 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007600 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007601 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7602 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7603 }
7604
7605 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007606 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007607}
7608
7609
7610static int handle_vmwrite(struct kvm_vcpu *vcpu)
7611{
7612 unsigned long field;
7613 gva_t gva;
7614 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7615 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007616 /* The value to write might be 32 or 64 bits, depending on L1's long
7617 * mode, and eventually we need to write that into a field of several
7618 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007619 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007620 * bits into the vmcs12 field.
7621 */
7622 u64 field_value = 0;
7623 struct x86_exception e;
7624
Kyle Hueyeb277562016-11-29 12:40:39 -08007625 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007626 return 1;
7627
Kyle Huey6affcbe2016-11-29 12:40:40 -08007628 if (!nested_vmx_check_vmcs12(vcpu))
7629 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007630
Nadav Har'El49f705c2011-05-25 23:08:30 +03007631 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007632 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007633 (((vmx_instruction_info) >> 3) & 0xf));
7634 else {
7635 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007636 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007637 return 1;
7638 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007639 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007640 kvm_inject_page_fault(vcpu, &e);
7641 return 1;
7642 }
7643 }
7644
7645
Nadav Amit27e6fb52014-06-18 17:19:26 +03007646 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007647 if (vmcs_field_readonly(field)) {
7648 nested_vmx_failValid(vcpu,
7649 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007650 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007651 }
7652
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007653 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007654 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007655 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007656 }
7657
7658 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007659 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007660}
7661
Jim Mattsona8bc2842016-11-30 12:03:44 -08007662static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7663{
7664 vmx->nested.current_vmptr = vmptr;
7665 if (enable_shadow_vmcs) {
7666 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7667 SECONDARY_EXEC_SHADOW_VMCS);
7668 vmcs_write64(VMCS_LINK_POINTER,
7669 __pa(vmx->vmcs01.shadow_vmcs));
7670 vmx->nested.sync_shadow_vmcs = true;
7671 }
7672}
7673
Nadav Har'El63846662011-05-25 23:07:29 +03007674/* Emulate the VMPTRLD instruction */
7675static int handle_vmptrld(struct kvm_vcpu *vcpu)
7676{
7677 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007678 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007679
7680 if (!nested_vmx_check_permission(vcpu))
7681 return 1;
7682
Radim Krčmářcbf71272017-05-19 15:48:51 +02007683 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007684 return 1;
7685
Radim Krčmářcbf71272017-05-19 15:48:51 +02007686 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7687 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7688 return kvm_skip_emulated_instruction(vcpu);
7689 }
7690
7691 if (vmptr == vmx->nested.vmxon_ptr) {
7692 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7693 return kvm_skip_emulated_instruction(vcpu);
7694 }
7695
Nadav Har'El63846662011-05-25 23:07:29 +03007696 if (vmx->nested.current_vmptr != vmptr) {
7697 struct vmcs12 *new_vmcs12;
7698 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007699 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7700 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007701 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007702 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007703 }
7704 new_vmcs12 = kmap(page);
7705 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7706 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007707 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007708 nested_vmx_failValid(vcpu,
7709 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007710 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007711 }
Nadav Har'El63846662011-05-25 23:07:29 +03007712
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007713 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007714 /*
7715 * Load VMCS12 from guest memory since it is not already
7716 * cached.
7717 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007718 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7719 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007720 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007721
Jim Mattsona8bc2842016-11-30 12:03:44 -08007722 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007723 }
7724
7725 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007726 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007727}
7728
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007729/* Emulate the VMPTRST instruction */
7730static int handle_vmptrst(struct kvm_vcpu *vcpu)
7731{
7732 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7733 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7734 gva_t vmcs_gva;
7735 struct x86_exception e;
7736
7737 if (!nested_vmx_check_permission(vcpu))
7738 return 1;
7739
7740 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007741 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007742 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007743 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007744 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7745 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7746 sizeof(u64), &e)) {
7747 kvm_inject_page_fault(vcpu, &e);
7748 return 1;
7749 }
7750 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007751 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007752}
7753
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007754/* Emulate the INVEPT instruction */
7755static int handle_invept(struct kvm_vcpu *vcpu)
7756{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007757 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007758 u32 vmx_instruction_info, types;
7759 unsigned long type;
7760 gva_t gva;
7761 struct x86_exception e;
7762 struct {
7763 u64 eptp, gpa;
7764 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007765
Wincy Vanb9c237b2015-02-03 23:56:30 +08007766 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7767 SECONDARY_EXEC_ENABLE_EPT) ||
7768 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007769 kvm_queue_exception(vcpu, UD_VECTOR);
7770 return 1;
7771 }
7772
7773 if (!nested_vmx_check_permission(vcpu))
7774 return 1;
7775
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007776 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007777 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007778
Wincy Vanb9c237b2015-02-03 23:56:30 +08007779 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007780
Jim Mattson85c856b2016-10-26 08:38:38 -07007781 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007782 nested_vmx_failValid(vcpu,
7783 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007784 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007785 }
7786
7787 /* According to the Intel VMX instruction reference, the memory
7788 * operand is read even if it isn't needed (e.g., for type==global)
7789 */
7790 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007791 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007792 return 1;
7793 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7794 sizeof(operand), &e)) {
7795 kvm_inject_page_fault(vcpu, &e);
7796 return 1;
7797 }
7798
7799 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007800 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007801 /*
7802 * TODO: track mappings and invalidate
7803 * single context requests appropriately
7804 */
7805 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007806 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007807 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007808 nested_vmx_succeed(vcpu);
7809 break;
7810 default:
7811 BUG_ON(1);
7812 break;
7813 }
7814
Kyle Huey6affcbe2016-11-29 12:40:40 -08007815 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007816}
7817
Petr Matouseka642fc32014-09-23 20:22:30 +02007818static int handle_invvpid(struct kvm_vcpu *vcpu)
7819{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007820 struct vcpu_vmx *vmx = to_vmx(vcpu);
7821 u32 vmx_instruction_info;
7822 unsigned long type, types;
7823 gva_t gva;
7824 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007825 struct {
7826 u64 vpid;
7827 u64 gla;
7828 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007829
7830 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7831 SECONDARY_EXEC_ENABLE_VPID) ||
7832 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7833 kvm_queue_exception(vcpu, UD_VECTOR);
7834 return 1;
7835 }
7836
7837 if (!nested_vmx_check_permission(vcpu))
7838 return 1;
7839
7840 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7841 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7842
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007843 types = (vmx->nested.nested_vmx_vpid_caps &
7844 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007845
Jim Mattson85c856b2016-10-26 08:38:38 -07007846 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007847 nested_vmx_failValid(vcpu,
7848 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007849 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007850 }
7851
7852 /* according to the intel vmx instruction reference, the memory
7853 * operand is read even if it isn't needed (e.g., for type==global)
7854 */
7855 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7856 vmx_instruction_info, false, &gva))
7857 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007858 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7859 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007860 kvm_inject_page_fault(vcpu, &e);
7861 return 1;
7862 }
Jim Mattson40352602017-06-28 09:37:37 -07007863 if (operand.vpid >> 16) {
7864 nested_vmx_failValid(vcpu,
7865 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7866 return kvm_skip_emulated_instruction(vcpu);
7867 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007868
7869 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007870 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Jim Mattson40352602017-06-28 09:37:37 -07007871 if (is_noncanonical_address(operand.gla)) {
7872 nested_vmx_failValid(vcpu,
7873 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7874 return kvm_skip_emulated_instruction(vcpu);
7875 }
7876 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007877 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007878 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007879 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007880 nested_vmx_failValid(vcpu,
7881 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007882 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007883 }
7884 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007885 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007886 break;
7887 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007888 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007889 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007890 }
7891
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007892 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7893 nested_vmx_succeed(vcpu);
7894
Kyle Huey6affcbe2016-11-29 12:40:40 -08007895 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007896}
7897
Kai Huang843e4332015-01-28 10:54:28 +08007898static int handle_pml_full(struct kvm_vcpu *vcpu)
7899{
7900 unsigned long exit_qualification;
7901
7902 trace_kvm_pml_full(vcpu->vcpu_id);
7903
7904 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7905
7906 /*
7907 * PML buffer FULL happened while executing iret from NMI,
7908 * "blocked by NMI" bit has to be set before next VM entry.
7909 */
7910 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007911 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7912 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7913 GUEST_INTR_STATE_NMI);
7914
7915 /*
7916 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7917 * here.., and there's no userspace involvement needed for PML.
7918 */
7919 return 1;
7920}
7921
Yunhong Jiang64672c92016-06-13 14:19:59 -07007922static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7923{
7924 kvm_lapic_expired_hv_timer(vcpu);
7925 return 1;
7926}
7927
Bandan Das41ab9372017-08-03 15:54:43 -04007928static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
7929{
7930 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04007931 int maxphyaddr = cpuid_maxphyaddr(vcpu);
7932
7933 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007934 switch (address & VMX_EPTP_MT_MASK) {
7935 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04007936 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
7937 return false;
7938 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02007939 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04007940 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
7941 return false;
7942 break;
7943 default:
7944 return false;
7945 }
7946
David Hildenbrandbb97a012017-08-10 23:15:28 +02007947 /* only 4 levels page-walk length are valid */
7948 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04007949 return false;
7950
7951 /* Reserved bits should not be set */
7952 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
7953 return false;
7954
7955 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007956 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04007957 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
7958 return false;
7959 }
7960
7961 return true;
7962}
7963
7964static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
7965 struct vmcs12 *vmcs12)
7966{
7967 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
7968 u64 address;
7969 bool accessed_dirty;
7970 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
7971
7972 if (!nested_cpu_has_eptp_switching(vmcs12) ||
7973 !nested_cpu_has_ept(vmcs12))
7974 return 1;
7975
7976 if (index >= VMFUNC_EPTP_ENTRIES)
7977 return 1;
7978
7979
7980 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
7981 &address, index * 8, 8))
7982 return 1;
7983
David Hildenbrandbb97a012017-08-10 23:15:28 +02007984 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04007985
7986 /*
7987 * If the (L2) guest does a vmfunc to the currently
7988 * active ept pointer, we don't have to do anything else
7989 */
7990 if (vmcs12->ept_pointer != address) {
7991 if (!valid_ept_address(vcpu, address))
7992 return 1;
7993
7994 kvm_mmu_unload(vcpu);
7995 mmu->ept_ad = accessed_dirty;
7996 mmu->base_role.ad_disabled = !accessed_dirty;
7997 vmcs12->ept_pointer = address;
7998 /*
7999 * TODO: Check what's the correct approach in case
8000 * mmu reload fails. Currently, we just let the next
8001 * reload potentially fail
8002 */
8003 kvm_mmu_reload(vcpu);
8004 }
8005
8006 return 0;
8007}
8008
Bandan Das2a499e42017-08-03 15:54:41 -04008009static int handle_vmfunc(struct kvm_vcpu *vcpu)
8010{
Bandan Das27c42a12017-08-03 15:54:42 -04008011 struct vcpu_vmx *vmx = to_vmx(vcpu);
8012 struct vmcs12 *vmcs12;
8013 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8014
8015 /*
8016 * VMFUNC is only supported for nested guests, but we always enable the
8017 * secondary control for simplicity; for non-nested mode, fake that we
8018 * didn't by injecting #UD.
8019 */
8020 if (!is_guest_mode(vcpu)) {
8021 kvm_queue_exception(vcpu, UD_VECTOR);
8022 return 1;
8023 }
8024
8025 vmcs12 = get_vmcs12(vcpu);
8026 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8027 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008028
8029 switch (function) {
8030 case 0:
8031 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8032 goto fail;
8033 break;
8034 default:
8035 goto fail;
8036 }
8037 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008038
8039fail:
8040 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8041 vmcs_read32(VM_EXIT_INTR_INFO),
8042 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008043 return 1;
8044}
8045
Nadav Har'El0140cae2011-05-25 23:06:28 +03008046/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008047 * The exit handlers return 1 if the exit was handled fully and guest execution
8048 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8049 * to be done to userspace and return 0.
8050 */
Mathias Krause772e0312012-08-30 01:30:19 +02008051static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008052 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8053 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008054 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008055 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008056 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008057 [EXIT_REASON_CR_ACCESS] = handle_cr,
8058 [EXIT_REASON_DR_ACCESS] = handle_dr,
8059 [EXIT_REASON_CPUID] = handle_cpuid,
8060 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8061 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8062 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8063 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008064 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008065 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008066 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008067 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008068 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008069 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008070 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008071 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008072 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008073 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008074 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008075 [EXIT_REASON_VMOFF] = handle_vmoff,
8076 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008077 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8078 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008079 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008080 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008081 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008082 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008083 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008084 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008085 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8086 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008087 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008088 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008089 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008090 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008091 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008092 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008093 [EXIT_REASON_XSAVES] = handle_xsaves,
8094 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008095 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008096 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008097 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008098};
8099
8100static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008101 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008102
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008103static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8104 struct vmcs12 *vmcs12)
8105{
8106 unsigned long exit_qualification;
8107 gpa_t bitmap, last_bitmap;
8108 unsigned int port;
8109 int size;
8110 u8 b;
8111
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008112 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008113 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008114
8115 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8116
8117 port = exit_qualification >> 16;
8118 size = (exit_qualification & 7) + 1;
8119
8120 last_bitmap = (gpa_t)-1;
8121 b = -1;
8122
8123 while (size > 0) {
8124 if (port < 0x8000)
8125 bitmap = vmcs12->io_bitmap_a;
8126 else if (port < 0x10000)
8127 bitmap = vmcs12->io_bitmap_b;
8128 else
Joe Perches1d804d02015-03-30 16:46:09 -07008129 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008130 bitmap += (port & 0x7fff) / 8;
8131
8132 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008133 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008134 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008135 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008136 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008137
8138 port++;
8139 size--;
8140 last_bitmap = bitmap;
8141 }
8142
Joe Perches1d804d02015-03-30 16:46:09 -07008143 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008144}
8145
Nadav Har'El644d7112011-05-25 23:12:35 +03008146/*
8147 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8148 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8149 * disinterest in the current event (read or write a specific MSR) by using an
8150 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8151 */
8152static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8153 struct vmcs12 *vmcs12, u32 exit_reason)
8154{
8155 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8156 gpa_t bitmap;
8157
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008158 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008159 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008160
8161 /*
8162 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8163 * for the four combinations of read/write and low/high MSR numbers.
8164 * First we need to figure out which of the four to use:
8165 */
8166 bitmap = vmcs12->msr_bitmap;
8167 if (exit_reason == EXIT_REASON_MSR_WRITE)
8168 bitmap += 2048;
8169 if (msr_index >= 0xc0000000) {
8170 msr_index -= 0xc0000000;
8171 bitmap += 1024;
8172 }
8173
8174 /* Then read the msr_index'th bit from this bitmap: */
8175 if (msr_index < 1024*8) {
8176 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008177 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008178 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008179 return 1 & (b >> (msr_index & 7));
8180 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008181 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008182}
8183
8184/*
8185 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8186 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8187 * intercept (via guest_host_mask etc.) the current event.
8188 */
8189static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8190 struct vmcs12 *vmcs12)
8191{
8192 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8193 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008194 int reg;
8195 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008196
8197 switch ((exit_qualification >> 4) & 3) {
8198 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008199 reg = (exit_qualification >> 8) & 15;
8200 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008201 switch (cr) {
8202 case 0:
8203 if (vmcs12->cr0_guest_host_mask &
8204 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008205 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008206 break;
8207 case 3:
8208 if ((vmcs12->cr3_target_count >= 1 &&
8209 vmcs12->cr3_target_value0 == val) ||
8210 (vmcs12->cr3_target_count >= 2 &&
8211 vmcs12->cr3_target_value1 == val) ||
8212 (vmcs12->cr3_target_count >= 3 &&
8213 vmcs12->cr3_target_value2 == val) ||
8214 (vmcs12->cr3_target_count >= 4 &&
8215 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008216 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008217 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008218 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008219 break;
8220 case 4:
8221 if (vmcs12->cr4_guest_host_mask &
8222 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008223 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008224 break;
8225 case 8:
8226 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008227 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008228 break;
8229 }
8230 break;
8231 case 2: /* clts */
8232 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8233 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008234 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008235 break;
8236 case 1: /* mov from cr */
8237 switch (cr) {
8238 case 3:
8239 if (vmcs12->cpu_based_vm_exec_control &
8240 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008241 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008242 break;
8243 case 8:
8244 if (vmcs12->cpu_based_vm_exec_control &
8245 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008246 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008247 break;
8248 }
8249 break;
8250 case 3: /* lmsw */
8251 /*
8252 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8253 * cr0. Other attempted changes are ignored, with no exit.
8254 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008255 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008256 if (vmcs12->cr0_guest_host_mask & 0xe &
8257 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008258 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008259 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8260 !(vmcs12->cr0_read_shadow & 0x1) &&
8261 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008262 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008263 break;
8264 }
Joe Perches1d804d02015-03-30 16:46:09 -07008265 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008266}
8267
8268/*
8269 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8270 * should handle it ourselves in L0 (and then continue L2). Only call this
8271 * when in is_guest_mode (L2).
8272 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008273static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008274{
Nadav Har'El644d7112011-05-25 23:12:35 +03008275 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8276 struct vcpu_vmx *vmx = to_vmx(vcpu);
8277 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8278
Jan Kiszka542060e2014-01-04 18:47:21 +01008279 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8280 vmcs_readl(EXIT_QUALIFICATION),
8281 vmx->idt_vectoring_info,
8282 intr_info,
8283 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8284 KVM_ISA_VMX);
8285
David Matlackc9f04402017-08-01 14:00:40 -07008286 /*
8287 * The host physical addresses of some pages of guest memory
8288 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8289 * may write to these pages via their host physical address while
8290 * L2 is running, bypassing any address-translation-based dirty
8291 * tracking (e.g. EPT write protection).
8292 *
8293 * Mark them dirty on every exit from L2 to prevent them from
8294 * getting out of sync with dirty tracking.
8295 */
8296 nested_mark_vmcs12_pages_dirty(vcpu);
8297
Nadav Har'El644d7112011-05-25 23:12:35 +03008298 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008299 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008300
8301 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008302 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8303 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008304 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008305 }
8306
8307 switch (exit_reason) {
8308 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008309 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008310 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008311 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008312 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008313 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008314 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008315 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008316 else if (is_debug(intr_info) &&
8317 vcpu->guest_debug &
8318 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8319 return false;
8320 else if (is_breakpoint(intr_info) &&
8321 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8322 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008323 return vmcs12->exception_bitmap &
8324 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8325 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008326 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008327 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008328 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008329 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008330 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008331 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008332 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008333 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008334 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008335 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008336 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008337 case EXIT_REASON_HLT:
8338 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8339 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008340 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008341 case EXIT_REASON_INVLPG:
8342 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8343 case EXIT_REASON_RDPMC:
8344 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008345 case EXIT_REASON_RDRAND:
8346 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND);
8347 case EXIT_REASON_RDSEED:
8348 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008349 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008350 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8351 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8352 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8353 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8354 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8355 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008356 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008357 /*
8358 * VMX instructions trap unconditionally. This allows L1 to
8359 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8360 */
Joe Perches1d804d02015-03-30 16:46:09 -07008361 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008362 case EXIT_REASON_CR_ACCESS:
8363 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8364 case EXIT_REASON_DR_ACCESS:
8365 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8366 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008367 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008368 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8369 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008370 case EXIT_REASON_MSR_READ:
8371 case EXIT_REASON_MSR_WRITE:
8372 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8373 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008374 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008375 case EXIT_REASON_MWAIT_INSTRUCTION:
8376 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008377 case EXIT_REASON_MONITOR_TRAP_FLAG:
8378 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008379 case EXIT_REASON_MONITOR_INSTRUCTION:
8380 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8381 case EXIT_REASON_PAUSE_INSTRUCTION:
8382 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8383 nested_cpu_has2(vmcs12,
8384 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8385 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008386 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008387 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008388 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008389 case EXIT_REASON_APIC_ACCESS:
8390 return nested_cpu_has2(vmcs12,
8391 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008392 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008393 case EXIT_REASON_EOI_INDUCED:
8394 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008395 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008396 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008397 /*
8398 * L0 always deals with the EPT violation. If nested EPT is
8399 * used, and the nested mmu code discovers that the address is
8400 * missing in the guest EPT table (EPT12), the EPT violation
8401 * will be injected with nested_ept_inject_page_fault()
8402 */
Joe Perches1d804d02015-03-30 16:46:09 -07008403 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008404 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008405 /*
8406 * L2 never uses directly L1's EPT, but rather L0's own EPT
8407 * table (shadow on EPT) or a merged EPT table that L0 built
8408 * (EPT on EPT). So any problems with the structure of the
8409 * table is L0's fault.
8410 */
Joe Perches1d804d02015-03-30 16:46:09 -07008411 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008412 case EXIT_REASON_INVPCID:
8413 return
8414 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8415 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008416 case EXIT_REASON_WBINVD:
8417 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8418 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008419 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008420 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8421 /*
8422 * This should never happen, since it is not possible to
8423 * set XSS to a non-zero value---neither in L1 nor in L2.
8424 * If if it were, XSS would have to be checked against
8425 * the XSS exit bitmap in vmcs12.
8426 */
8427 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008428 case EXIT_REASON_PREEMPTION_TIMER:
8429 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008430 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008431 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008432 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008433 case EXIT_REASON_VMFUNC:
8434 /* VM functions are emulated through L2->L0 vmexits. */
8435 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008436 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008437 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008438 }
8439}
8440
Paolo Bonzini7313c692017-07-27 10:31:25 +02008441static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8442{
8443 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8444
8445 /*
8446 * At this point, the exit interruption info in exit_intr_info
8447 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8448 * we need to query the in-kernel LAPIC.
8449 */
8450 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8451 if ((exit_intr_info &
8452 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8453 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8454 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8455 vmcs12->vm_exit_intr_error_code =
8456 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8457 }
8458
8459 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8460 vmcs_readl(EXIT_QUALIFICATION));
8461 return 1;
8462}
8463
Avi Kivity586f9602010-11-18 13:09:54 +02008464static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8465{
8466 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8467 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8468}
8469
Kai Huanga3eaa862015-11-04 13:46:05 +08008470static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008471{
Kai Huanga3eaa862015-11-04 13:46:05 +08008472 if (vmx->pml_pg) {
8473 __free_page(vmx->pml_pg);
8474 vmx->pml_pg = NULL;
8475 }
Kai Huang843e4332015-01-28 10:54:28 +08008476}
8477
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008478static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008479{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008480 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008481 u64 *pml_buf;
8482 u16 pml_idx;
8483
8484 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8485
8486 /* Do nothing if PML buffer is empty */
8487 if (pml_idx == (PML_ENTITY_NUM - 1))
8488 return;
8489
8490 /* PML index always points to next available PML buffer entity */
8491 if (pml_idx >= PML_ENTITY_NUM)
8492 pml_idx = 0;
8493 else
8494 pml_idx++;
8495
8496 pml_buf = page_address(vmx->pml_pg);
8497 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8498 u64 gpa;
8499
8500 gpa = pml_buf[pml_idx];
8501 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008502 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008503 }
8504
8505 /* reset PML index */
8506 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8507}
8508
8509/*
8510 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8511 * Called before reporting dirty_bitmap to userspace.
8512 */
8513static void kvm_flush_pml_buffers(struct kvm *kvm)
8514{
8515 int i;
8516 struct kvm_vcpu *vcpu;
8517 /*
8518 * We only need to kick vcpu out of guest mode here, as PML buffer
8519 * is flushed at beginning of all VMEXITs, and it's obvious that only
8520 * vcpus running in guest are possible to have unflushed GPAs in PML
8521 * buffer.
8522 */
8523 kvm_for_each_vcpu(i, vcpu, kvm)
8524 kvm_vcpu_kick(vcpu);
8525}
8526
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008527static void vmx_dump_sel(char *name, uint32_t sel)
8528{
8529 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008530 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008531 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8532 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8533 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8534}
8535
8536static void vmx_dump_dtsel(char *name, uint32_t limit)
8537{
8538 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8539 name, vmcs_read32(limit),
8540 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8541}
8542
8543static void dump_vmcs(void)
8544{
8545 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8546 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8547 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8548 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8549 u32 secondary_exec_control = 0;
8550 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008551 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008552 int i, n;
8553
8554 if (cpu_has_secondary_exec_ctrls())
8555 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8556
8557 pr_err("*** Guest State ***\n");
8558 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8559 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8560 vmcs_readl(CR0_GUEST_HOST_MASK));
8561 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8562 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8563 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8564 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8565 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8566 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008567 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8568 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8569 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8570 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008571 }
8572 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8573 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8574 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8575 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8576 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8577 vmcs_readl(GUEST_SYSENTER_ESP),
8578 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8579 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8580 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8581 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8582 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8583 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8584 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8585 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8586 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8587 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8588 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8589 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8590 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008591 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8592 efer, vmcs_read64(GUEST_IA32_PAT));
8593 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8594 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008595 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8596 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008597 pr_err("PerfGlobCtl = 0x%016llx\n",
8598 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008599 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008600 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008601 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8602 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8603 vmcs_read32(GUEST_ACTIVITY_STATE));
8604 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8605 pr_err("InterruptStatus = %04x\n",
8606 vmcs_read16(GUEST_INTR_STATUS));
8607
8608 pr_err("*** Host State ***\n");
8609 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8610 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8611 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8612 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8613 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8614 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8615 vmcs_read16(HOST_TR_SELECTOR));
8616 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8617 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8618 vmcs_readl(HOST_TR_BASE));
8619 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8620 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8621 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8622 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8623 vmcs_readl(HOST_CR4));
8624 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8625 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8626 vmcs_read32(HOST_IA32_SYSENTER_CS),
8627 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8628 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008629 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8630 vmcs_read64(HOST_IA32_EFER),
8631 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008632 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008633 pr_err("PerfGlobCtl = 0x%016llx\n",
8634 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008635
8636 pr_err("*** Control State ***\n");
8637 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8638 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8639 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8640 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8641 vmcs_read32(EXCEPTION_BITMAP),
8642 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8643 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8644 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8645 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8646 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8647 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8648 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8649 vmcs_read32(VM_EXIT_INTR_INFO),
8650 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8651 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8652 pr_err(" reason=%08x qualification=%016lx\n",
8653 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8654 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8655 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8656 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008657 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008658 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008659 pr_err("TSC Multiplier = 0x%016llx\n",
8660 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008661 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8662 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8663 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8664 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8665 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008666 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008667 n = vmcs_read32(CR3_TARGET_COUNT);
8668 for (i = 0; i + 1 < n; i += 4)
8669 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8670 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8671 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8672 if (i < n)
8673 pr_err("CR3 target%u=%016lx\n",
8674 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8675 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8676 pr_err("PLE Gap=%08x Window=%08x\n",
8677 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8678 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8679 pr_err("Virtual processor ID = 0x%04x\n",
8680 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8681}
8682
Avi Kivity6aa8b732006-12-10 02:21:36 -08008683/*
8684 * The guest has exited. See if we can fix it or if we need userspace
8685 * assistance.
8686 */
Avi Kivity851ba692009-08-24 11:10:17 +03008687static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008688{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008689 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008690 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008691 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008692
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008693 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8694
Kai Huang843e4332015-01-28 10:54:28 +08008695 /*
8696 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8697 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8698 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8699 * mode as if vcpus is in root mode, the PML buffer must has been
8700 * flushed already.
8701 */
8702 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008703 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008704
Mohammed Gamal80ced182009-09-01 12:48:18 +02008705 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008706 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008707 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008708
Paolo Bonzini7313c692017-07-27 10:31:25 +02008709 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8710 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008711
Mohammed Gamal51207022010-05-31 22:40:54 +03008712 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008713 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008714 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8715 vcpu->run->fail_entry.hardware_entry_failure_reason
8716 = exit_reason;
8717 return 0;
8718 }
8719
Avi Kivity29bd8a72007-09-10 17:27:03 +03008720 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008721 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8722 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008723 = vmcs_read32(VM_INSTRUCTION_ERROR);
8724 return 0;
8725 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008726
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008727 /*
8728 * Note:
8729 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8730 * delivery event since it indicates guest is accessing MMIO.
8731 * The vm-exit can be triggered again after return to guest that
8732 * will cause infinite loop.
8733 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008734 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008735 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008736 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008737 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008738 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8739 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8740 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008741 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008742 vcpu->run->internal.data[0] = vectoring_info;
8743 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008744 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8745 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8746 vcpu->run->internal.ndata++;
8747 vcpu->run->internal.data[3] =
8748 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8749 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008750 return 0;
8751 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008752
Avi Kivity6aa8b732006-12-10 02:21:36 -08008753 if (exit_reason < kvm_vmx_max_exit_handlers
8754 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008755 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008756 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008757 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8758 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008759 kvm_queue_exception(vcpu, UD_VECTOR);
8760 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008761 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008762}
8763
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008764static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008765{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008766 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8767
8768 if (is_guest_mode(vcpu) &&
8769 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8770 return;
8771
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008772 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008773 vmcs_write32(TPR_THRESHOLD, 0);
8774 return;
8775 }
8776
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008777 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008778}
8779
Yang Zhang8d146952013-01-25 10:18:50 +08008780static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8781{
8782 u32 sec_exec_control;
8783
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008784 /* Postpone execution until vmcs01 is the current VMCS. */
8785 if (is_guest_mode(vcpu)) {
8786 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8787 return;
8788 }
8789
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008790 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008791 return;
8792
Paolo Bonzini35754c92015-07-29 12:05:37 +02008793 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008794 return;
8795
8796 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8797
8798 if (set) {
8799 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8800 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8801 } else {
8802 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8803 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008804 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008805 }
8806 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8807
8808 vmx_set_msr_bitmap(vcpu);
8809}
8810
Tang Chen38b99172014-09-24 15:57:54 +08008811static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8812{
8813 struct vcpu_vmx *vmx = to_vmx(vcpu);
8814
8815 /*
8816 * Currently we do not handle the nested case where L2 has an
8817 * APIC access page of its own; that page is still pinned.
8818 * Hence, we skip the case where the VCPU is in guest mode _and_
8819 * L1 prepared an APIC access page for L2.
8820 *
8821 * For the case where L1 and L2 share the same APIC access page
8822 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8823 * in the vmcs12), this function will only update either the vmcs01
8824 * or the vmcs02. If the former, the vmcs02 will be updated by
8825 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8826 * the next L2->L1 exit.
8827 */
8828 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008829 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008830 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008831 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008832 vmx_flush_tlb_ept_only(vcpu);
8833 }
Tang Chen38b99172014-09-24 15:57:54 +08008834}
8835
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008836static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008837{
8838 u16 status;
8839 u8 old;
8840
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008841 if (max_isr == -1)
8842 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008843
8844 status = vmcs_read16(GUEST_INTR_STATUS);
8845 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008846 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008847 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008848 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008849 vmcs_write16(GUEST_INTR_STATUS, status);
8850 }
8851}
8852
8853static void vmx_set_rvi(int vector)
8854{
8855 u16 status;
8856 u8 old;
8857
Wei Wang4114c272014-11-05 10:53:43 +08008858 if (vector == -1)
8859 vector = 0;
8860
Yang Zhangc7c9c562013-01-25 10:18:51 +08008861 status = vmcs_read16(GUEST_INTR_STATUS);
8862 old = (u8)status & 0xff;
8863 if ((u8)vector != old) {
8864 status &= ~0xff;
8865 status |= (u8)vector;
8866 vmcs_write16(GUEST_INTR_STATUS, status);
8867 }
8868}
8869
8870static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8871{
Wanpeng Li963fee12014-07-17 19:03:00 +08008872 if (!is_guest_mode(vcpu)) {
8873 vmx_set_rvi(max_irr);
8874 return;
8875 }
8876
Wei Wang4114c272014-11-05 10:53:43 +08008877 if (max_irr == -1)
8878 return;
8879
Wanpeng Li963fee12014-07-17 19:03:00 +08008880 /*
Wei Wang4114c272014-11-05 10:53:43 +08008881 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8882 * handles it.
8883 */
8884 if (nested_exit_on_intr(vcpu))
8885 return;
8886
8887 /*
8888 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008889 * is run without virtual interrupt delivery.
8890 */
8891 if (!kvm_event_needs_reinjection(vcpu) &&
8892 vmx_interrupt_allowed(vcpu)) {
8893 kvm_queue_interrupt(vcpu, max_irr, false);
8894 vmx_inject_irq(vcpu);
8895 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008896}
8897
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008898static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008899{
8900 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008901 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008902
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008903 WARN_ON(!vcpu->arch.apicv_active);
8904 if (pi_test_on(&vmx->pi_desc)) {
8905 pi_clear_on(&vmx->pi_desc);
8906 /*
8907 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8908 * But on x86 this is just a compiler barrier anyway.
8909 */
8910 smp_mb__after_atomic();
8911 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8912 } else {
8913 max_irr = kvm_lapic_find_highest_irr(vcpu);
8914 }
8915 vmx_hwapic_irr_update(vcpu, max_irr);
8916 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008917}
8918
Andrey Smetanin63086302015-11-10 15:36:32 +03008919static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008920{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008921 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008922 return;
8923
Yang Zhangc7c9c562013-01-25 10:18:51 +08008924 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8925 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8926 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8927 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8928}
8929
Paolo Bonzini967235d2016-12-19 14:03:45 +01008930static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8931{
8932 struct vcpu_vmx *vmx = to_vmx(vcpu);
8933
8934 pi_clear_on(&vmx->pi_desc);
8935 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
8936}
8937
Avi Kivity51aa01d2010-07-20 14:31:20 +03008938static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008939{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008940 u32 exit_intr_info = 0;
8941 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02008942
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008943 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8944 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02008945 return;
8946
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008947 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
8948 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8949 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008950
Wanpeng Li1261bfa2017-07-13 18:30:40 -07008951 /* if exit due to PF check for async PF */
8952 if (is_page_fault(exit_intr_info))
8953 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
8954
Andi Kleena0861c02009-06-08 17:37:09 +08008955 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008956 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
8957 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008958 kvm_machine_check();
8959
Gleb Natapov20f65982009-05-11 13:35:55 +03008960 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08008961 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008962 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008963 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008964 kvm_after_handle_nmi(&vmx->vcpu);
8965 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008966}
Gleb Natapov20f65982009-05-11 13:35:55 +03008967
Yang Zhanga547c6d2013-04-11 19:25:10 +08008968static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8969{
8970 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008971 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008972
Yang Zhanga547c6d2013-04-11 19:25:10 +08008973 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8974 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8975 unsigned int vector;
8976 unsigned long entry;
8977 gate_desc *desc;
8978 struct vcpu_vmx *vmx = to_vmx(vcpu);
8979#ifdef CONFIG_X86_64
8980 unsigned long tmp;
8981#endif
8982
8983 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8984 desc = (gate_desc *)vmx->host_idt_base + vector;
8985 entry = gate_offset(*desc);
8986 asm volatile(
8987#ifdef CONFIG_X86_64
8988 "mov %%" _ASM_SP ", %[sp]\n\t"
8989 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8990 "push $%c[ss]\n\t"
8991 "push %[sp]\n\t"
8992#endif
8993 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008994 __ASM_SIZE(push) " $%c[cs]\n\t"
8995 "call *%[entry]\n\t"
8996 :
8997#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008998 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008999#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06009000 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08009001 :
9002 [entry]"r"(entry),
9003 [ss]"i"(__KERNEL_DS),
9004 [cs]"i"(__KERNEL_CS)
9005 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009006 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009007}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009008STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009009
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009010static bool vmx_has_high_real_mode_segbase(void)
9011{
9012 return enable_unrestricted_guest || emulate_invalid_guest_state;
9013}
9014
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009015static bool vmx_mpx_supported(void)
9016{
9017 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9018 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9019}
9020
Wanpeng Li55412b22014-12-02 19:21:30 +08009021static bool vmx_xsaves_supported(void)
9022{
9023 return vmcs_config.cpu_based_2nd_exec_ctrl &
9024 SECONDARY_EXEC_XSAVES;
9025}
9026
Avi Kivity51aa01d2010-07-20 14:31:20 +03009027static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9028{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009029 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009030 bool unblock_nmi;
9031 u8 vector;
9032 bool idtv_info_valid;
9033
9034 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009035
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009036 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02009037 return;
9038 /*
9039 * Can't use vmx->exit_intr_info since we're not sure what
9040 * the exit reason is.
9041 */
9042 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9043 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9044 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9045 /*
9046 * SDM 3: 27.7.1.2 (September 2008)
9047 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9048 * a guest IRET fault.
9049 * SDM 3: 23.2.2 (September 2008)
9050 * Bit 12 is undefined in any of the following cases:
9051 * If the VM exit sets the valid bit in the IDT-vectoring
9052 * information field.
9053 * If the VM exit is due to a double fault.
9054 */
9055 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9056 vector != DF_VECTOR && !idtv_info_valid)
9057 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9058 GUEST_INTR_STATE_NMI);
9059 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009060 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009061 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9062 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009063}
9064
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009065static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009066 u32 idt_vectoring_info,
9067 int instr_len_field,
9068 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009069{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009070 u8 vector;
9071 int type;
9072 bool idtv_info_valid;
9073
9074 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009075
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009076 vcpu->arch.nmi_injected = false;
9077 kvm_clear_exception_queue(vcpu);
9078 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009079
9080 if (!idtv_info_valid)
9081 return;
9082
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009083 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009084
Avi Kivity668f6122008-07-02 09:28:55 +03009085 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9086 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009087
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009088 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009089 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009090 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009091 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009092 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009093 * Clear bit "block by NMI" before VM entry if a NMI
9094 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009095 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009096 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009097 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009098 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009099 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009100 /* fall through */
9101 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009102 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009103 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009104 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009105 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009106 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009107 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009108 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009109 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009110 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009111 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009112 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009113 break;
9114 default:
9115 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009116 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009117}
9118
Avi Kivity83422e12010-07-20 14:43:23 +03009119static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9120{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009121 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009122 VM_EXIT_INSTRUCTION_LEN,
9123 IDT_VECTORING_ERROR_CODE);
9124}
9125
Avi Kivityb463a6f2010-07-20 15:06:17 +03009126static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9127{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009128 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009129 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9130 VM_ENTRY_INSTRUCTION_LEN,
9131 VM_ENTRY_EXCEPTION_ERROR_CODE);
9132
9133 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9134}
9135
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009136static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9137{
9138 int i, nr_msrs;
9139 struct perf_guest_switch_msr *msrs;
9140
9141 msrs = perf_guest_get_msrs(&nr_msrs);
9142
9143 if (!msrs)
9144 return;
9145
9146 for (i = 0; i < nr_msrs; i++)
9147 if (msrs[i].host == msrs[i].guest)
9148 clear_atomic_switch_msr(vmx, msrs[i].msr);
9149 else
9150 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9151 msrs[i].host);
9152}
9153
Jiang Biao33365e72016-11-03 15:03:37 +08009154static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009155{
9156 struct vcpu_vmx *vmx = to_vmx(vcpu);
9157 u64 tscl;
9158 u32 delta_tsc;
9159
9160 if (vmx->hv_deadline_tsc == -1)
9161 return;
9162
9163 tscl = rdtsc();
9164 if (vmx->hv_deadline_tsc > tscl)
9165 /* sure to be 32 bit only because checked on set_hv_timer */
9166 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9167 cpu_preemption_timer_multi);
9168 else
9169 delta_tsc = 0;
9170
9171 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9172}
9173
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009174static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009175{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009176 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009177 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009178
Avi Kivity104f2262010-11-18 13:12:52 +02009179 /* Don't enter VMX if guest state is invalid, let the exit handler
9180 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009181 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009182 return;
9183
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009184 if (vmx->ple_window_dirty) {
9185 vmx->ple_window_dirty = false;
9186 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9187 }
9188
Abel Gordon012f83c2013-04-18 14:39:25 +03009189 if (vmx->nested.sync_shadow_vmcs) {
9190 copy_vmcs12_to_shadow(vmx);
9191 vmx->nested.sync_shadow_vmcs = false;
9192 }
9193
Avi Kivity104f2262010-11-18 13:12:52 +02009194 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9195 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9196 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9197 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9198
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009199 cr3 = __get_current_cr3_fast();
9200 if (unlikely(cr3 != vmx->host_state.vmcs_host_cr3)) {
9201 vmcs_writel(HOST_CR3, cr3);
9202 vmx->host_state.vmcs_host_cr3 = cr3;
9203 }
9204
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009205 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009206 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
9207 vmcs_writel(HOST_CR4, cr4);
9208 vmx->host_state.vmcs_host_cr4 = cr4;
9209 }
9210
Avi Kivity104f2262010-11-18 13:12:52 +02009211 /* When single-stepping over STI and MOV SS, we must clear the
9212 * corresponding interruptibility bits in the guest state. Otherwise
9213 * vmentry fails as it then expects bit 14 (BS) in pending debug
9214 * exceptions being set, but that's not correct for the guest debugging
9215 * case. */
9216 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9217 vmx_set_interrupt_shadow(vcpu, 0);
9218
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009219 if (vmx->guest_pkru_valid)
9220 __write_pkru(vmx->guest_pkru);
9221
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009222 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009223 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009224
Yunhong Jiang64672c92016-06-13 14:19:59 -07009225 vmx_arm_hv_timer(vcpu);
9226
Nadav Har'Eld462b812011-05-24 15:26:10 +03009227 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009228 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009229 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009230 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9231 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9232 "push %%" _ASM_CX " \n\t"
9233 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009234 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009235 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009236 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009237 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009238 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009239 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9240 "mov %%cr2, %%" _ASM_DX " \n\t"
9241 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009242 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009243 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009244 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009245 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009246 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009247 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009248 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9249 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9250 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9251 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9252 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9253 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009254#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009255 "mov %c[r8](%0), %%r8 \n\t"
9256 "mov %c[r9](%0), %%r9 \n\t"
9257 "mov %c[r10](%0), %%r10 \n\t"
9258 "mov %c[r11](%0), %%r11 \n\t"
9259 "mov %c[r12](%0), %%r12 \n\t"
9260 "mov %c[r13](%0), %%r13 \n\t"
9261 "mov %c[r14](%0), %%r14 \n\t"
9262 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009263#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009264 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009265
Avi Kivity6aa8b732006-12-10 02:21:36 -08009266 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009267 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009268 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009269 "jmp 2f \n\t"
9270 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9271 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009272 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009273 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009274 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009275 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9276 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9277 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9278 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9279 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9280 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9281 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009282#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009283 "mov %%r8, %c[r8](%0) \n\t"
9284 "mov %%r9, %c[r9](%0) \n\t"
9285 "mov %%r10, %c[r10](%0) \n\t"
9286 "mov %%r11, %c[r11](%0) \n\t"
9287 "mov %%r12, %c[r12](%0) \n\t"
9288 "mov %%r13, %c[r13](%0) \n\t"
9289 "mov %%r14, %c[r14](%0) \n\t"
9290 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009291#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009292 "mov %%cr2, %%" _ASM_AX " \n\t"
9293 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009294
Avi Kivityb188c81f2012-09-16 15:10:58 +03009295 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009296 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009297 ".pushsection .rodata \n\t"
9298 ".global vmx_return \n\t"
9299 "vmx_return: " _ASM_PTR " 2b \n\t"
9300 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009301 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009302 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009303 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009304 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009305 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9306 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9307 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9308 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9309 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9310 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9311 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009312#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009313 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9314 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9315 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9316 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9317 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9318 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9319 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9320 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009321#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009322 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9323 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009324 : "cc", "memory"
9325#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009326 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009327 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009328#else
9329 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009330#endif
9331 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009332
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009333 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9334 if (debugctlmsr)
9335 update_debugctlmsr(debugctlmsr);
9336
Avi Kivityaa67f602012-08-01 16:48:03 +03009337#ifndef CONFIG_X86_64
9338 /*
9339 * The sysexit path does not restore ds/es, so we must set them to
9340 * a reasonable value ourselves.
9341 *
9342 * We can't defer this to vmx_load_host_state() since that function
9343 * may be executed in interrupt context, which saves and restore segments
9344 * around it, nullifying its effect.
9345 */
9346 loadsegment(ds, __USER_DS);
9347 loadsegment(es, __USER_DS);
9348#endif
9349
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009350 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009351 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009352 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009353 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009354 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009355 vcpu->arch.regs_dirty = 0;
9356
Avi Kivity1155f762007-11-22 11:30:47 +02009357 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9358
Nadav Har'Eld462b812011-05-24 15:26:10 +03009359 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009360
Avi Kivity51aa01d2010-07-20 14:31:20 +03009361 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009362
Gleb Natapove0b890d2013-09-25 12:51:33 +03009363 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009364 * eager fpu is enabled if PKEY is supported and CR4 is switched
9365 * back on host, so it is safe to read guest PKRU from current
9366 * XSAVE.
9367 */
9368 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9369 vmx->guest_pkru = __read_pkru();
9370 if (vmx->guest_pkru != vmx->host_pkru) {
9371 vmx->guest_pkru_valid = true;
9372 __write_pkru(vmx->host_pkru);
9373 } else
9374 vmx->guest_pkru_valid = false;
9375 }
9376
9377 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009378 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9379 * we did not inject a still-pending event to L1 now because of
9380 * nested_run_pending, we need to re-enable this bit.
9381 */
9382 if (vmx->nested.nested_run_pending)
9383 kvm_make_request(KVM_REQ_EVENT, vcpu);
9384
9385 vmx->nested.nested_run_pending = 0;
9386
Avi Kivity51aa01d2010-07-20 14:31:20 +03009387 vmx_complete_atomic_exit(vmx);
9388 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009389 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009390}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009391STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009392
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009393static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009394{
9395 struct vcpu_vmx *vmx = to_vmx(vcpu);
9396 int cpu;
9397
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009398 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009399 return;
9400
9401 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009402 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009403 vmx_vcpu_put(vcpu);
9404 vmx_vcpu_load(vcpu, cpu);
9405 vcpu->cpu = cpu;
9406 put_cpu();
9407}
9408
Jim Mattson2f1fe812016-07-08 15:36:06 -07009409/*
9410 * Ensure that the current vmcs of the logical processor is the
9411 * vmcs01 of the vcpu before calling free_nested().
9412 */
9413static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9414{
9415 struct vcpu_vmx *vmx = to_vmx(vcpu);
9416 int r;
9417
9418 r = vcpu_load(vcpu);
9419 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009420 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009421 free_nested(vmx);
9422 vcpu_put(vcpu);
9423}
9424
Avi Kivity6aa8b732006-12-10 02:21:36 -08009425static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9426{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009427 struct vcpu_vmx *vmx = to_vmx(vcpu);
9428
Kai Huang843e4332015-01-28 10:54:28 +08009429 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009430 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009431 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009432 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009433 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009434 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009435 kfree(vmx->guest_msrs);
9436 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009437 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009438}
9439
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009440static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009441{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009442 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009443 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009444 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009445
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009446 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009447 return ERR_PTR(-ENOMEM);
9448
Wanpeng Li991e7a02015-09-16 17:30:05 +08009449 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009450
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009451 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9452 if (err)
9453 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009454
Peter Feiner4e595162016-07-07 14:49:58 -07009455 err = -ENOMEM;
9456
9457 /*
9458 * If PML is turned on, failure on enabling PML just results in failure
9459 * of creating the vcpu, therefore we can simplify PML logic (by
9460 * avoiding dealing with cases, such as enabling PML partially on vcpus
9461 * for the guest, etc.
9462 */
9463 if (enable_pml) {
9464 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9465 if (!vmx->pml_pg)
9466 goto uninit_vcpu;
9467 }
9468
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009469 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009470 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9471 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009472
Peter Feiner4e595162016-07-07 14:49:58 -07009473 if (!vmx->guest_msrs)
9474 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009475
Nadav Har'Eld462b812011-05-24 15:26:10 +03009476 vmx->loaded_vmcs = &vmx->vmcs01;
9477 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009478 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009479 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009480 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009481 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009482
Avi Kivity15ad7142007-07-11 18:17:21 +03009483 cpu = get_cpu();
9484 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009485 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009486 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009487 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009488 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009489 if (err)
9490 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009491 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009492 err = alloc_apic_access_page(kvm);
9493 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009494 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009495 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009496
Sheng Yangb927a3c2009-07-21 10:42:48 +08009497 if (enable_ept) {
9498 if (!kvm->arch.ept_identity_map_addr)
9499 kvm->arch.ept_identity_map_addr =
9500 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009501 err = init_rmode_identity_map(kvm);
9502 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009503 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009504 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009505
Wanpeng Li5c614b32015-10-13 09:18:36 -07009506 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009507 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009508 vmx->nested.vpid02 = allocate_vpid();
9509 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009510
Wincy Van705699a2015-02-03 23:58:17 +08009511 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009512 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009513
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009514 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9515
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009516 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009517
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009518free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009519 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009520 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009521free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009522 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009523free_pml:
9524 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009525uninit_vcpu:
9526 kvm_vcpu_uninit(&vmx->vcpu);
9527free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009528 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009529 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009530 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009531}
9532
Yang, Sheng002c7f72007-07-31 14:23:01 +03009533static void __init vmx_check_processor_compat(void *rtn)
9534{
9535 struct vmcs_config vmcs_conf;
9536
9537 *(int *)rtn = 0;
9538 if (setup_vmcs_config(&vmcs_conf) < 0)
9539 *(int *)rtn = -EIO;
9540 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9541 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9542 smp_processor_id());
9543 *(int *)rtn = -EIO;
9544 }
9545}
9546
Sheng Yang67253af2008-04-25 10:20:22 +08009547static int get_ept_level(void)
9548{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009549 return 4;
Sheng Yang67253af2008-04-25 10:20:22 +08009550}
9551
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009552static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009553{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009554 u8 cache;
9555 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009556
Sheng Yang522c68c2009-04-27 20:35:43 +08009557 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009558 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009559 * 2. EPT with VT-d:
9560 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009561 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009562 * b. VT-d with snooping control feature: snooping control feature of
9563 * VT-d engine can guarantee the cache correctness. Just set it
9564 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009565 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009566 * consistent with host MTRR
9567 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009568 if (is_mmio) {
9569 cache = MTRR_TYPE_UNCACHABLE;
9570 goto exit;
9571 }
9572
9573 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009574 ipat = VMX_EPT_IPAT_BIT;
9575 cache = MTRR_TYPE_WRBACK;
9576 goto exit;
9577 }
9578
9579 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9580 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009581 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009582 cache = MTRR_TYPE_WRBACK;
9583 else
9584 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009585 goto exit;
9586 }
9587
Xiao Guangrongff536042015-06-15 16:55:22 +08009588 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009589
9590exit:
9591 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009592}
9593
Sheng Yang17cc3932010-01-05 19:02:27 +08009594static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009595{
Sheng Yang878403b2010-01-05 19:02:29 +08009596 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9597 return PT_DIRECTORY_LEVEL;
9598 else
9599 /* For shadow and EPT supported 1GB page */
9600 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009601}
9602
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009603static void vmcs_set_secondary_exec_control(u32 new_ctl)
9604{
9605 /*
9606 * These bits in the secondary execution controls field
9607 * are dynamic, the others are mostly based on the hypervisor
9608 * architecture and the guest's CPUID. Do not touch the
9609 * dynamic bits.
9610 */
9611 u32 mask =
9612 SECONDARY_EXEC_SHADOW_VMCS |
9613 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9614 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9615
9616 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9617
9618 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9619 (new_ctl & ~mask) | (cur_ctl & mask));
9620}
9621
David Matlack8322ebb2016-11-29 18:14:09 -08009622/*
9623 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9624 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9625 */
9626static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9627{
9628 struct vcpu_vmx *vmx = to_vmx(vcpu);
9629 struct kvm_cpuid_entry2 *entry;
9630
9631 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9632 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9633
9634#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9635 if (entry && (entry->_reg & (_cpuid_mask))) \
9636 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9637} while (0)
9638
9639 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9640 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9641 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9642 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9643 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9644 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9645 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9646 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9647 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9648 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9649 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9650 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9651 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9652 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9653 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9654
9655 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9656 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9657 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9658 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9659 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9660 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9661 cr4_fixed1_update(bit(11), ecx, bit(2));
9662
9663#undef cr4_fixed1_update
9664}
9665
Sheng Yang0e851882009-12-18 16:48:46 +08009666static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9667{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009668 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009669
Paolo Bonzini80154d72017-08-24 13:55:35 +02009670 if (cpu_has_secondary_exec_ctrls()) {
9671 vmx_compute_secondary_exec_control(vmx);
9672 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009673 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009674
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009675 if (nested_vmx_allowed(vcpu))
9676 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9677 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9678 else
9679 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9680 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009681
9682 if (nested_vmx_allowed(vcpu))
9683 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009684}
9685
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009686static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9687{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009688 if (func == 1 && nested)
9689 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009690}
9691
Yang Zhang25d92082013-08-06 12:00:32 +03009692static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9693 struct x86_exception *fault)
9694{
Jan Kiszka533558b2014-01-04 18:47:20 +01009695 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009696 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009697 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009698 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009699
Bandan Dasc5f983f2017-05-05 15:25:14 -04009700 if (vmx->nested.pml_full) {
9701 exit_reason = EXIT_REASON_PML_FULL;
9702 vmx->nested.pml_full = false;
9703 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9704 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009705 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009706 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009707 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009708
9709 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009710 vmcs12->guest_physical_address = fault->address;
9711}
9712
Peter Feiner995f00a2017-06-30 17:26:32 -07009713static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9714{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009715 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009716}
9717
Nadav Har'El155a97a2013-08-05 11:07:16 +03009718/* Callbacks for nested_ept_init_mmu_context: */
9719
9720static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9721{
9722 /* return the page table to be shadowed - in our case, EPT12 */
9723 return get_vmcs12(vcpu)->ept_pointer;
9724}
9725
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009726static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009727{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009728 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009729 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009730 return 1;
9731
9732 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009733 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009734 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009735 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009736 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009737 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9738 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9739 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9740
9741 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009742 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009743}
9744
9745static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9746{
9747 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9748}
9749
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009750static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9751 u16 error_code)
9752{
9753 bool inequality, bit;
9754
9755 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9756 inequality =
9757 (error_code & vmcs12->page_fault_error_code_mask) !=
9758 vmcs12->page_fault_error_code_match;
9759 return inequality ^ bit;
9760}
9761
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009762static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9763 struct x86_exception *fault)
9764{
9765 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9766
9767 WARN_ON(!is_guest_mode(vcpu));
9768
Paolo Bonzini7313c692017-07-27 10:31:25 +02009769 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009770 vmcs12->vm_exit_intr_error_code = fault->error_code;
9771 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9772 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9773 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9774 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009775 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009776 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009777 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009778}
9779
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009780static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9781 struct vmcs12 *vmcs12);
9782
9783static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009784 struct vmcs12 *vmcs12)
9785{
9786 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009787 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009788 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009789
9790 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009791 /*
9792 * Translate L1 physical address to host physical
9793 * address for vmcs02. Keep the page pinned, so this
9794 * physical address remains valid. We keep a reference
9795 * to it so we can release it later.
9796 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009797 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009798 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009799 vmx->nested.apic_access_page = NULL;
9800 }
9801 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009802 /*
9803 * If translation failed, no matter: This feature asks
9804 * to exit when accessing the given address, and if it
9805 * can never be accessed, this feature won't do
9806 * anything anyway.
9807 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009808 if (!is_error_page(page)) {
9809 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009810 hpa = page_to_phys(vmx->nested.apic_access_page);
9811 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9812 } else {
9813 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9814 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9815 }
9816 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9817 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9818 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9819 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9820 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009821 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009822
9823 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009824 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009825 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009826 vmx->nested.virtual_apic_page = NULL;
9827 }
9828 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009829
9830 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009831 * If translation failed, VM entry will fail because
9832 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9833 * Failing the vm entry is _not_ what the processor
9834 * does but it's basically the only possibility we
9835 * have. We could still enter the guest if CR8 load
9836 * exits are enabled, CR8 store exits are enabled, and
9837 * virtualize APIC access is disabled; in this case
9838 * the processor would never use the TPR shadow and we
9839 * could simply clear the bit from the execution
9840 * control. But such a configuration is useless, so
9841 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009842 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009843 if (!is_error_page(page)) {
9844 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009845 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9846 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9847 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009848 }
9849
Wincy Van705699a2015-02-03 23:58:17 +08009850 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009851 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9852 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009853 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009854 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009855 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009856 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9857 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009858 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009859 vmx->nested.pi_desc_page = page;
9860 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009861 vmx->nested.pi_desc =
9862 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9863 (unsigned long)(vmcs12->posted_intr_desc_addr &
9864 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009865 vmcs_write64(POSTED_INTR_DESC_ADDR,
9866 page_to_phys(vmx->nested.pi_desc_page) +
9867 (unsigned long)(vmcs12->posted_intr_desc_addr &
9868 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009869 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009870 if (cpu_has_vmx_msr_bitmap() &&
9871 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9872 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9873 ;
9874 else
9875 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9876 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009877}
9878
Jan Kiszkaf4124502014-03-07 20:03:13 +01009879static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9880{
9881 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9882 struct vcpu_vmx *vmx = to_vmx(vcpu);
9883
9884 if (vcpu->arch.virtual_tsc_khz == 0)
9885 return;
9886
9887 /* Make sure short timeouts reliably trigger an immediate vmexit.
9888 * hrtimer_start does not guarantee this. */
9889 if (preemption_timeout <= 1) {
9890 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9891 return;
9892 }
9893
9894 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9895 preemption_timeout *= 1000000;
9896 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9897 hrtimer_start(&vmx->nested.preemption_timer,
9898 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9899}
9900
Jim Mattson56a20512017-07-06 16:33:06 -07009901static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9902 struct vmcs12 *vmcs12)
9903{
9904 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9905 return 0;
9906
9907 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9908 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9909 return -EINVAL;
9910
9911 return 0;
9912}
9913
Wincy Van3af18d92015-02-03 23:49:31 +08009914static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9915 struct vmcs12 *vmcs12)
9916{
Wincy Van3af18d92015-02-03 23:49:31 +08009917 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9918 return 0;
9919
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009920 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +08009921 return -EINVAL;
9922
9923 return 0;
9924}
9925
9926/*
9927 * Merge L0's and L1's MSR bitmap, return false to indicate that
9928 * we do not use the hardware.
9929 */
9930static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9931 struct vmcs12 *vmcs12)
9932{
Wincy Van82f0dd42015-02-03 23:57:18 +08009933 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009934 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +02009935 unsigned long *msr_bitmap_l1;
9936 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +08009937
Radim Krčmářd048c092016-08-08 20:16:22 +02009938 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +08009939 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9940 return false;
9941
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009942 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
9943 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +08009944 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +02009945 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009946
Radim Krčmářd048c092016-08-08 20:16:22 +02009947 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
9948
Wincy Vanf2b93282015-02-03 23:56:03 +08009949 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009950 if (nested_cpu_has_apic_reg_virt(vmcs12))
9951 for (msr = 0x800; msr <= 0x8ff; msr++)
9952 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009953 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +08009954 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +02009955
9956 nested_vmx_disable_intercept_for_msr(
9957 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +08009958 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9959 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +02009960
Wincy Van608406e2015-02-03 23:57:51 +08009961 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +08009962 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009963 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009964 APIC_BASE_MSR + (APIC_EOI >> 4),
9965 MSR_TYPE_W);
9966 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009967 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009968 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9969 MSR_TYPE_W);
9970 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009971 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009972 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009973 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009974
9975 return true;
9976}
9977
9978static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9979 struct vmcs12 *vmcs12)
9980{
Wincy Van82f0dd42015-02-03 23:57:18 +08009981 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009982 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009983 !nested_cpu_has_vid(vmcs12) &&
9984 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009985 return 0;
9986
9987 /*
9988 * If virtualize x2apic mode is enabled,
9989 * virtualize apic access must be disabled.
9990 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009991 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9992 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009993 return -EINVAL;
9994
Wincy Van608406e2015-02-03 23:57:51 +08009995 /*
9996 * If virtual interrupt delivery is enabled,
9997 * we must exit on external interrupts.
9998 */
9999 if (nested_cpu_has_vid(vmcs12) &&
10000 !nested_exit_on_intr(vcpu))
10001 return -EINVAL;
10002
Wincy Van705699a2015-02-03 23:58:17 +080010003 /*
10004 * bits 15:8 should be zero in posted_intr_nv,
10005 * the descriptor address has been already checked
10006 * in nested_get_vmcs12_pages.
10007 */
10008 if (nested_cpu_has_posted_intr(vmcs12) &&
10009 (!nested_cpu_has_vid(vmcs12) ||
10010 !nested_exit_intr_ack_set(vcpu) ||
10011 vmcs12->posted_intr_nv & 0xff00))
10012 return -EINVAL;
10013
Wincy Vanf2b93282015-02-03 23:56:03 +080010014 /* tpr shadow is needed by all apicv features. */
10015 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10016 return -EINVAL;
10017
10018 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010019}
10020
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010021static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10022 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010023 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010024{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010025 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010026 u64 count, addr;
10027
10028 if (vmcs12_read_any(vcpu, count_field, &count) ||
10029 vmcs12_read_any(vcpu, addr_field, &addr)) {
10030 WARN_ON(1);
10031 return -EINVAL;
10032 }
10033 if (count == 0)
10034 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010035 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010036 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10037 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010038 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010039 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10040 addr_field, maxphyaddr, count, addr);
10041 return -EINVAL;
10042 }
10043 return 0;
10044}
10045
10046static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10047 struct vmcs12 *vmcs12)
10048{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010049 if (vmcs12->vm_exit_msr_load_count == 0 &&
10050 vmcs12->vm_exit_msr_store_count == 0 &&
10051 vmcs12->vm_entry_msr_load_count == 0)
10052 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010053 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010054 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010055 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010056 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010057 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010058 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010059 return -EINVAL;
10060 return 0;
10061}
10062
Bandan Dasc5f983f2017-05-05 15:25:14 -040010063static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10064 struct vmcs12 *vmcs12)
10065{
10066 u64 address = vmcs12->pml_address;
10067 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10068
10069 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10070 if (!nested_cpu_has_ept(vmcs12) ||
10071 !IS_ALIGNED(address, 4096) ||
10072 address >> maxphyaddr)
10073 return -EINVAL;
10074 }
10075
10076 return 0;
10077}
10078
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010079static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10080 struct vmx_msr_entry *e)
10081{
10082 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010083 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010084 return -EINVAL;
10085 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10086 e->index == MSR_IA32_UCODE_REV)
10087 return -EINVAL;
10088 if (e->reserved != 0)
10089 return -EINVAL;
10090 return 0;
10091}
10092
10093static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10094 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010095{
10096 if (e->index == MSR_FS_BASE ||
10097 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010098 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10099 nested_vmx_msr_check_common(vcpu, e))
10100 return -EINVAL;
10101 return 0;
10102}
10103
10104static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10105 struct vmx_msr_entry *e)
10106{
10107 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10108 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010109 return -EINVAL;
10110 return 0;
10111}
10112
10113/*
10114 * Load guest's/host's msr at nested entry/exit.
10115 * return 0 for success, entry index for failure.
10116 */
10117static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10118{
10119 u32 i;
10120 struct vmx_msr_entry e;
10121 struct msr_data msr;
10122
10123 msr.host_initiated = false;
10124 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010125 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10126 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010127 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010128 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10129 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010130 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010131 }
10132 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010133 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010134 "%s check failed (%u, 0x%x, 0x%x)\n",
10135 __func__, i, e.index, e.reserved);
10136 goto fail;
10137 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010138 msr.index = e.index;
10139 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010140 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010141 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010142 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10143 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010144 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010145 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010146 }
10147 return 0;
10148fail:
10149 return i + 1;
10150}
10151
10152static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10153{
10154 u32 i;
10155 struct vmx_msr_entry e;
10156
10157 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010158 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010159 if (kvm_vcpu_read_guest(vcpu,
10160 gpa + i * sizeof(e),
10161 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010162 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010163 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10164 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010165 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010166 }
10167 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010168 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010169 "%s check failed (%u, 0x%x, 0x%x)\n",
10170 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010171 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010172 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010173 msr_info.host_initiated = false;
10174 msr_info.index = e.index;
10175 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010176 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010177 "%s cannot read MSR (%u, 0x%x)\n",
10178 __func__, i, e.index);
10179 return -EINVAL;
10180 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010181 if (kvm_vcpu_write_guest(vcpu,
10182 gpa + i * sizeof(e) +
10183 offsetof(struct vmx_msr_entry, value),
10184 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010185 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010186 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010187 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010188 return -EINVAL;
10189 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010190 }
10191 return 0;
10192}
10193
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010194static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10195{
10196 unsigned long invalid_mask;
10197
10198 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10199 return (val & invalid_mask) == 0;
10200}
10201
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010202/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010203 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10204 * emulating VM entry into a guest with EPT enabled.
10205 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10206 * is assigned to entry_failure_code on failure.
10207 */
10208static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010209 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010210{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010211 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010212 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010213 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10214 return 1;
10215 }
10216
10217 /*
10218 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10219 * must not be dereferenced.
10220 */
10221 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10222 !nested_ept) {
10223 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10224 *entry_failure_code = ENTRY_FAIL_PDPTE;
10225 return 1;
10226 }
10227 }
10228
10229 vcpu->arch.cr3 = cr3;
10230 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10231 }
10232
10233 kvm_mmu_reset_context(vcpu);
10234 return 0;
10235}
10236
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010237/*
10238 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10239 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010240 * 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 +030010241 * guest in a way that will both be appropriate to L1's requests, and our
10242 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10243 * function also has additional necessary side-effects, like setting various
10244 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010245 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10246 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010247 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010248static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010249 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010250{
10251 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010252 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010253
10254 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10255 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10256 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10257 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10258 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10259 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10260 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10261 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10262 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10263 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10264 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10265 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10266 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10267 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10268 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10269 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10270 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10271 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10272 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10273 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10274 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10275 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10276 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10277 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10278 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10279 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10280 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10281 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10282 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10283 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10284 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10285 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10286 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10287 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10288 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10289 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10290
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010291 if (from_vmentry &&
10292 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010293 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10294 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10295 } else {
10296 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10297 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10298 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010299 if (from_vmentry) {
10300 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10301 vmcs12->vm_entry_intr_info_field);
10302 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10303 vmcs12->vm_entry_exception_error_code);
10304 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10305 vmcs12->vm_entry_instruction_len);
10306 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10307 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010308 vmx->loaded_vmcs->nmi_known_unmasked =
10309 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010310 } else {
10311 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10312 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010313 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010314 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010315 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10316 vmcs12->guest_pending_dbg_exceptions);
10317 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10318 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10319
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010320 if (nested_cpu_has_xsaves(vmcs12))
10321 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010322 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10323
Jan Kiszkaf4124502014-03-07 20:03:13 +010010324 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010325
Paolo Bonzini93140062016-07-06 13:23:51 +020010326 /* Preemption timer setting is only taken from vmcs01. */
10327 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10328 exec_control |= vmcs_config.pin_based_exec_ctrl;
10329 if (vmx->hv_deadline_tsc == -1)
10330 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10331
10332 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010333 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010334 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10335 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010336 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010337 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010338 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010339 }
Wincy Van705699a2015-02-03 23:58:17 +080010340
Jan Kiszkaf4124502014-03-07 20:03:13 +010010341 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010342
Jan Kiszkaf4124502014-03-07 20:03:13 +010010343 vmx->nested.preemption_timer_expired = false;
10344 if (nested_cpu_has_preemption_timer(vmcs12))
10345 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010346
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010347 /*
10348 * Whether page-faults are trapped is determined by a combination of
10349 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10350 * If enable_ept, L0 doesn't care about page faults and we should
10351 * set all of these to L1's desires. However, if !enable_ept, L0 does
10352 * care about (at least some) page faults, and because it is not easy
10353 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10354 * to exit on each and every L2 page fault. This is done by setting
10355 * MASK=MATCH=0 and (see below) EB.PF=1.
10356 * Note that below we don't need special code to set EB.PF beyond the
10357 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10358 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10359 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010360 */
10361 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10362 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10363 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10364 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10365
10366 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020010367 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080010368
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010369 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010370 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010371 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010372 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010373 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010374 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10375 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010376 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010377 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10378 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10379 ~SECONDARY_EXEC_ENABLE_PML;
10380 exec_control |= vmcs12_exec_ctrl;
10381 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010382
Bandan Das27c42a12017-08-03 15:54:42 -040010383 /* All VMFUNCs are currently emulated through L0 vmexits. */
10384 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10385 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10386
Wincy Van608406e2015-02-03 23:57:51 +080010387 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10388 vmcs_write64(EOI_EXIT_BITMAP0,
10389 vmcs12->eoi_exit_bitmap0);
10390 vmcs_write64(EOI_EXIT_BITMAP1,
10391 vmcs12->eoi_exit_bitmap1);
10392 vmcs_write64(EOI_EXIT_BITMAP2,
10393 vmcs12->eoi_exit_bitmap2);
10394 vmcs_write64(EOI_EXIT_BITMAP3,
10395 vmcs12->eoi_exit_bitmap3);
10396 vmcs_write16(GUEST_INTR_STATUS,
10397 vmcs12->guest_intr_status);
10398 }
10399
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010400 /*
10401 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10402 * nested_get_vmcs12_pages will either fix it up or
10403 * remove the VM execution control.
10404 */
10405 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10406 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10407
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010408 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10409 }
10410
10411
10412 /*
10413 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10414 * Some constant fields are set here by vmx_set_constant_host_state().
10415 * Other fields are different per CPU, and will be set later when
10416 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10417 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010418 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010419
10420 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010421 * Set the MSR load/store lists to match L0's settings.
10422 */
10423 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10424 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10425 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10426 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10427 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10428
10429 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010430 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10431 * entry, but only if the current (host) sp changed from the value
10432 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10433 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10434 * here we just force the write to happen on entry.
10435 */
10436 vmx->host_rsp = 0;
10437
10438 exec_control = vmx_exec_control(vmx); /* L0's desires */
10439 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10440 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10441 exec_control &= ~CPU_BASED_TPR_SHADOW;
10442 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010443
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010444 /*
10445 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10446 * nested_get_vmcs12_pages can't fix it up, the illegal value
10447 * will result in a VM entry failure.
10448 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010449 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010450 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010451 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10452 }
10453
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010454 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010455 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010456 * Rather, exit every time.
10457 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010458 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10459 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10460
10461 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10462
10463 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10464 * bitwise-or of what L1 wants to trap for L2, and what we want to
10465 * trap. Note that CR0.TS also needs updating - we do this later.
10466 */
10467 update_exception_bitmap(vcpu);
10468 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10469 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10470
Nadav Har'El8049d652013-08-05 11:07:06 +030010471 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10472 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10473 * bits are further modified by vmx_set_efer() below.
10474 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010475 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010476
10477 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10478 * emulated by vmx_set_efer(), below.
10479 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010480 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010481 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10482 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010483 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10484
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010485 if (from_vmentry &&
10486 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010487 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010488 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010489 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010490 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010491 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010492
10493 set_cr4_guest_host_mask(vmx);
10494
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010495 if (from_vmentry &&
10496 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010497 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10498
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010499 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10500 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010501 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010502 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010503 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010504 if (kvm_has_tsc_control)
10505 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010506
10507 if (enable_vpid) {
10508 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010509 * There is no direct mapping between vpid02 and vpid12, the
10510 * vpid02 is per-vCPU for L0 and reused while the value of
10511 * vpid12 is changed w/ one invvpid during nested vmentry.
10512 * The vpid12 is allocated by L1 for L2, so it will not
10513 * influence global bitmap(for vpid01 and vpid02 allocation)
10514 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010515 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010516 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10517 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10518 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10519 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10520 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10521 }
10522 } else {
10523 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10524 vmx_flush_tlb(vcpu);
10525 }
10526
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010527 }
10528
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010529 if (enable_pml) {
10530 /*
10531 * Conceptually we want to copy the PML address and index from
10532 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10533 * since we always flush the log on each vmexit, this happens
10534 * to be equivalent to simply resetting the fields in vmcs02.
10535 */
10536 ASSERT(vmx->pml_pg);
10537 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10538 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10539 }
10540
Nadav Har'El155a97a2013-08-05 11:07:16 +030010541 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010542 if (nested_ept_init_mmu_context(vcpu)) {
10543 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10544 return 1;
10545 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010546 } else if (nested_cpu_has2(vmcs12,
10547 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10548 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010549 }
10550
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010551 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010552 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10553 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010554 * The CR0_READ_SHADOW is what L2 should have expected to read given
10555 * the specifications by L1; It's not enough to take
10556 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10557 * have more bits than L1 expected.
10558 */
10559 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10560 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10561
10562 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10563 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10564
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010565 if (from_vmentry &&
10566 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010567 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10568 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10569 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10570 else
10571 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10572 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10573 vmx_set_efer(vcpu, vcpu->arch.efer);
10574
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010575 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010576 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010577 entry_failure_code))
10578 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010579
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010580 if (!enable_ept)
10581 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10582
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010583 /*
10584 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10585 */
10586 if (enable_ept) {
10587 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10588 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10589 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10590 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10591 }
10592
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010593 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10594 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010595 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010596}
10597
Jim Mattsonca0bde22016-11-30 12:03:46 -080010598static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10599{
10600 struct vcpu_vmx *vmx = to_vmx(vcpu);
10601
10602 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10603 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10604 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10605
Jim Mattson56a20512017-07-06 16:33:06 -070010606 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10607 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10608
Jim Mattsonca0bde22016-11-30 12:03:46 -080010609 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10610 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10611
10612 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10613 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10614
10615 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10616 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10617
Bandan Dasc5f983f2017-05-05 15:25:14 -040010618 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10619 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10620
Jim Mattsonca0bde22016-11-30 12:03:46 -080010621 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10622 vmx->nested.nested_vmx_procbased_ctls_low,
10623 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010624 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10625 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10626 vmx->nested.nested_vmx_secondary_ctls_low,
10627 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010628 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10629 vmx->nested.nested_vmx_pinbased_ctls_low,
10630 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10631 !vmx_control_verify(vmcs12->vm_exit_controls,
10632 vmx->nested.nested_vmx_exit_ctls_low,
10633 vmx->nested.nested_vmx_exit_ctls_high) ||
10634 !vmx_control_verify(vmcs12->vm_entry_controls,
10635 vmx->nested.nested_vmx_entry_ctls_low,
10636 vmx->nested.nested_vmx_entry_ctls_high))
10637 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10638
Bandan Das41ab9372017-08-03 15:54:43 -040010639 if (nested_cpu_has_vmfunc(vmcs12)) {
10640 if (vmcs12->vm_function_control &
10641 ~vmx->nested.nested_vmx_vmfunc_controls)
10642 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10643
10644 if (nested_cpu_has_eptp_switching(vmcs12)) {
10645 if (!nested_cpu_has_ept(vmcs12) ||
10646 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10647 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10648 }
10649 }
Bandan Das27c42a12017-08-03 15:54:42 -040010650
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010651 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10652 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10653
Jim Mattsonca0bde22016-11-30 12:03:46 -080010654 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10655 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10656 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10657 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10658
10659 return 0;
10660}
10661
10662static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10663 u32 *exit_qual)
10664{
10665 bool ia32e;
10666
10667 *exit_qual = ENTRY_FAIL_DEFAULT;
10668
10669 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10670 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10671 return 1;
10672
10673 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10674 vmcs12->vmcs_link_pointer != -1ull) {
10675 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10676 return 1;
10677 }
10678
10679 /*
10680 * If the load IA32_EFER VM-entry control is 1, the following checks
10681 * are performed on the field for the IA32_EFER MSR:
10682 * - Bits reserved in the IA32_EFER MSR must be 0.
10683 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10684 * the IA-32e mode guest VM-exit control. It must also be identical
10685 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10686 * CR0.PG) is 1.
10687 */
10688 if (to_vmx(vcpu)->nested.nested_run_pending &&
10689 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10690 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10691 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10692 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10693 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10694 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10695 return 1;
10696 }
10697
10698 /*
10699 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10700 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10701 * the values of the LMA and LME bits in the field must each be that of
10702 * the host address-space size VM-exit control.
10703 */
10704 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10705 ia32e = (vmcs12->vm_exit_controls &
10706 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10707 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10708 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10709 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10710 return 1;
10711 }
10712
10713 return 0;
10714}
10715
Jim Mattson858e25c2016-11-30 12:03:47 -080010716static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10717{
10718 struct vcpu_vmx *vmx = to_vmx(vcpu);
10719 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10720 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010721 u32 msr_entry_idx;
10722 u32 exit_qual;
10723
10724 vmcs02 = nested_get_current_vmcs02(vmx);
10725 if (!vmcs02)
10726 return -ENOMEM;
10727
10728 enter_guest_mode(vcpu);
10729
10730 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10731 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10732
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010733 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010734 vmx_segment_cache_clear(vmx);
10735
10736 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10737 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010738 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010739 nested_vmx_entry_failure(vcpu, vmcs12,
10740 EXIT_REASON_INVALID_STATE, exit_qual);
10741 return 1;
10742 }
10743
10744 nested_get_vmcs12_pages(vcpu, vmcs12);
10745
10746 msr_entry_idx = nested_vmx_load_msr(vcpu,
10747 vmcs12->vm_entry_msr_load_addr,
10748 vmcs12->vm_entry_msr_load_count);
10749 if (msr_entry_idx) {
10750 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010751 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010752 nested_vmx_entry_failure(vcpu, vmcs12,
10753 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10754 return 1;
10755 }
10756
Jim Mattson858e25c2016-11-30 12:03:47 -080010757 /*
10758 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10759 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10760 * returned as far as L1 is concerned. It will only return (and set
10761 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10762 */
10763 return 0;
10764}
10765
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010766/*
10767 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10768 * for running an L2 nested guest.
10769 */
10770static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10771{
10772 struct vmcs12 *vmcs12;
10773 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010774 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010775 u32 exit_qual;
10776 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010777
Kyle Hueyeb277562016-11-29 12:40:39 -080010778 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010779 return 1;
10780
Kyle Hueyeb277562016-11-29 12:40:39 -080010781 if (!nested_vmx_check_vmcs12(vcpu))
10782 goto out;
10783
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010784 vmcs12 = get_vmcs12(vcpu);
10785
Abel Gordon012f83c2013-04-18 14:39:25 +030010786 if (enable_shadow_vmcs)
10787 copy_shadow_to_vmcs12(vmx);
10788
Nadav Har'El7c177932011-05-25 23:12:04 +030010789 /*
10790 * The nested entry process starts with enforcing various prerequisites
10791 * on vmcs12 as required by the Intel SDM, and act appropriately when
10792 * they fail: As the SDM explains, some conditions should cause the
10793 * instruction to fail, while others will cause the instruction to seem
10794 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10795 * To speed up the normal (success) code path, we should avoid checking
10796 * for misconfigurations which will anyway be caught by the processor
10797 * when using the merged vmcs02.
10798 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010799 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10800 nested_vmx_failValid(vcpu,
10801 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10802 goto out;
10803 }
10804
Nadav Har'El7c177932011-05-25 23:12:04 +030010805 if (vmcs12->launch_state == launch) {
10806 nested_vmx_failValid(vcpu,
10807 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10808 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010809 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010810 }
10811
Jim Mattsonca0bde22016-11-30 12:03:46 -080010812 ret = check_vmentry_prereqs(vcpu, vmcs12);
10813 if (ret) {
10814 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010815 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010816 }
10817
Nadav Har'El7c177932011-05-25 23:12:04 +030010818 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010819 * After this point, the trap flag no longer triggers a singlestep trap
10820 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10821 * This is not 100% correct; for performance reasons, we delegate most
10822 * of the checks on host state to the processor. If those fail,
10823 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010824 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010825 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010826
Jim Mattsonca0bde22016-11-30 12:03:46 -080010827 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10828 if (ret) {
10829 nested_vmx_entry_failure(vcpu, vmcs12,
10830 EXIT_REASON_INVALID_STATE, exit_qual);
10831 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010832 }
10833
10834 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010835 * We're finally done with prerequisite checking, and can start with
10836 * the nested entry.
10837 */
10838
Jim Mattson858e25c2016-11-30 12:03:47 -080010839 ret = enter_vmx_non_root_mode(vcpu, true);
10840 if (ret)
10841 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010842
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010843 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010844 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010845
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010846 vmx->nested.nested_run_pending = 1;
10847
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010848 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010849
10850out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010851 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010852}
10853
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010854/*
10855 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10856 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10857 * This function returns the new value we should put in vmcs12.guest_cr0.
10858 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10859 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10860 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10861 * didn't trap the bit, because if L1 did, so would L0).
10862 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10863 * been modified by L2, and L1 knows it. So just leave the old value of
10864 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10865 * isn't relevant, because if L0 traps this bit it can set it to anything.
10866 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10867 * changed these bits, and therefore they need to be updated, but L0
10868 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10869 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10870 */
10871static inline unsigned long
10872vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10873{
10874 return
10875 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10876 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10877 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10878 vcpu->arch.cr0_guest_owned_bits));
10879}
10880
10881static inline unsigned long
10882vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10883{
10884 return
10885 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10886 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10887 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10888 vcpu->arch.cr4_guest_owned_bits));
10889}
10890
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010891static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10892 struct vmcs12 *vmcs12)
10893{
10894 u32 idt_vectoring;
10895 unsigned int nr;
10896
Gleb Natapov851eb6672013-09-25 12:51:34 +030010897 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010898 nr = vcpu->arch.exception.nr;
10899 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10900
10901 if (kvm_exception_is_soft(nr)) {
10902 vmcs12->vm_exit_instruction_len =
10903 vcpu->arch.event_exit_inst_len;
10904 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10905 } else
10906 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10907
10908 if (vcpu->arch.exception.has_error_code) {
10909 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10910 vmcs12->idt_vectoring_error_code =
10911 vcpu->arch.exception.error_code;
10912 }
10913
10914 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010915 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010916 vmcs12->idt_vectoring_info_field =
10917 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10918 } else if (vcpu->arch.interrupt.pending) {
10919 nr = vcpu->arch.interrupt.nr;
10920 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10921
10922 if (vcpu->arch.interrupt.soft) {
10923 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10924 vmcs12->vm_entry_instruction_len =
10925 vcpu->arch.event_exit_inst_len;
10926 } else
10927 idt_vectoring |= INTR_TYPE_EXT_INTR;
10928
10929 vmcs12->idt_vectoring_info_field = idt_vectoring;
10930 }
10931}
10932
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010933static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10934{
10935 struct vcpu_vmx *vmx = to_vmx(vcpu);
10936
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010937 if (vcpu->arch.exception.pending ||
10938 vcpu->arch.nmi_injected ||
10939 vcpu->arch.interrupt.pending)
10940 return -EBUSY;
10941
Jan Kiszkaf4124502014-03-07 20:03:13 +010010942 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10943 vmx->nested.preemption_timer_expired) {
10944 if (vmx->nested.nested_run_pending)
10945 return -EBUSY;
10946 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10947 return 0;
10948 }
10949
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010950 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010951 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010952 return -EBUSY;
10953 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10954 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10955 INTR_INFO_VALID_MASK, 0);
10956 /*
10957 * The NMI-triggered VM exit counts as injection:
10958 * clear this one and block further NMIs.
10959 */
10960 vcpu->arch.nmi_pending = 0;
10961 vmx_set_nmi_mask(vcpu, true);
10962 return 0;
10963 }
10964
10965 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10966 nested_exit_on_intr(vcpu)) {
10967 if (vmx->nested.nested_run_pending)
10968 return -EBUSY;
10969 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010970 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010971 }
10972
David Hildenbrand6342c502017-01-25 11:58:58 +010010973 vmx_complete_nested_posted_interrupt(vcpu);
10974 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010975}
10976
Jan Kiszkaf4124502014-03-07 20:03:13 +010010977static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10978{
10979 ktime_t remaining =
10980 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10981 u64 value;
10982
10983 if (ktime_to_ns(remaining) <= 0)
10984 return 0;
10985
10986 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10987 do_div(value, 1000000);
10988 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10989}
10990
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010991/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010992 * Update the guest state fields of vmcs12 to reflect changes that
10993 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
10994 * VM-entry controls is also updated, since this is really a guest
10995 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010996 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010997static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010998{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010999 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11000 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11001
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011002 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11003 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11004 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11005
11006 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11007 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11008 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11009 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11010 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11011 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11012 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11013 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11014 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11015 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11016 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11017 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11018 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11019 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11020 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11021 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11022 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11023 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11024 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11025 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11026 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11027 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11028 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11029 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11030 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11031 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11032 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11033 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11034 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11035 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11036 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11037 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11038 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11039 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11040 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11041 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11042
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011043 vmcs12->guest_interruptibility_info =
11044 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11045 vmcs12->guest_pending_dbg_exceptions =
11046 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011047 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11048 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11049 else
11050 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011051
Jan Kiszkaf4124502014-03-07 20:03:13 +010011052 if (nested_cpu_has_preemption_timer(vmcs12)) {
11053 if (vmcs12->vm_exit_controls &
11054 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11055 vmcs12->vmx_preemption_timer_value =
11056 vmx_get_preemption_timer_value(vcpu);
11057 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11058 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011059
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011060 /*
11061 * In some cases (usually, nested EPT), L2 is allowed to change its
11062 * own CR3 without exiting. If it has changed it, we must keep it.
11063 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11064 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11065 *
11066 * Additionally, restore L2's PDPTR to vmcs12.
11067 */
11068 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011069 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011070 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11071 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11072 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11073 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11074 }
11075
Jim Mattsond281e132017-06-01 12:44:46 -070011076 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011077
Wincy Van608406e2015-02-03 23:57:51 +080011078 if (nested_cpu_has_vid(vmcs12))
11079 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11080
Jan Kiszkac18911a2013-03-13 16:06:41 +010011081 vmcs12->vm_entry_controls =
11082 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011083 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011084
Jan Kiszka2996fca2014-06-16 13:59:43 +020011085 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11086 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11087 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11088 }
11089
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011090 /* TODO: These cannot have changed unless we have MSR bitmaps and
11091 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011092 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011093 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011094 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11095 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011096 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11097 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11098 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011099 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011100 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011101}
11102
11103/*
11104 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11105 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11106 * and this function updates it to reflect the changes to the guest state while
11107 * L2 was running (and perhaps made some exits which were handled directly by L0
11108 * without going back to L1), and to reflect the exit reason.
11109 * Note that we do not have to copy here all VMCS fields, just those that
11110 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11111 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11112 * which already writes to vmcs12 directly.
11113 */
11114static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11115 u32 exit_reason, u32 exit_intr_info,
11116 unsigned long exit_qualification)
11117{
11118 /* update guest state fields: */
11119 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011120
11121 /* update exit information fields: */
11122
Jan Kiszka533558b2014-01-04 18:47:20 +010011123 vmcs12->vm_exit_reason = exit_reason;
11124 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011125 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011126
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011127 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011128 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11129 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11130
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011131 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011132 vmcs12->launch_state = 1;
11133
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011134 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11135 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011136 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011137
11138 /*
11139 * Transfer the event that L0 or L1 may wanted to inject into
11140 * L2 to IDT_VECTORING_INFO_FIELD.
11141 */
11142 vmcs12_save_pending_event(vcpu, vmcs12);
11143 }
11144
11145 /*
11146 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11147 * preserved above and would only end up incorrectly in L1.
11148 */
11149 vcpu->arch.nmi_injected = false;
11150 kvm_clear_exception_queue(vcpu);
11151 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011152}
11153
11154/*
11155 * A part of what we need to when the nested L2 guest exits and we want to
11156 * run its L1 parent, is to reset L1's guest state to the host state specified
11157 * in vmcs12.
11158 * This function is to be called not only on normal nested exit, but also on
11159 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11160 * Failures During or After Loading Guest State").
11161 * This function should be called when the active VMCS is L1's (vmcs01).
11162 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011163static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11164 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011165{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011166 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011167 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011168
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011169 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11170 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011171 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011172 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11173 else
11174 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11175 vmx_set_efer(vcpu, vcpu->arch.efer);
11176
11177 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11178 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011179 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011180 /*
11181 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011182 * actually changed, because vmx_set_cr0 refers to efer set above.
11183 *
11184 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11185 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011186 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011187 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011188 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011189
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011190 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011191 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
11192 kvm_set_cr4(vcpu, vmcs12->host_cr4);
11193
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011194 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011195
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011196 /*
11197 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11198 * couldn't have changed.
11199 */
11200 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11201 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011202
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011203 if (!enable_ept)
11204 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11205
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011206 if (enable_vpid) {
11207 /*
11208 * Trivially support vpid by letting L2s share their parent
11209 * L1's vpid. TODO: move to a more elaborate solution, giving
11210 * each L2 its own vpid and exposing the vpid feature to L1.
11211 */
11212 vmx_flush_tlb(vcpu);
11213 }
Wincy Van06a55242017-04-28 13:13:59 +080011214 /* Restore posted intr vector. */
11215 if (nested_cpu_has_posted_intr(vmcs12))
11216 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011217
11218 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11219 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11220 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11221 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11222 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011223
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011224 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11225 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11226 vmcs_write64(GUEST_BNDCFGS, 0);
11227
Jan Kiszka44811c02013-08-04 17:17:27 +020011228 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011229 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011230 vcpu->arch.pat = vmcs12->host_ia32_pat;
11231 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011232 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11233 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11234 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011235
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011236 /* Set L1 segment info according to Intel SDM
11237 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11238 seg = (struct kvm_segment) {
11239 .base = 0,
11240 .limit = 0xFFFFFFFF,
11241 .selector = vmcs12->host_cs_selector,
11242 .type = 11,
11243 .present = 1,
11244 .s = 1,
11245 .g = 1
11246 };
11247 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11248 seg.l = 1;
11249 else
11250 seg.db = 1;
11251 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11252 seg = (struct kvm_segment) {
11253 .base = 0,
11254 .limit = 0xFFFFFFFF,
11255 .type = 3,
11256 .present = 1,
11257 .s = 1,
11258 .db = 1,
11259 .g = 1
11260 };
11261 seg.selector = vmcs12->host_ds_selector;
11262 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11263 seg.selector = vmcs12->host_es_selector;
11264 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11265 seg.selector = vmcs12->host_ss_selector;
11266 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11267 seg.selector = vmcs12->host_fs_selector;
11268 seg.base = vmcs12->host_fs_base;
11269 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11270 seg.selector = vmcs12->host_gs_selector;
11271 seg.base = vmcs12->host_gs_base;
11272 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11273 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011274 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011275 .limit = 0x67,
11276 .selector = vmcs12->host_tr_selector,
11277 .type = 11,
11278 .present = 1
11279 };
11280 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11281
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011282 kvm_set_dr(vcpu, 7, 0x400);
11283 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011284
Wincy Van3af18d92015-02-03 23:49:31 +080011285 if (cpu_has_vmx_msr_bitmap())
11286 vmx_set_msr_bitmap(vcpu);
11287
Wincy Vanff651cb2014-12-11 08:52:58 +030011288 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11289 vmcs12->vm_exit_msr_load_count))
11290 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011291}
11292
11293/*
11294 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11295 * and modify vmcs12 to make it see what it would expect to see there if
11296 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11297 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011298static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11299 u32 exit_intr_info,
11300 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011301{
11302 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011303 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011304 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011305
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011306 /* trying to cancel vmlaunch/vmresume is a bug */
11307 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11308
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011309 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011310 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11311 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011312
Wincy Vanff651cb2014-12-11 08:52:58 +030011313 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11314 vmcs12->vm_exit_msr_store_count))
11315 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11316
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011317 if (unlikely(vmx->fail))
11318 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11319
David Hildenbrand1279a6b12017-03-20 10:00:08 +010011320 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Wanpeng Lif3380ca2014-08-05 12:42:23 +080011321
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011322 /*
11323 * TODO: SDM says that with acknowledge interrupt on exit, bit 31 of
11324 * the VM-exit interrupt information (valid interrupt) is always set to
11325 * 1 on EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't need
11326 * kvm_cpu_has_interrupt(). See the commit message for details.
11327 */
11328 if (nested_exit_intr_ack_set(vcpu) &&
11329 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11330 kvm_cpu_has_interrupt(vcpu)) {
Bandan Das77b0f5d2014-04-19 18:17:45 -040011331 int irq = kvm_cpu_get_interrupt(vcpu);
11332 WARN_ON(irq < 0);
11333 vmcs12->vm_exit_intr_info = irq |
11334 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11335 }
11336
Jan Kiszka542060e2014-01-04 18:47:21 +010011337 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11338 vmcs12->exit_qualification,
11339 vmcs12->idt_vectoring_info_field,
11340 vmcs12->vm_exit_intr_info,
11341 vmcs12->vm_exit_intr_error_code,
11342 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011343
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011344 vm_entry_controls_reset_shadow(vmx);
11345 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011346 vmx_segment_cache_clear(vmx);
11347
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011348 /* if no vmcs02 cache requested, remove the one we used */
11349 if (VMCS02_POOL_SIZE == 0)
11350 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11351
11352 load_vmcs12_host_state(vcpu, vmcs12);
11353
Paolo Bonzini93140062016-07-06 13:23:51 +020011354 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011355 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11356 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011357 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020011358 if (vmx->hv_deadline_tsc == -1)
11359 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11360 PIN_BASED_VMX_PREEMPTION_TIMER);
11361 else
11362 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11363 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011364 if (kvm_has_tsc_control)
11365 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011366
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011367 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11368 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11369 vmx_set_virtual_x2apic_mode(vcpu,
11370 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011371 } else if (!nested_cpu_has_ept(vmcs12) &&
11372 nested_cpu_has2(vmcs12,
11373 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11374 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011375 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011376
11377 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11378 vmx->host_rsp = 0;
11379
11380 /* Unpin physical memory we referred to in vmcs02 */
11381 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011382 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011383 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011384 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011385 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011386 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011387 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011388 }
Wincy Van705699a2015-02-03 23:58:17 +080011389 if (vmx->nested.pi_desc_page) {
11390 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011391 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011392 vmx->nested.pi_desc_page = NULL;
11393 vmx->nested.pi_desc = NULL;
11394 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011395
11396 /*
Tang Chen38b99172014-09-24 15:57:54 +080011397 * We are now running in L2, mmu_notifier will force to reload the
11398 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11399 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011400 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011401
11402 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011403 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11404 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11405 * success or failure flag accordingly.
11406 */
11407 if (unlikely(vmx->fail)) {
11408 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011409 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011410 } else
11411 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011412 if (enable_shadow_vmcs)
11413 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011414
11415 /* in case we halted in L2 */
11416 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011417}
11418
Nadav Har'El7c177932011-05-25 23:12:04 +030011419/*
Jan Kiszka42124922014-01-04 18:47:19 +010011420 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11421 */
11422static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11423{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011424 if (is_guest_mode(vcpu)) {
11425 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011426 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011427 }
Jan Kiszka42124922014-01-04 18:47:19 +010011428 free_nested(to_vmx(vcpu));
11429}
11430
11431/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011432 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11433 * 23.7 "VM-entry failures during or after loading guest state" (this also
11434 * lists the acceptable exit-reason and exit-qualification parameters).
11435 * It should only be called before L2 actually succeeded to run, and when
11436 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11437 */
11438static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11439 struct vmcs12 *vmcs12,
11440 u32 reason, unsigned long qualification)
11441{
11442 load_vmcs12_host_state(vcpu, vmcs12);
11443 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11444 vmcs12->exit_qualification = qualification;
11445 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011446 if (enable_shadow_vmcs)
11447 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011448}
11449
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011450static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11451 struct x86_instruction_info *info,
11452 enum x86_intercept_stage stage)
11453{
11454 return X86EMUL_CONTINUE;
11455}
11456
Yunhong Jiang64672c92016-06-13 14:19:59 -070011457#ifdef CONFIG_X86_64
11458/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11459static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11460 u64 divisor, u64 *result)
11461{
11462 u64 low = a << shift, high = a >> (64 - shift);
11463
11464 /* To avoid the overflow on divq */
11465 if (high >= divisor)
11466 return 1;
11467
11468 /* Low hold the result, high hold rem which is discarded */
11469 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11470 "rm" (divisor), "0" (low), "1" (high));
11471 *result = low;
11472
11473 return 0;
11474}
11475
11476static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11477{
11478 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011479 u64 tscl = rdtsc();
11480 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11481 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011482
11483 /* Convert to host delta tsc if tsc scaling is enabled */
11484 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11485 u64_shl_div_u64(delta_tsc,
11486 kvm_tsc_scaling_ratio_frac_bits,
11487 vcpu->arch.tsc_scaling_ratio,
11488 &delta_tsc))
11489 return -ERANGE;
11490
11491 /*
11492 * If the delta tsc can't fit in the 32 bit after the multi shift,
11493 * we can't use the preemption timer.
11494 * It's possible that it fits on later vmentries, but checking
11495 * on every vmentry is costly so we just use an hrtimer.
11496 */
11497 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11498 return -ERANGE;
11499
11500 vmx->hv_deadline_tsc = tscl + delta_tsc;
11501 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11502 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011503
11504 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011505}
11506
11507static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11508{
11509 struct vcpu_vmx *vmx = to_vmx(vcpu);
11510 vmx->hv_deadline_tsc = -1;
11511 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11512 PIN_BASED_VMX_PREEMPTION_TIMER);
11513}
11514#endif
11515
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011516static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011517{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011518 if (ple_gap)
11519 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011520}
11521
Kai Huang843e4332015-01-28 10:54:28 +080011522static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11523 struct kvm_memory_slot *slot)
11524{
11525 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11526 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11527}
11528
11529static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11530 struct kvm_memory_slot *slot)
11531{
11532 kvm_mmu_slot_set_dirty(kvm, slot);
11533}
11534
11535static void vmx_flush_log_dirty(struct kvm *kvm)
11536{
11537 kvm_flush_pml_buffers(kvm);
11538}
11539
Bandan Dasc5f983f2017-05-05 15:25:14 -040011540static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11541{
11542 struct vmcs12 *vmcs12;
11543 struct vcpu_vmx *vmx = to_vmx(vcpu);
11544 gpa_t gpa;
11545 struct page *page = NULL;
11546 u64 *pml_address;
11547
11548 if (is_guest_mode(vcpu)) {
11549 WARN_ON_ONCE(vmx->nested.pml_full);
11550
11551 /*
11552 * Check if PML is enabled for the nested guest.
11553 * Whether eptp bit 6 is set is already checked
11554 * as part of A/D emulation.
11555 */
11556 vmcs12 = get_vmcs12(vcpu);
11557 if (!nested_cpu_has_pml(vmcs12))
11558 return 0;
11559
Dan Carpenter47698862017-05-10 22:43:17 +030011560 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011561 vmx->nested.pml_full = true;
11562 return 1;
11563 }
11564
11565 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11566
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011567 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11568 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011569 return 0;
11570
11571 pml_address = kmap(page);
11572 pml_address[vmcs12->guest_pml_index--] = gpa;
11573 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011574 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011575 }
11576
11577 return 0;
11578}
11579
Kai Huang843e4332015-01-28 10:54:28 +080011580static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11581 struct kvm_memory_slot *memslot,
11582 gfn_t offset, unsigned long mask)
11583{
11584 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11585}
11586
Feng Wuefc64402015-09-18 22:29:51 +080011587/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011588 * This routine does the following things for vCPU which is going
11589 * to be blocked if VT-d PI is enabled.
11590 * - Store the vCPU to the wakeup list, so when interrupts happen
11591 * we can find the right vCPU to wake up.
11592 * - Change the Posted-interrupt descriptor as below:
11593 * 'NDST' <-- vcpu->pre_pcpu
11594 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11595 * - If 'ON' is set during this process, which means at least one
11596 * interrupt is posted for this vCPU, we cannot block it, in
11597 * this case, return 1, otherwise, return 0.
11598 *
11599 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011600static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011601{
11602 unsigned long flags;
11603 unsigned int dest;
11604 struct pi_desc old, new;
11605 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11606
11607 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011608 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11609 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011610 return 0;
11611
11612 vcpu->pre_pcpu = vcpu->cpu;
11613 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11614 vcpu->pre_pcpu), flags);
11615 list_add_tail(&vcpu->blocked_vcpu_list,
11616 &per_cpu(blocked_vcpu_on_cpu,
11617 vcpu->pre_pcpu));
11618 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11619 vcpu->pre_pcpu), flags);
11620
11621 do {
11622 old.control = new.control = pi_desc->control;
11623
11624 /*
11625 * We should not block the vCPU if
11626 * an interrupt is posted for it.
11627 */
11628 if (pi_test_on(pi_desc) == 1) {
11629 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11630 vcpu->pre_pcpu), flags);
11631 list_del(&vcpu->blocked_vcpu_list);
11632 spin_unlock_irqrestore(
11633 &per_cpu(blocked_vcpu_on_cpu_lock,
11634 vcpu->pre_pcpu), flags);
11635 vcpu->pre_pcpu = -1;
11636
11637 return 1;
11638 }
11639
11640 WARN((pi_desc->sn == 1),
11641 "Warning: SN field of posted-interrupts "
11642 "is set before blocking\n");
11643
11644 /*
11645 * Since vCPU can be preempted during this process,
11646 * vcpu->cpu could be different with pre_pcpu, we
11647 * need to set pre_pcpu as the destination of wakeup
11648 * notification event, then we can find the right vCPU
11649 * to wakeup in wakeup handler if interrupts happen
11650 * when the vCPU is in blocked state.
11651 */
11652 dest = cpu_physical_id(vcpu->pre_pcpu);
11653
11654 if (x2apic_enabled())
11655 new.ndst = dest;
11656 else
11657 new.ndst = (dest << 8) & 0xFF00;
11658
11659 /* set 'NV' to 'wakeup vector' */
11660 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11661 } while (cmpxchg(&pi_desc->control, old.control,
11662 new.control) != old.control);
11663
11664 return 0;
11665}
11666
Yunhong Jiangbc225122016-06-13 14:19:58 -070011667static int vmx_pre_block(struct kvm_vcpu *vcpu)
11668{
11669 if (pi_pre_block(vcpu))
11670 return 1;
11671
Yunhong Jiang64672c92016-06-13 14:19:59 -070011672 if (kvm_lapic_hv_timer_in_use(vcpu))
11673 kvm_lapic_switch_to_sw_timer(vcpu);
11674
Yunhong Jiangbc225122016-06-13 14:19:58 -070011675 return 0;
11676}
11677
11678static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011679{
11680 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11681 struct pi_desc old, new;
11682 unsigned int dest;
11683 unsigned long flags;
11684
11685 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011686 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11687 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011688 return;
11689
11690 do {
11691 old.control = new.control = pi_desc->control;
11692
11693 dest = cpu_physical_id(vcpu->cpu);
11694
11695 if (x2apic_enabled())
11696 new.ndst = dest;
11697 else
11698 new.ndst = (dest << 8) & 0xFF00;
11699
11700 /* Allow posting non-urgent interrupts */
11701 new.sn = 0;
11702
11703 /* set 'NV' to 'notification vector' */
11704 new.nv = POSTED_INTR_VECTOR;
11705 } while (cmpxchg(&pi_desc->control, old.control,
11706 new.control) != old.control);
11707
11708 if(vcpu->pre_pcpu != -1) {
11709 spin_lock_irqsave(
11710 &per_cpu(blocked_vcpu_on_cpu_lock,
11711 vcpu->pre_pcpu), flags);
11712 list_del(&vcpu->blocked_vcpu_list);
11713 spin_unlock_irqrestore(
11714 &per_cpu(blocked_vcpu_on_cpu_lock,
11715 vcpu->pre_pcpu), flags);
11716 vcpu->pre_pcpu = -1;
11717 }
11718}
11719
Yunhong Jiangbc225122016-06-13 14:19:58 -070011720static void vmx_post_block(struct kvm_vcpu *vcpu)
11721{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011722 if (kvm_x86_ops->set_hv_timer)
11723 kvm_lapic_switch_to_hv_timer(vcpu);
11724
Yunhong Jiangbc225122016-06-13 14:19:58 -070011725 pi_post_block(vcpu);
11726}
11727
Feng Wubf9f6ac2015-09-18 22:29:55 +080011728/*
Feng Wuefc64402015-09-18 22:29:51 +080011729 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11730 *
11731 * @kvm: kvm
11732 * @host_irq: host irq of the interrupt
11733 * @guest_irq: gsi of the interrupt
11734 * @set: set or unset PI
11735 * returns 0 on success, < 0 on failure
11736 */
11737static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11738 uint32_t guest_irq, bool set)
11739{
11740 struct kvm_kernel_irq_routing_entry *e;
11741 struct kvm_irq_routing_table *irq_rt;
11742 struct kvm_lapic_irq irq;
11743 struct kvm_vcpu *vcpu;
11744 struct vcpu_data vcpu_info;
11745 int idx, ret = -EINVAL;
11746
11747 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011748 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11749 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011750 return 0;
11751
11752 idx = srcu_read_lock(&kvm->irq_srcu);
11753 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11754 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11755
11756 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11757 if (e->type != KVM_IRQ_ROUTING_MSI)
11758 continue;
11759 /*
11760 * VT-d PI cannot support posting multicast/broadcast
11761 * interrupts to a vCPU, we still use interrupt remapping
11762 * for these kind of interrupts.
11763 *
11764 * For lowest-priority interrupts, we only support
11765 * those with single CPU as the destination, e.g. user
11766 * configures the interrupts via /proc/irq or uses
11767 * irqbalance to make the interrupts single-CPU.
11768 *
11769 * We will support full lowest-priority interrupt later.
11770 */
11771
Radim Krčmář371313132016-07-12 22:09:27 +020011772 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011773 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11774 /*
11775 * Make sure the IRTE is in remapped mode if
11776 * we don't handle it in posted mode.
11777 */
11778 ret = irq_set_vcpu_affinity(host_irq, NULL);
11779 if (ret < 0) {
11780 printk(KERN_INFO
11781 "failed to back to remapped mode, irq: %u\n",
11782 host_irq);
11783 goto out;
11784 }
11785
Feng Wuefc64402015-09-18 22:29:51 +080011786 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011787 }
Feng Wuefc64402015-09-18 22:29:51 +080011788
11789 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11790 vcpu_info.vector = irq.vector;
11791
Feng Wub6ce9782016-01-25 16:53:35 +080011792 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011793 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11794
11795 if (set)
11796 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11797 else {
11798 /* suppress notification event before unposting */
11799 pi_set_sn(vcpu_to_pi_desc(vcpu));
11800 ret = irq_set_vcpu_affinity(host_irq, NULL);
11801 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11802 }
11803
11804 if (ret < 0) {
11805 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11806 __func__);
11807 goto out;
11808 }
11809 }
11810
11811 ret = 0;
11812out:
11813 srcu_read_unlock(&kvm->irq_srcu, idx);
11814 return ret;
11815}
11816
Ashok Rajc45dcc72016-06-22 14:59:56 +080011817static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11818{
11819 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11820 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11821 FEATURE_CONTROL_LMCE;
11822 else
11823 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11824 ~FEATURE_CONTROL_LMCE;
11825}
11826
Kees Cook404f6aa2016-08-08 16:29:06 -070011827static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011828 .cpu_has_kvm_support = cpu_has_kvm_support,
11829 .disabled_by_bios = vmx_disabled_by_bios,
11830 .hardware_setup = hardware_setup,
11831 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011832 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011833 .hardware_enable = hardware_enable,
11834 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011835 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011836 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011837
11838 .vcpu_create = vmx_create_vcpu,
11839 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011840 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011841
Avi Kivity04d2cc72007-09-10 18:10:54 +030011842 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011843 .vcpu_load = vmx_vcpu_load,
11844 .vcpu_put = vmx_vcpu_put,
11845
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011846 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011847 .get_msr = vmx_get_msr,
11848 .set_msr = vmx_set_msr,
11849 .get_segment_base = vmx_get_segment_base,
11850 .get_segment = vmx_get_segment,
11851 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011852 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011853 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011854 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011855 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011856 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011857 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011858 .set_cr3 = vmx_set_cr3,
11859 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011860 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011861 .get_idt = vmx_get_idt,
11862 .set_idt = vmx_set_idt,
11863 .get_gdt = vmx_get_gdt,
11864 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011865 .get_dr6 = vmx_get_dr6,
11866 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011867 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011868 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011869 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011870 .get_rflags = vmx_get_rflags,
11871 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011872
11873 .get_pkru = vmx_get_pkru,
11874
Avi Kivity6aa8b732006-12-10 02:21:36 -080011875 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011876
Avi Kivity6aa8b732006-12-10 02:21:36 -080011877 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011878 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011879 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011880 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11881 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011882 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011883 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011884 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011885 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011886 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011887 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011888 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011889 .get_nmi_mask = vmx_get_nmi_mask,
11890 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011891 .enable_nmi_window = enable_nmi_window,
11892 .enable_irq_window = enable_irq_window,
11893 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011894 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011895 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011896 .get_enable_apicv = vmx_get_enable_apicv,
11897 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011898 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011899 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011900 .hwapic_irr_update = vmx_hwapic_irr_update,
11901 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011902 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11903 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011904
Izik Eiduscbc94022007-10-25 00:29:55 +020011905 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011906 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011907 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011908
Avi Kivity586f9602010-11-18 13:09:54 +020011909 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011910
Sheng Yang17cc3932010-01-05 19:02:27 +080011911 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011912
11913 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011914
11915 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011916 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011917
11918 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011919
11920 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011921
11922 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011923
11924 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011925
11926 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011927 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011928 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011929 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011930
11931 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011932
11933 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011934
11935 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11936 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11937 .flush_log_dirty = vmx_flush_log_dirty,
11938 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040011939 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020011940
Feng Wubf9f6ac2015-09-18 22:29:55 +080011941 .pre_block = vmx_pre_block,
11942 .post_block = vmx_post_block,
11943
Wei Huang25462f7f2015-06-19 15:45:05 +020011944 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011945
11946 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011947
11948#ifdef CONFIG_X86_64
11949 .set_hv_timer = vmx_set_hv_timer,
11950 .cancel_hv_timer = vmx_cancel_hv_timer,
11951#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011952
11953 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011954};
11955
11956static int __init vmx_init(void)
11957{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011958 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11959 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011960 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011961 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011962
Dave Young2965faa2015-09-09 15:38:55 -070011963#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011964 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11965 crash_vmclear_local_loaded_vmcss);
11966#endif
11967
He, Qingfdef3ad2007-04-30 09:45:24 +030011968 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011969}
11970
11971static void __exit vmx_exit(void)
11972{
Dave Young2965faa2015-09-09 15:38:55 -070011973#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011974 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011975 synchronize_rcu();
11976#endif
11977
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011978 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011979}
11980
11981module_init(vmx_init)
11982module_exit(vmx_exit)