blob: b83724dce879a4d53c42b4dfc1d4230a24cc64c5 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030037#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030038#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040039
Feng Wu28b835d2015-09-18 22:29:54 +080040#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080042#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020043#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020044#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080045#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020046#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020047#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010048#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080049#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010050#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080051#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070052#include <asm/mmu_context.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054#include "trace.h"
Wei Huang25462f7f2015-06-19 15:45:05 +020055#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040058#define __ex_clear(x, reg) \
59 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030060
Avi Kivity6aa8b732006-12-10 02:21:36 -080061MODULE_AUTHOR("Qumranet");
62MODULE_LICENSE("GPL");
63
Josh Triplette9bda3b2012-03-20 23:33:51 -070064static const struct x86_cpu_id vmx_cpu_id[] = {
65 X86_FEATURE_MATCH(X86_FEATURE_VMX),
66 {}
67};
68MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
69
Rusty Russell476bc002012-01-13 09:32:18 +103070static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020071module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080072
Rusty Russell476bc002012-01-13 09:32:18 +103073static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020074module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020075
Rusty Russell476bc002012-01-13 09:32:18 +103076static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020077module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080078
Rusty Russell476bc002012-01-13 09:32:18 +103079static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070080module_param_named(unrestricted_guest,
81 enable_unrestricted_guest, bool, S_IRUGO);
82
Xudong Hao83c3a332012-05-28 19:33:35 +080083static bool __read_mostly enable_ept_ad_bits = 1;
84module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
85
Avi Kivitya27685c2012-06-12 20:30:18 +030086static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020087module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030088
Rusty Russell476bc002012-01-13 09:32:18 +103089static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030090module_param(fasteoi, bool, S_IRUGO);
91
Yang Zhang5a717852013-04-11 19:25:16 +080092static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080093module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080094
Abel Gordonabc4fc52013-04-18 14:35:25 +030095static bool __read_mostly enable_shadow_vmcs = 1;
96module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030097/*
98 * If nested=1, nested virtualization is supported, i.e., guests may use
99 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
100 * use VMX instructions.
101 */
Rusty Russell476bc002012-01-13 09:32:18 +1030102static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300103module_param(nested, bool, S_IRUGO);
104
Wanpeng Li20300092014-12-02 19:14:59 +0800105static u64 __read_mostly host_xss;
106
Kai Huang843e4332015-01-28 10:54:28 +0800107static bool __read_mostly enable_pml = 1;
108module_param_named(pml, enable_pml, bool, S_IRUGO);
109
Haozhong Zhang64903d62015-10-20 15:39:09 +0800110#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
111
Yunhong Jiang64672c92016-06-13 14:19:59 -0700112/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
113static int __read_mostly cpu_preemption_timer_multi;
114static bool __read_mostly enable_preemption_timer = 1;
115#ifdef CONFIG_X86_64
116module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
117#endif
118
Gleb Natapov50378782013-02-04 16:00:28 +0200119#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
120#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200121#define KVM_VM_CR0_ALWAYS_ON \
122 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200123#define KVM_CR4_GUEST_OWNED_BITS \
124 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700125 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200126
Avi Kivitycdc0e242009-12-06 17:21:14 +0200127#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
128#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
129
Avi Kivity78ac8b42010-04-08 18:19:35 +0300130#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
131
Jan Kiszkaf4124502014-03-07 20:03:13 +0100132#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
133
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800134/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300135 * Hyper-V requires all of these, so mark them as supported even though
136 * they are just treated the same as all-context.
137 */
138#define VMX_VPID_EXTENT_SUPPORTED_MASK \
139 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
140 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
141 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
142 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
143
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800144/*
145 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
146 * ple_gap: upper bound on the amount of time between two successive
147 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500148 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800149 * ple_window: upper bound on the amount of time a guest is allowed to execute
150 * in a PAUSE loop. Tests indicate that most spinlocks are held for
151 * less than 2^12 cycles
152 * Time is measured based on a counter that runs at the same rate as the TSC,
153 * refer SDM volume 3b section 21.6.13 & 22.1.3.
154 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200155#define KVM_VMX_DEFAULT_PLE_GAP 128
156#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
157#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
158#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
159#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
160 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
161
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800162static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
163module_param(ple_gap, int, S_IRUGO);
164
165static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
166module_param(ple_window, int, S_IRUGO);
167
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200168/* Default doubles per-vcpu window every exit. */
169static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
170module_param(ple_window_grow, int, S_IRUGO);
171
172/* Default resets per-vcpu window every exit to ple_window. */
173static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
174module_param(ple_window_shrink, int, S_IRUGO);
175
176/* Default is to compute the maximum so we can never overflow. */
177static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
178static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179module_param(ple_window_max, int, S_IRUGO);
180
Avi Kivity83287ea422012-09-16 15:10:57 +0300181extern const ulong vmx_return;
182
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200183#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300184#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300185
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400186struct vmcs {
187 u32 revision_id;
188 u32 abort;
189 char data[0];
190};
191
Nadav Har'Eld462b812011-05-24 15:26:10 +0300192/*
193 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
194 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
195 * loaded on this CPU (so we can clear them if the CPU goes down).
196 */
197struct loaded_vmcs {
198 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700199 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300200 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200201 bool launched;
202 bool nmi_known_unmasked;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300203 struct list_head loaded_vmcss_on_cpu_link;
204};
205
Avi Kivity26bb0982009-09-07 11:14:12 +0300206struct shared_msr_entry {
207 unsigned index;
208 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200209 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300210};
211
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300212/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300213 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
214 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
215 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
216 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
217 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
218 * More than one of these structures may exist, if L1 runs multiple L2 guests.
219 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
220 * underlying hardware which will be used to run L2.
221 * This structure is packed to ensure that its layout is identical across
222 * machines (necessary for live migration).
223 * If there are changes in this struct, VMCS12_REVISION must be changed.
224 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300225typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300226struct __packed vmcs12 {
227 /* According to the Intel spec, a VMCS region must start with the
228 * following two fields. Then follow implementation-specific data.
229 */
230 u32 revision_id;
231 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300232
Nadav Har'El27d6c862011-05-25 23:06:59 +0300233 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
234 u32 padding[7]; /* room for future expansion */
235
Nadav Har'El22bd0352011-05-25 23:05:57 +0300236 u64 io_bitmap_a;
237 u64 io_bitmap_b;
238 u64 msr_bitmap;
239 u64 vm_exit_msr_store_addr;
240 u64 vm_exit_msr_load_addr;
241 u64 vm_entry_msr_load_addr;
242 u64 tsc_offset;
243 u64 virtual_apic_page_addr;
244 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800245 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400246 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300247 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800248 u64 eoi_exit_bitmap0;
249 u64 eoi_exit_bitmap1;
250 u64 eoi_exit_bitmap2;
251 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400252 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800253 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300254 u64 guest_physical_address;
255 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400256 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300257 u64 guest_ia32_debugctl;
258 u64 guest_ia32_pat;
259 u64 guest_ia32_efer;
260 u64 guest_ia32_perf_global_ctrl;
261 u64 guest_pdptr0;
262 u64 guest_pdptr1;
263 u64 guest_pdptr2;
264 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100265 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300266 u64 host_ia32_pat;
267 u64 host_ia32_efer;
268 u64 host_ia32_perf_global_ctrl;
269 u64 padding64[8]; /* room for future expansion */
270 /*
271 * To allow migration of L1 (complete with its L2 guests) between
272 * machines of different natural widths (32 or 64 bit), we cannot have
273 * unsigned long fields with no explict size. We use u64 (aliased
274 * natural_width) instead. Luckily, x86 is little-endian.
275 */
276 natural_width cr0_guest_host_mask;
277 natural_width cr4_guest_host_mask;
278 natural_width cr0_read_shadow;
279 natural_width cr4_read_shadow;
280 natural_width cr3_target_value0;
281 natural_width cr3_target_value1;
282 natural_width cr3_target_value2;
283 natural_width cr3_target_value3;
284 natural_width exit_qualification;
285 natural_width guest_linear_address;
286 natural_width guest_cr0;
287 natural_width guest_cr3;
288 natural_width guest_cr4;
289 natural_width guest_es_base;
290 natural_width guest_cs_base;
291 natural_width guest_ss_base;
292 natural_width guest_ds_base;
293 natural_width guest_fs_base;
294 natural_width guest_gs_base;
295 natural_width guest_ldtr_base;
296 natural_width guest_tr_base;
297 natural_width guest_gdtr_base;
298 natural_width guest_idtr_base;
299 natural_width guest_dr7;
300 natural_width guest_rsp;
301 natural_width guest_rip;
302 natural_width guest_rflags;
303 natural_width guest_pending_dbg_exceptions;
304 natural_width guest_sysenter_esp;
305 natural_width guest_sysenter_eip;
306 natural_width host_cr0;
307 natural_width host_cr3;
308 natural_width host_cr4;
309 natural_width host_fs_base;
310 natural_width host_gs_base;
311 natural_width host_tr_base;
312 natural_width host_gdtr_base;
313 natural_width host_idtr_base;
314 natural_width host_ia32_sysenter_esp;
315 natural_width host_ia32_sysenter_eip;
316 natural_width host_rsp;
317 natural_width host_rip;
318 natural_width paddingl[8]; /* room for future expansion */
319 u32 pin_based_vm_exec_control;
320 u32 cpu_based_vm_exec_control;
321 u32 exception_bitmap;
322 u32 page_fault_error_code_mask;
323 u32 page_fault_error_code_match;
324 u32 cr3_target_count;
325 u32 vm_exit_controls;
326 u32 vm_exit_msr_store_count;
327 u32 vm_exit_msr_load_count;
328 u32 vm_entry_controls;
329 u32 vm_entry_msr_load_count;
330 u32 vm_entry_intr_info_field;
331 u32 vm_entry_exception_error_code;
332 u32 vm_entry_instruction_len;
333 u32 tpr_threshold;
334 u32 secondary_vm_exec_control;
335 u32 vm_instruction_error;
336 u32 vm_exit_reason;
337 u32 vm_exit_intr_info;
338 u32 vm_exit_intr_error_code;
339 u32 idt_vectoring_info_field;
340 u32 idt_vectoring_error_code;
341 u32 vm_exit_instruction_len;
342 u32 vmx_instruction_info;
343 u32 guest_es_limit;
344 u32 guest_cs_limit;
345 u32 guest_ss_limit;
346 u32 guest_ds_limit;
347 u32 guest_fs_limit;
348 u32 guest_gs_limit;
349 u32 guest_ldtr_limit;
350 u32 guest_tr_limit;
351 u32 guest_gdtr_limit;
352 u32 guest_idtr_limit;
353 u32 guest_es_ar_bytes;
354 u32 guest_cs_ar_bytes;
355 u32 guest_ss_ar_bytes;
356 u32 guest_ds_ar_bytes;
357 u32 guest_fs_ar_bytes;
358 u32 guest_gs_ar_bytes;
359 u32 guest_ldtr_ar_bytes;
360 u32 guest_tr_ar_bytes;
361 u32 guest_interruptibility_info;
362 u32 guest_activity_state;
363 u32 guest_sysenter_cs;
364 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100365 u32 vmx_preemption_timer_value;
366 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300367 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800368 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300369 u16 guest_es_selector;
370 u16 guest_cs_selector;
371 u16 guest_ss_selector;
372 u16 guest_ds_selector;
373 u16 guest_fs_selector;
374 u16 guest_gs_selector;
375 u16 guest_ldtr_selector;
376 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800377 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400378 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300379 u16 host_es_selector;
380 u16 host_cs_selector;
381 u16 host_ss_selector;
382 u16 host_ds_selector;
383 u16 host_fs_selector;
384 u16 host_gs_selector;
385 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300386};
387
388/*
389 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
390 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
391 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
392 */
393#define VMCS12_REVISION 0x11e57ed0
394
395/*
396 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
397 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
398 * current implementation, 4K are reserved to avoid future complications.
399 */
400#define VMCS12_SIZE 0x1000
401
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300402/* Used to remember the last vmcs02 used for some recently used vmcs12s */
403struct vmcs02_list {
404 struct list_head list;
405 gpa_t vmptr;
406 struct loaded_vmcs vmcs02;
407};
408
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300409/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300410 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
411 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
412 */
413struct nested_vmx {
414 /* Has the level1 guest done vmxon? */
415 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400416 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400417 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300418
419 /* The guest-physical address of the current VMCS L1 keeps for L2 */
420 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700421 /*
422 * Cache of the guest's VMCS, existing outside of guest memory.
423 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700424 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700425 */
426 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300427 /*
428 * Indicates if the shadow vmcs must be updated with the
429 * data hold by vmcs12
430 */
431 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300432
433 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
434 struct list_head vmcs02_pool;
435 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200436 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300437 /* L2 must run next, and mustn't decide to exit to L1. */
438 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300439 /*
440 * Guest pages referred to in vmcs02 with host-physical pointers, so
441 * we must keep them pinned while L2 runs.
442 */
443 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800444 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800445 struct page *pi_desc_page;
446 struct pi_desc *pi_desc;
447 bool pi_pending;
448 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100449
Radim Krčmářd048c092016-08-08 20:16:22 +0200450 unsigned long *msr_bitmap;
451
Jan Kiszkaf4124502014-03-07 20:03:13 +0100452 struct hrtimer preemption_timer;
453 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200454
455 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
456 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800457
Wanpeng Li5c614b32015-10-13 09:18:36 -0700458 u16 vpid02;
459 u16 last_vpid;
460
David Matlack0115f9c2016-11-29 18:14:06 -0800461 /*
462 * We only store the "true" versions of the VMX capability MSRs. We
463 * generate the "non-true" versions by setting the must-be-1 bits
464 * according to the SDM.
465 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466 u32 nested_vmx_procbased_ctls_low;
467 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800468 u32 nested_vmx_secondary_ctls_low;
469 u32 nested_vmx_secondary_ctls_high;
470 u32 nested_vmx_pinbased_ctls_low;
471 u32 nested_vmx_pinbased_ctls_high;
472 u32 nested_vmx_exit_ctls_low;
473 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800474 u32 nested_vmx_entry_ctls_low;
475 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800476 u32 nested_vmx_misc_low;
477 u32 nested_vmx_misc_high;
478 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700479 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800480 u64 nested_vmx_basic;
481 u64 nested_vmx_cr0_fixed0;
482 u64 nested_vmx_cr0_fixed1;
483 u64 nested_vmx_cr4_fixed0;
484 u64 nested_vmx_cr4_fixed1;
485 u64 nested_vmx_vmcs_enum;
Bandan Das27c42a12017-08-03 15:54:42 -0400486 u64 nested_vmx_vmfunc_controls;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300487};
488
Yang Zhang01e439b2013-04-11 19:25:12 +0800489#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800490#define POSTED_INTR_SN 1
491
Yang Zhang01e439b2013-04-11 19:25:12 +0800492/* Posted-Interrupt Descriptor */
493struct pi_desc {
494 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800495 union {
496 struct {
497 /* bit 256 - Outstanding Notification */
498 u16 on : 1,
499 /* bit 257 - Suppress Notification */
500 sn : 1,
501 /* bit 271:258 - Reserved */
502 rsvd_1 : 14;
503 /* bit 279:272 - Notification Vector */
504 u8 nv;
505 /* bit 287:280 - Reserved */
506 u8 rsvd_2;
507 /* bit 319:288 - Notification Destination */
508 u32 ndst;
509 };
510 u64 control;
511 };
512 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800513} __aligned(64);
514
Yang Zhanga20ed542013-04-11 19:25:15 +0800515static bool pi_test_and_set_on(struct pi_desc *pi_desc)
516{
517 return test_and_set_bit(POSTED_INTR_ON,
518 (unsigned long *)&pi_desc->control);
519}
520
521static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
522{
523 return test_and_clear_bit(POSTED_INTR_ON,
524 (unsigned long *)&pi_desc->control);
525}
526
527static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
528{
529 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
530}
531
Feng Wuebbfc762015-09-18 22:29:46 +0800532static inline void pi_clear_sn(struct pi_desc *pi_desc)
533{
534 return clear_bit(POSTED_INTR_SN,
535 (unsigned long *)&pi_desc->control);
536}
537
538static inline void pi_set_sn(struct pi_desc *pi_desc)
539{
540 return set_bit(POSTED_INTR_SN,
541 (unsigned long *)&pi_desc->control);
542}
543
Paolo Bonziniad361092016-09-20 16:15:05 +0200544static inline void pi_clear_on(struct pi_desc *pi_desc)
545{
546 clear_bit(POSTED_INTR_ON,
547 (unsigned long *)&pi_desc->control);
548}
549
Feng Wuebbfc762015-09-18 22:29:46 +0800550static inline int pi_test_on(struct pi_desc *pi_desc)
551{
552 return test_bit(POSTED_INTR_ON,
553 (unsigned long *)&pi_desc->control);
554}
555
556static inline int pi_test_sn(struct pi_desc *pi_desc)
557{
558 return test_bit(POSTED_INTR_SN,
559 (unsigned long *)&pi_desc->control);
560}
561
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400562struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000563 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300564 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300565 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300566 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200567 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200568 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300569 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400570 int nmsrs;
571 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800572 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300574 u64 msr_host_kernel_gs_base;
575 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400576#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200577 u32 vm_entry_controls_shadow;
578 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300579 /*
580 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
581 * non-nested (L1) guest, it always points to vmcs01. For a nested
582 * guest (L2), it points to a different VMCS.
583 */
584 struct loaded_vmcs vmcs01;
585 struct loaded_vmcs *loaded_vmcs;
586 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300587 struct msr_autoload {
588 unsigned nr;
589 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
590 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
591 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400592 struct {
593 int loaded;
594 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300595#ifdef CONFIG_X86_64
596 u16 ds_sel, es_sel;
597#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200598 int gs_ldt_reload_needed;
599 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000600 u64 msr_host_bndcfgs;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -0700601 unsigned long vmcs_host_cr3; /* May not match real cr3 */
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700602 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400603 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200604 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300605 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300606 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300607 struct kvm_segment segs[8];
608 } rmode;
609 struct {
610 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300611 struct kvm_save_segment {
612 u16 selector;
613 unsigned long base;
614 u32 limit;
615 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300616 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300617 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800618 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300619 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200620
Andi Kleena0861c02009-06-08 17:37:09 +0800621 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800622
Yang Zhang01e439b2013-04-11 19:25:12 +0800623 /* Posted interrupt descriptor */
624 struct pi_desc pi_desc;
625
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300626 /* Support for a guest hypervisor (nested VMX) */
627 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200628
629 /* Dynamic PLE window. */
630 int ple_window;
631 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800632
633 /* Support for PML */
634#define PML_ENTITY_NUM 512
635 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800636
Yunhong Jiang64672c92016-06-13 14:19:59 -0700637 /* apic deadline value in host tsc */
638 u64 hv_deadline_tsc;
639
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800640 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800641
642 bool guest_pkru_valid;
643 u32 guest_pkru;
644 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800645
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800646 /*
647 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
648 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
649 * in msr_ia32_feature_control_valid_bits.
650 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800651 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800652 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400653};
654
Avi Kivity2fb92db2011-04-27 19:42:18 +0300655enum segment_cache_field {
656 SEG_FIELD_SEL = 0,
657 SEG_FIELD_BASE = 1,
658 SEG_FIELD_LIMIT = 2,
659 SEG_FIELD_AR = 3,
660
661 SEG_FIELD_NR = 4
662};
663
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400664static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
665{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000666 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400667}
668
Feng Wuefc64402015-09-18 22:29:51 +0800669static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
670{
671 return &(to_vmx(vcpu)->pi_desc);
672}
673
Nadav Har'El22bd0352011-05-25 23:05:57 +0300674#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
675#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
676#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
677 [number##_HIGH] = VMCS12_OFFSET(name)+4
678
Abel Gordon4607c2d2013-04-18 14:35:55 +0300679
Bandan Dasfe2b2012014-04-21 15:20:14 -0400680static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300681 /*
682 * We do NOT shadow fields that are modified when L0
683 * traps and emulates any vmx instruction (e.g. VMPTRLD,
684 * VMXON...) executed by L1.
685 * For example, VM_INSTRUCTION_ERROR is read
686 * by L1 if a vmx instruction fails (part of the error path).
687 * Note the code assumes this logic. If for some reason
688 * we start shadowing these fields then we need to
689 * force a shadow sync when L0 emulates vmx instructions
690 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
691 * by nested_vmx_failValid)
692 */
693 VM_EXIT_REASON,
694 VM_EXIT_INTR_INFO,
695 VM_EXIT_INSTRUCTION_LEN,
696 IDT_VECTORING_INFO_FIELD,
697 IDT_VECTORING_ERROR_CODE,
698 VM_EXIT_INTR_ERROR_CODE,
699 EXIT_QUALIFICATION,
700 GUEST_LINEAR_ADDRESS,
701 GUEST_PHYSICAL_ADDRESS
702};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400703static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300704 ARRAY_SIZE(shadow_read_only_fields);
705
Bandan Dasfe2b2012014-04-21 15:20:14 -0400706static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800707 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300708 GUEST_RIP,
709 GUEST_RSP,
710 GUEST_CR0,
711 GUEST_CR3,
712 GUEST_CR4,
713 GUEST_INTERRUPTIBILITY_INFO,
714 GUEST_RFLAGS,
715 GUEST_CS_SELECTOR,
716 GUEST_CS_AR_BYTES,
717 GUEST_CS_LIMIT,
718 GUEST_CS_BASE,
719 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100720 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300721 CR0_GUEST_HOST_MASK,
722 CR0_READ_SHADOW,
723 CR4_READ_SHADOW,
724 TSC_OFFSET,
725 EXCEPTION_BITMAP,
726 CPU_BASED_VM_EXEC_CONTROL,
727 VM_ENTRY_EXCEPTION_ERROR_CODE,
728 VM_ENTRY_INTR_INFO_FIELD,
729 VM_ENTRY_INSTRUCTION_LEN,
730 VM_ENTRY_EXCEPTION_ERROR_CODE,
731 HOST_FS_BASE,
732 HOST_GS_BASE,
733 HOST_FS_SELECTOR,
734 HOST_GS_SELECTOR
735};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400736static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300737 ARRAY_SIZE(shadow_read_write_fields);
738
Mathias Krause772e0312012-08-30 01:30:19 +0200739static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300740 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800741 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300742 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
743 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
744 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
745 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
746 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
747 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
748 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
749 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800750 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400751 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300752 FIELD(HOST_ES_SELECTOR, host_es_selector),
753 FIELD(HOST_CS_SELECTOR, host_cs_selector),
754 FIELD(HOST_SS_SELECTOR, host_ss_selector),
755 FIELD(HOST_DS_SELECTOR, host_ds_selector),
756 FIELD(HOST_FS_SELECTOR, host_fs_selector),
757 FIELD(HOST_GS_SELECTOR, host_gs_selector),
758 FIELD(HOST_TR_SELECTOR, host_tr_selector),
759 FIELD64(IO_BITMAP_A, io_bitmap_a),
760 FIELD64(IO_BITMAP_B, io_bitmap_b),
761 FIELD64(MSR_BITMAP, msr_bitmap),
762 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
763 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
764 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
765 FIELD64(TSC_OFFSET, tsc_offset),
766 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
767 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800768 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400769 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300770 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800771 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
772 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
773 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
774 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400775 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800776 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300777 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
778 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400779 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300780 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
781 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
782 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
783 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
784 FIELD64(GUEST_PDPTR0, guest_pdptr0),
785 FIELD64(GUEST_PDPTR1, guest_pdptr1),
786 FIELD64(GUEST_PDPTR2, guest_pdptr2),
787 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100788 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300789 FIELD64(HOST_IA32_PAT, host_ia32_pat),
790 FIELD64(HOST_IA32_EFER, host_ia32_efer),
791 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
792 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
793 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
794 FIELD(EXCEPTION_BITMAP, exception_bitmap),
795 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
796 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
797 FIELD(CR3_TARGET_COUNT, cr3_target_count),
798 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
799 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
800 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
801 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
802 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
803 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
804 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
805 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
806 FIELD(TPR_THRESHOLD, tpr_threshold),
807 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
808 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
809 FIELD(VM_EXIT_REASON, vm_exit_reason),
810 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
811 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
812 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
813 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
814 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
815 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
816 FIELD(GUEST_ES_LIMIT, guest_es_limit),
817 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
818 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
819 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
820 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
821 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
822 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
823 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
824 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
825 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
826 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
827 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
828 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
829 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
830 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
831 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
832 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
833 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
834 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
835 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
836 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
837 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100838 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300839 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
840 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
841 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
842 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
843 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
844 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
845 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
846 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
847 FIELD(EXIT_QUALIFICATION, exit_qualification),
848 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
849 FIELD(GUEST_CR0, guest_cr0),
850 FIELD(GUEST_CR3, guest_cr3),
851 FIELD(GUEST_CR4, guest_cr4),
852 FIELD(GUEST_ES_BASE, guest_es_base),
853 FIELD(GUEST_CS_BASE, guest_cs_base),
854 FIELD(GUEST_SS_BASE, guest_ss_base),
855 FIELD(GUEST_DS_BASE, guest_ds_base),
856 FIELD(GUEST_FS_BASE, guest_fs_base),
857 FIELD(GUEST_GS_BASE, guest_gs_base),
858 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
859 FIELD(GUEST_TR_BASE, guest_tr_base),
860 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
861 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
862 FIELD(GUEST_DR7, guest_dr7),
863 FIELD(GUEST_RSP, guest_rsp),
864 FIELD(GUEST_RIP, guest_rip),
865 FIELD(GUEST_RFLAGS, guest_rflags),
866 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
867 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
868 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
869 FIELD(HOST_CR0, host_cr0),
870 FIELD(HOST_CR3, host_cr3),
871 FIELD(HOST_CR4, host_cr4),
872 FIELD(HOST_FS_BASE, host_fs_base),
873 FIELD(HOST_GS_BASE, host_gs_base),
874 FIELD(HOST_TR_BASE, host_tr_base),
875 FIELD(HOST_GDTR_BASE, host_gdtr_base),
876 FIELD(HOST_IDTR_BASE, host_idtr_base),
877 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
878 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
879 FIELD(HOST_RSP, host_rsp),
880 FIELD(HOST_RIP, host_rip),
881};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300882
883static inline short vmcs_field_to_offset(unsigned long field)
884{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100885 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
886
887 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
888 vmcs_field_to_offset_table[field] == 0)
889 return -ENOENT;
890
Nadav Har'El22bd0352011-05-25 23:05:57 +0300891 return vmcs_field_to_offset_table[field];
892}
893
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300894static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
895{
David Matlack4f2777b2016-07-13 17:16:37 -0700896 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300897}
898
Peter Feiner995f00a2017-06-30 17:26:32 -0700899static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300900static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700901static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800902static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200903static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300904static void vmx_set_segment(struct kvm_vcpu *vcpu,
905 struct kvm_segment *var, int seg);
906static void vmx_get_segment(struct kvm_vcpu *vcpu,
907 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200908static bool guest_state_valid(struct kvm_vcpu *vcpu);
909static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300910static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300911static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800912static int alloc_identity_pagetable(struct kvm *kvm);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200913static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
914static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
915static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
916 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300917
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918static DEFINE_PER_CPU(struct vmcs *, vmxarea);
919static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300920/*
921 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
922 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
923 */
924static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925
Feng Wubf9f6ac2015-09-18 22:29:55 +0800926/*
927 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
928 * can find which vCPU should be waken up.
929 */
930static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
931static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
932
Radim Krčmář23611332016-09-29 22:41:33 +0200933enum {
934 VMX_IO_BITMAP_A,
935 VMX_IO_BITMAP_B,
936 VMX_MSR_BITMAP_LEGACY,
937 VMX_MSR_BITMAP_LONGMODE,
938 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
939 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
940 VMX_MSR_BITMAP_LEGACY_X2APIC,
941 VMX_MSR_BITMAP_LONGMODE_X2APIC,
942 VMX_VMREAD_BITMAP,
943 VMX_VMWRITE_BITMAP,
944 VMX_BITMAP_NR
945};
946
947static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
948
949#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
950#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
951#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
952#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
953#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
954#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
955#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
956#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
957#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
958#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300959
Avi Kivity110312c2010-12-21 12:54:20 +0200960static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200961static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200962
Sheng Yang2384d2b2008-01-17 15:14:33 +0800963static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
964static DEFINE_SPINLOCK(vmx_vpid_lock);
965
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300966static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967 int size;
968 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300969 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300971 u32 pin_based_exec_ctrl;
972 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800973 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300974 u32 vmexit_ctrl;
975 u32 vmentry_ctrl;
976} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977
Hannes Ederefff9e52008-11-28 17:02:06 +0100978static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800979 u32 ept;
980 u32 vpid;
981} vmx_capability;
982
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983#define VMX_SEGMENT_FIELD(seg) \
984 [VCPU_SREG_##seg] = { \
985 .selector = GUEST_##seg##_SELECTOR, \
986 .base = GUEST_##seg##_BASE, \
987 .limit = GUEST_##seg##_LIMIT, \
988 .ar_bytes = GUEST_##seg##_AR_BYTES, \
989 }
990
Mathias Krause772e0312012-08-30 01:30:19 +0200991static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 unsigned selector;
993 unsigned base;
994 unsigned limit;
995 unsigned ar_bytes;
996} kvm_vmx_segment_fields[] = {
997 VMX_SEGMENT_FIELD(CS),
998 VMX_SEGMENT_FIELD(DS),
999 VMX_SEGMENT_FIELD(ES),
1000 VMX_SEGMENT_FIELD(FS),
1001 VMX_SEGMENT_FIELD(GS),
1002 VMX_SEGMENT_FIELD(SS),
1003 VMX_SEGMENT_FIELD(TR),
1004 VMX_SEGMENT_FIELD(LDTR),
1005};
1006
Avi Kivity26bb0982009-09-07 11:14:12 +03001007static u64 host_efer;
1008
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001009static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1010
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001011/*
Brian Gerst8c065852010-07-17 09:03:26 -04001012 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001013 * away by decrementing the array size.
1014 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001016#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001017 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001019 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021
Jan Kiszka5bb16012016-02-09 20:14:21 +01001022static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
1024 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1025 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001026 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1027}
1028
Jan Kiszka6f054852016-02-09 20:15:18 +01001029static inline bool is_debug(u32 intr_info)
1030{
1031 return is_exception_n(intr_info, DB_VECTOR);
1032}
1033
1034static inline bool is_breakpoint(u32 intr_info)
1035{
1036 return is_exception_n(intr_info, BP_VECTOR);
1037}
1038
Jan Kiszka5bb16012016-02-09 20:14:21 +01001039static inline bool is_page_fault(u32 intr_info)
1040{
1041 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042}
1043
Gui Jianfeng31299942010-03-15 17:29:09 +08001044static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001045{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001046 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001047}
1048
Gui Jianfeng31299942010-03-15 17:29:09 +08001049static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001050{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001051 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001052}
1053
Gui Jianfeng31299942010-03-15 17:29:09 +08001054static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055{
1056 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1057 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1058}
1059
Gui Jianfeng31299942010-03-15 17:29:09 +08001060static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001061{
1062 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1063 INTR_INFO_VALID_MASK)) ==
1064 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1065}
1066
Gui Jianfeng31299942010-03-15 17:29:09 +08001067static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001068{
Sheng Yang04547152009-04-01 15:52:31 +08001069 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001070}
1071
Gui Jianfeng31299942010-03-15 17:29:09 +08001072static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001073{
Sheng Yang04547152009-04-01 15:52:31 +08001074 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001075}
1076
Paolo Bonzini35754c92015-07-29 12:05:37 +02001077static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001078{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001079 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080}
1081
Gui Jianfeng31299942010-03-15 17:29:09 +08001082static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001083{
Sheng Yang04547152009-04-01 15:52:31 +08001084 return vmcs_config.cpu_based_exec_ctrl &
1085 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001086}
1087
Avi Kivity774ead32007-12-26 13:57:04 +02001088static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001089{
Sheng Yang04547152009-04-01 15:52:31 +08001090 return vmcs_config.cpu_based_2nd_exec_ctrl &
1091 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1092}
1093
Yang Zhang8d146952013-01-25 10:18:50 +08001094static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1095{
1096 return vmcs_config.cpu_based_2nd_exec_ctrl &
1097 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1098}
1099
Yang Zhang83d4c282013-01-25 10:18:49 +08001100static inline bool cpu_has_vmx_apic_register_virt(void)
1101{
1102 return vmcs_config.cpu_based_2nd_exec_ctrl &
1103 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1104}
1105
Yang Zhangc7c9c562013-01-25 10:18:51 +08001106static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1107{
1108 return vmcs_config.cpu_based_2nd_exec_ctrl &
1109 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1110}
1111
Yunhong Jiang64672c92016-06-13 14:19:59 -07001112/*
1113 * Comment's format: document - errata name - stepping - processor name.
1114 * Refer from
1115 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1116 */
1117static u32 vmx_preemption_cpu_tfms[] = {
1118/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11190x000206E6,
1120/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1121/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1122/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11230x00020652,
1124/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11250x00020655,
1126/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1127/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1128/*
1129 * 320767.pdf - AAP86 - B1 -
1130 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1131 */
11320x000106E5,
1133/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11340x000106A0,
1135/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11360x000106A1,
1137/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11380x000106A4,
1139 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1140 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1141 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11420x000106A5,
1143};
1144
1145static inline bool cpu_has_broken_vmx_preemption_timer(void)
1146{
1147 u32 eax = cpuid_eax(0x00000001), i;
1148
1149 /* Clear the reserved bits */
1150 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001151 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001152 if (eax == vmx_preemption_cpu_tfms[i])
1153 return true;
1154
1155 return false;
1156}
1157
1158static inline bool cpu_has_vmx_preemption_timer(void)
1159{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001160 return vmcs_config.pin_based_exec_ctrl &
1161 PIN_BASED_VMX_PREEMPTION_TIMER;
1162}
1163
Yang Zhang01e439b2013-04-11 19:25:12 +08001164static inline bool cpu_has_vmx_posted_intr(void)
1165{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001166 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1167 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001168}
1169
1170static inline bool cpu_has_vmx_apicv(void)
1171{
1172 return cpu_has_vmx_apic_register_virt() &&
1173 cpu_has_vmx_virtual_intr_delivery() &&
1174 cpu_has_vmx_posted_intr();
1175}
1176
Sheng Yang04547152009-04-01 15:52:31 +08001177static inline bool cpu_has_vmx_flexpriority(void)
1178{
1179 return cpu_has_vmx_tpr_shadow() &&
1180 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001181}
1182
Marcelo Tosattie7997942009-06-11 12:07:40 -03001183static inline bool cpu_has_vmx_ept_execute_only(void)
1184{
Gui Jianfeng31299942010-03-15 17:29:09 +08001185 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001186}
1187
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188static inline bool cpu_has_vmx_ept_2m_page(void)
1189{
Gui Jianfeng31299942010-03-15 17:29:09 +08001190 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001191}
1192
Sheng Yang878403b2010-01-05 19:02:29 +08001193static inline bool cpu_has_vmx_ept_1g_page(void)
1194{
Gui Jianfeng31299942010-03-15 17:29:09 +08001195 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001196}
1197
Sheng Yang4bc9b982010-06-02 14:05:24 +08001198static inline bool cpu_has_vmx_ept_4levels(void)
1199{
1200 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1201}
1202
Xudong Hao83c3a332012-05-28 19:33:35 +08001203static inline bool cpu_has_vmx_ept_ad_bits(void)
1204{
1205 return vmx_capability.ept & VMX_EPT_AD_BIT;
1206}
1207
Gui Jianfeng31299942010-03-15 17:29:09 +08001208static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001209{
Gui Jianfeng31299942010-03-15 17:29:09 +08001210 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001211}
1212
Gui Jianfeng31299942010-03-15 17:29:09 +08001213static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001214{
Gui Jianfeng31299942010-03-15 17:29:09 +08001215 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001216}
1217
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001218static inline bool cpu_has_vmx_invvpid_single(void)
1219{
1220 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1221}
1222
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001223static inline bool cpu_has_vmx_invvpid_global(void)
1224{
1225 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1226}
1227
Wanpeng Li08d839c2017-03-23 05:30:08 -07001228static inline bool cpu_has_vmx_invvpid(void)
1229{
1230 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1231}
1232
Gui Jianfeng31299942010-03-15 17:29:09 +08001233static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001234{
Sheng Yang04547152009-04-01 15:52:31 +08001235 return vmcs_config.cpu_based_2nd_exec_ctrl &
1236 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001237}
1238
Gui Jianfeng31299942010-03-15 17:29:09 +08001239static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001240{
1241 return vmcs_config.cpu_based_2nd_exec_ctrl &
1242 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1243}
1244
Gui Jianfeng31299942010-03-15 17:29:09 +08001245static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001246{
1247 return vmcs_config.cpu_based_2nd_exec_ctrl &
1248 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1249}
1250
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001251static inline bool cpu_has_vmx_basic_inout(void)
1252{
1253 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1254}
1255
Paolo Bonzini35754c92015-07-29 12:05:37 +02001256static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001257{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001258 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001259}
1260
Gui Jianfeng31299942010-03-15 17:29:09 +08001261static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001262{
Sheng Yang04547152009-04-01 15:52:31 +08001263 return vmcs_config.cpu_based_2nd_exec_ctrl &
1264 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001265}
1266
Gui Jianfeng31299942010-03-15 17:29:09 +08001267static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001268{
1269 return vmcs_config.cpu_based_2nd_exec_ctrl &
1270 SECONDARY_EXEC_RDTSCP;
1271}
1272
Mao, Junjiead756a12012-07-02 01:18:48 +00001273static inline bool cpu_has_vmx_invpcid(void)
1274{
1275 return vmcs_config.cpu_based_2nd_exec_ctrl &
1276 SECONDARY_EXEC_ENABLE_INVPCID;
1277}
1278
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001279static inline bool cpu_has_vmx_wbinvd_exit(void)
1280{
1281 return vmcs_config.cpu_based_2nd_exec_ctrl &
1282 SECONDARY_EXEC_WBINVD_EXITING;
1283}
1284
Abel Gordonabc4fc52013-04-18 14:35:25 +03001285static inline bool cpu_has_vmx_shadow_vmcs(void)
1286{
1287 u64 vmx_msr;
1288 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1289 /* check if the cpu supports writing r/o exit information fields */
1290 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1291 return false;
1292
1293 return vmcs_config.cpu_based_2nd_exec_ctrl &
1294 SECONDARY_EXEC_SHADOW_VMCS;
1295}
1296
Kai Huang843e4332015-01-28 10:54:28 +08001297static inline bool cpu_has_vmx_pml(void)
1298{
1299 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1300}
1301
Haozhong Zhang64903d62015-10-20 15:39:09 +08001302static inline bool cpu_has_vmx_tsc_scaling(void)
1303{
1304 return vmcs_config.cpu_based_2nd_exec_ctrl &
1305 SECONDARY_EXEC_TSC_SCALING;
1306}
1307
Bandan Das2a499e42017-08-03 15:54:41 -04001308static inline bool cpu_has_vmx_vmfunc(void)
1309{
1310 return vmcs_config.cpu_based_2nd_exec_ctrl &
1311 SECONDARY_EXEC_ENABLE_VMFUNC;
1312}
1313
Sheng Yang04547152009-04-01 15:52:31 +08001314static inline bool report_flexpriority(void)
1315{
1316 return flexpriority_enabled;
1317}
1318
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001319static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1320{
1321 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1322}
1323
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001324static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1325{
1326 return vmcs12->cpu_based_vm_exec_control & bit;
1327}
1328
1329static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1330{
1331 return (vmcs12->cpu_based_vm_exec_control &
1332 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1333 (vmcs12->secondary_vm_exec_control & bit);
1334}
1335
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001336static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001337{
1338 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1339}
1340
Jan Kiszkaf4124502014-03-07 20:03:13 +01001341static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1342{
1343 return vmcs12->pin_based_vm_exec_control &
1344 PIN_BASED_VMX_PREEMPTION_TIMER;
1345}
1346
Nadav Har'El155a97a2013-08-05 11:07:16 +03001347static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1348{
1349 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1350}
1351
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001352static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1353{
1354 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1355 vmx_xsaves_supported();
1356}
1357
Bandan Dasc5f983f2017-05-05 15:25:14 -04001358static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1359{
1360 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1361}
1362
Wincy Vanf2b93282015-02-03 23:56:03 +08001363static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1364{
1365 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1366}
1367
Wanpeng Li5c614b32015-10-13 09:18:36 -07001368static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1369{
1370 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1371}
1372
Wincy Van82f0dd42015-02-03 23:57:18 +08001373static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1374{
1375 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1376}
1377
Wincy Van608406e2015-02-03 23:57:51 +08001378static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1379{
1380 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1381}
1382
Wincy Van705699a2015-02-03 23:58:17 +08001383static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1384{
1385 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1386}
1387
Bandan Das27c42a12017-08-03 15:54:42 -04001388static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1389{
1390 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1391}
1392
Bandan Das41ab9372017-08-03 15:54:43 -04001393static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1394{
1395 return nested_cpu_has_vmfunc(vmcs12) &&
1396 (vmcs12->vm_function_control &
1397 VMX_VMFUNC_EPTP_SWITCHING);
1398}
1399
Jim Mattsonef85b672016-12-12 11:01:37 -08001400static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001401{
1402 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001403 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001404}
1405
Jan Kiszka533558b2014-01-04 18:47:20 +01001406static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1407 u32 exit_intr_info,
1408 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001409static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1410 struct vmcs12 *vmcs12,
1411 u32 reason, unsigned long qualification);
1412
Rusty Russell8b9cf982007-07-30 16:31:43 +10001413static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001414{
1415 int i;
1416
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001417 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001418 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001419 return i;
1420 return -1;
1421}
1422
Sheng Yang2384d2b2008-01-17 15:14:33 +08001423static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1424{
1425 struct {
1426 u64 vpid : 16;
1427 u64 rsvd : 48;
1428 u64 gva;
1429 } operand = { vpid, 0, gva };
1430
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001431 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001432 /* CF==1 or ZF==1 --> rc = -1 */
1433 "; ja 1f ; ud2 ; 1:"
1434 : : "a"(&operand), "c"(ext) : "cc", "memory");
1435}
1436
Sheng Yang14394422008-04-28 12:24:45 +08001437static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1438{
1439 struct {
1440 u64 eptp, gpa;
1441 } operand = {eptp, gpa};
1442
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001443 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001444 /* CF==1 or ZF==1 --> rc = -1 */
1445 "; ja 1f ; ud2 ; 1:\n"
1446 : : "a" (&operand), "c" (ext) : "cc", "memory");
1447}
1448
Avi Kivity26bb0982009-09-07 11:14:12 +03001449static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001450{
1451 int i;
1452
Rusty Russell8b9cf982007-07-30 16:31:43 +10001453 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001454 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001455 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001456 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001457}
1458
Avi Kivity6aa8b732006-12-10 02:21:36 -08001459static void vmcs_clear(struct vmcs *vmcs)
1460{
1461 u64 phys_addr = __pa(vmcs);
1462 u8 error;
1463
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001464 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001465 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466 : "cc", "memory");
1467 if (error)
1468 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1469 vmcs, phys_addr);
1470}
1471
Nadav Har'Eld462b812011-05-24 15:26:10 +03001472static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1473{
1474 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001475 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1476 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001477 loaded_vmcs->cpu = -1;
1478 loaded_vmcs->launched = 0;
1479}
1480
Dongxiao Xu7725b892010-05-11 18:29:38 +08001481static void vmcs_load(struct vmcs *vmcs)
1482{
1483 u64 phys_addr = __pa(vmcs);
1484 u8 error;
1485
1486 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001487 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001488 : "cc", "memory");
1489 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001490 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001491 vmcs, phys_addr);
1492}
1493
Dave Young2965faa2015-09-09 15:38:55 -07001494#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001495/*
1496 * This bitmap is used to indicate whether the vmclear
1497 * operation is enabled on all cpus. All disabled by
1498 * default.
1499 */
1500static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1501
1502static inline void crash_enable_local_vmclear(int cpu)
1503{
1504 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1505}
1506
1507static inline void crash_disable_local_vmclear(int cpu)
1508{
1509 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1510}
1511
1512static inline int crash_local_vmclear_enabled(int cpu)
1513{
1514 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1515}
1516
1517static void crash_vmclear_local_loaded_vmcss(void)
1518{
1519 int cpu = raw_smp_processor_id();
1520 struct loaded_vmcs *v;
1521
1522 if (!crash_local_vmclear_enabled(cpu))
1523 return;
1524
1525 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1526 loaded_vmcss_on_cpu_link)
1527 vmcs_clear(v->vmcs);
1528}
1529#else
1530static inline void crash_enable_local_vmclear(int cpu) { }
1531static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001532#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001533
Nadav Har'Eld462b812011-05-24 15:26:10 +03001534static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001535{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001536 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001537 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001538
Nadav Har'Eld462b812011-05-24 15:26:10 +03001539 if (loaded_vmcs->cpu != cpu)
1540 return; /* vcpu migration can race with cpu offline */
1541 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001543 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001544 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001545
1546 /*
1547 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1548 * is before setting loaded_vmcs->vcpu to -1 which is done in
1549 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1550 * then adds the vmcs into percpu list before it is deleted.
1551 */
1552 smp_wmb();
1553
Nadav Har'Eld462b812011-05-24 15:26:10 +03001554 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001555 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556}
1557
Nadav Har'Eld462b812011-05-24 15:26:10 +03001558static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001559{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001560 int cpu = loaded_vmcs->cpu;
1561
1562 if (cpu != -1)
1563 smp_call_function_single(cpu,
1564 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001565}
1566
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001567static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001568{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001569 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001570 return;
1571
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001572 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001573 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001574}
1575
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001576static inline void vpid_sync_vcpu_global(void)
1577{
1578 if (cpu_has_vmx_invvpid_global())
1579 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1580}
1581
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001582static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001583{
1584 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001585 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001586 else
1587 vpid_sync_vcpu_global();
1588}
1589
Sheng Yang14394422008-04-28 12:24:45 +08001590static inline void ept_sync_global(void)
1591{
1592 if (cpu_has_vmx_invept_global())
1593 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1594}
1595
1596static inline void ept_sync_context(u64 eptp)
1597{
Avi Kivity089d0342009-03-23 18:26:32 +02001598 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001599 if (cpu_has_vmx_invept_context())
1600 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1601 else
1602 ept_sync_global();
1603 }
1604}
1605
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001606static __always_inline void vmcs_check16(unsigned long field)
1607{
1608 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1609 "16-bit accessor invalid for 64-bit field");
1610 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1611 "16-bit accessor invalid for 64-bit high field");
1612 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1613 "16-bit accessor invalid for 32-bit high field");
1614 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1615 "16-bit accessor invalid for natural width field");
1616}
1617
1618static __always_inline void vmcs_check32(unsigned long field)
1619{
1620 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1621 "32-bit accessor invalid for 16-bit field");
1622 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1623 "32-bit accessor invalid for natural width field");
1624}
1625
1626static __always_inline void vmcs_check64(unsigned long field)
1627{
1628 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1629 "64-bit accessor invalid for 16-bit field");
1630 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1631 "64-bit accessor invalid for 64-bit high field");
1632 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1633 "64-bit accessor invalid for 32-bit field");
1634 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1635 "64-bit accessor invalid for natural width field");
1636}
1637
1638static __always_inline void vmcs_checkl(unsigned long field)
1639{
1640 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1641 "Natural width accessor invalid for 16-bit field");
1642 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1643 "Natural width accessor invalid for 64-bit field");
1644 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1645 "Natural width accessor invalid for 64-bit high field");
1646 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1647 "Natural width accessor invalid for 32-bit field");
1648}
1649
1650static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651{
Avi Kivity5e520e62011-05-15 10:13:12 -04001652 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653
Avi Kivity5e520e62011-05-15 10:13:12 -04001654 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1655 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656 return value;
1657}
1658
Avi Kivity96304212011-05-15 10:13:13 -04001659static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001661 vmcs_check16(field);
1662 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663}
1664
Avi Kivity96304212011-05-15 10:13:13 -04001665static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001666{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001667 vmcs_check32(field);
1668 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669}
1670
Avi Kivity96304212011-05-15 10:13:13 -04001671static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001673 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001674#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001675 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001677 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678#endif
1679}
1680
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001681static __always_inline unsigned long vmcs_readl(unsigned long field)
1682{
1683 vmcs_checkl(field);
1684 return __vmcs_readl(field);
1685}
1686
Avi Kivitye52de1b2007-01-05 16:36:56 -08001687static noinline void vmwrite_error(unsigned long field, unsigned long value)
1688{
1689 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1690 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1691 dump_stack();
1692}
1693
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001694static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001695{
1696 u8 error;
1697
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001698 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001699 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001700 if (unlikely(error))
1701 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001702}
1703
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001704static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001705{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001706 vmcs_check16(field);
1707 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708}
1709
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001710static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001712 vmcs_check32(field);
1713 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714}
1715
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001716static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001717{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001718 vmcs_check64(field);
1719 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001720#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001721 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001722 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001723#endif
1724}
1725
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001726static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001727{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001728 vmcs_checkl(field);
1729 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001730}
1731
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001732static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001733{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001734 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1735 "vmcs_clear_bits does not support 64-bit fields");
1736 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1737}
1738
1739static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1740{
1741 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1742 "vmcs_set_bits does not support 64-bit fields");
1743 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001744}
1745
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001746static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1747{
1748 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1749}
1750
Gleb Natapov2961e8762013-11-25 15:37:13 +02001751static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1752{
1753 vmcs_write32(VM_ENTRY_CONTROLS, val);
1754 vmx->vm_entry_controls_shadow = val;
1755}
1756
1757static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1758{
1759 if (vmx->vm_entry_controls_shadow != val)
1760 vm_entry_controls_init(vmx, val);
1761}
1762
1763static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1764{
1765 return vmx->vm_entry_controls_shadow;
1766}
1767
1768
1769static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1770{
1771 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1772}
1773
1774static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1775{
1776 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1777}
1778
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001779static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1780{
1781 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1782}
1783
Gleb Natapov2961e8762013-11-25 15:37:13 +02001784static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1785{
1786 vmcs_write32(VM_EXIT_CONTROLS, val);
1787 vmx->vm_exit_controls_shadow = val;
1788}
1789
1790static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1791{
1792 if (vmx->vm_exit_controls_shadow != val)
1793 vm_exit_controls_init(vmx, val);
1794}
1795
1796static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1797{
1798 return vmx->vm_exit_controls_shadow;
1799}
1800
1801
1802static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1803{
1804 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1805}
1806
1807static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1808{
1809 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1810}
1811
Avi Kivity2fb92db2011-04-27 19:42:18 +03001812static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1813{
1814 vmx->segment_cache.bitmask = 0;
1815}
1816
1817static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1818 unsigned field)
1819{
1820 bool ret;
1821 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1822
1823 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1824 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1825 vmx->segment_cache.bitmask = 0;
1826 }
1827 ret = vmx->segment_cache.bitmask & mask;
1828 vmx->segment_cache.bitmask |= mask;
1829 return ret;
1830}
1831
1832static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1833{
1834 u16 *p = &vmx->segment_cache.seg[seg].selector;
1835
1836 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1837 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1838 return *p;
1839}
1840
1841static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1842{
1843 ulong *p = &vmx->segment_cache.seg[seg].base;
1844
1845 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1846 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1847 return *p;
1848}
1849
1850static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1851{
1852 u32 *p = &vmx->segment_cache.seg[seg].limit;
1853
1854 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1855 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1856 return *p;
1857}
1858
1859static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1860{
1861 u32 *p = &vmx->segment_cache.seg[seg].ar;
1862
1863 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1864 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1865 return *p;
1866}
1867
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001868static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1869{
1870 u32 eb;
1871
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001872 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001873 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001874 if ((vcpu->guest_debug &
1875 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1876 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1877 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001878 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001879 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001880 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001881 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001882
1883 /* When we are running a nested L2 guest and L1 specified for it a
1884 * certain exception bitmap, we must trap the same exceptions and pass
1885 * them to L1. When running L2, we will only handle the exceptions
1886 * specified above if L1 did not want them.
1887 */
1888 if (is_guest_mode(vcpu))
1889 eb |= get_vmcs12(vcpu)->exception_bitmap;
1890
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001891 vmcs_write32(EXCEPTION_BITMAP, eb);
1892}
1893
Gleb Natapov2961e8762013-11-25 15:37:13 +02001894static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1895 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001896{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001897 vm_entry_controls_clearbit(vmx, entry);
1898 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001899}
1900
Avi Kivity61d2ef22010-04-28 16:40:38 +03001901static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1902{
1903 unsigned i;
1904 struct msr_autoload *m = &vmx->msr_autoload;
1905
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001906 switch (msr) {
1907 case MSR_EFER:
1908 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001909 clear_atomic_switch_msr_special(vmx,
1910 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001911 VM_EXIT_LOAD_IA32_EFER);
1912 return;
1913 }
1914 break;
1915 case MSR_CORE_PERF_GLOBAL_CTRL:
1916 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001917 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001918 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1919 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1920 return;
1921 }
1922 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001923 }
1924
Avi Kivity61d2ef22010-04-28 16:40:38 +03001925 for (i = 0; i < m->nr; ++i)
1926 if (m->guest[i].index == msr)
1927 break;
1928
1929 if (i == m->nr)
1930 return;
1931 --m->nr;
1932 m->guest[i] = m->guest[m->nr];
1933 m->host[i] = m->host[m->nr];
1934 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1935 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1936}
1937
Gleb Natapov2961e8762013-11-25 15:37:13 +02001938static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1939 unsigned long entry, unsigned long exit,
1940 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1941 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001942{
1943 vmcs_write64(guest_val_vmcs, guest_val);
1944 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001945 vm_entry_controls_setbit(vmx, entry);
1946 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001947}
1948
Avi Kivity61d2ef22010-04-28 16:40:38 +03001949static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1950 u64 guest_val, u64 host_val)
1951{
1952 unsigned i;
1953 struct msr_autoload *m = &vmx->msr_autoload;
1954
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001955 switch (msr) {
1956 case MSR_EFER:
1957 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001958 add_atomic_switch_msr_special(vmx,
1959 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001960 VM_EXIT_LOAD_IA32_EFER,
1961 GUEST_IA32_EFER,
1962 HOST_IA32_EFER,
1963 guest_val, host_val);
1964 return;
1965 }
1966 break;
1967 case MSR_CORE_PERF_GLOBAL_CTRL:
1968 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001969 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001970 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1971 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1972 GUEST_IA32_PERF_GLOBAL_CTRL,
1973 HOST_IA32_PERF_GLOBAL_CTRL,
1974 guest_val, host_val);
1975 return;
1976 }
1977 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001978 case MSR_IA32_PEBS_ENABLE:
1979 /* PEBS needs a quiescent period after being disabled (to write
1980 * a record). Disabling PEBS through VMX MSR swapping doesn't
1981 * provide that period, so a CPU could write host's record into
1982 * guest's memory.
1983 */
1984 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001985 }
1986
Avi Kivity61d2ef22010-04-28 16:40:38 +03001987 for (i = 0; i < m->nr; ++i)
1988 if (m->guest[i].index == msr)
1989 break;
1990
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001991 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001992 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001993 "Can't add msr %x\n", msr);
1994 return;
1995 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001996 ++m->nr;
1997 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1998 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1999 }
2000
2001 m->guest[i].index = msr;
2002 m->guest[i].value = guest_val;
2003 m->host[i].index = msr;
2004 m->host[i].value = host_val;
2005}
2006
Avi Kivity92c0d902009-10-29 11:00:16 +02002007static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002008{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002009 u64 guest_efer = vmx->vcpu.arch.efer;
2010 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002011
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002012 if (!enable_ept) {
2013 /*
2014 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2015 * host CPUID is more efficient than testing guest CPUID
2016 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2017 */
2018 if (boot_cpu_has(X86_FEATURE_SMEP))
2019 guest_efer |= EFER_NX;
2020 else if (!(guest_efer & EFER_NX))
2021 ignore_bits |= EFER_NX;
2022 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002023
Avi Kivity51c6cf62007-08-29 03:48:05 +03002024 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002025 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002026 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002027 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002028#ifdef CONFIG_X86_64
2029 ignore_bits |= EFER_LMA | EFER_LME;
2030 /* SCE is meaningful only in long mode on Intel */
2031 if (guest_efer & EFER_LMA)
2032 ignore_bits &= ~(u64)EFER_SCE;
2033#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002034
2035 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002036
2037 /*
2038 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2039 * On CPUs that support "load IA32_EFER", always switch EFER
2040 * atomically, since it's faster than switching it manually.
2041 */
2042 if (cpu_has_load_ia32_efer ||
2043 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002044 if (!(guest_efer & EFER_LMA))
2045 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002046 if (guest_efer != host_efer)
2047 add_atomic_switch_msr(vmx, MSR_EFER,
2048 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002049 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002050 } else {
2051 guest_efer &= ~ignore_bits;
2052 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002053
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002054 vmx->guest_msrs[efer_offset].data = guest_efer;
2055 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2056
2057 return true;
2058 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002059}
2060
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002061#ifdef CONFIG_X86_32
2062/*
2063 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2064 * VMCS rather than the segment table. KVM uses this helper to figure
2065 * out the current bases to poke them into the VMCS before entry.
2066 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002067static unsigned long segment_base(u16 selector)
2068{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002069 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002070 unsigned long v;
2071
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002072 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002073 return 0;
2074
Thomas Garnier45fc8752017-03-14 10:05:08 -07002075 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002076
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002077 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002078 u16 ldt_selector = kvm_read_ldt();
2079
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002080 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002081 return 0;
2082
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002083 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002084 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002085 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002086 return v;
2087}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002088#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002089
Avi Kivity04d2cc72007-09-10 18:10:54 +03002090static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002091{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002092 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002093 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002094
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002095 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002096 return;
2097
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002098 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002099 /*
2100 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2101 * allow segment selectors with cpl > 0 or ti == 1.
2102 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002103 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002104 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002105 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002106 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002107 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002108 vmx->host_state.fs_reload_needed = 0;
2109 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002110 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002111 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002112 }
Avi Kivity9581d442010-10-19 16:46:55 +02002113 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002114 if (!(vmx->host_state.gs_sel & 7))
2115 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002116 else {
2117 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002118 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002119 }
2120
2121#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002122 savesegment(ds, vmx->host_state.ds_sel);
2123 savesegment(es, vmx->host_state.es_sel);
2124#endif
2125
2126#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002127 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2128 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2129#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002130 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2131 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002132#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002133
2134#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002135 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2136 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002137 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002138#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002139 if (boot_cpu_has(X86_FEATURE_MPX))
2140 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002141 for (i = 0; i < vmx->save_nmsrs; ++i)
2142 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002143 vmx->guest_msrs[i].data,
2144 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002145}
2146
Avi Kivitya9b21b62008-06-24 11:48:49 +03002147static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002148{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002149 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002150 return;
2151
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002152 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002153 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002154#ifdef CONFIG_X86_64
2155 if (is_long_mode(&vmx->vcpu))
2156 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2157#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002158 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002159 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002160#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002161 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002162#else
2163 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002164#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002165 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002166 if (vmx->host_state.fs_reload_needed)
2167 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002168#ifdef CONFIG_X86_64
2169 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2170 loadsegment(ds, vmx->host_state.ds_sel);
2171 loadsegment(es, vmx->host_state.es_sel);
2172 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002173#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002174 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002175#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002176 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002177#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002178 if (vmx->host_state.msr_host_bndcfgs)
2179 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002180 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002181}
2182
Avi Kivitya9b21b62008-06-24 11:48:49 +03002183static void vmx_load_host_state(struct vcpu_vmx *vmx)
2184{
2185 preempt_disable();
2186 __vmx_load_host_state(vmx);
2187 preempt_enable();
2188}
2189
Feng Wu28b835d2015-09-18 22:29:54 +08002190static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2191{
2192 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2193 struct pi_desc old, new;
2194 unsigned int dest;
2195
2196 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002197 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2198 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002199 return;
2200
2201 do {
2202 old.control = new.control = pi_desc->control;
2203
2204 /*
2205 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2206 * are two possible cases:
2207 * 1. After running 'pre_block', context switch
2208 * happened. For this case, 'sn' was set in
2209 * vmx_vcpu_put(), so we need to clear it here.
2210 * 2. After running 'pre_block', we were blocked,
2211 * and woken up by some other guy. For this case,
2212 * we don't need to do anything, 'pi_post_block'
2213 * will do everything for us. However, we cannot
2214 * check whether it is case #1 or case #2 here
2215 * (maybe, not needed), so we also clear sn here,
2216 * I think it is not a big deal.
2217 */
2218 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2219 if (vcpu->cpu != cpu) {
2220 dest = cpu_physical_id(cpu);
2221
2222 if (x2apic_enabled())
2223 new.ndst = dest;
2224 else
2225 new.ndst = (dest << 8) & 0xFF00;
2226 }
2227
2228 /* set 'NV' to 'notification vector' */
2229 new.nv = POSTED_INTR_VECTOR;
2230 }
2231
2232 /* Allow posting non-urgent interrupts */
2233 new.sn = 0;
2234 } while (cmpxchg(&pi_desc->control, old.control,
2235 new.control) != old.control);
2236}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002237
Peter Feinerc95ba922016-08-17 09:36:47 -07002238static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2239{
2240 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2241 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2242}
2243
Avi Kivity6aa8b732006-12-10 02:21:36 -08002244/*
2245 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2246 * vcpu mutex is already taken.
2247 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002248static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002250 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002251 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002253 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002254 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002255 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002256 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002257
2258 /*
2259 * Read loaded_vmcs->cpu should be before fetching
2260 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2261 * See the comments in __loaded_vmcs_clear().
2262 */
2263 smp_rmb();
2264
Nadav Har'Eld462b812011-05-24 15:26:10 +03002265 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2266 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002267 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002268 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002269 }
2270
2271 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2272 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2273 vmcs_load(vmx->loaded_vmcs->vmcs);
2274 }
2275
2276 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002277 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002278 unsigned long sysenter_esp;
2279
2280 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002281
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282 /*
2283 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002284 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002285 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002286 vmcs_writel(HOST_TR_BASE,
2287 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002288 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002290 /*
2291 * VM exits change the host TR limit to 0x67 after a VM
2292 * exit. This is okay, since 0x67 covers everything except
2293 * the IO bitmap and have have code to handle the IO bitmap
2294 * being lost after a VM exit.
2295 */
2296 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2297
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2299 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002300
Nadav Har'Eld462b812011-05-24 15:26:10 +03002301 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 }
Feng Wu28b835d2015-09-18 22:29:54 +08002303
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002304 /* Setup TSC multiplier */
2305 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002306 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2307 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002308
Feng Wu28b835d2015-09-18 22:29:54 +08002309 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002310 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002311}
2312
2313static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2314{
2315 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2316
2317 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002318 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2319 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002320 return;
2321
2322 /* Set SN when the vCPU is preempted */
2323 if (vcpu->preempted)
2324 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325}
2326
2327static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2328{
Feng Wu28b835d2015-09-18 22:29:54 +08002329 vmx_vcpu_pi_put(vcpu);
2330
Avi Kivitya9b21b62008-06-24 11:48:49 +03002331 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
Wanpeng Lif244dee2017-07-20 01:11:54 -07002334static bool emulation_required(struct kvm_vcpu *vcpu)
2335{
2336 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2337}
2338
Avi Kivityedcafe32009-12-30 18:07:40 +02002339static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2340
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002341/*
2342 * Return the cr0 value that a nested guest would read. This is a combination
2343 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2344 * its hypervisor (cr0_read_shadow).
2345 */
2346static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2347{
2348 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2349 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2350}
2351static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2352{
2353 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2354 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2355}
2356
Avi Kivity6aa8b732006-12-10 02:21:36 -08002357static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2358{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002359 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002360
Avi Kivity6de12732011-03-07 12:51:22 +02002361 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2362 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2363 rflags = vmcs_readl(GUEST_RFLAGS);
2364 if (to_vmx(vcpu)->rmode.vm86_active) {
2365 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2366 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2367 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2368 }
2369 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002370 }
Avi Kivity6de12732011-03-07 12:51:22 +02002371 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372}
2373
2374static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2375{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002376 unsigned long old_rflags = vmx_get_rflags(vcpu);
2377
Avi Kivity6de12732011-03-07 12:51:22 +02002378 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2379 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002380 if (to_vmx(vcpu)->rmode.vm86_active) {
2381 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002382 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002383 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002385
2386 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2387 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388}
2389
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002390static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2391{
2392 return to_vmx(vcpu)->guest_pkru;
2393}
2394
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002395static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002396{
2397 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2398 int ret = 0;
2399
2400 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002401 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002402 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002403 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002404
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002405 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002406}
2407
2408static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2409{
2410 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2411 u32 interruptibility = interruptibility_old;
2412
2413 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2414
Jan Kiszka48005f62010-02-19 19:38:07 +01002415 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002416 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002417 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002418 interruptibility |= GUEST_INTR_STATE_STI;
2419
2420 if ((interruptibility != interruptibility_old))
2421 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2422}
2423
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2425{
2426 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002427
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002428 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002429 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002430 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431
Glauber Costa2809f5d2009-05-12 16:21:05 -04002432 /* skipping an emulated instruction also counts */
2433 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434}
2435
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002436static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2437 unsigned long exit_qual)
2438{
2439 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2440 unsigned int nr = vcpu->arch.exception.nr;
2441 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2442
2443 if (vcpu->arch.exception.has_error_code) {
2444 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2445 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2446 }
2447
2448 if (kvm_exception_is_soft(nr))
2449 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2450 else
2451 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2452
2453 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2454 vmx_get_nmi_mask(vcpu))
2455 intr_info |= INTR_INFO_UNBLOCK_NMI;
2456
2457 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2458}
2459
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002460/*
2461 * KVM wants to inject page-faults which it got to the guest. This function
2462 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002463 */
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002464static int nested_vmx_check_exception(struct kvm_vcpu *vcpu)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002465{
2466 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002467 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002468
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002469 if (nr == PF_VECTOR) {
2470 if (vcpu->arch.exception.nested_apf) {
2471 nested_vmx_inject_exception_vmexit(vcpu,
2472 vcpu->arch.apf.nested_apf_token);
2473 return 1;
2474 }
2475 /*
2476 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2477 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2478 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2479 * can be written only when inject_pending_event runs. This should be
2480 * conditional on a new capability---if the capability is disabled,
2481 * kvm_multiple_exception would write the ancillary information to
2482 * CR2 or DR6, for backwards ABI-compatibility.
2483 */
2484 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2485 vcpu->arch.exception.error_code)) {
2486 nested_vmx_inject_exception_vmexit(vcpu, vcpu->arch.cr2);
2487 return 1;
2488 }
2489 } else {
2490 unsigned long exit_qual = 0;
2491 if (nr == DB_VECTOR)
2492 exit_qual = vcpu->arch.dr6;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002493
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002494 if (vmcs12->exception_bitmap & (1u << nr)) {
2495 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
2496 return 1;
2497 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002498 }
2499
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002500 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002501}
2502
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002503static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002504{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002505 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002506 unsigned nr = vcpu->arch.exception.nr;
2507 bool has_error_code = vcpu->arch.exception.has_error_code;
2508 bool reinject = vcpu->arch.exception.reinject;
2509 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002510 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002511
Gleb Natapove011c662013-09-25 12:51:35 +03002512 if (!reinject && is_guest_mode(vcpu) &&
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002513 nested_vmx_check_exception(vcpu))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002514 return;
2515
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002516 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002517 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002518 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2519 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002520
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002521 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002522 int inc_eip = 0;
2523 if (kvm_exception_is_soft(nr))
2524 inc_eip = vcpu->arch.event_exit_inst_len;
2525 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002526 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002527 return;
2528 }
2529
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002530 if (kvm_exception_is_soft(nr)) {
2531 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2532 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002533 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2534 } else
2535 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2536
2537 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002538}
2539
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002540static bool vmx_rdtscp_supported(void)
2541{
2542 return cpu_has_vmx_rdtscp();
2543}
2544
Mao, Junjiead756a12012-07-02 01:18:48 +00002545static bool vmx_invpcid_supported(void)
2546{
2547 return cpu_has_vmx_invpcid() && enable_ept;
2548}
2549
Avi Kivity6aa8b732006-12-10 02:21:36 -08002550/*
Eddie Donga75beee2007-05-17 18:55:15 +03002551 * Swap MSR entry in host/guest MSR entry array.
2552 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002553static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002554{
Avi Kivity26bb0982009-09-07 11:14:12 +03002555 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002556
2557 tmp = vmx->guest_msrs[to];
2558 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2559 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002560}
2561
Yang Zhang8d146952013-01-25 10:18:50 +08002562static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2563{
2564 unsigned long *msr_bitmap;
2565
Wincy Van670125b2015-03-04 14:31:56 +08002566 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002567 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002568 else if (cpu_has_secondary_exec_ctrls() &&
2569 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2570 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002571 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2572 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002573 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2574 else
2575 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2576 } else {
2577 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002578 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2579 else
2580 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002581 }
Yang Zhang8d146952013-01-25 10:18:50 +08002582 } else {
2583 if (is_long_mode(vcpu))
2584 msr_bitmap = vmx_msr_bitmap_longmode;
2585 else
2586 msr_bitmap = vmx_msr_bitmap_legacy;
2587 }
2588
2589 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2590}
2591
Eddie Donga75beee2007-05-17 18:55:15 +03002592/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002593 * Set up the vmcs to automatically save and restore system
2594 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2595 * mode, as fiddling with msrs is very expensive.
2596 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002597static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002598{
Avi Kivity26bb0982009-09-07 11:14:12 +03002599 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002600
Eddie Donga75beee2007-05-17 18:55:15 +03002601 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002602#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002603 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002604 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002605 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002606 move_msr_up(vmx, index, save_nmsrs++);
2607 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002608 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002609 move_msr_up(vmx, index, save_nmsrs++);
2610 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002611 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002612 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002613 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002614 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002615 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002616 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002617 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002618 * if efer.sce is enabled.
2619 */
Brian Gerst8c065852010-07-17 09:03:26 -04002620 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002621 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002622 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002623 }
Eddie Donga75beee2007-05-17 18:55:15 +03002624#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002625 index = __find_msr_index(vmx, MSR_EFER);
2626 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002627 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002628
Avi Kivity26bb0982009-09-07 11:14:12 +03002629 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002630
Yang Zhang8d146952013-01-25 10:18:50 +08002631 if (cpu_has_vmx_msr_bitmap())
2632 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002633}
2634
2635/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002637 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2638 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002640static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641{
2642 u64 host_tsc, tsc_offset;
2643
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002644 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002646 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647}
2648
2649/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002650 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002652static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002654 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002655 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002656 * We're here if L1 chose not to trap WRMSR to TSC. According
2657 * to the spec, this should set L1's TSC; The offset that L1
2658 * set for L2 remains unchanged, and still needs to be added
2659 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002660 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002661 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002662 /* recalculate vmcs02.TSC_OFFSET: */
2663 vmcs12 = get_vmcs12(vcpu);
2664 vmcs_write64(TSC_OFFSET, offset +
2665 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2666 vmcs12->tsc_offset : 0));
2667 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002668 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2669 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002670 vmcs_write64(TSC_OFFSET, offset);
2671 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002672}
2673
Nadav Har'El801d3422011-05-25 23:02:23 +03002674/*
2675 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2676 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2677 * all guests if the "nested" module option is off, and can also be disabled
2678 * for a single guest by disabling its VMX cpuid bit.
2679 */
2680static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2681{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002682 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002683}
2684
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002686 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2687 * returned for the various VMX controls MSRs when nested VMX is enabled.
2688 * The same values should also be used to verify that vmcs12 control fields are
2689 * valid during nested entry from L1 to L2.
2690 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2691 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2692 * bit in the high half is on if the corresponding bit in the control field
2693 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002694 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002695static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002696{
2697 /*
2698 * Note that as a general rule, the high half of the MSRs (bits in
2699 * the control fields which may be 1) should be initialized by the
2700 * intersection of the underlying hardware's MSR (i.e., features which
2701 * can be supported) and the list of features we want to expose -
2702 * because they are known to be properly supported in our code.
2703 * Also, usually, the low half of the MSRs (bits which must be 1) can
2704 * be set to 0, meaning that L1 may turn off any of these bits. The
2705 * reason is that if one of these bits is necessary, it will appear
2706 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2707 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002708 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002709 * These rules have exceptions below.
2710 */
2711
2712 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002713 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002714 vmx->nested.nested_vmx_pinbased_ctls_low,
2715 vmx->nested.nested_vmx_pinbased_ctls_high);
2716 vmx->nested.nested_vmx_pinbased_ctls_low |=
2717 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2718 vmx->nested.nested_vmx_pinbased_ctls_high &=
2719 PIN_BASED_EXT_INTR_MASK |
2720 PIN_BASED_NMI_EXITING |
2721 PIN_BASED_VIRTUAL_NMIS;
2722 vmx->nested.nested_vmx_pinbased_ctls_high |=
2723 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002724 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002725 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002726 vmx->nested.nested_vmx_pinbased_ctls_high |=
2727 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002728
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002729 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002730 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002731 vmx->nested.nested_vmx_exit_ctls_low,
2732 vmx->nested.nested_vmx_exit_ctls_high);
2733 vmx->nested.nested_vmx_exit_ctls_low =
2734 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002735
Wincy Vanb9c237b2015-02-03 23:56:30 +08002736 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002737#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002738 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002739#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002740 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002741 vmx->nested.nested_vmx_exit_ctls_high |=
2742 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002743 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002744 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2745
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002746 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002747 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002748
Jan Kiszka2996fca2014-06-16 13:59:43 +02002749 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002750 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002751
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002752 /* entry controls */
2753 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002754 vmx->nested.nested_vmx_entry_ctls_low,
2755 vmx->nested.nested_vmx_entry_ctls_high);
2756 vmx->nested.nested_vmx_entry_ctls_low =
2757 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2758 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002759#ifdef CONFIG_X86_64
2760 VM_ENTRY_IA32E_MODE |
2761#endif
2762 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002763 vmx->nested.nested_vmx_entry_ctls_high |=
2764 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002765 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002766 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002767
Jan Kiszka2996fca2014-06-16 13:59:43 +02002768 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002769 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002770
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002771 /* cpu-based controls */
2772 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002773 vmx->nested.nested_vmx_procbased_ctls_low,
2774 vmx->nested.nested_vmx_procbased_ctls_high);
2775 vmx->nested.nested_vmx_procbased_ctls_low =
2776 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2777 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002778 CPU_BASED_VIRTUAL_INTR_PENDING |
2779 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002780 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2781 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2782 CPU_BASED_CR3_STORE_EXITING |
2783#ifdef CONFIG_X86_64
2784 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2785#endif
2786 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002787 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2788 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2789 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2790 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002791 /*
2792 * We can allow some features even when not supported by the
2793 * hardware. For example, L1 can specify an MSR bitmap - and we
2794 * can use it to avoid exits to L1 - even when L0 runs L2
2795 * without MSR bitmaps.
2796 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002797 vmx->nested.nested_vmx_procbased_ctls_high |=
2798 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002799 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002800
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002801 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002802 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002803 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2804
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002805 /* secondary cpu-based controls */
2806 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002807 vmx->nested.nested_vmx_secondary_ctls_low,
2808 vmx->nested.nested_vmx_secondary_ctls_high);
2809 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2810 vmx->nested.nested_vmx_secondary_ctls_high &=
Paolo Bonzinia5f46452017-03-30 11:55:32 +02002811 SECONDARY_EXEC_RDRAND | SECONDARY_EXEC_RDSEED |
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002812 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002813 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002814 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002815 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002816 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002817 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002818 SECONDARY_EXEC_WBINVD_EXITING |
Dan Williamsdfa169b2016-06-02 11:17:24 -07002819 SECONDARY_EXEC_XSAVES;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002820
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002821 if (enable_ept) {
2822 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002823 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002824 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002825 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002826 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002827 if (cpu_has_vmx_ept_execute_only())
2828 vmx->nested.nested_vmx_ept_caps |=
2829 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002830 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002831 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002832 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2833 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002834 if (enable_ept_ad_bits) {
2835 vmx->nested.nested_vmx_secondary_ctls_high |=
2836 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002837 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002838 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002839 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002840 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002841
Bandan Das27c42a12017-08-03 15:54:42 -04002842 if (cpu_has_vmx_vmfunc()) {
2843 vmx->nested.nested_vmx_secondary_ctls_high |=
2844 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002845 /*
2846 * Advertise EPTP switching unconditionally
2847 * since we emulate it
2848 */
2849 vmx->nested.nested_vmx_vmfunc_controls =
2850 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002851 }
2852
Paolo Bonzinief697a72016-03-18 16:58:38 +01002853 /*
2854 * Old versions of KVM use the single-context version without
2855 * checking for support, so declare that it is supported even
2856 * though it is treated as global context. The alternative is
2857 * not failing the single-context invvpid, and it is worse.
2858 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002859 if (enable_vpid) {
2860 vmx->nested.nested_vmx_secondary_ctls_high |=
2861 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002862 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002863 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002864 } else
Wanpeng Li089d7b62015-10-13 09:18:37 -07002865 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002866
Radim Krčmář0790ec12015-03-17 14:02:32 +01002867 if (enable_unrestricted_guest)
2868 vmx->nested.nested_vmx_secondary_ctls_high |=
2869 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2870
Jan Kiszkac18911a2013-03-13 16:06:41 +01002871 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002872 rdmsr(MSR_IA32_VMX_MISC,
2873 vmx->nested.nested_vmx_misc_low,
2874 vmx->nested.nested_vmx_misc_high);
2875 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2876 vmx->nested.nested_vmx_misc_low |=
2877 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002878 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002879 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002880
2881 /*
2882 * This MSR reports some information about VMX support. We
2883 * should return information about the VMX we emulate for the
2884 * guest, and the VMCS structure we give it - not about the
2885 * VMX support of the underlying hardware.
2886 */
2887 vmx->nested.nested_vmx_basic =
2888 VMCS12_REVISION |
2889 VMX_BASIC_TRUE_CTLS |
2890 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2891 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2892
2893 if (cpu_has_vmx_basic_inout())
2894 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2895
2896 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002897 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002898 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2899 * We picked the standard core2 setting.
2900 */
2901#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2902#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2903 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002904 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002905
2906 /* These MSRs specify bits which the guest must keep fixed off. */
2907 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2908 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002909
2910 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2911 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002912}
2913
David Matlack38991522016-11-29 18:14:08 -08002914/*
2915 * if fixed0[i] == 1: val[i] must be 1
2916 * if fixed1[i] == 0: val[i] must be 0
2917 */
2918static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2919{
2920 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002921}
2922
2923static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2924{
David Matlack38991522016-11-29 18:14:08 -08002925 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002926}
2927
2928static inline u64 vmx_control_msr(u32 low, u32 high)
2929{
2930 return low | ((u64)high << 32);
2931}
2932
David Matlack62cc6b9d2016-11-29 18:14:07 -08002933static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2934{
2935 superset &= mask;
2936 subset &= mask;
2937
2938 return (superset | subset) == superset;
2939}
2940
2941static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2942{
2943 const u64 feature_and_reserved =
2944 /* feature (except bit 48; see below) */
2945 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2946 /* reserved */
2947 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2948 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2949
2950 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2951 return -EINVAL;
2952
2953 /*
2954 * KVM does not emulate a version of VMX that constrains physical
2955 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2956 */
2957 if (data & BIT_ULL(48))
2958 return -EINVAL;
2959
2960 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2961 vmx_basic_vmcs_revision_id(data))
2962 return -EINVAL;
2963
2964 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2965 return -EINVAL;
2966
2967 vmx->nested.nested_vmx_basic = data;
2968 return 0;
2969}
2970
2971static int
2972vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2973{
2974 u64 supported;
2975 u32 *lowp, *highp;
2976
2977 switch (msr_index) {
2978 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2979 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2980 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2981 break;
2982 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2983 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2984 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2985 break;
2986 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2987 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2988 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2989 break;
2990 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2991 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2992 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2993 break;
2994 case MSR_IA32_VMX_PROCBASED_CTLS2:
2995 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2996 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
2997 break;
2998 default:
2999 BUG();
3000 }
3001
3002 supported = vmx_control_msr(*lowp, *highp);
3003
3004 /* Check must-be-1 bits are still 1. */
3005 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3006 return -EINVAL;
3007
3008 /* Check must-be-0 bits are still 0. */
3009 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3010 return -EINVAL;
3011
3012 *lowp = data;
3013 *highp = data >> 32;
3014 return 0;
3015}
3016
3017static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3018{
3019 const u64 feature_and_reserved_bits =
3020 /* feature */
3021 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3022 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3023 /* reserved */
3024 GENMASK_ULL(13, 9) | BIT_ULL(31);
3025 u64 vmx_misc;
3026
3027 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3028 vmx->nested.nested_vmx_misc_high);
3029
3030 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3031 return -EINVAL;
3032
3033 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3034 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3035 vmx_misc_preemption_timer_rate(data) !=
3036 vmx_misc_preemption_timer_rate(vmx_misc))
3037 return -EINVAL;
3038
3039 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3040 return -EINVAL;
3041
3042 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3043 return -EINVAL;
3044
3045 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3046 return -EINVAL;
3047
3048 vmx->nested.nested_vmx_misc_low = data;
3049 vmx->nested.nested_vmx_misc_high = data >> 32;
3050 return 0;
3051}
3052
3053static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3054{
3055 u64 vmx_ept_vpid_cap;
3056
3057 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3058 vmx->nested.nested_vmx_vpid_caps);
3059
3060 /* Every bit is either reserved or a feature bit. */
3061 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3062 return -EINVAL;
3063
3064 vmx->nested.nested_vmx_ept_caps = data;
3065 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3066 return 0;
3067}
3068
3069static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3070{
3071 u64 *msr;
3072
3073 switch (msr_index) {
3074 case MSR_IA32_VMX_CR0_FIXED0:
3075 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3076 break;
3077 case MSR_IA32_VMX_CR4_FIXED0:
3078 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3079 break;
3080 default:
3081 BUG();
3082 }
3083
3084 /*
3085 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3086 * must be 1 in the restored value.
3087 */
3088 if (!is_bitwise_subset(data, *msr, -1ULL))
3089 return -EINVAL;
3090
3091 *msr = data;
3092 return 0;
3093}
3094
3095/*
3096 * Called when userspace is restoring VMX MSRs.
3097 *
3098 * Returns 0 on success, non-0 otherwise.
3099 */
3100static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3101{
3102 struct vcpu_vmx *vmx = to_vmx(vcpu);
3103
3104 switch (msr_index) {
3105 case MSR_IA32_VMX_BASIC:
3106 return vmx_restore_vmx_basic(vmx, data);
3107 case MSR_IA32_VMX_PINBASED_CTLS:
3108 case MSR_IA32_VMX_PROCBASED_CTLS:
3109 case MSR_IA32_VMX_EXIT_CTLS:
3110 case MSR_IA32_VMX_ENTRY_CTLS:
3111 /*
3112 * The "non-true" VMX capability MSRs are generated from the
3113 * "true" MSRs, so we do not support restoring them directly.
3114 *
3115 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3116 * should restore the "true" MSRs with the must-be-1 bits
3117 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3118 * DEFAULT SETTINGS".
3119 */
3120 return -EINVAL;
3121 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3122 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3123 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3124 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3125 case MSR_IA32_VMX_PROCBASED_CTLS2:
3126 return vmx_restore_control_msr(vmx, msr_index, data);
3127 case MSR_IA32_VMX_MISC:
3128 return vmx_restore_vmx_misc(vmx, data);
3129 case MSR_IA32_VMX_CR0_FIXED0:
3130 case MSR_IA32_VMX_CR4_FIXED0:
3131 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3132 case MSR_IA32_VMX_CR0_FIXED1:
3133 case MSR_IA32_VMX_CR4_FIXED1:
3134 /*
3135 * These MSRs are generated based on the vCPU's CPUID, so we
3136 * do not support restoring them directly.
3137 */
3138 return -EINVAL;
3139 case MSR_IA32_VMX_EPT_VPID_CAP:
3140 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3141 case MSR_IA32_VMX_VMCS_ENUM:
3142 vmx->nested.nested_vmx_vmcs_enum = data;
3143 return 0;
3144 default:
3145 /*
3146 * The rest of the VMX capability MSRs do not support restore.
3147 */
3148 return -EINVAL;
3149 }
3150}
3151
Jan Kiszkacae50132014-01-04 18:47:22 +01003152/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003153static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3154{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003155 struct vcpu_vmx *vmx = to_vmx(vcpu);
3156
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003157 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003158 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003159 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003160 break;
3161 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3162 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003163 *pdata = vmx_control_msr(
3164 vmx->nested.nested_vmx_pinbased_ctls_low,
3165 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003166 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3167 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003168 break;
3169 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3170 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003171 *pdata = vmx_control_msr(
3172 vmx->nested.nested_vmx_procbased_ctls_low,
3173 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003174 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3175 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003176 break;
3177 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3178 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003179 *pdata = vmx_control_msr(
3180 vmx->nested.nested_vmx_exit_ctls_low,
3181 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003182 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3183 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003184 break;
3185 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3186 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003187 *pdata = vmx_control_msr(
3188 vmx->nested.nested_vmx_entry_ctls_low,
3189 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003190 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3191 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003192 break;
3193 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003194 *pdata = vmx_control_msr(
3195 vmx->nested.nested_vmx_misc_low,
3196 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003197 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003198 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003199 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003200 break;
3201 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003202 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003203 break;
3204 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003205 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003206 break;
3207 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003208 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003209 break;
3210 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003211 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003212 break;
3213 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003214 *pdata = vmx_control_msr(
3215 vmx->nested.nested_vmx_secondary_ctls_low,
3216 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003217 break;
3218 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003219 *pdata = vmx->nested.nested_vmx_ept_caps |
3220 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003221 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003222 case MSR_IA32_VMX_VMFUNC:
3223 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3224 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003225 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003226 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003227 }
3228
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003229 return 0;
3230}
3231
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003232static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3233 uint64_t val)
3234{
3235 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3236
3237 return !(val & ~valid_bits);
3238}
3239
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003240/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241 * Reads an msr value (of 'msr_index') into 'pdata'.
3242 * Returns 0 on success, non-0 otherwise.
3243 * Assumes vcpu_load() was already called.
3244 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003245static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003246{
Avi Kivity26bb0982009-09-07 11:14:12 +03003247 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003249 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003250#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003252 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253 break;
3254 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003255 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003257 case MSR_KERNEL_GS_BASE:
3258 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003259 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003260 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003261#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003262 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003263 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303264 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003265 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003266 break;
3267 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003268 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003269 break;
3270 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003271 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003272 break;
3273 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003274 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003276 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003277 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003278 (!msr_info->host_initiated &&
3279 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003280 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003281 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003282 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003283 case MSR_IA32_MCG_EXT_CTL:
3284 if (!msr_info->host_initiated &&
3285 !(to_vmx(vcpu)->msr_ia32_feature_control &
3286 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003287 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003288 msr_info->data = vcpu->arch.mcg_ext_ctl;
3289 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003290 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003291 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003292 break;
3293 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3294 if (!nested_vmx_allowed(vcpu))
3295 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003296 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003297 case MSR_IA32_XSS:
3298 if (!vmx_xsaves_supported())
3299 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003300 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003301 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003302 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003303 if (!msr_info->host_initiated &&
3304 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003305 return 1;
3306 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003307 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003308 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003309 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003310 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003311 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003312 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003313 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003314 }
3315
Avi Kivity6aa8b732006-12-10 02:21:36 -08003316 return 0;
3317}
3318
Jan Kiszkacae50132014-01-04 18:47:22 +01003319static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3320
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321/*
3322 * Writes msr value into into the appropriate "register".
3323 * Returns 0 on success, non-0 otherwise.
3324 * Assumes vcpu_load() was already called.
3325 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003326static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003327{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003328 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003329 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003330 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003331 u32 msr_index = msr_info->index;
3332 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003333
Avi Kivity6aa8b732006-12-10 02:21:36 -08003334 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003335 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003336 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003337 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003338#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003339 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003340 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341 vmcs_writel(GUEST_FS_BASE, data);
3342 break;
3343 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003344 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345 vmcs_writel(GUEST_GS_BASE, data);
3346 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003347 case MSR_KERNEL_GS_BASE:
3348 vmx_load_host_state(vmx);
3349 vmx->msr_guest_kernel_gs_base = data;
3350 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003351#endif
3352 case MSR_IA32_SYSENTER_CS:
3353 vmcs_write32(GUEST_SYSENTER_CS, data);
3354 break;
3355 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003356 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357 break;
3358 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003359 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003361 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003362 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003363 (!msr_info->host_initiated &&
3364 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003365 return 1;
Jim Mattson45316622017-05-23 11:52:54 -07003366 if (is_noncanonical_address(data & PAGE_MASK) ||
3367 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003369 vmcs_write64(GUEST_BNDCFGS, data);
3370 break;
3371 case MSR_IA32_TSC:
3372 kvm_write_tsc(vcpu, msr_info);
3373 break;
3374 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003375 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003376 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3377 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003378 vmcs_write64(GUEST_IA32_PAT, data);
3379 vcpu->arch.pat = data;
3380 break;
3381 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003382 ret = kvm_set_msr_common(vcpu, msr_info);
3383 break;
Will Auldba904632012-11-29 12:42:50 -08003384 case MSR_IA32_TSC_ADJUST:
3385 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003386 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003387 case MSR_IA32_MCG_EXT_CTL:
3388 if ((!msr_info->host_initiated &&
3389 !(to_vmx(vcpu)->msr_ia32_feature_control &
3390 FEATURE_CONTROL_LMCE)) ||
3391 (data & ~MCG_EXT_CTL_LMCE_EN))
3392 return 1;
3393 vcpu->arch.mcg_ext_ctl = data;
3394 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003395 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003396 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003397 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003398 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3399 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003400 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003401 if (msr_info->host_initiated && data == 0)
3402 vmx_leave_nested(vcpu);
3403 break;
3404 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003405 if (!msr_info->host_initiated)
3406 return 1; /* they are read-only */
3407 if (!nested_vmx_allowed(vcpu))
3408 return 1;
3409 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003410 case MSR_IA32_XSS:
3411 if (!vmx_xsaves_supported())
3412 return 1;
3413 /*
3414 * The only supported bit as of Skylake is bit 8, but
3415 * it is not supported on KVM.
3416 */
3417 if (data != 0)
3418 return 1;
3419 vcpu->arch.ia32_xss = data;
3420 if (vcpu->arch.ia32_xss != host_xss)
3421 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3422 vcpu->arch.ia32_xss, host_xss);
3423 else
3424 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3425 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003426 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003427 if (!msr_info->host_initiated &&
3428 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003429 return 1;
3430 /* Check reserved bit, higher 32 bits should be zero */
3431 if ((data >> 32) != 0)
3432 return 1;
3433 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003435 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003436 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003437 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003438 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003439 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3440 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003441 ret = kvm_set_shared_msr(msr->index, msr->data,
3442 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003443 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003444 if (ret)
3445 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003446 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003447 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003448 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003449 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003450 }
3451
Eddie Dong2cc51562007-05-21 07:28:09 +03003452 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453}
3454
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003455static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003456{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003457 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3458 switch (reg) {
3459 case VCPU_REGS_RSP:
3460 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3461 break;
3462 case VCPU_REGS_RIP:
3463 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3464 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003465 case VCPU_EXREG_PDPTR:
3466 if (enable_ept)
3467 ept_save_pdptrs(vcpu);
3468 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003469 default:
3470 break;
3471 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003472}
3473
Avi Kivity6aa8b732006-12-10 02:21:36 -08003474static __init int cpu_has_kvm_support(void)
3475{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003476 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477}
3478
3479static __init int vmx_disabled_by_bios(void)
3480{
3481 u64 msr;
3482
3483 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003484 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003485 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003486 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3487 && tboot_enabled())
3488 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003489 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003490 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003491 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003492 && !tboot_enabled()) {
3493 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003494 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003495 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003496 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003497 /* launched w/o TXT and VMX disabled */
3498 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3499 && !tboot_enabled())
3500 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003501 }
3502
3503 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003504}
3505
Dongxiao Xu7725b892010-05-11 18:29:38 +08003506static void kvm_cpu_vmxon(u64 addr)
3507{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003508 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003509 intel_pt_handle_vmx(1);
3510
Dongxiao Xu7725b892010-05-11 18:29:38 +08003511 asm volatile (ASM_VMX_VMXON_RAX
3512 : : "a"(&addr), "m"(addr)
3513 : "memory", "cc");
3514}
3515
Radim Krčmář13a34e02014-08-28 15:13:03 +02003516static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003517{
3518 int cpu = raw_smp_processor_id();
3519 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003520 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003522 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003523 return -EBUSY;
3524
Nadav Har'Eld462b812011-05-24 15:26:10 +03003525 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003526 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3527 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003528
3529 /*
3530 * Now we can enable the vmclear operation in kdump
3531 * since the loaded_vmcss_on_cpu list on this cpu
3532 * has been initialized.
3533 *
3534 * Though the cpu is not in VMX operation now, there
3535 * is no problem to enable the vmclear operation
3536 * for the loaded_vmcss_on_cpu list is empty!
3537 */
3538 crash_enable_local_vmclear(cpu);
3539
Avi Kivity6aa8b732006-12-10 02:21:36 -08003540 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003541
3542 test_bits = FEATURE_CONTROL_LOCKED;
3543 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3544 if (tboot_enabled())
3545 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3546
3547 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003548 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003549 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3550 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003551 kvm_cpu_vmxon(phys_addr);
3552 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003553
3554 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003555}
3556
Nadav Har'Eld462b812011-05-24 15:26:10 +03003557static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003558{
3559 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003560 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003561
Nadav Har'Eld462b812011-05-24 15:26:10 +03003562 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3563 loaded_vmcss_on_cpu_link)
3564 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003565}
3566
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003567
3568/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3569 * tricks.
3570 */
3571static void kvm_cpu_vmxoff(void)
3572{
3573 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003574
3575 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003576 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003577}
3578
Radim Krčmář13a34e02014-08-28 15:13:03 +02003579static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003581 vmclear_local_loaded_vmcss();
3582 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003583}
3584
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003585static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003586 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003587{
3588 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003589 u32 ctl = ctl_min | ctl_opt;
3590
3591 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3592
3593 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3594 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3595
3596 /* Ensure minimum (required) set of control bits are supported. */
3597 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003598 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003599
3600 *result = ctl;
3601 return 0;
3602}
3603
Avi Kivity110312c2010-12-21 12:54:20 +02003604static __init bool allow_1_setting(u32 msr, u32 ctl)
3605{
3606 u32 vmx_msr_low, vmx_msr_high;
3607
3608 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3609 return vmx_msr_high & ctl;
3610}
3611
Yang, Sheng002c7f72007-07-31 14:23:01 +03003612static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003613{
3614 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003615 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003616 u32 _pin_based_exec_control = 0;
3617 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003618 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003619 u32 _vmexit_control = 0;
3620 u32 _vmentry_control = 0;
3621
Raghavendra K T10166742012-02-07 23:19:20 +05303622 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003623#ifdef CONFIG_X86_64
3624 CPU_BASED_CR8_LOAD_EXITING |
3625 CPU_BASED_CR8_STORE_EXITING |
3626#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003627 CPU_BASED_CR3_LOAD_EXITING |
3628 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003629 CPU_BASED_USE_IO_BITMAPS |
3630 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003631 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003632 CPU_BASED_INVLPG_EXITING |
3633 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003634
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003635 if (!kvm_mwait_in_guest())
3636 min |= CPU_BASED_MWAIT_EXITING |
3637 CPU_BASED_MONITOR_EXITING;
3638
Sheng Yangf78e0e22007-10-29 09:40:42 +08003639 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003640 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003641 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003642 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3643 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003644 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003645#ifdef CONFIG_X86_64
3646 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3647 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3648 ~CPU_BASED_CR8_STORE_EXITING;
3649#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003650 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003651 min2 = 0;
3652 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003653 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003654 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003655 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003656 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003657 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003658 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003659 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003660 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003661 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003662 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003663 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003664 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003665 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003666 SECONDARY_EXEC_TSC_SCALING |
3667 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003668 if (adjust_vmx_controls(min2, opt2,
3669 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003670 &_cpu_based_2nd_exec_control) < 0)
3671 return -EIO;
3672 }
3673#ifndef CONFIG_X86_64
3674 if (!(_cpu_based_2nd_exec_control &
3675 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3676 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3677#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003678
3679 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3680 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003681 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003682 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3683 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003684
Sheng Yangd56f5462008-04-25 10:13:16 +08003685 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003686 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3687 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003688 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3689 CPU_BASED_CR3_STORE_EXITING |
3690 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003691 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3692 vmx_capability.ept, vmx_capability.vpid);
3693 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003694
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003695 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003696#ifdef CONFIG_X86_64
3697 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3698#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003699 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003700 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003701 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3702 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003703 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003704
Paolo Bonzini2c828782017-03-27 14:37:28 +02003705 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3706 PIN_BASED_VIRTUAL_NMIS;
3707 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003708 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3709 &_pin_based_exec_control) < 0)
3710 return -EIO;
3711
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003712 if (cpu_has_broken_vmx_preemption_timer())
3713 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003714 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003715 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003716 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3717
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003718 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003719 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003720 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3721 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003722 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003723
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003724 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003725
3726 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3727 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003728 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003729
3730#ifdef CONFIG_X86_64
3731 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3732 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003733 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003734#endif
3735
3736 /* Require Write-Back (WB) memory type for VMCS accesses. */
3737 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003738 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003739
Yang, Sheng002c7f72007-07-31 14:23:01 +03003740 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003741 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003742 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003743 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003744
Yang, Sheng002c7f72007-07-31 14:23:01 +03003745 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3746 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003747 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003748 vmcs_conf->vmexit_ctrl = _vmexit_control;
3749 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003750
Avi Kivity110312c2010-12-21 12:54:20 +02003751 cpu_has_load_ia32_efer =
3752 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3753 VM_ENTRY_LOAD_IA32_EFER)
3754 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3755 VM_EXIT_LOAD_IA32_EFER);
3756
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003757 cpu_has_load_perf_global_ctrl =
3758 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3759 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3760 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3761 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3762
3763 /*
3764 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003765 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003766 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3767 *
3768 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3769 *
3770 * AAK155 (model 26)
3771 * AAP115 (model 30)
3772 * AAT100 (model 37)
3773 * BC86,AAY89,BD102 (model 44)
3774 * BA97 (model 46)
3775 *
3776 */
3777 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3778 switch (boot_cpu_data.x86_model) {
3779 case 26:
3780 case 30:
3781 case 37:
3782 case 44:
3783 case 46:
3784 cpu_has_load_perf_global_ctrl = false;
3785 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3786 "does not work properly. Using workaround\n");
3787 break;
3788 default:
3789 break;
3790 }
3791 }
3792
Borislav Petkov782511b2016-04-04 22:25:03 +02003793 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003794 rdmsrl(MSR_IA32_XSS, host_xss);
3795
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003796 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003797}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003798
3799static struct vmcs *alloc_vmcs_cpu(int cpu)
3800{
3801 int node = cpu_to_node(cpu);
3802 struct page *pages;
3803 struct vmcs *vmcs;
3804
Vlastimil Babka96db8002015-09-08 15:03:50 -07003805 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003806 if (!pages)
3807 return NULL;
3808 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003809 memset(vmcs, 0, vmcs_config.size);
3810 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003811 return vmcs;
3812}
3813
3814static struct vmcs *alloc_vmcs(void)
3815{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003816 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003817}
3818
3819static void free_vmcs(struct vmcs *vmcs)
3820{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003821 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003822}
3823
Nadav Har'Eld462b812011-05-24 15:26:10 +03003824/*
3825 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3826 */
3827static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3828{
3829 if (!loaded_vmcs->vmcs)
3830 return;
3831 loaded_vmcs_clear(loaded_vmcs);
3832 free_vmcs(loaded_vmcs->vmcs);
3833 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003834 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003835}
3836
Sam Ravnborg39959582007-06-01 00:47:13 -07003837static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838{
3839 int cpu;
3840
Zachary Amsden3230bb42009-09-29 11:38:37 -10003841 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003842 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003843 per_cpu(vmxarea, cpu) = NULL;
3844 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003845}
3846
Jim Mattson85fd5142017-07-07 12:51:41 -07003847enum vmcs_field_type {
3848 VMCS_FIELD_TYPE_U16 = 0,
3849 VMCS_FIELD_TYPE_U64 = 1,
3850 VMCS_FIELD_TYPE_U32 = 2,
3851 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3852};
3853
3854static inline int vmcs_field_type(unsigned long field)
3855{
3856 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3857 return VMCS_FIELD_TYPE_U32;
3858 return (field >> 13) & 0x3 ;
3859}
3860
3861static inline int vmcs_field_readonly(unsigned long field)
3862{
3863 return (((field >> 10) & 0x3) == 1);
3864}
3865
Bandan Dasfe2b2012014-04-21 15:20:14 -04003866static void init_vmcs_shadow_fields(void)
3867{
3868 int i, j;
3869
3870 /* No checks for read only fields yet */
3871
3872 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3873 switch (shadow_read_write_fields[i]) {
3874 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003875 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003876 continue;
3877 break;
3878 default:
3879 break;
3880 }
3881
3882 if (j < i)
3883 shadow_read_write_fields[j] =
3884 shadow_read_write_fields[i];
3885 j++;
3886 }
3887 max_shadow_read_write_fields = j;
3888
3889 /* shadowed fields guest access without vmexit */
3890 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003891 unsigned long field = shadow_read_write_fields[i];
3892
3893 clear_bit(field, vmx_vmwrite_bitmap);
3894 clear_bit(field, vmx_vmread_bitmap);
3895 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3896 clear_bit(field + 1, vmx_vmwrite_bitmap);
3897 clear_bit(field + 1, vmx_vmread_bitmap);
3898 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003899 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003900 for (i = 0; i < max_shadow_read_only_fields; i++) {
3901 unsigned long field = shadow_read_only_fields[i];
3902
3903 clear_bit(field, vmx_vmread_bitmap);
3904 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3905 clear_bit(field + 1, vmx_vmread_bitmap);
3906 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003907}
3908
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909static __init int alloc_kvm_area(void)
3910{
3911 int cpu;
3912
Zachary Amsden3230bb42009-09-29 11:38:37 -10003913 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914 struct vmcs *vmcs;
3915
3916 vmcs = alloc_vmcs_cpu(cpu);
3917 if (!vmcs) {
3918 free_kvm_area();
3919 return -ENOMEM;
3920 }
3921
3922 per_cpu(vmxarea, cpu) = vmcs;
3923 }
3924 return 0;
3925}
3926
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003927static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003928 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003929{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003930 if (!emulate_invalid_guest_state) {
3931 /*
3932 * CS and SS RPL should be equal during guest entry according
3933 * to VMX spec, but in reality it is not always so. Since vcpu
3934 * is in the middle of the transition from real mode to
3935 * protected mode it is safe to assume that RPL 0 is a good
3936 * default value.
3937 */
3938 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003939 save->selector &= ~SEGMENT_RPL_MASK;
3940 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003941 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003942 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003943 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944}
3945
3946static void enter_pmode(struct kvm_vcpu *vcpu)
3947{
3948 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003949 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003950
Gleb Natapovd99e4152012-12-20 16:57:45 +02003951 /*
3952 * Update real mode segment cache. It may be not up-to-date if sement
3953 * register was written while vcpu was in a guest mode.
3954 */
3955 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3956 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3957 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3958 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3959 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3960 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3961
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003962 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003963
Avi Kivity2fb92db2011-04-27 19:42:18 +03003964 vmx_segment_cache_clear(vmx);
3965
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003966 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003967
3968 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003969 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3970 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003971 vmcs_writel(GUEST_RFLAGS, flags);
3972
Rusty Russell66aee912007-07-17 23:34:16 +10003973 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3974 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975
3976 update_exception_bitmap(vcpu);
3977
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003978 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3979 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3980 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3981 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3982 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3983 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003984}
3985
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003986static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003987{
Mathias Krause772e0312012-08-30 01:30:19 +02003988 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003989 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003990
Gleb Natapovd99e4152012-12-20 16:57:45 +02003991 var.dpl = 0x3;
3992 if (seg == VCPU_SREG_CS)
3993 var.type = 0x3;
3994
3995 if (!emulate_invalid_guest_state) {
3996 var.selector = var.base >> 4;
3997 var.base = var.base & 0xffff0;
3998 var.limit = 0xffff;
3999 var.g = 0;
4000 var.db = 0;
4001 var.present = 1;
4002 var.s = 1;
4003 var.l = 0;
4004 var.unusable = 0;
4005 var.type = 0x3;
4006 var.avl = 0;
4007 if (save->base & 0xf)
4008 printk_once(KERN_WARNING "kvm: segment base is not "
4009 "paragraph aligned when entering "
4010 "protected mode (seg=%d)", seg);
4011 }
4012
4013 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004014 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004015 vmcs_write32(sf->limit, var.limit);
4016 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017}
4018
4019static void enter_rmode(struct kvm_vcpu *vcpu)
4020{
4021 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004022 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004024 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4025 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4026 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4027 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4028 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004029 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4030 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004031
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004032 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004033
Gleb Natapov776e58e2011-03-13 12:34:27 +02004034 /*
4035 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004036 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004037 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004038 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004039 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4040 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004041
Avi Kivity2fb92db2011-04-27 19:42:18 +03004042 vmx_segment_cache_clear(vmx);
4043
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004044 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004045 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004046 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4047
4048 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004049 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004051 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052
4053 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004054 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055 update_exception_bitmap(vcpu);
4056
Gleb Natapovd99e4152012-12-20 16:57:45 +02004057 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4058 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4059 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4060 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4061 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4062 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004063
Eddie Dong8668a3c2007-10-10 14:26:45 +08004064 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004065}
4066
Amit Shah401d10d2009-02-20 22:53:37 +05304067static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4068{
4069 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004070 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4071
4072 if (!msr)
4073 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304074
Avi Kivity44ea2b12009-09-06 15:55:37 +03004075 /*
4076 * Force kernel_gs_base reloading before EFER changes, as control
4077 * of this msr depends on is_long_mode().
4078 */
4079 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004080 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304081 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004082 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304083 msr->data = efer;
4084 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004085 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304086
4087 msr->data = efer & ~EFER_LME;
4088 }
4089 setup_msrs(vmx);
4090}
4091
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004092#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004093
4094static void enter_lmode(struct kvm_vcpu *vcpu)
4095{
4096 u32 guest_tr_ar;
4097
Avi Kivity2fb92db2011-04-27 19:42:18 +03004098 vmx_segment_cache_clear(to_vmx(vcpu));
4099
Avi Kivity6aa8b732006-12-10 02:21:36 -08004100 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004101 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004102 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4103 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004104 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004105 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4106 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004107 }
Avi Kivityda38f432010-07-06 11:30:49 +03004108 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004109}
4110
4111static void exit_lmode(struct kvm_vcpu *vcpu)
4112{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004113 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004114 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004115}
4116
4117#endif
4118
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004119static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004120{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004121 if (enable_ept) {
4122 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4123 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004124 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004125 } else {
4126 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004127 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004128}
4129
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004130static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4131{
4132 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4133}
4134
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004135static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4136{
4137 if (enable_ept)
4138 vmx_flush_tlb(vcpu);
4139}
4140
Avi Kivitye8467fd2009-12-29 18:43:06 +02004141static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4142{
4143 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4144
4145 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4146 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4147}
4148
Avi Kivityaff48ba2010-12-05 18:56:11 +02004149static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4150{
4151 if (enable_ept && is_paging(vcpu))
4152 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4153 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4154}
4155
Anthony Liguori25c4c272007-04-27 09:29:21 +03004156static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004157{
Avi Kivityfc78f512009-12-07 12:16:48 +02004158 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4159
4160 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4161 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004162}
4163
Sheng Yang14394422008-04-28 12:24:45 +08004164static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4165{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004166 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4167
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004168 if (!test_bit(VCPU_EXREG_PDPTR,
4169 (unsigned long *)&vcpu->arch.regs_dirty))
4170 return;
4171
Sheng Yang14394422008-04-28 12:24:45 +08004172 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004173 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4174 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4175 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4176 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004177 }
4178}
4179
Avi Kivity8f5d5492009-05-31 18:41:29 +03004180static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4181{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004182 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4183
Avi Kivity8f5d5492009-05-31 18:41:29 +03004184 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004185 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4186 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4187 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4188 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004189 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004190
4191 __set_bit(VCPU_EXREG_PDPTR,
4192 (unsigned long *)&vcpu->arch.regs_avail);
4193 __set_bit(VCPU_EXREG_PDPTR,
4194 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004195}
4196
David Matlack38991522016-11-29 18:14:08 -08004197static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4198{
4199 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4200 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4201 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4202
4203 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4204 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4205 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4206 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4207
4208 return fixed_bits_valid(val, fixed0, fixed1);
4209}
4210
4211static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4212{
4213 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4214 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4215
4216 return fixed_bits_valid(val, fixed0, fixed1);
4217}
4218
4219static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4220{
4221 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4222 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4223
4224 return fixed_bits_valid(val, fixed0, fixed1);
4225}
4226
4227/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4228#define nested_guest_cr4_valid nested_cr4_valid
4229#define nested_host_cr4_valid nested_cr4_valid
4230
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004231static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004232
4233static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4234 unsigned long cr0,
4235 struct kvm_vcpu *vcpu)
4236{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004237 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4238 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004239 if (!(cr0 & X86_CR0_PG)) {
4240 /* From paging/starting to nonpaging */
4241 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004242 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004243 (CPU_BASED_CR3_LOAD_EXITING |
4244 CPU_BASED_CR3_STORE_EXITING));
4245 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004246 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004247 } else if (!is_paging(vcpu)) {
4248 /* From nonpaging to paging */
4249 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004250 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004251 ~(CPU_BASED_CR3_LOAD_EXITING |
4252 CPU_BASED_CR3_STORE_EXITING));
4253 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004254 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004255 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004256
4257 if (!(cr0 & X86_CR0_WP))
4258 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004259}
4260
Avi Kivity6aa8b732006-12-10 02:21:36 -08004261static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4262{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004263 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004264 unsigned long hw_cr0;
4265
Gleb Natapov50378782013-02-04 16:00:28 +02004266 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004267 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004268 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004269 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004270 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004271
Gleb Natapov218e7632013-01-21 15:36:45 +02004272 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4273 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004274
Gleb Natapov218e7632013-01-21 15:36:45 +02004275 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4276 enter_rmode(vcpu);
4277 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004279#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004280 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004281 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004283 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004284 exit_lmode(vcpu);
4285 }
4286#endif
4287
Avi Kivity089d0342009-03-23 18:26:32 +02004288 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004289 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4290
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004292 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004293 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004294
4295 /* depends on vcpu->arch.cr0 to be set to a new value */
4296 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004297}
4298
Peter Feiner995f00a2017-06-30 17:26:32 -07004299static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004300{
David Hildenbrandbb97a012017-08-10 23:15:28 +02004301 u64 eptp = VMX_EPTP_MT_WB | VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004302
4303 /* TODO write the value reading from MSR */
Peter Feiner995f00a2017-06-30 17:26:32 -07004304 if (enable_ept_ad_bits &&
4305 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004306 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004307 eptp |= (root_hpa & PAGE_MASK);
4308
4309 return eptp;
4310}
4311
Avi Kivity6aa8b732006-12-10 02:21:36 -08004312static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4313{
Sheng Yang14394422008-04-28 12:24:45 +08004314 unsigned long guest_cr3;
4315 u64 eptp;
4316
4317 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004318 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004319 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004320 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004321 if (is_paging(vcpu) || is_guest_mode(vcpu))
4322 guest_cr3 = kvm_read_cr3(vcpu);
4323 else
4324 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004325 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004326 }
4327
Sheng Yang2384d2b2008-01-17 15:14:33 +08004328 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004329 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004330}
4331
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004332static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004334 /*
4335 * Pass through host's Machine Check Enable value to hw_cr4, which
4336 * is in force while we are in guest mode. Do not let guests control
4337 * this bit, even if host CR4.MCE == 0.
4338 */
4339 unsigned long hw_cr4 =
4340 (cr4_read_shadow() & X86_CR4_MCE) |
4341 (cr4 & ~X86_CR4_MCE) |
4342 (to_vmx(vcpu)->rmode.vm86_active ?
4343 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004344
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004345 if (cr4 & X86_CR4_VMXE) {
4346 /*
4347 * To use VMXON (and later other VMX instructions), a guest
4348 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4349 * So basically the check on whether to allow nested VMX
4350 * is here.
4351 */
4352 if (!nested_vmx_allowed(vcpu))
4353 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004354 }
David Matlack38991522016-11-29 18:14:08 -08004355
4356 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004357 return 1;
4358
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004359 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004360 if (enable_ept) {
4361 if (!is_paging(vcpu)) {
4362 hw_cr4 &= ~X86_CR4_PAE;
4363 hw_cr4 |= X86_CR4_PSE;
4364 } else if (!(cr4 & X86_CR4_PAE)) {
4365 hw_cr4 &= ~X86_CR4_PAE;
4366 }
4367 }
Sheng Yang14394422008-04-28 12:24:45 +08004368
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004369 if (!enable_unrestricted_guest && !is_paging(vcpu))
4370 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004371 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4372 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4373 * to be manually disabled when guest switches to non-paging
4374 * mode.
4375 *
4376 * If !enable_unrestricted_guest, the CPU is always running
4377 * with CR0.PG=1 and CR4 needs to be modified.
4378 * If enable_unrestricted_guest, the CPU automatically
4379 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004380 */
Huaitong Handdba2622016-03-22 16:51:15 +08004381 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004382
Sheng Yang14394422008-04-28 12:24:45 +08004383 vmcs_writel(CR4_READ_SHADOW, cr4);
4384 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004385 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004386}
4387
Avi Kivity6aa8b732006-12-10 02:21:36 -08004388static void vmx_get_segment(struct kvm_vcpu *vcpu,
4389 struct kvm_segment *var, int seg)
4390{
Avi Kivitya9179492011-01-03 14:28:52 +02004391 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004392 u32 ar;
4393
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004394 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004395 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004396 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004397 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004398 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004399 var->base = vmx_read_guest_seg_base(vmx, seg);
4400 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4401 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004402 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004403 var->base = vmx_read_guest_seg_base(vmx, seg);
4404 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4405 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4406 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004407 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004408 var->type = ar & 15;
4409 var->s = (ar >> 4) & 1;
4410 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004411 /*
4412 * Some userspaces do not preserve unusable property. Since usable
4413 * segment has to be present according to VMX spec we can use present
4414 * property to amend userspace bug by making unusable segment always
4415 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4416 * segment as unusable.
4417 */
4418 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004419 var->avl = (ar >> 12) & 1;
4420 var->l = (ar >> 13) & 1;
4421 var->db = (ar >> 14) & 1;
4422 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004423}
4424
Avi Kivitya9179492011-01-03 14:28:52 +02004425static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4426{
Avi Kivitya9179492011-01-03 14:28:52 +02004427 struct kvm_segment s;
4428
4429 if (to_vmx(vcpu)->rmode.vm86_active) {
4430 vmx_get_segment(vcpu, &s, seg);
4431 return s.base;
4432 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004433 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004434}
4435
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004436static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004437{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004438 struct vcpu_vmx *vmx = to_vmx(vcpu);
4439
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004440 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004441 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004442 else {
4443 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004444 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004445 }
Avi Kivity69c73022011-03-07 15:26:44 +02004446}
4447
Avi Kivity653e3102007-05-07 10:55:37 +03004448static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004449{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004450 u32 ar;
4451
Avi Kivityf0495f92012-06-07 17:06:10 +03004452 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453 ar = 1 << 16;
4454 else {
4455 ar = var->type & 15;
4456 ar |= (var->s & 1) << 4;
4457 ar |= (var->dpl & 3) << 5;
4458 ar |= (var->present & 1) << 7;
4459 ar |= (var->avl & 1) << 12;
4460 ar |= (var->l & 1) << 13;
4461 ar |= (var->db & 1) << 14;
4462 ar |= (var->g & 1) << 15;
4463 }
Avi Kivity653e3102007-05-07 10:55:37 +03004464
4465 return ar;
4466}
4467
4468static void vmx_set_segment(struct kvm_vcpu *vcpu,
4469 struct kvm_segment *var, int seg)
4470{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004471 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004472 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004473
Avi Kivity2fb92db2011-04-27 19:42:18 +03004474 vmx_segment_cache_clear(vmx);
4475
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004476 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4477 vmx->rmode.segs[seg] = *var;
4478 if (seg == VCPU_SREG_TR)
4479 vmcs_write16(sf->selector, var->selector);
4480 else if (var->s)
4481 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004482 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004483 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004484
Avi Kivity653e3102007-05-07 10:55:37 +03004485 vmcs_writel(sf->base, var->base);
4486 vmcs_write32(sf->limit, var->limit);
4487 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004488
4489 /*
4490 * Fix the "Accessed" bit in AR field of segment registers for older
4491 * qemu binaries.
4492 * IA32 arch specifies that at the time of processor reset the
4493 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004494 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004495 * state vmexit when "unrestricted guest" mode is turned on.
4496 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4497 * tree. Newer qemu binaries with that qemu fix would not need this
4498 * kvm hack.
4499 */
4500 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004501 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004502
Gleb Natapovf924d662012-12-12 19:10:55 +02004503 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004504
4505out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004506 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004507}
4508
Avi Kivity6aa8b732006-12-10 02:21:36 -08004509static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4510{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004511 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004512
4513 *db = (ar >> 14) & 1;
4514 *l = (ar >> 13) & 1;
4515}
4516
Gleb Natapov89a27f42010-02-16 10:51:48 +02004517static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004518{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004519 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4520 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004521}
4522
Gleb Natapov89a27f42010-02-16 10:51:48 +02004523static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004524{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004525 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4526 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004527}
4528
Gleb Natapov89a27f42010-02-16 10:51:48 +02004529static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004530{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004531 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4532 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004533}
4534
Gleb Natapov89a27f42010-02-16 10:51:48 +02004535static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004536{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004537 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4538 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004539}
4540
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004541static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4542{
4543 struct kvm_segment var;
4544 u32 ar;
4545
4546 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004547 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004548 if (seg == VCPU_SREG_CS)
4549 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004550 ar = vmx_segment_access_rights(&var);
4551
4552 if (var.base != (var.selector << 4))
4553 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004554 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004555 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004556 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004557 return false;
4558
4559 return true;
4560}
4561
4562static bool code_segment_valid(struct kvm_vcpu *vcpu)
4563{
4564 struct kvm_segment cs;
4565 unsigned int cs_rpl;
4566
4567 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004568 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004569
Avi Kivity1872a3f2009-01-04 23:26:52 +02004570 if (cs.unusable)
4571 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004572 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004573 return false;
4574 if (!cs.s)
4575 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004576 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004577 if (cs.dpl > cs_rpl)
4578 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004579 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004580 if (cs.dpl != cs_rpl)
4581 return false;
4582 }
4583 if (!cs.present)
4584 return false;
4585
4586 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4587 return true;
4588}
4589
4590static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4591{
4592 struct kvm_segment ss;
4593 unsigned int ss_rpl;
4594
4595 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004596 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004597
Avi Kivity1872a3f2009-01-04 23:26:52 +02004598 if (ss.unusable)
4599 return true;
4600 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004601 return false;
4602 if (!ss.s)
4603 return false;
4604 if (ss.dpl != ss_rpl) /* DPL != RPL */
4605 return false;
4606 if (!ss.present)
4607 return false;
4608
4609 return true;
4610}
4611
4612static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4613{
4614 struct kvm_segment var;
4615 unsigned int rpl;
4616
4617 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004618 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004619
Avi Kivity1872a3f2009-01-04 23:26:52 +02004620 if (var.unusable)
4621 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004622 if (!var.s)
4623 return false;
4624 if (!var.present)
4625 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004626 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004627 if (var.dpl < rpl) /* DPL < RPL */
4628 return false;
4629 }
4630
4631 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4632 * rights flags
4633 */
4634 return true;
4635}
4636
4637static bool tr_valid(struct kvm_vcpu *vcpu)
4638{
4639 struct kvm_segment tr;
4640
4641 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4642
Avi Kivity1872a3f2009-01-04 23:26:52 +02004643 if (tr.unusable)
4644 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004645 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004646 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004647 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004648 return false;
4649 if (!tr.present)
4650 return false;
4651
4652 return true;
4653}
4654
4655static bool ldtr_valid(struct kvm_vcpu *vcpu)
4656{
4657 struct kvm_segment ldtr;
4658
4659 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4660
Avi Kivity1872a3f2009-01-04 23:26:52 +02004661 if (ldtr.unusable)
4662 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004663 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004664 return false;
4665 if (ldtr.type != 2)
4666 return false;
4667 if (!ldtr.present)
4668 return false;
4669
4670 return true;
4671}
4672
4673static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4674{
4675 struct kvm_segment cs, ss;
4676
4677 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4678 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4679
Nadav Amitb32a9912015-03-29 16:33:04 +03004680 return ((cs.selector & SEGMENT_RPL_MASK) ==
4681 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004682}
4683
4684/*
4685 * Check if guest state is valid. Returns true if valid, false if
4686 * not.
4687 * We assume that registers are always usable
4688 */
4689static bool guest_state_valid(struct kvm_vcpu *vcpu)
4690{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004691 if (enable_unrestricted_guest)
4692 return true;
4693
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004694 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004695 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004696 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4697 return false;
4698 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4699 return false;
4700 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4701 return false;
4702 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4703 return false;
4704 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4705 return false;
4706 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4707 return false;
4708 } else {
4709 /* protected mode guest state checks */
4710 if (!cs_ss_rpl_check(vcpu))
4711 return false;
4712 if (!code_segment_valid(vcpu))
4713 return false;
4714 if (!stack_segment_valid(vcpu))
4715 return false;
4716 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4717 return false;
4718 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4719 return false;
4720 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4721 return false;
4722 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4723 return false;
4724 if (!tr_valid(vcpu))
4725 return false;
4726 if (!ldtr_valid(vcpu))
4727 return false;
4728 }
4729 /* TODO:
4730 * - Add checks on RIP
4731 * - Add checks on RFLAGS
4732 */
4733
4734 return true;
4735}
4736
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004737static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4738{
4739 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4740}
4741
Mike Dayd77c26f2007-10-08 09:02:08 -04004742static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004743{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004744 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004745 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004746 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004747
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004748 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004749 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004750 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4751 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004752 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004753 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004754 r = kvm_write_guest_page(kvm, fn++, &data,
4755 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004756 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004757 goto out;
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 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4762 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004763 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004764 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004765 r = kvm_write_guest_page(kvm, fn, &data,
4766 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4767 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004768out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004769 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004770 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004771}
4772
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004773static int init_rmode_identity_map(struct kvm *kvm)
4774{
Tang Chenf51770e2014-09-16 18:41:59 +08004775 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004776 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004777 u32 tmp;
4778
Avi Kivity089d0342009-03-23 18:26:32 +02004779 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004780 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004781
4782 /* Protect kvm->arch.ept_identity_pagetable_done. */
4783 mutex_lock(&kvm->slots_lock);
4784
Tang Chenf51770e2014-09-16 18:41:59 +08004785 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004786 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004787
Sheng Yangb927a3c2009-07-21 10:42:48 +08004788 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004789
4790 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004791 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004792 goto out2;
4793
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004794 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004795 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4796 if (r < 0)
4797 goto out;
4798 /* Set up identity-mapping pagetable for EPT in real mode */
4799 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4800 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4801 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4802 r = kvm_write_guest_page(kvm, identity_map_pfn,
4803 &tmp, i * sizeof(tmp), sizeof(tmp));
4804 if (r < 0)
4805 goto out;
4806 }
4807 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004808
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004809out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004810 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004811
4812out2:
4813 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004814 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004815}
4816
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817static void seg_setup(int seg)
4818{
Mathias Krause772e0312012-08-30 01:30:19 +02004819 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004820 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004821
4822 vmcs_write16(sf->selector, 0);
4823 vmcs_writel(sf->base, 0);
4824 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004825 ar = 0x93;
4826 if (seg == VCPU_SREG_CS)
4827 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004828
4829 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004830}
4831
Sheng Yangf78e0e22007-10-29 09:40:42 +08004832static int alloc_apic_access_page(struct kvm *kvm)
4833{
Xiao Guangrong44841412012-09-07 14:14:20 +08004834 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004835 int r = 0;
4836
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004837 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004838 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004839 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004840 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4841 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004842 if (r)
4843 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004844
Tang Chen73a6d942014-09-11 13:38:00 +08004845 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004846 if (is_error_page(page)) {
4847 r = -EFAULT;
4848 goto out;
4849 }
4850
Tang Chenc24ae0d2014-09-24 15:57:58 +08004851 /*
4852 * Do not pin the page in memory, so that memory hot-unplug
4853 * is able to migrate it.
4854 */
4855 put_page(page);
4856 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004857out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004858 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004859 return r;
4860}
4861
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004862static int alloc_identity_pagetable(struct kvm *kvm)
4863{
Tang Chena255d472014-09-16 18:41:58 +08004864 /* Called with kvm->slots_lock held. */
4865
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004866 int r = 0;
4867
Tang Chena255d472014-09-16 18:41:58 +08004868 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4869
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004870 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4871 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004872
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004873 return r;
4874}
4875
Wanpeng Li991e7a02015-09-16 17:30:05 +08004876static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004877{
4878 int vpid;
4879
Avi Kivity919818a2009-03-23 18:01:29 +02004880 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004881 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004882 spin_lock(&vmx_vpid_lock);
4883 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004884 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004885 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004886 else
4887 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004888 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004889 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004890}
4891
Wanpeng Li991e7a02015-09-16 17:30:05 +08004892static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004893{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004894 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004895 return;
4896 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004897 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004898 spin_unlock(&vmx_vpid_lock);
4899}
4900
Yang Zhang8d146952013-01-25 10:18:50 +08004901#define MSR_TYPE_R 1
4902#define MSR_TYPE_W 2
4903static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4904 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004905{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004906 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004907
4908 if (!cpu_has_vmx_msr_bitmap())
4909 return;
4910
4911 /*
4912 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4913 * have the write-low and read-high bitmap offsets the wrong way round.
4914 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4915 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004916 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004917 if (type & MSR_TYPE_R)
4918 /* read-low */
4919 __clear_bit(msr, msr_bitmap + 0x000 / f);
4920
4921 if (type & MSR_TYPE_W)
4922 /* write-low */
4923 __clear_bit(msr, msr_bitmap + 0x800 / f);
4924
Sheng Yang25c5f222008-03-28 13:18:56 +08004925 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4926 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004927 if (type & MSR_TYPE_R)
4928 /* read-high */
4929 __clear_bit(msr, msr_bitmap + 0x400 / f);
4930
4931 if (type & MSR_TYPE_W)
4932 /* write-high */
4933 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4934
4935 }
4936}
4937
Wincy Vanf2b93282015-02-03 23:56:03 +08004938/*
4939 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4940 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4941 */
4942static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4943 unsigned long *msr_bitmap_nested,
4944 u32 msr, int type)
4945{
4946 int f = sizeof(unsigned long);
4947
4948 if (!cpu_has_vmx_msr_bitmap()) {
4949 WARN_ON(1);
4950 return;
4951 }
4952
4953 /*
4954 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4955 * have the write-low and read-high bitmap offsets the wrong way round.
4956 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4957 */
4958 if (msr <= 0x1fff) {
4959 if (type & MSR_TYPE_R &&
4960 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4961 /* read-low */
4962 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4963
4964 if (type & MSR_TYPE_W &&
4965 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4966 /* write-low */
4967 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4968
4969 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4970 msr &= 0x1fff;
4971 if (type & MSR_TYPE_R &&
4972 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4973 /* read-high */
4974 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4975
4976 if (type & MSR_TYPE_W &&
4977 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4978 /* write-high */
4979 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4980
4981 }
4982}
4983
Avi Kivity58972972009-02-24 22:26:47 +02004984static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4985{
4986 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004987 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4988 msr, MSR_TYPE_R | MSR_TYPE_W);
4989 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4990 msr, MSR_TYPE_R | MSR_TYPE_W);
4991}
4992
Radim Krčmář2e69f862016-09-29 22:41:32 +02004993static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004994{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004995 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08004996 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004997 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08004998 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004999 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005000 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005001 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005002 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005003 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005004 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005005 }
Avi Kivity58972972009-02-24 22:26:47 +02005006}
5007
Andrey Smetanind62caab2015-11-10 15:36:33 +03005008static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005009{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005010 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005011}
5012
David Matlackc9f04402017-08-01 14:00:40 -07005013static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5014{
5015 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5016 gfn_t gfn;
5017
5018 /*
5019 * Don't need to mark the APIC access page dirty; it is never
5020 * written to by the CPU during APIC virtualization.
5021 */
5022
5023 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5024 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5025 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5026 }
5027
5028 if (nested_cpu_has_posted_intr(vmcs12)) {
5029 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5030 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5031 }
5032}
5033
5034
David Hildenbrand6342c502017-01-25 11:58:58 +01005035static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005036{
5037 struct vcpu_vmx *vmx = to_vmx(vcpu);
5038 int max_irr;
5039 void *vapic_page;
5040 u16 status;
5041
David Matlackc9f04402017-08-01 14:00:40 -07005042 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5043 return;
Wincy Van705699a2015-02-03 23:58:17 +08005044
David Matlackc9f04402017-08-01 14:00:40 -07005045 vmx->nested.pi_pending = false;
5046 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5047 return;
Wincy Van705699a2015-02-03 23:58:17 +08005048
David Matlackc9f04402017-08-01 14:00:40 -07005049 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5050 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005051 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005052 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5053 kunmap(vmx->nested.virtual_apic_page);
5054
5055 status = vmcs_read16(GUEST_INTR_STATUS);
5056 if ((u8)max_irr > ((u8)status & 0xff)) {
5057 status &= ~0xff;
5058 status |= (u8)max_irr;
5059 vmcs_write16(GUEST_INTR_STATUS, status);
5060 }
5061 }
David Matlackc9f04402017-08-01 14:00:40 -07005062
5063 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005064}
5065
Wincy Van06a55242017-04-28 13:13:59 +08005066static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5067 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005068{
5069#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005070 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5071
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005072 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005073 struct vcpu_vmx *vmx = to_vmx(vcpu);
5074
5075 /*
5076 * Currently, we don't support urgent interrupt,
5077 * all interrupts are recognized as non-urgent
5078 * interrupt, so we cannot post interrupts when
5079 * 'SN' is set.
5080 *
5081 * If the vcpu is in guest mode, it means it is
5082 * running instead of being scheduled out and
5083 * waiting in the run queue, and that's the only
5084 * case when 'SN' is set currently, warning if
5085 * 'SN' is set.
5086 */
5087 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
5088
Wincy Van06a55242017-04-28 13:13:59 +08005089 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005090 return true;
5091 }
5092#endif
5093 return false;
5094}
5095
Wincy Van705699a2015-02-03 23:58:17 +08005096static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5097 int vector)
5098{
5099 struct vcpu_vmx *vmx = to_vmx(vcpu);
5100
5101 if (is_guest_mode(vcpu) &&
5102 vector == vmx->nested.posted_intr_nv) {
5103 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005104 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005105 /*
5106 * If a posted intr is not recognized by hardware,
5107 * we will accomplish it in the next vmentry.
5108 */
5109 vmx->nested.pi_pending = true;
5110 kvm_make_request(KVM_REQ_EVENT, vcpu);
5111 return 0;
5112 }
5113 return -1;
5114}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005115/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005116 * Send interrupt to vcpu via posted interrupt way.
5117 * 1. If target vcpu is running(non-root mode), send posted interrupt
5118 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5119 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5120 * interrupt from PIR in next vmentry.
5121 */
5122static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5123{
5124 struct vcpu_vmx *vmx = to_vmx(vcpu);
5125 int r;
5126
Wincy Van705699a2015-02-03 23:58:17 +08005127 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5128 if (!r)
5129 return;
5130
Yang Zhanga20ed542013-04-11 19:25:15 +08005131 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5132 return;
5133
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005134 /* If a previous notification has sent the IPI, nothing to do. */
5135 if (pi_test_and_set_on(&vmx->pi_desc))
5136 return;
5137
Wincy Van06a55242017-04-28 13:13:59 +08005138 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005139 kvm_vcpu_kick(vcpu);
5140}
5141
Avi Kivity6aa8b732006-12-10 02:21:36 -08005142/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005143 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5144 * will not change in the lifetime of the guest.
5145 * Note that host-state that does change is set elsewhere. E.g., host-state
5146 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5147 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005148static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005149{
5150 u32 low32, high32;
5151 unsigned long tmpl;
5152 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005153 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005154
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005155 cr0 = read_cr0();
5156 WARN_ON(cr0 & X86_CR0_TS);
5157 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005158
5159 /*
5160 * Save the most likely value for this task's CR3 in the VMCS.
5161 * We can't use __get_current_cr3_fast() because we're not atomic.
5162 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005163 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005164 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
5165 vmx->host_state.vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005166
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005167 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005168 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005169 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5170 vmx->host_state.vmcs_host_cr4 = cr4;
5171
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005172 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005173#ifdef CONFIG_X86_64
5174 /*
5175 * Load null selectors, so we can avoid reloading them in
5176 * __vmx_load_host_state(), in case userspace uses the null selectors
5177 * too (the expected case).
5178 */
5179 vmcs_write16(HOST_DS_SELECTOR, 0);
5180 vmcs_write16(HOST_ES_SELECTOR, 0);
5181#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005182 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5183 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005184#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005185 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5186 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5187
5188 native_store_idt(&dt);
5189 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005190 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005191
Avi Kivity83287ea422012-09-16 15:10:57 +03005192 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005193
5194 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5195 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5196 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5197 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5198
5199 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5200 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5201 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5202 }
5203}
5204
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005205static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5206{
5207 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5208 if (enable_ept)
5209 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005210 if (is_guest_mode(&vmx->vcpu))
5211 vmx->vcpu.arch.cr4_guest_owned_bits &=
5212 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005213 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5214}
5215
Yang Zhang01e439b2013-04-11 19:25:12 +08005216static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5217{
5218 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5219
Andrey Smetanind62caab2015-11-10 15:36:33 +03005220 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005221 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005222 /* Enable the preemption timer dynamically */
5223 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005224 return pin_based_exec_ctrl;
5225}
5226
Andrey Smetanind62caab2015-11-10 15:36:33 +03005227static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5228{
5229 struct vcpu_vmx *vmx = to_vmx(vcpu);
5230
5231 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005232 if (cpu_has_secondary_exec_ctrls()) {
5233 if (kvm_vcpu_apicv_active(vcpu))
5234 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5235 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5236 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5237 else
5238 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5239 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5240 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5241 }
5242
5243 if (cpu_has_vmx_msr_bitmap())
5244 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005245}
5246
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005247static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5248{
5249 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005250
5251 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5252 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5253
Paolo Bonzini35754c92015-07-29 12:05:37 +02005254 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005255 exec_control &= ~CPU_BASED_TPR_SHADOW;
5256#ifdef CONFIG_X86_64
5257 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5258 CPU_BASED_CR8_LOAD_EXITING;
5259#endif
5260 }
5261 if (!enable_ept)
5262 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5263 CPU_BASED_CR3_LOAD_EXITING |
5264 CPU_BASED_INVLPG_EXITING;
5265 return exec_control;
5266}
5267
5268static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
5269{
5270 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005271 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005272 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5273 if (vmx->vpid == 0)
5274 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5275 if (!enable_ept) {
5276 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5277 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005278 /* Enable INVPCID for non-ept guests may cause performance regression. */
5279 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005280 }
5281 if (!enable_unrestricted_guest)
5282 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5283 if (!ple_gap)
5284 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03005285 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005286 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5287 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005288 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005289 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5290 (handle_vmptrld).
5291 We can NOT enable shadow_vmcs here because we don't have yet
5292 a current VMCS12
5293 */
5294 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005295
5296 if (!enable_pml)
5297 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005298
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005299 return exec_control;
5300}
5301
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005302static void ept_set_mmio_spte_mask(void)
5303{
5304 /*
5305 * EPT Misconfigurations can be generated if the value of bits 2:0
5306 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005307 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005308 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5309 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005310}
5311
Wanpeng Lif53cd632014-12-02 19:14:58 +08005312#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005313/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005314 * Sets up the vmcs for emulated real mode.
5315 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005316static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005317{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005318#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005319 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005320#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005321 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005322
Avi Kivity6aa8b732006-12-10 02:21:36 -08005323 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005324 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5325 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005326
Abel Gordon4607c2d2013-04-18 14:35:55 +03005327 if (enable_shadow_vmcs) {
5328 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5329 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5330 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005331 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005332 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005333
Avi Kivity6aa8b732006-12-10 02:21:36 -08005334 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5335
Avi Kivity6aa8b732006-12-10 02:21:36 -08005336 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005337 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005338 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005339
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005340 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005341
Dan Williamsdfa169b2016-06-02 11:17:24 -07005342 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005343 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5344 vmx_secondary_exec_control(vmx));
Dan Williamsdfa169b2016-06-02 11:17:24 -07005345 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005346
Andrey Smetanind62caab2015-11-10 15:36:33 +03005347 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005348 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5349 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5350 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5351 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5352
5353 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005354
Li RongQing0bcf2612015-12-03 13:29:34 +08005355 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005356 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005357 }
5358
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005359 if (ple_gap) {
5360 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005361 vmx->ple_window = ple_window;
5362 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005363 }
5364
Xiao Guangrongc3707952011-07-12 03:28:04 +08005365 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5366 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005367 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5368
Avi Kivity9581d442010-10-19 16:46:55 +02005369 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5370 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005371 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005372#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005373 rdmsrl(MSR_FS_BASE, a);
5374 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5375 rdmsrl(MSR_GS_BASE, a);
5376 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5377#else
5378 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5379 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5380#endif
5381
Bandan Das2a499e42017-08-03 15:54:41 -04005382 if (cpu_has_vmx_vmfunc())
5383 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5384
Eddie Dong2cc51562007-05-21 07:28:09 +03005385 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5386 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005387 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005388 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005389 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005390
Radim Krčmář74545702015-04-27 15:11:25 +02005391 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5392 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005393
Paolo Bonzini03916db2014-07-24 14:21:57 +02005394 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005395 u32 index = vmx_msr_index[i];
5396 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005397 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005398
5399 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5400 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005401 if (wrmsr_safe(index, data_low, data_high) < 0)
5402 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005403 vmx->guest_msrs[j].index = i;
5404 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005405 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005406 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005407 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005408
Gleb Natapov2961e8762013-11-25 15:37:13 +02005409
5410 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005411
5412 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005413 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005414
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005415 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5416 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5417
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005418 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005419
Wanpeng Lif53cd632014-12-02 19:14:58 +08005420 if (vmx_xsaves_supported())
5421 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5422
Peter Feiner4e595162016-07-07 14:49:58 -07005423 if (enable_pml) {
5424 ASSERT(vmx->pml_pg);
5425 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5426 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5427 }
5428
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005429 return 0;
5430}
5431
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005432static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005433{
5434 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005435 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005436 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005437
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005438 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005439
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005440 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005441 kvm_set_cr8(vcpu, 0);
5442
5443 if (!init_event) {
5444 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5445 MSR_IA32_APICBASE_ENABLE;
5446 if (kvm_vcpu_is_reset_bsp(vcpu))
5447 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5448 apic_base_msr.host_initiated = true;
5449 kvm_set_apic_base(vcpu, &apic_base_msr);
5450 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005451
Avi Kivity2fb92db2011-04-27 19:42:18 +03005452 vmx_segment_cache_clear(vmx);
5453
Avi Kivity5706be02008-08-20 15:07:31 +03005454 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005455 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005456 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005457
5458 seg_setup(VCPU_SREG_DS);
5459 seg_setup(VCPU_SREG_ES);
5460 seg_setup(VCPU_SREG_FS);
5461 seg_setup(VCPU_SREG_GS);
5462 seg_setup(VCPU_SREG_SS);
5463
5464 vmcs_write16(GUEST_TR_SELECTOR, 0);
5465 vmcs_writel(GUEST_TR_BASE, 0);
5466 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5467 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5468
5469 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5470 vmcs_writel(GUEST_LDTR_BASE, 0);
5471 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5472 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5473
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005474 if (!init_event) {
5475 vmcs_write32(GUEST_SYSENTER_CS, 0);
5476 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5477 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5478 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5479 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005480
5481 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005482 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005483
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005484 vmcs_writel(GUEST_GDTR_BASE, 0);
5485 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5486
5487 vmcs_writel(GUEST_IDTR_BASE, 0);
5488 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5489
Anthony Liguori443381a2010-12-06 10:53:38 -06005490 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005491 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005492 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005493
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005494 setup_msrs(vmx);
5495
Avi Kivity6aa8b732006-12-10 02:21:36 -08005496 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5497
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005498 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005499 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005500 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005501 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005502 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005503 vmcs_write32(TPR_THRESHOLD, 0);
5504 }
5505
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005506 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005507
Andrey Smetanind62caab2015-11-10 15:36:33 +03005508 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005509 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5510
Sheng Yang2384d2b2008-01-17 15:14:33 +08005511 if (vmx->vpid != 0)
5512 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5513
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005514 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005515 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005516 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005517 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005518 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005519
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005520 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005521
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005522 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005523}
5524
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005525/*
5526 * In nested virtualization, check if L1 asked to exit on external interrupts.
5527 * For most existing hypervisors, this will always return true.
5528 */
5529static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5530{
5531 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5532 PIN_BASED_EXT_INTR_MASK;
5533}
5534
Bandan Das77b0f5d2014-04-19 18:17:45 -04005535/*
5536 * In nested virtualization, check if L1 has set
5537 * VM_EXIT_ACK_INTR_ON_EXIT
5538 */
5539static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5540{
5541 return get_vmcs12(vcpu)->vm_exit_controls &
5542 VM_EXIT_ACK_INTR_ON_EXIT;
5543}
5544
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005545static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5546{
5547 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5548 PIN_BASED_NMI_EXITING;
5549}
5550
Jan Kiszkac9a79532014-03-07 20:03:15 +01005551static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005552{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005553 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5554 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005555}
5556
Jan Kiszkac9a79532014-03-07 20:03:15 +01005557static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005558{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005559 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005560 enable_irq_window(vcpu);
5561 return;
5562 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005563
Paolo Bonzini47c01522016-12-19 11:44:07 +01005564 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5565 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005566}
5567
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005568static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005569{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005570 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005571 uint32_t intr;
5572 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005573
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005574 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005575
Avi Kivityfa89a812008-09-01 15:57:51 +03005576 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005577 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005578 int inc_eip = 0;
5579 if (vcpu->arch.interrupt.soft)
5580 inc_eip = vcpu->arch.event_exit_inst_len;
5581 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005582 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005583 return;
5584 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005585 intr = irq | INTR_INFO_VALID_MASK;
5586 if (vcpu->arch.interrupt.soft) {
5587 intr |= INTR_TYPE_SOFT_INTR;
5588 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5589 vmx->vcpu.arch.event_exit_inst_len);
5590 } else
5591 intr |= INTR_TYPE_EXT_INTR;
5592 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005593}
5594
Sheng Yangf08864b2008-05-15 18:23:25 +08005595static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5596{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005597 struct vcpu_vmx *vmx = to_vmx(vcpu);
5598
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005599 ++vcpu->stat.nmi_injections;
5600 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005601
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005602 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005603 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005604 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005605 return;
5606 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005607
Sheng Yangf08864b2008-05-15 18:23:25 +08005608 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5609 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005610}
5611
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005612static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5613{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005614 struct vcpu_vmx *vmx = to_vmx(vcpu);
5615 bool masked;
5616
5617 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005618 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005619 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5620 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5621 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005622}
5623
5624static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5625{
5626 struct vcpu_vmx *vmx = to_vmx(vcpu);
5627
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005628 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005629 if (masked)
5630 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5631 GUEST_INTR_STATE_NMI);
5632 else
5633 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5634 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005635}
5636
Jan Kiszka2505dc92013-04-14 12:12:47 +02005637static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5638{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005639 if (to_vmx(vcpu)->nested.nested_run_pending)
5640 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005641
Jan Kiszka2505dc92013-04-14 12:12:47 +02005642 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5643 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5644 | GUEST_INTR_STATE_NMI));
5645}
5646
Gleb Natapov78646122009-03-23 12:12:11 +02005647static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5648{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005649 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5650 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005651 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5652 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005653}
5654
Izik Eiduscbc94022007-10-25 00:29:55 +02005655static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5656{
5657 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005658
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005659 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5660 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005661 if (ret)
5662 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005663 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005664 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005665}
5666
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005667static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005668{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005669 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005670 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005671 /*
5672 * Update instruction length as we may reinject the exception
5673 * from user space while in guest debugging mode.
5674 */
5675 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5676 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005677 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005678 return false;
5679 /* fall through */
5680 case DB_VECTOR:
5681 if (vcpu->guest_debug &
5682 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5683 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005684 /* fall through */
5685 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005686 case OF_VECTOR:
5687 case BR_VECTOR:
5688 case UD_VECTOR:
5689 case DF_VECTOR:
5690 case SS_VECTOR:
5691 case GP_VECTOR:
5692 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005693 return true;
5694 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005695 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005696 return false;
5697}
5698
5699static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5700 int vec, u32 err_code)
5701{
5702 /*
5703 * Instruction with address size override prefix opcode 0x67
5704 * Cause the #SS fault with 0 error code in VM86 mode.
5705 */
5706 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5707 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5708 if (vcpu->arch.halt_request) {
5709 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005710 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005711 }
5712 return 1;
5713 }
5714 return 0;
5715 }
5716
5717 /*
5718 * Forward all other exceptions that are valid in real mode.
5719 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5720 * the required debugging infrastructure rework.
5721 */
5722 kvm_queue_exception(vcpu, vec);
5723 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005724}
5725
Andi Kleena0861c02009-06-08 17:37:09 +08005726/*
5727 * Trigger machine check on the host. We assume all the MSRs are already set up
5728 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5729 * We pass a fake environment to the machine check handler because we want
5730 * the guest to be always treated like user space, no matter what context
5731 * it used internally.
5732 */
5733static void kvm_machine_check(void)
5734{
5735#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5736 struct pt_regs regs = {
5737 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5738 .flags = X86_EFLAGS_IF,
5739 };
5740
5741 do_machine_check(&regs, 0);
5742#endif
5743}
5744
Avi Kivity851ba692009-08-24 11:10:17 +03005745static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005746{
5747 /* already handled by vcpu_run */
5748 return 1;
5749}
5750
Avi Kivity851ba692009-08-24 11:10:17 +03005751static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752{
Avi Kivity1155f762007-11-22 11:30:47 +02005753 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005754 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005755 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005756 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005757 u32 vect_info;
5758 enum emulation_result er;
5759
Avi Kivity1155f762007-11-22 11:30:47 +02005760 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005761 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005762
Andi Kleena0861c02009-06-08 17:37:09 +08005763 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005764 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005765
Jim Mattsonef85b672016-12-12 11:01:37 -08005766 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005767 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005768
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005769 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005770 if (is_guest_mode(vcpu)) {
5771 kvm_queue_exception(vcpu, UD_VECTOR);
5772 return 1;
5773 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005774 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005775 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005776 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005777 return 1;
5778 }
5779
Avi Kivity6aa8b732006-12-10 02:21:36 -08005780 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005781 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005782 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005783
5784 /*
5785 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5786 * MMIO, it is better to report an internal error.
5787 * See the comments in vmx_handle_exit.
5788 */
5789 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5790 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5791 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5792 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005793 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005794 vcpu->run->internal.data[0] = vect_info;
5795 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005796 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005797 return 0;
5798 }
5799
Avi Kivity6aa8b732006-12-10 02:21:36 -08005800 if (is_page_fault(intr_info)) {
5801 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005802 /* EPT won't cause page fault directly */
5803 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
5804 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0,
5805 true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005806 }
5807
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005808 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005809
5810 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5811 return handle_rmode_exception(vcpu, ex_no, error_code);
5812
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005813 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005814 case AC_VECTOR:
5815 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5816 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005817 case DB_VECTOR:
5818 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5819 if (!(vcpu->guest_debug &
5820 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005821 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005822 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005823 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5824 skip_emulated_instruction(vcpu);
5825
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005826 kvm_queue_exception(vcpu, DB_VECTOR);
5827 return 1;
5828 }
5829 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5830 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5831 /* fall through */
5832 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005833 /*
5834 * Update instruction length as we may reinject #BP from
5835 * user space while in guest debugging mode. Reading it for
5836 * #DB as well causes no harm, it is not used in that case.
5837 */
5838 vmx->vcpu.arch.event_exit_inst_len =
5839 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005840 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005841 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005842 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5843 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005844 break;
5845 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005846 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5847 kvm_run->ex.exception = ex_no;
5848 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005849 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005850 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005851 return 0;
5852}
5853
Avi Kivity851ba692009-08-24 11:10:17 +03005854static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005855{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005856 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857 return 1;
5858}
5859
Avi Kivity851ba692009-08-24 11:10:17 +03005860static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005861{
Avi Kivity851ba692009-08-24 11:10:17 +03005862 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005863 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005864 return 0;
5865}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005866
Avi Kivity851ba692009-08-24 11:10:17 +03005867static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005868{
He, Qingbfdaab02007-09-12 14:18:28 +08005869 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005870 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005871 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005872
He, Qingbfdaab02007-09-12 14:18:28 +08005873 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005874 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005875 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005876
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005877 ++vcpu->stat.io_exits;
5878
5879 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005880 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005881
5882 port = exit_qualification >> 16;
5883 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005884
Kyle Huey6affcbe2016-11-29 12:40:40 -08005885 ret = kvm_skip_emulated_instruction(vcpu);
5886
5887 /*
5888 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5889 * KVM_EXIT_DEBUG here.
5890 */
5891 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005892}
5893
Ingo Molnar102d8322007-02-19 14:37:47 +02005894static void
5895vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5896{
5897 /*
5898 * Patch in the VMCALL instruction:
5899 */
5900 hypercall[0] = 0x0f;
5901 hypercall[1] = 0x01;
5902 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005903}
5904
Guo Chao0fa06072012-06-28 15:16:19 +08005905/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005906static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5907{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005908 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005909 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5910 unsigned long orig_val = val;
5911
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005912 /*
5913 * We get here when L2 changed cr0 in a way that did not change
5914 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005915 * but did change L0 shadowed bits. So we first calculate the
5916 * effective cr0 value that L1 would like to write into the
5917 * hardware. It consists of the L2-owned bits from the new
5918 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005919 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005920 val = (val & ~vmcs12->cr0_guest_host_mask) |
5921 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5922
David Matlack38991522016-11-29 18:14:08 -08005923 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005924 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005925
5926 if (kvm_set_cr0(vcpu, val))
5927 return 1;
5928 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005929 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005930 } else {
5931 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005932 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005933 return 1;
David Matlack38991522016-11-29 18:14:08 -08005934
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005935 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005936 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005937}
5938
5939static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5940{
5941 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005942 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5943 unsigned long orig_val = val;
5944
5945 /* analogously to handle_set_cr0 */
5946 val = (val & ~vmcs12->cr4_guest_host_mask) |
5947 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5948 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005949 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005950 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005951 return 0;
5952 } else
5953 return kvm_set_cr4(vcpu, val);
5954}
5955
Avi Kivity851ba692009-08-24 11:10:17 +03005956static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005957{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005958 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005959 int cr;
5960 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005961 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005962 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005963
He, Qingbfdaab02007-09-12 14:18:28 +08005964 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005965 cr = exit_qualification & 15;
5966 reg = (exit_qualification >> 8) & 15;
5967 switch ((exit_qualification >> 4) & 3) {
5968 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005969 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005970 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005971 switch (cr) {
5972 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005973 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005974 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005975 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005976 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005977 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005978 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005979 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005980 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005981 case 8: {
5982 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005983 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005984 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005985 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005986 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005987 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005988 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005989 return ret;
5990 /*
5991 * TODO: we might be squashing a
5992 * KVM_GUESTDBG_SINGLESTEP-triggered
5993 * KVM_EXIT_DEBUG here.
5994 */
Avi Kivity851ba692009-08-24 11:10:17 +03005995 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005996 return 0;
5997 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005998 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005999 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006000 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006001 WARN_ONCE(1, "Guest should always own CR0.TS");
6002 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006003 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006004 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006005 case 1: /*mov from cr*/
6006 switch (cr) {
6007 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006008 val = kvm_read_cr3(vcpu);
6009 kvm_register_write(vcpu, reg, val);
6010 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006011 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006012 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006013 val = kvm_get_cr8(vcpu);
6014 kvm_register_write(vcpu, reg, val);
6015 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006016 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006017 }
6018 break;
6019 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006020 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006021 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006022 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006023
Kyle Huey6affcbe2016-11-29 12:40:40 -08006024 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006025 default:
6026 break;
6027 }
Avi Kivity851ba692009-08-24 11:10:17 +03006028 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006029 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006030 (int)(exit_qualification >> 4) & 3, cr);
6031 return 0;
6032}
6033
Avi Kivity851ba692009-08-24 11:10:17 +03006034static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006035{
He, Qingbfdaab02007-09-12 14:18:28 +08006036 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006037 int dr, dr7, reg;
6038
6039 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6040 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6041
6042 /* First, if DR does not exist, trigger UD */
6043 if (!kvm_require_dr(vcpu, dr))
6044 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006045
Jan Kiszkaf2483412010-01-20 18:20:20 +01006046 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006047 if (!kvm_require_cpl(vcpu, 0))
6048 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006049 dr7 = vmcs_readl(GUEST_DR7);
6050 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006051 /*
6052 * As the vm-exit takes precedence over the debug trap, we
6053 * need to emulate the latter, either for the host or the
6054 * guest debugging itself.
6055 */
6056 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006057 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006058 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006059 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006060 vcpu->run->debug.arch.exception = DB_VECTOR;
6061 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006062 return 0;
6063 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006064 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006065 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006066 kvm_queue_exception(vcpu, DB_VECTOR);
6067 return 1;
6068 }
6069 }
6070
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006071 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006072 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6073 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006074
6075 /*
6076 * No more DR vmexits; force a reload of the debug registers
6077 * and reenter on this instruction. The next vmexit will
6078 * retrieve the full state of the debug registers.
6079 */
6080 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6081 return 1;
6082 }
6083
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006084 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6085 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006086 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006087
6088 if (kvm_get_dr(vcpu, dr, &val))
6089 return 1;
6090 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006091 } else
Nadav Amit57773922014-06-18 17:19:23 +03006092 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006093 return 1;
6094
Kyle Huey6affcbe2016-11-29 12:40:40 -08006095 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006096}
6097
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006098static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6099{
6100 return vcpu->arch.dr6;
6101}
6102
6103static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6104{
6105}
6106
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006107static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6108{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006109 get_debugreg(vcpu->arch.db[0], 0);
6110 get_debugreg(vcpu->arch.db[1], 1);
6111 get_debugreg(vcpu->arch.db[2], 2);
6112 get_debugreg(vcpu->arch.db[3], 3);
6113 get_debugreg(vcpu->arch.dr6, 6);
6114 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6115
6116 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006117 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006118}
6119
Gleb Natapov020df072010-04-13 10:05:23 +03006120static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6121{
6122 vmcs_writel(GUEST_DR7, val);
6123}
6124
Avi Kivity851ba692009-08-24 11:10:17 +03006125static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006126{
Kyle Huey6a908b62016-11-29 12:40:37 -08006127 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006128}
6129
Avi Kivity851ba692009-08-24 11:10:17 +03006130static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006131{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006132 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006133 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006134
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006135 msr_info.index = ecx;
6136 msr_info.host_initiated = false;
6137 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006138 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006139 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006140 return 1;
6141 }
6142
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006143 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006144
Avi Kivity6aa8b732006-12-10 02:21:36 -08006145 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006146 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6147 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006148 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006149}
6150
Avi Kivity851ba692009-08-24 11:10:17 +03006151static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006152{
Will Auld8fe8ab42012-11-29 12:42:12 -08006153 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006154 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6155 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6156 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006157
Will Auld8fe8ab42012-11-29 12:42:12 -08006158 msr.data = data;
6159 msr.index = ecx;
6160 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006161 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006162 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006163 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006164 return 1;
6165 }
6166
Avi Kivity59200272010-01-25 19:47:02 +02006167 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006168 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006169}
6170
Avi Kivity851ba692009-08-24 11:10:17 +03006171static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006172{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006173 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006174 return 1;
6175}
6176
Avi Kivity851ba692009-08-24 11:10:17 +03006177static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006178{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006179 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6180 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006181
Avi Kivity3842d132010-07-27 12:30:24 +03006182 kvm_make_request(KVM_REQ_EVENT, vcpu);
6183
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006184 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006185 return 1;
6186}
6187
Avi Kivity851ba692009-08-24 11:10:17 +03006188static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006189{
Avi Kivityd3bef152007-06-05 15:53:05 +03006190 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006191}
6192
Avi Kivity851ba692009-08-24 11:10:17 +03006193static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006194{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006195 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006196}
6197
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006198static int handle_invd(struct kvm_vcpu *vcpu)
6199{
Andre Przywara51d8b662010-12-21 11:12:02 +01006200 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006201}
6202
Avi Kivity851ba692009-08-24 11:10:17 +03006203static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006204{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006205 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006206
6207 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006208 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006209}
6210
Avi Kivityfee84b02011-11-10 14:57:25 +02006211static int handle_rdpmc(struct kvm_vcpu *vcpu)
6212{
6213 int err;
6214
6215 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006216 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006217}
6218
Avi Kivity851ba692009-08-24 11:10:17 +03006219static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006220{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006221 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006222}
6223
Dexuan Cui2acf9232010-06-10 11:27:12 +08006224static int handle_xsetbv(struct kvm_vcpu *vcpu)
6225{
6226 u64 new_bv = kvm_read_edx_eax(vcpu);
6227 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6228
6229 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006230 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006231 return 1;
6232}
6233
Wanpeng Lif53cd632014-12-02 19:14:58 +08006234static int handle_xsaves(struct kvm_vcpu *vcpu)
6235{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006236 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006237 WARN(1, "this should never happen\n");
6238 return 1;
6239}
6240
6241static int handle_xrstors(struct kvm_vcpu *vcpu)
6242{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006243 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006244 WARN(1, "this should never happen\n");
6245 return 1;
6246}
6247
Avi Kivity851ba692009-08-24 11:10:17 +03006248static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006249{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006250 if (likely(fasteoi)) {
6251 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6252 int access_type, offset;
6253
6254 access_type = exit_qualification & APIC_ACCESS_TYPE;
6255 offset = exit_qualification & APIC_ACCESS_OFFSET;
6256 /*
6257 * Sane guest uses MOV to write EOI, with written value
6258 * not cared. So make a short-circuit here by avoiding
6259 * heavy instruction emulation.
6260 */
6261 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6262 (offset == APIC_EOI)) {
6263 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006264 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006265 }
6266 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006267 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006268}
6269
Yang Zhangc7c9c562013-01-25 10:18:51 +08006270static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6271{
6272 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6273 int vector = exit_qualification & 0xff;
6274
6275 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6276 kvm_apic_set_eoi_accelerated(vcpu, vector);
6277 return 1;
6278}
6279
Yang Zhang83d4c282013-01-25 10:18:49 +08006280static int handle_apic_write(struct kvm_vcpu *vcpu)
6281{
6282 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6283 u32 offset = exit_qualification & 0xfff;
6284
6285 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6286 kvm_apic_write_nodecode(vcpu, offset);
6287 return 1;
6288}
6289
Avi Kivity851ba692009-08-24 11:10:17 +03006290static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006291{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006292 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006293 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006294 bool has_error_code = false;
6295 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006296 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006297 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006298
6299 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006300 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006301 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006302
6303 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6304
6305 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006306 if (reason == TASK_SWITCH_GATE && idt_v) {
6307 switch (type) {
6308 case INTR_TYPE_NMI_INTR:
6309 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006310 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006311 break;
6312 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006313 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006314 kvm_clear_interrupt_queue(vcpu);
6315 break;
6316 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006317 if (vmx->idt_vectoring_info &
6318 VECTORING_INFO_DELIVER_CODE_MASK) {
6319 has_error_code = true;
6320 error_code =
6321 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6322 }
6323 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006324 case INTR_TYPE_SOFT_EXCEPTION:
6325 kvm_clear_exception_queue(vcpu);
6326 break;
6327 default:
6328 break;
6329 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006330 }
Izik Eidus37817f22008-03-24 23:14:53 +02006331 tss_selector = exit_qualification;
6332
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006333 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6334 type != INTR_TYPE_EXT_INTR &&
6335 type != INTR_TYPE_NMI_INTR))
6336 skip_emulated_instruction(vcpu);
6337
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006338 if (kvm_task_switch(vcpu, tss_selector,
6339 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6340 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006341 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6342 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6343 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006344 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006345 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006346
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006347 /*
6348 * TODO: What about debug traps on tss switch?
6349 * Are we supposed to inject them and update dr6?
6350 */
6351
6352 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006353}
6354
Avi Kivity851ba692009-08-24 11:10:17 +03006355static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006356{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006357 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006358 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006359 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006360
Sheng Yangf9c617f2009-03-25 10:08:52 +08006361 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006362
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006363 /*
6364 * EPT violation happened while executing iret from NMI,
6365 * "blocked by NMI" bit has to be set before next VM entry.
6366 * There are errata that may cause this bit to not be set:
6367 * AAK134, BY25.
6368 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006369 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006370 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006371 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6372
Sheng Yang14394422008-04-28 12:24:45 +08006373 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006374 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006375
Junaid Shahid27959a42016-12-06 16:46:10 -08006376 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006377 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006378 ? PFERR_USER_MASK : 0;
6379 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006380 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006381 ? PFERR_WRITE_MASK : 0;
6382 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006383 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006384 ? PFERR_FETCH_MASK : 0;
6385 /* ept page table entry is present? */
6386 error_code |= (exit_qualification &
6387 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6388 EPT_VIOLATION_EXECUTABLE))
6389 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006390
Paolo Bonzinieebed242016-11-28 14:39:58 +01006391 error_code |= (exit_qualification & 0x100) != 0 ?
6392 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
6393
Yang Zhang25d92082013-08-06 12:00:32 +03006394 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006395 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006396}
6397
Avi Kivity851ba692009-08-24 11:10:17 +03006398static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006399{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006400 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006401 gpa_t gpa;
6402
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006403 /*
6404 * A nested guest cannot optimize MMIO vmexits, because we have an
6405 * nGPA here instead of the required GPA.
6406 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006407 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006408 if (!is_guest_mode(vcpu) &&
6409 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006410 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006411 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006412 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006413
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006414 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6415 if (ret >= 0)
6416 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006417
6418 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006419 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006420
Avi Kivity851ba692009-08-24 11:10:17 +03006421 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6422 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006423
6424 return 0;
6425}
6426
Avi Kivity851ba692009-08-24 11:10:17 +03006427static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006428{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006429 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6430 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006431 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006432 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006433
6434 return 1;
6435}
6436
Mohammed Gamal80ced182009-09-01 12:48:18 +02006437static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006438{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006439 struct vcpu_vmx *vmx = to_vmx(vcpu);
6440 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006441 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006442 u32 cpu_exec_ctrl;
6443 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006444 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006445
6446 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6447 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006448
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006449 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006450 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006451 return handle_interrupt_window(&vmx->vcpu);
6452
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006453 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006454 return 1;
6455
Gleb Natapov991eebf2013-04-11 12:10:51 +03006456 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006457
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006458 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006459 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006460 ret = 0;
6461 goto out;
6462 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006463
Avi Kivityde5f70e2012-06-12 20:22:28 +03006464 if (err != EMULATE_DONE) {
6465 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6466 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6467 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006468 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006469 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006470
Gleb Natapov8d76c492013-05-08 18:38:44 +03006471 if (vcpu->arch.halt_request) {
6472 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006473 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006474 goto out;
6475 }
6476
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006477 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006478 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006479 if (need_resched())
6480 schedule();
6481 }
6482
Mohammed Gamal80ced182009-09-01 12:48:18 +02006483out:
6484 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006485}
6486
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006487static int __grow_ple_window(int val)
6488{
6489 if (ple_window_grow < 1)
6490 return ple_window;
6491
6492 val = min(val, ple_window_actual_max);
6493
6494 if (ple_window_grow < ple_window)
6495 val *= ple_window_grow;
6496 else
6497 val += ple_window_grow;
6498
6499 return val;
6500}
6501
6502static int __shrink_ple_window(int val, int modifier, int minimum)
6503{
6504 if (modifier < 1)
6505 return ple_window;
6506
6507 if (modifier < ple_window)
6508 val /= modifier;
6509 else
6510 val -= modifier;
6511
6512 return max(val, minimum);
6513}
6514
6515static void grow_ple_window(struct kvm_vcpu *vcpu)
6516{
6517 struct vcpu_vmx *vmx = to_vmx(vcpu);
6518 int old = vmx->ple_window;
6519
6520 vmx->ple_window = __grow_ple_window(old);
6521
6522 if (vmx->ple_window != old)
6523 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006524
6525 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006526}
6527
6528static void shrink_ple_window(struct kvm_vcpu *vcpu)
6529{
6530 struct vcpu_vmx *vmx = to_vmx(vcpu);
6531 int old = vmx->ple_window;
6532
6533 vmx->ple_window = __shrink_ple_window(old,
6534 ple_window_shrink, ple_window);
6535
6536 if (vmx->ple_window != old)
6537 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006538
6539 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006540}
6541
6542/*
6543 * ple_window_actual_max is computed to be one grow_ple_window() below
6544 * ple_window_max. (See __grow_ple_window for the reason.)
6545 * This prevents overflows, because ple_window_max is int.
6546 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6547 * this process.
6548 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6549 */
6550static void update_ple_window_actual_max(void)
6551{
6552 ple_window_actual_max =
6553 __shrink_ple_window(max(ple_window_max, ple_window),
6554 ple_window_grow, INT_MIN);
6555}
6556
Feng Wubf9f6ac2015-09-18 22:29:55 +08006557/*
6558 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6559 */
6560static void wakeup_handler(void)
6561{
6562 struct kvm_vcpu *vcpu;
6563 int cpu = smp_processor_id();
6564
6565 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6566 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6567 blocked_vcpu_list) {
6568 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6569
6570 if (pi_test_on(pi_desc) == 1)
6571 kvm_vcpu_kick(vcpu);
6572 }
6573 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6574}
6575
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006576void vmx_enable_tdp(void)
6577{
6578 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6579 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6580 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6581 0ull, VMX_EPT_EXECUTABLE_MASK,
6582 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Peter Feiner995f00a2017-06-30 17:26:32 -07006583 VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006584
6585 ept_set_mmio_spte_mask();
6586 kvm_enable_tdp();
6587}
6588
Tiejun Chenf2c76482014-10-28 10:14:47 +08006589static __init int hardware_setup(void)
6590{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006591 int r = -ENOMEM, i, msr;
6592
6593 rdmsrl_safe(MSR_EFER, &host_efer);
6594
6595 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6596 kvm_define_shared_msr(i, vmx_msr_index[i]);
6597
Radim Krčmář23611332016-09-29 22:41:33 +02006598 for (i = 0; i < VMX_BITMAP_NR; i++) {
6599 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6600 if (!vmx_bitmap[i])
6601 goto out;
6602 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006603
6604 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006605 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6606 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6607
6608 /*
6609 * Allow direct access to the PC debug port (it is often used for I/O
6610 * delays, but the vmexits simply slow things down).
6611 */
6612 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6613 clear_bit(0x80, vmx_io_bitmap_a);
6614
6615 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6616
6617 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6618 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6619
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006620 if (setup_vmcs_config(&vmcs_config) < 0) {
6621 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006622 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006623 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006624
6625 if (boot_cpu_has(X86_FEATURE_NX))
6626 kvm_enable_efer_bits(EFER_NX);
6627
Wanpeng Li08d839c2017-03-23 05:30:08 -07006628 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6629 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006630 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006631
Tiejun Chenf2c76482014-10-28 10:14:47 +08006632 if (!cpu_has_vmx_shadow_vmcs())
6633 enable_shadow_vmcs = 0;
6634 if (enable_shadow_vmcs)
6635 init_vmcs_shadow_fields();
6636
6637 if (!cpu_has_vmx_ept() ||
6638 !cpu_has_vmx_ept_4levels()) {
6639 enable_ept = 0;
6640 enable_unrestricted_guest = 0;
6641 enable_ept_ad_bits = 0;
6642 }
6643
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006644 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006645 enable_ept_ad_bits = 0;
6646
6647 if (!cpu_has_vmx_unrestricted_guest())
6648 enable_unrestricted_guest = 0;
6649
Paolo Bonziniad15a292015-01-30 16:18:49 +01006650 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006651 flexpriority_enabled = 0;
6652
Paolo Bonziniad15a292015-01-30 16:18:49 +01006653 /*
6654 * set_apic_access_page_addr() is used to reload apic access
6655 * page upon invalidation. No need to do anything if not
6656 * using the APIC_ACCESS_ADDR VMCS field.
6657 */
6658 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006659 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006660
6661 if (!cpu_has_vmx_tpr_shadow())
6662 kvm_x86_ops->update_cr8_intercept = NULL;
6663
6664 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6665 kvm_disable_largepages();
6666
6667 if (!cpu_has_vmx_ple())
6668 ple_gap = 0;
6669
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006670 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006671 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006672 kvm_x86_ops->sync_pir_to_irr = NULL;
6673 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006674
Haozhong Zhang64903d62015-10-20 15:39:09 +08006675 if (cpu_has_vmx_tsc_scaling()) {
6676 kvm_has_tsc_control = true;
6677 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6678 kvm_tsc_scaling_ratio_frac_bits = 48;
6679 }
6680
Tiejun Chenbaa03522014-12-23 16:21:11 +08006681 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6682 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6683 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6684 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6685 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6686 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006687
Wanpeng Lic63e4562016-09-23 19:17:16 +08006688 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6689 vmx_msr_bitmap_legacy, PAGE_SIZE);
6690 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6691 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006692 memcpy(vmx_msr_bitmap_legacy_x2apic,
6693 vmx_msr_bitmap_legacy, PAGE_SIZE);
6694 memcpy(vmx_msr_bitmap_longmode_x2apic,
6695 vmx_msr_bitmap_longmode, PAGE_SIZE);
6696
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006697 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6698
Radim Krčmář40d83382016-09-29 22:41:31 +02006699 for (msr = 0x800; msr <= 0x8ff; msr++) {
6700 if (msr == 0x839 /* TMCCT */)
6701 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006702 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006703 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006704
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006705 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006706 * TPR reads and writes can be virtualized even if virtual interrupt
6707 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006708 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006709 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6710 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6711
Roman Kagan3ce424e2016-05-18 17:48:20 +03006712 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006713 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006714 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006715 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006716
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006717 if (enable_ept)
6718 vmx_enable_tdp();
6719 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006720 kvm_disable_tdp();
6721
6722 update_ple_window_actual_max();
6723
Kai Huang843e4332015-01-28 10:54:28 +08006724 /*
6725 * Only enable PML when hardware supports PML feature, and both EPT
6726 * and EPT A/D bit features are enabled -- PML depends on them to work.
6727 */
6728 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6729 enable_pml = 0;
6730
6731 if (!enable_pml) {
6732 kvm_x86_ops->slot_enable_log_dirty = NULL;
6733 kvm_x86_ops->slot_disable_log_dirty = NULL;
6734 kvm_x86_ops->flush_log_dirty = NULL;
6735 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6736 }
6737
Yunhong Jiang64672c92016-06-13 14:19:59 -07006738 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6739 u64 vmx_msr;
6740
6741 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6742 cpu_preemption_timer_multi =
6743 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6744 } else {
6745 kvm_x86_ops->set_hv_timer = NULL;
6746 kvm_x86_ops->cancel_hv_timer = NULL;
6747 }
6748
Feng Wubf9f6ac2015-09-18 22:29:55 +08006749 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6750
Ashok Rajc45dcc72016-06-22 14:59:56 +08006751 kvm_mce_cap_supported |= MCG_LMCE_P;
6752
Tiejun Chenf2c76482014-10-28 10:14:47 +08006753 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006754
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006755out:
Radim Krčmář23611332016-09-29 22:41:33 +02006756 for (i = 0; i < VMX_BITMAP_NR; i++)
6757 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006758
6759 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006760}
6761
6762static __exit void hardware_unsetup(void)
6763{
Radim Krčmář23611332016-09-29 22:41:33 +02006764 int i;
6765
6766 for (i = 0; i < VMX_BITMAP_NR; i++)
6767 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006768
Tiejun Chenf2c76482014-10-28 10:14:47 +08006769 free_kvm_area();
6770}
6771
Avi Kivity6aa8b732006-12-10 02:21:36 -08006772/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006773 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6774 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6775 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006776static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006777{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006778 if (ple_gap)
6779 grow_ple_window(vcpu);
6780
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006781 /*
6782 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6783 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6784 * never set PAUSE_EXITING and just set PLE if supported,
6785 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6786 */
6787 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006788 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006789}
6790
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006791static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006792{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006793 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006794}
6795
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006796static int handle_mwait(struct kvm_vcpu *vcpu)
6797{
6798 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6799 return handle_nop(vcpu);
6800}
6801
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006802static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6803{
6804 return 1;
6805}
6806
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006807static int handle_monitor(struct kvm_vcpu *vcpu)
6808{
6809 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6810 return handle_nop(vcpu);
6811}
6812
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006813/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006814 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6815 * We could reuse a single VMCS for all the L2 guests, but we also want the
6816 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6817 * allows keeping them loaded on the processor, and in the future will allow
6818 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6819 * every entry if they never change.
6820 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6821 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6822 *
6823 * The following functions allocate and free a vmcs02 in this pool.
6824 */
6825
6826/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6827static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6828{
6829 struct vmcs02_list *item;
6830 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6831 if (item->vmptr == vmx->nested.current_vmptr) {
6832 list_move(&item->list, &vmx->nested.vmcs02_pool);
6833 return &item->vmcs02;
6834 }
6835
6836 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6837 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006838 item = list_last_entry(&vmx->nested.vmcs02_pool,
6839 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006840 item->vmptr = vmx->nested.current_vmptr;
6841 list_move(&item->list, &vmx->nested.vmcs02_pool);
6842 return &item->vmcs02;
6843 }
6844
6845 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006846 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006847 if (!item)
6848 return NULL;
6849 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006850 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006851 if (!item->vmcs02.vmcs) {
6852 kfree(item);
6853 return NULL;
6854 }
6855 loaded_vmcs_init(&item->vmcs02);
6856 item->vmptr = vmx->nested.current_vmptr;
6857 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6858 vmx->nested.vmcs02_num++;
6859 return &item->vmcs02;
6860}
6861
6862/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6863static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6864{
6865 struct vmcs02_list *item;
6866 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6867 if (item->vmptr == vmptr) {
6868 free_loaded_vmcs(&item->vmcs02);
6869 list_del(&item->list);
6870 kfree(item);
6871 vmx->nested.vmcs02_num--;
6872 return;
6873 }
6874}
6875
6876/*
6877 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006878 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6879 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006880 */
6881static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6882{
6883 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006884
6885 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006886 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006887 /*
6888 * Something will leak if the above WARN triggers. Better than
6889 * a use-after-free.
6890 */
6891 if (vmx->loaded_vmcs == &item->vmcs02)
6892 continue;
6893
6894 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006895 list_del(&item->list);
6896 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006897 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006898 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006899}
6900
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006901/*
6902 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6903 * set the success or error code of an emulated VMX instruction, as specified
6904 * by Vol 2B, VMX Instruction Reference, "Conventions".
6905 */
6906static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6907{
6908 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6909 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6910 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6911}
6912
6913static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6914{
6915 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6916 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6917 X86_EFLAGS_SF | X86_EFLAGS_OF))
6918 | X86_EFLAGS_CF);
6919}
6920
Abel Gordon145c28d2013-04-18 14:36:55 +03006921static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006922 u32 vm_instruction_error)
6923{
6924 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6925 /*
6926 * failValid writes the error number to the current VMCS, which
6927 * can't be done there isn't a current VMCS.
6928 */
6929 nested_vmx_failInvalid(vcpu);
6930 return;
6931 }
6932 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6933 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6934 X86_EFLAGS_SF | X86_EFLAGS_OF))
6935 | X86_EFLAGS_ZF);
6936 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6937 /*
6938 * We don't need to force a shadow sync because
6939 * VM_INSTRUCTION_ERROR is not shadowed
6940 */
6941}
Abel Gordon145c28d2013-04-18 14:36:55 +03006942
Wincy Vanff651cb2014-12-11 08:52:58 +03006943static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6944{
6945 /* TODO: not to reset guest simply here. */
6946 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02006947 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03006948}
6949
Jan Kiszkaf4124502014-03-07 20:03:13 +01006950static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6951{
6952 struct vcpu_vmx *vmx =
6953 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6954
6955 vmx->nested.preemption_timer_expired = true;
6956 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6957 kvm_vcpu_kick(&vmx->vcpu);
6958
6959 return HRTIMER_NORESTART;
6960}
6961
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006962/*
Bandan Das19677e32014-05-06 02:19:15 -04006963 * Decode the memory-address operand of a vmx instruction, as recorded on an
6964 * exit caused by such an instruction (run by a guest hypervisor).
6965 * On success, returns 0. When the operand is invalid, returns 1 and throws
6966 * #UD or #GP.
6967 */
6968static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6969 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006970 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006971{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006972 gva_t off;
6973 bool exn;
6974 struct kvm_segment s;
6975
Bandan Das19677e32014-05-06 02:19:15 -04006976 /*
6977 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6978 * Execution", on an exit, vmx_instruction_info holds most of the
6979 * addressing components of the operand. Only the displacement part
6980 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6981 * For how an actual address is calculated from all these components,
6982 * refer to Vol. 1, "Operand Addressing".
6983 */
6984 int scaling = vmx_instruction_info & 3;
6985 int addr_size = (vmx_instruction_info >> 7) & 7;
6986 bool is_reg = vmx_instruction_info & (1u << 10);
6987 int seg_reg = (vmx_instruction_info >> 15) & 7;
6988 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6989 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6990 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6991 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6992
6993 if (is_reg) {
6994 kvm_queue_exception(vcpu, UD_VECTOR);
6995 return 1;
6996 }
6997
6998 /* Addr = segment_base + offset */
6999 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007000 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007001 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007002 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007003 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007004 off += kvm_register_read(vcpu, index_reg)<<scaling;
7005 vmx_get_segment(vcpu, &s, seg_reg);
7006 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007007
7008 if (addr_size == 1) /* 32 bit */
7009 *ret &= 0xffffffff;
7010
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007011 /* Checks for #GP/#SS exceptions. */
7012 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007013 if (is_long_mode(vcpu)) {
7014 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7015 * non-canonical form. This is the only check on the memory
7016 * destination for long mode!
7017 */
7018 exn = is_noncanonical_address(*ret);
7019 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007020 /* Protected mode: apply checks for segment validity in the
7021 * following order:
7022 * - segment type check (#GP(0) may be thrown)
7023 * - usability check (#GP(0)/#SS(0))
7024 * - limit check (#GP(0)/#SS(0))
7025 */
7026 if (wr)
7027 /* #GP(0) if the destination operand is located in a
7028 * read-only data segment or any code segment.
7029 */
7030 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7031 else
7032 /* #GP(0) if the source operand is located in an
7033 * execute-only code segment
7034 */
7035 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007036 if (exn) {
7037 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7038 return 1;
7039 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007040 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7041 */
7042 exn = (s.unusable != 0);
7043 /* Protected mode: #GP(0)/#SS(0) if the memory
7044 * operand is outside the segment limit.
7045 */
7046 exn = exn || (off + sizeof(u64) > s.limit);
7047 }
7048 if (exn) {
7049 kvm_queue_exception_e(vcpu,
7050 seg_reg == VCPU_SREG_SS ?
7051 SS_VECTOR : GP_VECTOR,
7052 0);
7053 return 1;
7054 }
7055
Bandan Das19677e32014-05-06 02:19:15 -04007056 return 0;
7057}
7058
Radim Krčmářcbf71272017-05-19 15:48:51 +02007059static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007060{
7061 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007062 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007063
7064 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007065 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007066 return 1;
7067
Radim Krčmářcbf71272017-05-19 15:48:51 +02007068 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7069 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007070 kvm_inject_page_fault(vcpu, &e);
7071 return 1;
7072 }
7073
Bandan Das3573e222014-05-06 02:19:16 -04007074 return 0;
7075}
7076
Jim Mattsone29acc52016-11-30 12:03:43 -08007077static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7078{
7079 struct vcpu_vmx *vmx = to_vmx(vcpu);
7080 struct vmcs *shadow_vmcs;
7081
7082 if (cpu_has_vmx_msr_bitmap()) {
7083 vmx->nested.msr_bitmap =
7084 (unsigned long *)__get_free_page(GFP_KERNEL);
7085 if (!vmx->nested.msr_bitmap)
7086 goto out_msr_bitmap;
7087 }
7088
7089 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7090 if (!vmx->nested.cached_vmcs12)
7091 goto out_cached_vmcs12;
7092
7093 if (enable_shadow_vmcs) {
7094 shadow_vmcs = alloc_vmcs();
7095 if (!shadow_vmcs)
7096 goto out_shadow_vmcs;
7097 /* mark vmcs as shadow */
7098 shadow_vmcs->revision_id |= (1u << 31);
7099 /* init shadow vmcs */
7100 vmcs_clear(shadow_vmcs);
7101 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7102 }
7103
7104 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7105 vmx->nested.vmcs02_num = 0;
7106
7107 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7108 HRTIMER_MODE_REL_PINNED);
7109 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7110
7111 vmx->nested.vmxon = true;
7112 return 0;
7113
7114out_shadow_vmcs:
7115 kfree(vmx->nested.cached_vmcs12);
7116
7117out_cached_vmcs12:
7118 free_page((unsigned long)vmx->nested.msr_bitmap);
7119
7120out_msr_bitmap:
7121 return -ENOMEM;
7122}
7123
Bandan Das3573e222014-05-06 02:19:16 -04007124/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007125 * Emulate the VMXON instruction.
7126 * Currently, we just remember that VMX is active, and do not save or even
7127 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7128 * do not currently need to store anything in that guest-allocated memory
7129 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7130 * argument is different from the VMXON pointer (which the spec says they do).
7131 */
7132static int handle_vmon(struct kvm_vcpu *vcpu)
7133{
Jim Mattsone29acc52016-11-30 12:03:43 -08007134 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007135 gpa_t vmptr;
7136 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007137 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007138 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7139 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007140
Jim Mattson70f3aac2017-04-26 08:53:46 -07007141 /*
7142 * The Intel VMX Instruction Reference lists a bunch of bits that are
7143 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7144 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7145 * Otherwise, we should fail with #UD. But most faulting conditions
7146 * have already been checked by hardware, prior to the VM-exit for
7147 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7148 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007149 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007150 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007151 kvm_queue_exception(vcpu, UD_VECTOR);
7152 return 1;
7153 }
7154
Abel Gordon145c28d2013-04-18 14:36:55 +03007155 if (vmx->nested.vmxon) {
7156 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007157 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007158 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007159
Haozhong Zhang3b840802016-06-22 14:59:54 +08007160 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007161 != VMXON_NEEDED_FEATURES) {
7162 kvm_inject_gp(vcpu, 0);
7163 return 1;
7164 }
7165
Radim Krčmářcbf71272017-05-19 15:48:51 +02007166 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007167 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007168
7169 /*
7170 * SDM 3: 24.11.5
7171 * The first 4 bytes of VMXON region contain the supported
7172 * VMCS revision identifier
7173 *
7174 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7175 * which replaces physical address width with 32
7176 */
7177 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7178 nested_vmx_failInvalid(vcpu);
7179 return kvm_skip_emulated_instruction(vcpu);
7180 }
7181
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007182 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7183 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007184 nested_vmx_failInvalid(vcpu);
7185 return kvm_skip_emulated_instruction(vcpu);
7186 }
7187 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7188 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007189 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007190 nested_vmx_failInvalid(vcpu);
7191 return kvm_skip_emulated_instruction(vcpu);
7192 }
7193 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007194 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007195
7196 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007197 ret = enter_vmx_operation(vcpu);
7198 if (ret)
7199 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007200
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007201 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007202 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007203}
7204
7205/*
7206 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7207 * for running VMX instructions (except VMXON, whose prerequisites are
7208 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007209 * Note that many of these exceptions have priority over VM exits, so they
7210 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007211 */
7212static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7213{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007214 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007215 kvm_queue_exception(vcpu, UD_VECTOR);
7216 return 0;
7217 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007218 return 1;
7219}
7220
David Matlack8ca44e82017-08-01 14:00:39 -07007221static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7222{
7223 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7224 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7225}
7226
Abel Gordone7953d72013-04-18 14:37:55 +03007227static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7228{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007229 if (vmx->nested.current_vmptr == -1ull)
7230 return;
7231
Abel Gordon012f83c2013-04-18 14:39:25 +03007232 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007233 /* copy to memory all shadowed fields in case
7234 they were modified */
7235 copy_shadow_to_vmcs12(vmx);
7236 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007237 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007238 }
Wincy Van705699a2015-02-03 23:58:17 +08007239 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007240
7241 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007242 kvm_vcpu_write_guest_page(&vmx->vcpu,
7243 vmx->nested.current_vmptr >> PAGE_SHIFT,
7244 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007245
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007246 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007247}
7248
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007249/*
7250 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7251 * just stops using VMX.
7252 */
7253static void free_nested(struct vcpu_vmx *vmx)
7254{
7255 if (!vmx->nested.vmxon)
7256 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007257
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007258 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007259 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007260 vmx->nested.posted_intr_nv = -1;
7261 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007262 if (vmx->nested.msr_bitmap) {
7263 free_page((unsigned long)vmx->nested.msr_bitmap);
7264 vmx->nested.msr_bitmap = NULL;
7265 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007266 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007267 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007268 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7269 free_vmcs(vmx->vmcs01.shadow_vmcs);
7270 vmx->vmcs01.shadow_vmcs = NULL;
7271 }
David Matlack4f2777b2016-07-13 17:16:37 -07007272 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007273 /* Unpin physical memory we referred to in current vmcs02 */
7274 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007275 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007276 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007277 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007278 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007279 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007280 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007281 }
Wincy Van705699a2015-02-03 23:58:17 +08007282 if (vmx->nested.pi_desc_page) {
7283 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007284 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007285 vmx->nested.pi_desc_page = NULL;
7286 vmx->nested.pi_desc = NULL;
7287 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007288
7289 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007290}
7291
7292/* Emulate the VMXOFF instruction */
7293static int handle_vmoff(struct kvm_vcpu *vcpu)
7294{
7295 if (!nested_vmx_check_permission(vcpu))
7296 return 1;
7297 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007298 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007299 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007300}
7301
Nadav Har'El27d6c862011-05-25 23:06:59 +03007302/* Emulate the VMCLEAR instruction */
7303static int handle_vmclear(struct kvm_vcpu *vcpu)
7304{
7305 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007306 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007307 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007308
7309 if (!nested_vmx_check_permission(vcpu))
7310 return 1;
7311
Radim Krčmářcbf71272017-05-19 15:48:51 +02007312 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007313 return 1;
7314
Radim Krčmářcbf71272017-05-19 15:48:51 +02007315 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7316 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7317 return kvm_skip_emulated_instruction(vcpu);
7318 }
7319
7320 if (vmptr == vmx->nested.vmxon_ptr) {
7321 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7322 return kvm_skip_emulated_instruction(vcpu);
7323 }
7324
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007325 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007326 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007327
Jim Mattson587d7e722017-03-02 12:41:48 -08007328 kvm_vcpu_write_guest(vcpu,
7329 vmptr + offsetof(struct vmcs12, launch_state),
7330 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007331
7332 nested_free_vmcs02(vmx, vmptr);
7333
Nadav Har'El27d6c862011-05-25 23:06:59 +03007334 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007335 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007336}
7337
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007338static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7339
7340/* Emulate the VMLAUNCH instruction */
7341static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7342{
7343 return nested_vmx_run(vcpu, true);
7344}
7345
7346/* Emulate the VMRESUME instruction */
7347static int handle_vmresume(struct kvm_vcpu *vcpu)
7348{
7349
7350 return nested_vmx_run(vcpu, false);
7351}
7352
Nadav Har'El49f705c2011-05-25 23:08:30 +03007353/*
7354 * Read a vmcs12 field. Since these can have varying lengths and we return
7355 * one type, we chose the biggest type (u64) and zero-extend the return value
7356 * to that size. Note that the caller, handle_vmread, might need to use only
7357 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7358 * 64-bit fields are to be returned).
7359 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007360static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7361 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007362{
7363 short offset = vmcs_field_to_offset(field);
7364 char *p;
7365
7366 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007367 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007368
7369 p = ((char *)(get_vmcs12(vcpu))) + offset;
7370
7371 switch (vmcs_field_type(field)) {
7372 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7373 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007374 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007375 case VMCS_FIELD_TYPE_U16:
7376 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007377 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007378 case VMCS_FIELD_TYPE_U32:
7379 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007380 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007381 case VMCS_FIELD_TYPE_U64:
7382 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007383 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007384 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007385 WARN_ON(1);
7386 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007387 }
7388}
7389
Abel Gordon20b97fe2013-04-18 14:36:25 +03007390
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007391static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7392 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007393 short offset = vmcs_field_to_offset(field);
7394 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7395 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007396 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007397
7398 switch (vmcs_field_type(field)) {
7399 case VMCS_FIELD_TYPE_U16:
7400 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007401 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007402 case VMCS_FIELD_TYPE_U32:
7403 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007404 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007405 case VMCS_FIELD_TYPE_U64:
7406 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007407 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007408 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7409 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007410 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007411 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007412 WARN_ON(1);
7413 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007414 }
7415
7416}
7417
Abel Gordon16f5b902013-04-18 14:38:25 +03007418static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7419{
7420 int i;
7421 unsigned long field;
7422 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007423 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007424 const unsigned long *fields = shadow_read_write_fields;
7425 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007426
Jan Kiszka282da872014-10-08 18:05:39 +02007427 preempt_disable();
7428
Abel Gordon16f5b902013-04-18 14:38:25 +03007429 vmcs_load(shadow_vmcs);
7430
7431 for (i = 0; i < num_fields; i++) {
7432 field = fields[i];
7433 switch (vmcs_field_type(field)) {
7434 case VMCS_FIELD_TYPE_U16:
7435 field_value = vmcs_read16(field);
7436 break;
7437 case VMCS_FIELD_TYPE_U32:
7438 field_value = vmcs_read32(field);
7439 break;
7440 case VMCS_FIELD_TYPE_U64:
7441 field_value = vmcs_read64(field);
7442 break;
7443 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7444 field_value = vmcs_readl(field);
7445 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007446 default:
7447 WARN_ON(1);
7448 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007449 }
7450 vmcs12_write_any(&vmx->vcpu, field, field_value);
7451 }
7452
7453 vmcs_clear(shadow_vmcs);
7454 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007455
7456 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007457}
7458
Abel Gordonc3114422013-04-18 14:38:55 +03007459static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7460{
Mathias Krausec2bae892013-06-26 20:36:21 +02007461 const unsigned long *fields[] = {
7462 shadow_read_write_fields,
7463 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007464 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007465 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007466 max_shadow_read_write_fields,
7467 max_shadow_read_only_fields
7468 };
7469 int i, q;
7470 unsigned long field;
7471 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007472 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007473
7474 vmcs_load(shadow_vmcs);
7475
Mathias Krausec2bae892013-06-26 20:36:21 +02007476 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007477 for (i = 0; i < max_fields[q]; i++) {
7478 field = fields[q][i];
7479 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7480
7481 switch (vmcs_field_type(field)) {
7482 case VMCS_FIELD_TYPE_U16:
7483 vmcs_write16(field, (u16)field_value);
7484 break;
7485 case VMCS_FIELD_TYPE_U32:
7486 vmcs_write32(field, (u32)field_value);
7487 break;
7488 case VMCS_FIELD_TYPE_U64:
7489 vmcs_write64(field, (u64)field_value);
7490 break;
7491 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7492 vmcs_writel(field, (long)field_value);
7493 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007494 default:
7495 WARN_ON(1);
7496 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007497 }
7498 }
7499 }
7500
7501 vmcs_clear(shadow_vmcs);
7502 vmcs_load(vmx->loaded_vmcs->vmcs);
7503}
7504
Nadav Har'El49f705c2011-05-25 23:08:30 +03007505/*
7506 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7507 * used before) all generate the same failure when it is missing.
7508 */
7509static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7510{
7511 struct vcpu_vmx *vmx = to_vmx(vcpu);
7512 if (vmx->nested.current_vmptr == -1ull) {
7513 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007514 return 0;
7515 }
7516 return 1;
7517}
7518
7519static int handle_vmread(struct kvm_vcpu *vcpu)
7520{
7521 unsigned long field;
7522 u64 field_value;
7523 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7524 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7525 gva_t gva = 0;
7526
Kyle Hueyeb277562016-11-29 12:40:39 -08007527 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007528 return 1;
7529
Kyle Huey6affcbe2016-11-29 12:40:40 -08007530 if (!nested_vmx_check_vmcs12(vcpu))
7531 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007532
Nadav Har'El49f705c2011-05-25 23:08:30 +03007533 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007534 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007535 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007536 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007537 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007538 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007539 }
7540 /*
7541 * Now copy part of this value to register or memory, as requested.
7542 * Note that the number of bits actually copied is 32 or 64 depending
7543 * on the guest's mode (32 or 64 bit), not on the given field's length.
7544 */
7545 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007546 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007547 field_value);
7548 } else {
7549 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007550 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007551 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007552 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007553 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7554 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7555 }
7556
7557 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007558 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007559}
7560
7561
7562static int handle_vmwrite(struct kvm_vcpu *vcpu)
7563{
7564 unsigned long field;
7565 gva_t gva;
7566 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7567 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007568 /* The value to write might be 32 or 64 bits, depending on L1's long
7569 * mode, and eventually we need to write that into a field of several
7570 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007571 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007572 * bits into the vmcs12 field.
7573 */
7574 u64 field_value = 0;
7575 struct x86_exception e;
7576
Kyle Hueyeb277562016-11-29 12:40:39 -08007577 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007578 return 1;
7579
Kyle Huey6affcbe2016-11-29 12:40:40 -08007580 if (!nested_vmx_check_vmcs12(vcpu))
7581 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007582
Nadav Har'El49f705c2011-05-25 23:08:30 +03007583 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007584 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007585 (((vmx_instruction_info) >> 3) & 0xf));
7586 else {
7587 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007588 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007589 return 1;
7590 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007591 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007592 kvm_inject_page_fault(vcpu, &e);
7593 return 1;
7594 }
7595 }
7596
7597
Nadav Amit27e6fb52014-06-18 17:19:26 +03007598 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007599 if (vmcs_field_readonly(field)) {
7600 nested_vmx_failValid(vcpu,
7601 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007602 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007603 }
7604
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007605 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007606 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007607 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007608 }
7609
7610 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007611 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007612}
7613
Jim Mattsona8bc2842016-11-30 12:03:44 -08007614static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7615{
7616 vmx->nested.current_vmptr = vmptr;
7617 if (enable_shadow_vmcs) {
7618 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7619 SECONDARY_EXEC_SHADOW_VMCS);
7620 vmcs_write64(VMCS_LINK_POINTER,
7621 __pa(vmx->vmcs01.shadow_vmcs));
7622 vmx->nested.sync_shadow_vmcs = true;
7623 }
7624}
7625
Nadav Har'El63846662011-05-25 23:07:29 +03007626/* Emulate the VMPTRLD instruction */
7627static int handle_vmptrld(struct kvm_vcpu *vcpu)
7628{
7629 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007630 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007631
7632 if (!nested_vmx_check_permission(vcpu))
7633 return 1;
7634
Radim Krčmářcbf71272017-05-19 15:48:51 +02007635 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007636 return 1;
7637
Radim Krčmářcbf71272017-05-19 15:48:51 +02007638 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7639 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7640 return kvm_skip_emulated_instruction(vcpu);
7641 }
7642
7643 if (vmptr == vmx->nested.vmxon_ptr) {
7644 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7645 return kvm_skip_emulated_instruction(vcpu);
7646 }
7647
Nadav Har'El63846662011-05-25 23:07:29 +03007648 if (vmx->nested.current_vmptr != vmptr) {
7649 struct vmcs12 *new_vmcs12;
7650 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007651 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7652 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007653 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007654 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007655 }
7656 new_vmcs12 = kmap(page);
7657 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7658 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007659 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007660 nested_vmx_failValid(vcpu,
7661 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007662 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007663 }
Nadav Har'El63846662011-05-25 23:07:29 +03007664
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007665 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007666 /*
7667 * Load VMCS12 from guest memory since it is not already
7668 * cached.
7669 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007670 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7671 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007672 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007673
Jim Mattsona8bc2842016-11-30 12:03:44 -08007674 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007675 }
7676
7677 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007678 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007679}
7680
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007681/* Emulate the VMPTRST instruction */
7682static int handle_vmptrst(struct kvm_vcpu *vcpu)
7683{
7684 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7685 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7686 gva_t vmcs_gva;
7687 struct x86_exception e;
7688
7689 if (!nested_vmx_check_permission(vcpu))
7690 return 1;
7691
7692 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007693 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007694 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007695 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007696 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7697 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7698 sizeof(u64), &e)) {
7699 kvm_inject_page_fault(vcpu, &e);
7700 return 1;
7701 }
7702 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007703 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007704}
7705
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007706/* Emulate the INVEPT instruction */
7707static int handle_invept(struct kvm_vcpu *vcpu)
7708{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007709 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007710 u32 vmx_instruction_info, types;
7711 unsigned long type;
7712 gva_t gva;
7713 struct x86_exception e;
7714 struct {
7715 u64 eptp, gpa;
7716 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007717
Wincy Vanb9c237b2015-02-03 23:56:30 +08007718 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7719 SECONDARY_EXEC_ENABLE_EPT) ||
7720 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007721 kvm_queue_exception(vcpu, UD_VECTOR);
7722 return 1;
7723 }
7724
7725 if (!nested_vmx_check_permission(vcpu))
7726 return 1;
7727
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007728 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007729 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007730
Wincy Vanb9c237b2015-02-03 23:56:30 +08007731 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007732
Jim Mattson85c856b2016-10-26 08:38:38 -07007733 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007734 nested_vmx_failValid(vcpu,
7735 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007736 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007737 }
7738
7739 /* According to the Intel VMX instruction reference, the memory
7740 * operand is read even if it isn't needed (e.g., for type==global)
7741 */
7742 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007743 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007744 return 1;
7745 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7746 sizeof(operand), &e)) {
7747 kvm_inject_page_fault(vcpu, &e);
7748 return 1;
7749 }
7750
7751 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007752 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007753 /*
7754 * TODO: track mappings and invalidate
7755 * single context requests appropriately
7756 */
7757 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007758 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007759 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007760 nested_vmx_succeed(vcpu);
7761 break;
7762 default:
7763 BUG_ON(1);
7764 break;
7765 }
7766
Kyle Huey6affcbe2016-11-29 12:40:40 -08007767 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007768}
7769
Petr Matouseka642fc32014-09-23 20:22:30 +02007770static int handle_invvpid(struct kvm_vcpu *vcpu)
7771{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007772 struct vcpu_vmx *vmx = to_vmx(vcpu);
7773 u32 vmx_instruction_info;
7774 unsigned long type, types;
7775 gva_t gva;
7776 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007777 struct {
7778 u64 vpid;
7779 u64 gla;
7780 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007781
7782 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7783 SECONDARY_EXEC_ENABLE_VPID) ||
7784 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7785 kvm_queue_exception(vcpu, UD_VECTOR);
7786 return 1;
7787 }
7788
7789 if (!nested_vmx_check_permission(vcpu))
7790 return 1;
7791
7792 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7793 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7794
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007795 types = (vmx->nested.nested_vmx_vpid_caps &
7796 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007797
Jim Mattson85c856b2016-10-26 08:38:38 -07007798 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007799 nested_vmx_failValid(vcpu,
7800 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007801 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007802 }
7803
7804 /* according to the intel vmx instruction reference, the memory
7805 * operand is read even if it isn't needed (e.g., for type==global)
7806 */
7807 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7808 vmx_instruction_info, false, &gva))
7809 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007810 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7811 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007812 kvm_inject_page_fault(vcpu, &e);
7813 return 1;
7814 }
Jim Mattson40352602017-06-28 09:37:37 -07007815 if (operand.vpid >> 16) {
7816 nested_vmx_failValid(vcpu,
7817 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7818 return kvm_skip_emulated_instruction(vcpu);
7819 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007820
7821 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007822 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Jim Mattson40352602017-06-28 09:37:37 -07007823 if (is_noncanonical_address(operand.gla)) {
7824 nested_vmx_failValid(vcpu,
7825 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7826 return kvm_skip_emulated_instruction(vcpu);
7827 }
7828 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007829 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007830 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007831 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007832 nested_vmx_failValid(vcpu,
7833 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007834 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007835 }
7836 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007837 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007838 break;
7839 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007840 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007841 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007842 }
7843
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007844 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7845 nested_vmx_succeed(vcpu);
7846
Kyle Huey6affcbe2016-11-29 12:40:40 -08007847 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007848}
7849
Kai Huang843e4332015-01-28 10:54:28 +08007850static int handle_pml_full(struct kvm_vcpu *vcpu)
7851{
7852 unsigned long exit_qualification;
7853
7854 trace_kvm_pml_full(vcpu->vcpu_id);
7855
7856 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7857
7858 /*
7859 * PML buffer FULL happened while executing iret from NMI,
7860 * "blocked by NMI" bit has to be set before next VM entry.
7861 */
7862 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007863 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7864 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7865 GUEST_INTR_STATE_NMI);
7866
7867 /*
7868 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7869 * here.., and there's no userspace involvement needed for PML.
7870 */
7871 return 1;
7872}
7873
Yunhong Jiang64672c92016-06-13 14:19:59 -07007874static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7875{
7876 kvm_lapic_expired_hv_timer(vcpu);
7877 return 1;
7878}
7879
Bandan Das41ab9372017-08-03 15:54:43 -04007880static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
7881{
7882 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04007883 int maxphyaddr = cpuid_maxphyaddr(vcpu);
7884
7885 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007886 switch (address & VMX_EPTP_MT_MASK) {
7887 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04007888 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
7889 return false;
7890 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02007891 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04007892 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
7893 return false;
7894 break;
7895 default:
7896 return false;
7897 }
7898
David Hildenbrandbb97a012017-08-10 23:15:28 +02007899 /* only 4 levels page-walk length are valid */
7900 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04007901 return false;
7902
7903 /* Reserved bits should not be set */
7904 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
7905 return false;
7906
7907 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02007908 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04007909 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
7910 return false;
7911 }
7912
7913 return true;
7914}
7915
7916static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
7917 struct vmcs12 *vmcs12)
7918{
7919 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
7920 u64 address;
7921 bool accessed_dirty;
7922 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
7923
7924 if (!nested_cpu_has_eptp_switching(vmcs12) ||
7925 !nested_cpu_has_ept(vmcs12))
7926 return 1;
7927
7928 if (index >= VMFUNC_EPTP_ENTRIES)
7929 return 1;
7930
7931
7932 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
7933 &address, index * 8, 8))
7934 return 1;
7935
David Hildenbrandbb97a012017-08-10 23:15:28 +02007936 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04007937
7938 /*
7939 * If the (L2) guest does a vmfunc to the currently
7940 * active ept pointer, we don't have to do anything else
7941 */
7942 if (vmcs12->ept_pointer != address) {
7943 if (!valid_ept_address(vcpu, address))
7944 return 1;
7945
7946 kvm_mmu_unload(vcpu);
7947 mmu->ept_ad = accessed_dirty;
7948 mmu->base_role.ad_disabled = !accessed_dirty;
7949 vmcs12->ept_pointer = address;
7950 /*
7951 * TODO: Check what's the correct approach in case
7952 * mmu reload fails. Currently, we just let the next
7953 * reload potentially fail
7954 */
7955 kvm_mmu_reload(vcpu);
7956 }
7957
7958 return 0;
7959}
7960
Bandan Das2a499e42017-08-03 15:54:41 -04007961static int handle_vmfunc(struct kvm_vcpu *vcpu)
7962{
Bandan Das27c42a12017-08-03 15:54:42 -04007963 struct vcpu_vmx *vmx = to_vmx(vcpu);
7964 struct vmcs12 *vmcs12;
7965 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
7966
7967 /*
7968 * VMFUNC is only supported for nested guests, but we always enable the
7969 * secondary control for simplicity; for non-nested mode, fake that we
7970 * didn't by injecting #UD.
7971 */
7972 if (!is_guest_mode(vcpu)) {
7973 kvm_queue_exception(vcpu, UD_VECTOR);
7974 return 1;
7975 }
7976
7977 vmcs12 = get_vmcs12(vcpu);
7978 if ((vmcs12->vm_function_control & (1 << function)) == 0)
7979 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04007980
7981 switch (function) {
7982 case 0:
7983 if (nested_vmx_eptp_switching(vcpu, vmcs12))
7984 goto fail;
7985 break;
7986 default:
7987 goto fail;
7988 }
7989 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04007990
7991fail:
7992 nested_vmx_vmexit(vcpu, vmx->exit_reason,
7993 vmcs_read32(VM_EXIT_INTR_INFO),
7994 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04007995 return 1;
7996}
7997
Nadav Har'El0140cae2011-05-25 23:06:28 +03007998/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007999 * The exit handlers return 1 if the exit was handled fully and guest execution
8000 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8001 * to be done to userspace and return 0.
8002 */
Mathias Krause772e0312012-08-30 01:30:19 +02008003static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008004 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8005 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008006 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008007 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008008 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008009 [EXIT_REASON_CR_ACCESS] = handle_cr,
8010 [EXIT_REASON_DR_ACCESS] = handle_dr,
8011 [EXIT_REASON_CPUID] = handle_cpuid,
8012 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8013 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8014 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8015 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008016 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008017 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008018 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008019 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008020 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008021 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008022 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008023 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008024 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008025 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008026 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008027 [EXIT_REASON_VMOFF] = handle_vmoff,
8028 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008029 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8030 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008031 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008032 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008033 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008034 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008035 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008036 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008037 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8038 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008039 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008040 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008041 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008042 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008043 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008044 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008045 [EXIT_REASON_XSAVES] = handle_xsaves,
8046 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008047 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008048 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008049 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008050};
8051
8052static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008053 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008054
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008055static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8056 struct vmcs12 *vmcs12)
8057{
8058 unsigned long exit_qualification;
8059 gpa_t bitmap, last_bitmap;
8060 unsigned int port;
8061 int size;
8062 u8 b;
8063
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008064 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008065 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008066
8067 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8068
8069 port = exit_qualification >> 16;
8070 size = (exit_qualification & 7) + 1;
8071
8072 last_bitmap = (gpa_t)-1;
8073 b = -1;
8074
8075 while (size > 0) {
8076 if (port < 0x8000)
8077 bitmap = vmcs12->io_bitmap_a;
8078 else if (port < 0x10000)
8079 bitmap = vmcs12->io_bitmap_b;
8080 else
Joe Perches1d804d02015-03-30 16:46:09 -07008081 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008082 bitmap += (port & 0x7fff) / 8;
8083
8084 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008085 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008086 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008087 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008088 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008089
8090 port++;
8091 size--;
8092 last_bitmap = bitmap;
8093 }
8094
Joe Perches1d804d02015-03-30 16:46:09 -07008095 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008096}
8097
Nadav Har'El644d7112011-05-25 23:12:35 +03008098/*
8099 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8100 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8101 * disinterest in the current event (read or write a specific MSR) by using an
8102 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8103 */
8104static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8105 struct vmcs12 *vmcs12, u32 exit_reason)
8106{
8107 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8108 gpa_t bitmap;
8109
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008110 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008111 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008112
8113 /*
8114 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8115 * for the four combinations of read/write and low/high MSR numbers.
8116 * First we need to figure out which of the four to use:
8117 */
8118 bitmap = vmcs12->msr_bitmap;
8119 if (exit_reason == EXIT_REASON_MSR_WRITE)
8120 bitmap += 2048;
8121 if (msr_index >= 0xc0000000) {
8122 msr_index -= 0xc0000000;
8123 bitmap += 1024;
8124 }
8125
8126 /* Then read the msr_index'th bit from this bitmap: */
8127 if (msr_index < 1024*8) {
8128 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008129 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008130 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008131 return 1 & (b >> (msr_index & 7));
8132 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008133 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008134}
8135
8136/*
8137 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8138 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8139 * intercept (via guest_host_mask etc.) the current event.
8140 */
8141static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8142 struct vmcs12 *vmcs12)
8143{
8144 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8145 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008146 int reg;
8147 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008148
8149 switch ((exit_qualification >> 4) & 3) {
8150 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008151 reg = (exit_qualification >> 8) & 15;
8152 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008153 switch (cr) {
8154 case 0:
8155 if (vmcs12->cr0_guest_host_mask &
8156 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008157 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008158 break;
8159 case 3:
8160 if ((vmcs12->cr3_target_count >= 1 &&
8161 vmcs12->cr3_target_value0 == val) ||
8162 (vmcs12->cr3_target_count >= 2 &&
8163 vmcs12->cr3_target_value1 == val) ||
8164 (vmcs12->cr3_target_count >= 3 &&
8165 vmcs12->cr3_target_value2 == val) ||
8166 (vmcs12->cr3_target_count >= 4 &&
8167 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008168 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008169 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008170 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008171 break;
8172 case 4:
8173 if (vmcs12->cr4_guest_host_mask &
8174 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008175 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008176 break;
8177 case 8:
8178 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008179 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008180 break;
8181 }
8182 break;
8183 case 2: /* clts */
8184 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8185 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008186 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008187 break;
8188 case 1: /* mov from cr */
8189 switch (cr) {
8190 case 3:
8191 if (vmcs12->cpu_based_vm_exec_control &
8192 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008193 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008194 break;
8195 case 8:
8196 if (vmcs12->cpu_based_vm_exec_control &
8197 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008198 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008199 break;
8200 }
8201 break;
8202 case 3: /* lmsw */
8203 /*
8204 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8205 * cr0. Other attempted changes are ignored, with no exit.
8206 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008207 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008208 if (vmcs12->cr0_guest_host_mask & 0xe &
8209 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008210 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008211 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8212 !(vmcs12->cr0_read_shadow & 0x1) &&
8213 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008214 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008215 break;
8216 }
Joe Perches1d804d02015-03-30 16:46:09 -07008217 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008218}
8219
8220/*
8221 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8222 * should handle it ourselves in L0 (and then continue L2). Only call this
8223 * when in is_guest_mode (L2).
8224 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008225static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008226{
Nadav Har'El644d7112011-05-25 23:12:35 +03008227 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8228 struct vcpu_vmx *vmx = to_vmx(vcpu);
8229 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8230
Jan Kiszka542060e2014-01-04 18:47:21 +01008231 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8232 vmcs_readl(EXIT_QUALIFICATION),
8233 vmx->idt_vectoring_info,
8234 intr_info,
8235 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8236 KVM_ISA_VMX);
8237
David Matlackc9f04402017-08-01 14:00:40 -07008238 /*
8239 * The host physical addresses of some pages of guest memory
8240 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8241 * may write to these pages via their host physical address while
8242 * L2 is running, bypassing any address-translation-based dirty
8243 * tracking (e.g. EPT write protection).
8244 *
8245 * Mark them dirty on every exit from L2 to prevent them from
8246 * getting out of sync with dirty tracking.
8247 */
8248 nested_mark_vmcs12_pages_dirty(vcpu);
8249
Nadav Har'El644d7112011-05-25 23:12:35 +03008250 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008251 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008252
8253 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008254 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8255 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008256 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008257 }
8258
8259 switch (exit_reason) {
8260 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008261 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008262 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008263 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008264 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008265 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008266 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008267 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008268 else if (is_debug(intr_info) &&
8269 vcpu->guest_debug &
8270 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8271 return false;
8272 else if (is_breakpoint(intr_info) &&
8273 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8274 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008275 return vmcs12->exception_bitmap &
8276 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8277 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008278 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008279 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008280 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008281 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008282 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008283 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008284 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008285 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008286 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008287 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008288 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008289 case EXIT_REASON_HLT:
8290 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8291 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008292 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008293 case EXIT_REASON_INVLPG:
8294 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8295 case EXIT_REASON_RDPMC:
8296 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008297 case EXIT_REASON_RDRAND:
8298 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND);
8299 case EXIT_REASON_RDSEED:
8300 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008301 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008302 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8303 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8304 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8305 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8306 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8307 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008308 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008309 /*
8310 * VMX instructions trap unconditionally. This allows L1 to
8311 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8312 */
Joe Perches1d804d02015-03-30 16:46:09 -07008313 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008314 case EXIT_REASON_CR_ACCESS:
8315 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8316 case EXIT_REASON_DR_ACCESS:
8317 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8318 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008319 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008320 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8321 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008322 case EXIT_REASON_MSR_READ:
8323 case EXIT_REASON_MSR_WRITE:
8324 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8325 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008326 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008327 case EXIT_REASON_MWAIT_INSTRUCTION:
8328 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008329 case EXIT_REASON_MONITOR_TRAP_FLAG:
8330 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008331 case EXIT_REASON_MONITOR_INSTRUCTION:
8332 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8333 case EXIT_REASON_PAUSE_INSTRUCTION:
8334 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8335 nested_cpu_has2(vmcs12,
8336 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8337 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008338 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008339 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008340 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008341 case EXIT_REASON_APIC_ACCESS:
8342 return nested_cpu_has2(vmcs12,
8343 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008344 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008345 case EXIT_REASON_EOI_INDUCED:
8346 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008347 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008348 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008349 /*
8350 * L0 always deals with the EPT violation. If nested EPT is
8351 * used, and the nested mmu code discovers that the address is
8352 * missing in the guest EPT table (EPT12), the EPT violation
8353 * will be injected with nested_ept_inject_page_fault()
8354 */
Joe Perches1d804d02015-03-30 16:46:09 -07008355 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008356 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008357 /*
8358 * L2 never uses directly L1's EPT, but rather L0's own EPT
8359 * table (shadow on EPT) or a merged EPT table that L0 built
8360 * (EPT on EPT). So any problems with the structure of the
8361 * table is L0's fault.
8362 */
Joe Perches1d804d02015-03-30 16:46:09 -07008363 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008364 case EXIT_REASON_INVPCID:
8365 return
8366 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8367 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008368 case EXIT_REASON_WBINVD:
8369 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8370 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008371 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008372 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8373 /*
8374 * This should never happen, since it is not possible to
8375 * set XSS to a non-zero value---neither in L1 nor in L2.
8376 * If if it were, XSS would have to be checked against
8377 * the XSS exit bitmap in vmcs12.
8378 */
8379 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008380 case EXIT_REASON_PREEMPTION_TIMER:
8381 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008382 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008383 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008384 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008385 case EXIT_REASON_VMFUNC:
8386 /* VM functions are emulated through L2->L0 vmexits. */
8387 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008388 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008389 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008390 }
8391}
8392
Paolo Bonzini7313c692017-07-27 10:31:25 +02008393static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8394{
8395 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8396
8397 /*
8398 * At this point, the exit interruption info in exit_intr_info
8399 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8400 * we need to query the in-kernel LAPIC.
8401 */
8402 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8403 if ((exit_intr_info &
8404 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8405 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8406 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8407 vmcs12->vm_exit_intr_error_code =
8408 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8409 }
8410
8411 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8412 vmcs_readl(EXIT_QUALIFICATION));
8413 return 1;
8414}
8415
Avi Kivity586f9602010-11-18 13:09:54 +02008416static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8417{
8418 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8419 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8420}
8421
Kai Huanga3eaa862015-11-04 13:46:05 +08008422static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008423{
Kai Huanga3eaa862015-11-04 13:46:05 +08008424 if (vmx->pml_pg) {
8425 __free_page(vmx->pml_pg);
8426 vmx->pml_pg = NULL;
8427 }
Kai Huang843e4332015-01-28 10:54:28 +08008428}
8429
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008430static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008431{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008432 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008433 u64 *pml_buf;
8434 u16 pml_idx;
8435
8436 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8437
8438 /* Do nothing if PML buffer is empty */
8439 if (pml_idx == (PML_ENTITY_NUM - 1))
8440 return;
8441
8442 /* PML index always points to next available PML buffer entity */
8443 if (pml_idx >= PML_ENTITY_NUM)
8444 pml_idx = 0;
8445 else
8446 pml_idx++;
8447
8448 pml_buf = page_address(vmx->pml_pg);
8449 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8450 u64 gpa;
8451
8452 gpa = pml_buf[pml_idx];
8453 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008454 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008455 }
8456
8457 /* reset PML index */
8458 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8459}
8460
8461/*
8462 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8463 * Called before reporting dirty_bitmap to userspace.
8464 */
8465static void kvm_flush_pml_buffers(struct kvm *kvm)
8466{
8467 int i;
8468 struct kvm_vcpu *vcpu;
8469 /*
8470 * We only need to kick vcpu out of guest mode here, as PML buffer
8471 * is flushed at beginning of all VMEXITs, and it's obvious that only
8472 * vcpus running in guest are possible to have unflushed GPAs in PML
8473 * buffer.
8474 */
8475 kvm_for_each_vcpu(i, vcpu, kvm)
8476 kvm_vcpu_kick(vcpu);
8477}
8478
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008479static void vmx_dump_sel(char *name, uint32_t sel)
8480{
8481 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008482 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008483 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8484 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8485 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8486}
8487
8488static void vmx_dump_dtsel(char *name, uint32_t limit)
8489{
8490 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8491 name, vmcs_read32(limit),
8492 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8493}
8494
8495static void dump_vmcs(void)
8496{
8497 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8498 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8499 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8500 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8501 u32 secondary_exec_control = 0;
8502 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008503 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008504 int i, n;
8505
8506 if (cpu_has_secondary_exec_ctrls())
8507 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8508
8509 pr_err("*** Guest State ***\n");
8510 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8511 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8512 vmcs_readl(CR0_GUEST_HOST_MASK));
8513 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8514 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8515 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8516 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8517 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8518 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008519 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8520 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8521 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8522 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008523 }
8524 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8525 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8526 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8527 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8528 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8529 vmcs_readl(GUEST_SYSENTER_ESP),
8530 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8531 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8532 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8533 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8534 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8535 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8536 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8537 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8538 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8539 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8540 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8541 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8542 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008543 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8544 efer, vmcs_read64(GUEST_IA32_PAT));
8545 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8546 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008547 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8548 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008549 pr_err("PerfGlobCtl = 0x%016llx\n",
8550 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008551 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008552 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008553 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8554 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8555 vmcs_read32(GUEST_ACTIVITY_STATE));
8556 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8557 pr_err("InterruptStatus = %04x\n",
8558 vmcs_read16(GUEST_INTR_STATUS));
8559
8560 pr_err("*** Host State ***\n");
8561 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8562 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8563 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8564 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8565 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8566 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8567 vmcs_read16(HOST_TR_SELECTOR));
8568 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8569 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8570 vmcs_readl(HOST_TR_BASE));
8571 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8572 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8573 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8574 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8575 vmcs_readl(HOST_CR4));
8576 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8577 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8578 vmcs_read32(HOST_IA32_SYSENTER_CS),
8579 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8580 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008581 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8582 vmcs_read64(HOST_IA32_EFER),
8583 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008584 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008585 pr_err("PerfGlobCtl = 0x%016llx\n",
8586 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008587
8588 pr_err("*** Control State ***\n");
8589 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8590 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8591 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8592 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8593 vmcs_read32(EXCEPTION_BITMAP),
8594 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8595 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8596 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8597 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8598 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8599 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8600 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8601 vmcs_read32(VM_EXIT_INTR_INFO),
8602 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8603 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8604 pr_err(" reason=%08x qualification=%016lx\n",
8605 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8606 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8607 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8608 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008609 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008610 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008611 pr_err("TSC Multiplier = 0x%016llx\n",
8612 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008613 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8614 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8615 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8616 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8617 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008618 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008619 n = vmcs_read32(CR3_TARGET_COUNT);
8620 for (i = 0; i + 1 < n; i += 4)
8621 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8622 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8623 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8624 if (i < n)
8625 pr_err("CR3 target%u=%016lx\n",
8626 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8627 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8628 pr_err("PLE Gap=%08x Window=%08x\n",
8629 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8630 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8631 pr_err("Virtual processor ID = 0x%04x\n",
8632 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8633}
8634
Avi Kivity6aa8b732006-12-10 02:21:36 -08008635/*
8636 * The guest has exited. See if we can fix it or if we need userspace
8637 * assistance.
8638 */
Avi Kivity851ba692009-08-24 11:10:17 +03008639static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008640{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008641 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008642 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008643 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008644
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008645 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8646
Kai Huang843e4332015-01-28 10:54:28 +08008647 /*
8648 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8649 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8650 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8651 * mode as if vcpus is in root mode, the PML buffer must has been
8652 * flushed already.
8653 */
8654 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008655 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008656
Mohammed Gamal80ced182009-09-01 12:48:18 +02008657 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008658 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008659 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008660
Paolo Bonzini7313c692017-07-27 10:31:25 +02008661 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8662 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008663
Mohammed Gamal51207022010-05-31 22:40:54 +03008664 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008665 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008666 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8667 vcpu->run->fail_entry.hardware_entry_failure_reason
8668 = exit_reason;
8669 return 0;
8670 }
8671
Avi Kivity29bd8a72007-09-10 17:27:03 +03008672 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008673 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8674 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008675 = vmcs_read32(VM_INSTRUCTION_ERROR);
8676 return 0;
8677 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008678
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008679 /*
8680 * Note:
8681 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8682 * delivery event since it indicates guest is accessing MMIO.
8683 * The vm-exit can be triggered again after return to guest that
8684 * will cause infinite loop.
8685 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008686 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008687 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008688 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008689 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008690 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8691 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8692 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008693 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008694 vcpu->run->internal.data[0] = vectoring_info;
8695 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008696 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8697 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8698 vcpu->run->internal.ndata++;
8699 vcpu->run->internal.data[3] =
8700 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8701 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008702 return 0;
8703 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008704
Avi Kivity6aa8b732006-12-10 02:21:36 -08008705 if (exit_reason < kvm_vmx_max_exit_handlers
8706 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008707 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008708 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008709 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8710 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008711 kvm_queue_exception(vcpu, UD_VECTOR);
8712 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008713 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008714}
8715
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008716static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008717{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008718 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8719
8720 if (is_guest_mode(vcpu) &&
8721 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8722 return;
8723
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008724 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008725 vmcs_write32(TPR_THRESHOLD, 0);
8726 return;
8727 }
8728
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008729 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008730}
8731
Yang Zhang8d146952013-01-25 10:18:50 +08008732static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8733{
8734 u32 sec_exec_control;
8735
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008736 /* Postpone execution until vmcs01 is the current VMCS. */
8737 if (is_guest_mode(vcpu)) {
8738 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8739 return;
8740 }
8741
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008742 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008743 return;
8744
Paolo Bonzini35754c92015-07-29 12:05:37 +02008745 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008746 return;
8747
8748 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8749
8750 if (set) {
8751 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8752 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8753 } else {
8754 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8755 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008756 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008757 }
8758 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8759
8760 vmx_set_msr_bitmap(vcpu);
8761}
8762
Tang Chen38b99172014-09-24 15:57:54 +08008763static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8764{
8765 struct vcpu_vmx *vmx = to_vmx(vcpu);
8766
8767 /*
8768 * Currently we do not handle the nested case where L2 has an
8769 * APIC access page of its own; that page is still pinned.
8770 * Hence, we skip the case where the VCPU is in guest mode _and_
8771 * L1 prepared an APIC access page for L2.
8772 *
8773 * For the case where L1 and L2 share the same APIC access page
8774 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8775 * in the vmcs12), this function will only update either the vmcs01
8776 * or the vmcs02. If the former, the vmcs02 will be updated by
8777 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8778 * the next L2->L1 exit.
8779 */
8780 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008781 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008782 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008783 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008784 vmx_flush_tlb_ept_only(vcpu);
8785 }
Tang Chen38b99172014-09-24 15:57:54 +08008786}
8787
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008788static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008789{
8790 u16 status;
8791 u8 old;
8792
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008793 if (max_isr == -1)
8794 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008795
8796 status = vmcs_read16(GUEST_INTR_STATUS);
8797 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008798 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008799 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008800 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008801 vmcs_write16(GUEST_INTR_STATUS, status);
8802 }
8803}
8804
8805static void vmx_set_rvi(int vector)
8806{
8807 u16 status;
8808 u8 old;
8809
Wei Wang4114c272014-11-05 10:53:43 +08008810 if (vector == -1)
8811 vector = 0;
8812
Yang Zhangc7c9c562013-01-25 10:18:51 +08008813 status = vmcs_read16(GUEST_INTR_STATUS);
8814 old = (u8)status & 0xff;
8815 if ((u8)vector != old) {
8816 status &= ~0xff;
8817 status |= (u8)vector;
8818 vmcs_write16(GUEST_INTR_STATUS, status);
8819 }
8820}
8821
8822static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8823{
Wanpeng Li963fee12014-07-17 19:03:00 +08008824 if (!is_guest_mode(vcpu)) {
8825 vmx_set_rvi(max_irr);
8826 return;
8827 }
8828
Wei Wang4114c272014-11-05 10:53:43 +08008829 if (max_irr == -1)
8830 return;
8831
Wanpeng Li963fee12014-07-17 19:03:00 +08008832 /*
Wei Wang4114c272014-11-05 10:53:43 +08008833 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8834 * handles it.
8835 */
8836 if (nested_exit_on_intr(vcpu))
8837 return;
8838
8839 /*
8840 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008841 * is run without virtual interrupt delivery.
8842 */
8843 if (!kvm_event_needs_reinjection(vcpu) &&
8844 vmx_interrupt_allowed(vcpu)) {
8845 kvm_queue_interrupt(vcpu, max_irr, false);
8846 vmx_inject_irq(vcpu);
8847 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008848}
8849
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008850static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008851{
8852 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008853 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008854
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008855 WARN_ON(!vcpu->arch.apicv_active);
8856 if (pi_test_on(&vmx->pi_desc)) {
8857 pi_clear_on(&vmx->pi_desc);
8858 /*
8859 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8860 * But on x86 this is just a compiler barrier anyway.
8861 */
8862 smp_mb__after_atomic();
8863 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8864 } else {
8865 max_irr = kvm_lapic_find_highest_irr(vcpu);
8866 }
8867 vmx_hwapic_irr_update(vcpu, max_irr);
8868 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008869}
8870
Andrey Smetanin63086302015-11-10 15:36:32 +03008871static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008872{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008873 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008874 return;
8875
Yang Zhangc7c9c562013-01-25 10:18:51 +08008876 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8877 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8878 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8879 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8880}
8881
Paolo Bonzini967235d2016-12-19 14:03:45 +01008882static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8883{
8884 struct vcpu_vmx *vmx = to_vmx(vcpu);
8885
8886 pi_clear_on(&vmx->pi_desc);
8887 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
8888}
8889
Avi Kivity51aa01d2010-07-20 14:31:20 +03008890static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008891{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008892 u32 exit_intr_info = 0;
8893 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02008894
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008895 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8896 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02008897 return;
8898
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008899 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
8900 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8901 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008902
Wanpeng Li1261bfa2017-07-13 18:30:40 -07008903 /* if exit due to PF check for async PF */
8904 if (is_page_fault(exit_intr_info))
8905 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
8906
Andi Kleena0861c02009-06-08 17:37:09 +08008907 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07008908 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
8909 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008910 kvm_machine_check();
8911
Gleb Natapov20f65982009-05-11 13:35:55 +03008912 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08008913 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008914 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008915 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008916 kvm_after_handle_nmi(&vmx->vcpu);
8917 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008918}
Gleb Natapov20f65982009-05-11 13:35:55 +03008919
Yang Zhanga547c6d2013-04-11 19:25:10 +08008920static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8921{
8922 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008923 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008924
Yang Zhanga547c6d2013-04-11 19:25:10 +08008925 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8926 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8927 unsigned int vector;
8928 unsigned long entry;
8929 gate_desc *desc;
8930 struct vcpu_vmx *vmx = to_vmx(vcpu);
8931#ifdef CONFIG_X86_64
8932 unsigned long tmp;
8933#endif
8934
8935 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8936 desc = (gate_desc *)vmx->host_idt_base + vector;
8937 entry = gate_offset(*desc);
8938 asm volatile(
8939#ifdef CONFIG_X86_64
8940 "mov %%" _ASM_SP ", %[sp]\n\t"
8941 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8942 "push $%c[ss]\n\t"
8943 "push %[sp]\n\t"
8944#endif
8945 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008946 __ASM_SIZE(push) " $%c[cs]\n\t"
8947 "call *%[entry]\n\t"
8948 :
8949#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008950 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008951#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008952 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008953 :
8954 [entry]"r"(entry),
8955 [ss]"i"(__KERNEL_DS),
8956 [cs]"i"(__KERNEL_CS)
8957 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008958 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08008959}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05008960STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008961
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008962static bool vmx_has_high_real_mode_segbase(void)
8963{
8964 return enable_unrestricted_guest || emulate_invalid_guest_state;
8965}
8966
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008967static bool vmx_mpx_supported(void)
8968{
8969 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8970 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8971}
8972
Wanpeng Li55412b22014-12-02 19:21:30 +08008973static bool vmx_xsaves_supported(void)
8974{
8975 return vmcs_config.cpu_based_2nd_exec_ctrl &
8976 SECONDARY_EXEC_XSAVES;
8977}
8978
Avi Kivity51aa01d2010-07-20 14:31:20 +03008979static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8980{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008981 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008982 bool unblock_nmi;
8983 u8 vector;
8984 bool idtv_info_valid;
8985
8986 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008987
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02008988 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02008989 return;
8990 /*
8991 * Can't use vmx->exit_intr_info since we're not sure what
8992 * the exit reason is.
8993 */
8994 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8995 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8996 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8997 /*
8998 * SDM 3: 27.7.1.2 (September 2008)
8999 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9000 * a guest IRET fault.
9001 * SDM 3: 23.2.2 (September 2008)
9002 * Bit 12 is undefined in any of the following cases:
9003 * If the VM exit sets the valid bit in the IDT-vectoring
9004 * information field.
9005 * If the VM exit is due to a double fault.
9006 */
9007 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9008 vector != DF_VECTOR && !idtv_info_valid)
9009 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9010 GUEST_INTR_STATE_NMI);
9011 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009012 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009013 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9014 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009015}
9016
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009017static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009018 u32 idt_vectoring_info,
9019 int instr_len_field,
9020 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009021{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009022 u8 vector;
9023 int type;
9024 bool idtv_info_valid;
9025
9026 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009027
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009028 vcpu->arch.nmi_injected = false;
9029 kvm_clear_exception_queue(vcpu);
9030 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009031
9032 if (!idtv_info_valid)
9033 return;
9034
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009035 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009036
Avi Kivity668f6122008-07-02 09:28:55 +03009037 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9038 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009039
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009040 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009041 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009042 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009043 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009044 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009045 * Clear bit "block by NMI" before VM entry if a NMI
9046 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009047 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009048 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009049 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009050 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009051 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009052 /* fall through */
9053 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009054 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009055 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009056 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009057 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009058 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009059 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009060 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009061 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009062 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009063 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009064 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009065 break;
9066 default:
9067 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009068 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009069}
9070
Avi Kivity83422e12010-07-20 14:43:23 +03009071static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9072{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009073 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009074 VM_EXIT_INSTRUCTION_LEN,
9075 IDT_VECTORING_ERROR_CODE);
9076}
9077
Avi Kivityb463a6f2010-07-20 15:06:17 +03009078static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9079{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009080 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009081 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9082 VM_ENTRY_INSTRUCTION_LEN,
9083 VM_ENTRY_EXCEPTION_ERROR_CODE);
9084
9085 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9086}
9087
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009088static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9089{
9090 int i, nr_msrs;
9091 struct perf_guest_switch_msr *msrs;
9092
9093 msrs = perf_guest_get_msrs(&nr_msrs);
9094
9095 if (!msrs)
9096 return;
9097
9098 for (i = 0; i < nr_msrs; i++)
9099 if (msrs[i].host == msrs[i].guest)
9100 clear_atomic_switch_msr(vmx, msrs[i].msr);
9101 else
9102 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9103 msrs[i].host);
9104}
9105
Jiang Biao33365e72016-11-03 15:03:37 +08009106static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009107{
9108 struct vcpu_vmx *vmx = to_vmx(vcpu);
9109 u64 tscl;
9110 u32 delta_tsc;
9111
9112 if (vmx->hv_deadline_tsc == -1)
9113 return;
9114
9115 tscl = rdtsc();
9116 if (vmx->hv_deadline_tsc > tscl)
9117 /* sure to be 32 bit only because checked on set_hv_timer */
9118 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9119 cpu_preemption_timer_multi);
9120 else
9121 delta_tsc = 0;
9122
9123 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9124}
9125
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009126static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009127{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009128 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009129 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009130
Avi Kivity104f2262010-11-18 13:12:52 +02009131 /* Don't enter VMX if guest state is invalid, let the exit handler
9132 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009133 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009134 return;
9135
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009136 if (vmx->ple_window_dirty) {
9137 vmx->ple_window_dirty = false;
9138 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9139 }
9140
Abel Gordon012f83c2013-04-18 14:39:25 +03009141 if (vmx->nested.sync_shadow_vmcs) {
9142 copy_vmcs12_to_shadow(vmx);
9143 vmx->nested.sync_shadow_vmcs = false;
9144 }
9145
Avi Kivity104f2262010-11-18 13:12:52 +02009146 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9147 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9148 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9149 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9150
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009151 cr3 = __get_current_cr3_fast();
9152 if (unlikely(cr3 != vmx->host_state.vmcs_host_cr3)) {
9153 vmcs_writel(HOST_CR3, cr3);
9154 vmx->host_state.vmcs_host_cr3 = cr3;
9155 }
9156
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009157 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009158 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
9159 vmcs_writel(HOST_CR4, cr4);
9160 vmx->host_state.vmcs_host_cr4 = cr4;
9161 }
9162
Avi Kivity104f2262010-11-18 13:12:52 +02009163 /* When single-stepping over STI and MOV SS, we must clear the
9164 * corresponding interruptibility bits in the guest state. Otherwise
9165 * vmentry fails as it then expects bit 14 (BS) in pending debug
9166 * exceptions being set, but that's not correct for the guest debugging
9167 * case. */
9168 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9169 vmx_set_interrupt_shadow(vcpu, 0);
9170
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009171 if (vmx->guest_pkru_valid)
9172 __write_pkru(vmx->guest_pkru);
9173
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009174 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009175 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009176
Yunhong Jiang64672c92016-06-13 14:19:59 -07009177 vmx_arm_hv_timer(vcpu);
9178
Nadav Har'Eld462b812011-05-24 15:26:10 +03009179 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009180 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009181 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009182 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9183 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9184 "push %%" _ASM_CX " \n\t"
9185 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009186 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009187 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009188 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009189 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009190 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009191 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9192 "mov %%cr2, %%" _ASM_DX " \n\t"
9193 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009194 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009195 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009196 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009197 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009198 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009199 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009200 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9201 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9202 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9203 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9204 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9205 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009206#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009207 "mov %c[r8](%0), %%r8 \n\t"
9208 "mov %c[r9](%0), %%r9 \n\t"
9209 "mov %c[r10](%0), %%r10 \n\t"
9210 "mov %c[r11](%0), %%r11 \n\t"
9211 "mov %c[r12](%0), %%r12 \n\t"
9212 "mov %c[r13](%0), %%r13 \n\t"
9213 "mov %c[r14](%0), %%r14 \n\t"
9214 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009215#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009216 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009217
Avi Kivity6aa8b732006-12-10 02:21:36 -08009218 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009219 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009220 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009221 "jmp 2f \n\t"
9222 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9223 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009224 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009225 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009226 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009227 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9228 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9229 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9230 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9231 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9232 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9233 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009234#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009235 "mov %%r8, %c[r8](%0) \n\t"
9236 "mov %%r9, %c[r9](%0) \n\t"
9237 "mov %%r10, %c[r10](%0) \n\t"
9238 "mov %%r11, %c[r11](%0) \n\t"
9239 "mov %%r12, %c[r12](%0) \n\t"
9240 "mov %%r13, %c[r13](%0) \n\t"
9241 "mov %%r14, %c[r14](%0) \n\t"
9242 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009243#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009244 "mov %%cr2, %%" _ASM_AX " \n\t"
9245 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009246
Avi Kivityb188c81f2012-09-16 15:10:58 +03009247 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009248 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009249 ".pushsection .rodata \n\t"
9250 ".global vmx_return \n\t"
9251 "vmx_return: " _ASM_PTR " 2b \n\t"
9252 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009253 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009254 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009255 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009256 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009257 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9258 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9259 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9260 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9261 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9262 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9263 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009264#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009265 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9266 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9267 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9268 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9269 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9270 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9271 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9272 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009273#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009274 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9275 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009276 : "cc", "memory"
9277#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009278 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009279 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009280#else
9281 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009282#endif
9283 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009284
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009285 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9286 if (debugctlmsr)
9287 update_debugctlmsr(debugctlmsr);
9288
Avi Kivityaa67f602012-08-01 16:48:03 +03009289#ifndef CONFIG_X86_64
9290 /*
9291 * The sysexit path does not restore ds/es, so we must set them to
9292 * a reasonable value ourselves.
9293 *
9294 * We can't defer this to vmx_load_host_state() since that function
9295 * may be executed in interrupt context, which saves and restore segments
9296 * around it, nullifying its effect.
9297 */
9298 loadsegment(ds, __USER_DS);
9299 loadsegment(es, __USER_DS);
9300#endif
9301
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009302 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009303 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009304 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009305 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009306 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009307 vcpu->arch.regs_dirty = 0;
9308
Avi Kivity1155f762007-11-22 11:30:47 +02009309 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9310
Nadav Har'Eld462b812011-05-24 15:26:10 +03009311 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009312
Avi Kivity51aa01d2010-07-20 14:31:20 +03009313 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009314
Gleb Natapove0b890d2013-09-25 12:51:33 +03009315 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009316 * eager fpu is enabled if PKEY is supported and CR4 is switched
9317 * back on host, so it is safe to read guest PKRU from current
9318 * XSAVE.
9319 */
9320 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9321 vmx->guest_pkru = __read_pkru();
9322 if (vmx->guest_pkru != vmx->host_pkru) {
9323 vmx->guest_pkru_valid = true;
9324 __write_pkru(vmx->host_pkru);
9325 } else
9326 vmx->guest_pkru_valid = false;
9327 }
9328
9329 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009330 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9331 * we did not inject a still-pending event to L1 now because of
9332 * nested_run_pending, we need to re-enable this bit.
9333 */
9334 if (vmx->nested.nested_run_pending)
9335 kvm_make_request(KVM_REQ_EVENT, vcpu);
9336
9337 vmx->nested.nested_run_pending = 0;
9338
Avi Kivity51aa01d2010-07-20 14:31:20 +03009339 vmx_complete_atomic_exit(vmx);
9340 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009341 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009342}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009343STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009344
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009345static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009346{
9347 struct vcpu_vmx *vmx = to_vmx(vcpu);
9348 int cpu;
9349
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009350 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009351 return;
9352
9353 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009354 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009355 vmx_vcpu_put(vcpu);
9356 vmx_vcpu_load(vcpu, cpu);
9357 vcpu->cpu = cpu;
9358 put_cpu();
9359}
9360
Jim Mattson2f1fe812016-07-08 15:36:06 -07009361/*
9362 * Ensure that the current vmcs of the logical processor is the
9363 * vmcs01 of the vcpu before calling free_nested().
9364 */
9365static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9366{
9367 struct vcpu_vmx *vmx = to_vmx(vcpu);
9368 int r;
9369
9370 r = vcpu_load(vcpu);
9371 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009372 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009373 free_nested(vmx);
9374 vcpu_put(vcpu);
9375}
9376
Avi Kivity6aa8b732006-12-10 02:21:36 -08009377static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9378{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009379 struct vcpu_vmx *vmx = to_vmx(vcpu);
9380
Kai Huang843e4332015-01-28 10:54:28 +08009381 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009382 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009383 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009384 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009385 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009386 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009387 kfree(vmx->guest_msrs);
9388 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009389 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009390}
9391
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009392static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009393{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009394 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009395 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009396 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009397
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009398 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009399 return ERR_PTR(-ENOMEM);
9400
Wanpeng Li991e7a02015-09-16 17:30:05 +08009401 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009402
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009403 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9404 if (err)
9405 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009406
Peter Feiner4e595162016-07-07 14:49:58 -07009407 err = -ENOMEM;
9408
9409 /*
9410 * If PML is turned on, failure on enabling PML just results in failure
9411 * of creating the vcpu, therefore we can simplify PML logic (by
9412 * avoiding dealing with cases, such as enabling PML partially on vcpus
9413 * for the guest, etc.
9414 */
9415 if (enable_pml) {
9416 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9417 if (!vmx->pml_pg)
9418 goto uninit_vcpu;
9419 }
9420
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009421 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009422 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9423 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009424
Peter Feiner4e595162016-07-07 14:49:58 -07009425 if (!vmx->guest_msrs)
9426 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009427
Nadav Har'Eld462b812011-05-24 15:26:10 +03009428 vmx->loaded_vmcs = &vmx->vmcs01;
9429 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009430 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009431 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009432 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009433 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009434
Avi Kivity15ad7142007-07-11 18:17:21 +03009435 cpu = get_cpu();
9436 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009437 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009438 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009439 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009440 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009441 if (err)
9442 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009443 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009444 err = alloc_apic_access_page(kvm);
9445 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009446 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009447 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009448
Sheng Yangb927a3c2009-07-21 10:42:48 +08009449 if (enable_ept) {
9450 if (!kvm->arch.ept_identity_map_addr)
9451 kvm->arch.ept_identity_map_addr =
9452 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009453 err = init_rmode_identity_map(kvm);
9454 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009455 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009456 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009457
Wanpeng Li5c614b32015-10-13 09:18:36 -07009458 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009459 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009460 vmx->nested.vpid02 = allocate_vpid();
9461 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009462
Wincy Van705699a2015-02-03 23:58:17 +08009463 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009464 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009465
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009466 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9467
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009468 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009469
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009470free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009471 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009472 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009473free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009474 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009475free_pml:
9476 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009477uninit_vcpu:
9478 kvm_vcpu_uninit(&vmx->vcpu);
9479free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009480 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009481 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009482 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009483}
9484
Yang, Sheng002c7f72007-07-31 14:23:01 +03009485static void __init vmx_check_processor_compat(void *rtn)
9486{
9487 struct vmcs_config vmcs_conf;
9488
9489 *(int *)rtn = 0;
9490 if (setup_vmcs_config(&vmcs_conf) < 0)
9491 *(int *)rtn = -EIO;
9492 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9493 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9494 smp_processor_id());
9495 *(int *)rtn = -EIO;
9496 }
9497}
9498
Sheng Yang67253af2008-04-25 10:20:22 +08009499static int get_ept_level(void)
9500{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009501 return 4;
Sheng Yang67253af2008-04-25 10:20:22 +08009502}
9503
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009504static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009505{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009506 u8 cache;
9507 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009508
Sheng Yang522c68c2009-04-27 20:35:43 +08009509 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009510 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009511 * 2. EPT with VT-d:
9512 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009513 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009514 * b. VT-d with snooping control feature: snooping control feature of
9515 * VT-d engine can guarantee the cache correctness. Just set it
9516 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009517 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009518 * consistent with host MTRR
9519 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009520 if (is_mmio) {
9521 cache = MTRR_TYPE_UNCACHABLE;
9522 goto exit;
9523 }
9524
9525 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009526 ipat = VMX_EPT_IPAT_BIT;
9527 cache = MTRR_TYPE_WRBACK;
9528 goto exit;
9529 }
9530
9531 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9532 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009533 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009534 cache = MTRR_TYPE_WRBACK;
9535 else
9536 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009537 goto exit;
9538 }
9539
Xiao Guangrongff536042015-06-15 16:55:22 +08009540 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009541
9542exit:
9543 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009544}
9545
Sheng Yang17cc3932010-01-05 19:02:27 +08009546static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009547{
Sheng Yang878403b2010-01-05 19:02:29 +08009548 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9549 return PT_DIRECTORY_LEVEL;
9550 else
9551 /* For shadow and EPT supported 1GB page */
9552 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009553}
9554
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009555static void vmcs_set_secondary_exec_control(u32 new_ctl)
9556{
9557 /*
9558 * These bits in the secondary execution controls field
9559 * are dynamic, the others are mostly based on the hypervisor
9560 * architecture and the guest's CPUID. Do not touch the
9561 * dynamic bits.
9562 */
9563 u32 mask =
9564 SECONDARY_EXEC_SHADOW_VMCS |
9565 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9566 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9567
9568 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9569
9570 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9571 (new_ctl & ~mask) | (cur_ctl & mask));
9572}
9573
David Matlack8322ebb2016-11-29 18:14:09 -08009574/*
9575 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9576 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9577 */
9578static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9579{
9580 struct vcpu_vmx *vmx = to_vmx(vcpu);
9581 struct kvm_cpuid_entry2 *entry;
9582
9583 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9584 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9585
9586#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9587 if (entry && (entry->_reg & (_cpuid_mask))) \
9588 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9589} while (0)
9590
9591 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9592 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9593 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9594 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9595 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9596 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9597 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9598 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9599 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9600 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9601 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9602 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9603 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9604 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9605 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9606
9607 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9608 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9609 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9610 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9611 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9612 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9613 cr4_fixed1_update(bit(11), ecx, bit(2));
9614
9615#undef cr4_fixed1_update
9616}
9617
Sheng Yang0e851882009-12-18 16:48:46 +08009618static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9619{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009620 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009621 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009622
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009623 if (vmx_rdtscp_supported()) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02009624 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009625 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009626 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009627
Paolo Bonzini8b972652015-09-15 17:34:42 +02009628 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009629 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009630 vmx->nested.nested_vmx_secondary_ctls_high |=
9631 SECONDARY_EXEC_RDTSCP;
9632 else
9633 vmx->nested.nested_vmx_secondary_ctls_high &=
9634 ~SECONDARY_EXEC_RDTSCP;
9635 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009636 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009637
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009638 if (vmx_invpcid_supported()) {
9639 /* Exposing INVPCID only when PCID is exposed */
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009640 bool invpcid_enabled =
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02009641 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
Radim Krčmářd6321d42017-08-05 00:12:49 +02009642 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009643
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009644 if (!invpcid_enabled) {
9645 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Radim Krčmář1b4d56b2017-08-05 00:12:50 +02009646 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
Paolo Bonzini90a2db62017-07-27 13:22:13 +02009647 }
9648
9649 if (nested) {
9650 if (invpcid_enabled)
9651 vmx->nested.nested_vmx_secondary_ctls_high |=
9652 SECONDARY_EXEC_ENABLE_INVPCID;
9653 else
9654 vmx->nested.nested_vmx_secondary_ctls_high &=
9655 ~SECONDARY_EXEC_ENABLE_INVPCID;
9656 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009657 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009658
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009659 if (cpu_has_secondary_exec_ctrls())
9660 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009661
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009662 if (nested_vmx_allowed(vcpu))
9663 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9664 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9665 else
9666 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9667 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009668
9669 if (nested_vmx_allowed(vcpu))
9670 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009671}
9672
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009673static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9674{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009675 if (func == 1 && nested)
9676 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009677}
9678
Yang Zhang25d92082013-08-06 12:00:32 +03009679static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9680 struct x86_exception *fault)
9681{
Jan Kiszka533558b2014-01-04 18:47:20 +01009682 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009683 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009684 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009685 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009686
Bandan Dasc5f983f2017-05-05 15:25:14 -04009687 if (vmx->nested.pml_full) {
9688 exit_reason = EXIT_REASON_PML_FULL;
9689 vmx->nested.pml_full = false;
9690 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9691 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009692 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009693 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009694 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009695
9696 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009697 vmcs12->guest_physical_address = fault->address;
9698}
9699
Peter Feiner995f00a2017-06-30 17:26:32 -07009700static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9701{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009702 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009703}
9704
Nadav Har'El155a97a2013-08-05 11:07:16 +03009705/* Callbacks for nested_ept_init_mmu_context: */
9706
9707static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9708{
9709 /* return the page table to be shadowed - in our case, EPT12 */
9710 return get_vmcs12(vcpu)->ept_pointer;
9711}
9712
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009713static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009714{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009715 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009716 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009717 return 1;
9718
9719 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009720 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009721 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009722 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009723 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009724 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9725 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9726 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9727
9728 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009729 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009730}
9731
9732static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9733{
9734 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9735}
9736
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009737static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9738 u16 error_code)
9739{
9740 bool inequality, bit;
9741
9742 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9743 inequality =
9744 (error_code & vmcs12->page_fault_error_code_mask) !=
9745 vmcs12->page_fault_error_code_match;
9746 return inequality ^ bit;
9747}
9748
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009749static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9750 struct x86_exception *fault)
9751{
9752 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9753
9754 WARN_ON(!is_guest_mode(vcpu));
9755
Paolo Bonzini7313c692017-07-27 10:31:25 +02009756 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009757 vmcs12->vm_exit_intr_error_code = fault->error_code;
9758 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9759 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9760 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9761 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009762 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009763 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009764 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009765}
9766
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009767static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9768 struct vmcs12 *vmcs12);
9769
9770static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009771 struct vmcs12 *vmcs12)
9772{
9773 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009774 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009775 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009776
9777 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009778 /*
9779 * Translate L1 physical address to host physical
9780 * address for vmcs02. Keep the page pinned, so this
9781 * physical address remains valid. We keep a reference
9782 * to it so we can release it later.
9783 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009784 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009785 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009786 vmx->nested.apic_access_page = NULL;
9787 }
9788 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009789 /*
9790 * If translation failed, no matter: This feature asks
9791 * to exit when accessing the given address, and if it
9792 * can never be accessed, this feature won't do
9793 * anything anyway.
9794 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009795 if (!is_error_page(page)) {
9796 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009797 hpa = page_to_phys(vmx->nested.apic_access_page);
9798 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9799 } else {
9800 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9801 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9802 }
9803 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9804 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9805 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9806 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9807 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009808 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009809
9810 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009811 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009812 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009813 vmx->nested.virtual_apic_page = NULL;
9814 }
9815 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009816
9817 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009818 * If translation failed, VM entry will fail because
9819 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9820 * Failing the vm entry is _not_ what the processor
9821 * does but it's basically the only possibility we
9822 * have. We could still enter the guest if CR8 load
9823 * exits are enabled, CR8 store exits are enabled, and
9824 * virtualize APIC access is disabled; in this case
9825 * the processor would never use the TPR shadow and we
9826 * could simply clear the bit from the execution
9827 * control. But such a configuration is useless, so
9828 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009829 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009830 if (!is_error_page(page)) {
9831 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009832 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9833 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9834 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009835 }
9836
Wincy Van705699a2015-02-03 23:58:17 +08009837 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009838 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9839 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009840 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009841 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009842 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009843 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9844 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009845 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009846 vmx->nested.pi_desc_page = page;
9847 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009848 vmx->nested.pi_desc =
9849 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9850 (unsigned long)(vmcs12->posted_intr_desc_addr &
9851 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009852 vmcs_write64(POSTED_INTR_DESC_ADDR,
9853 page_to_phys(vmx->nested.pi_desc_page) +
9854 (unsigned long)(vmcs12->posted_intr_desc_addr &
9855 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009856 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009857 if (cpu_has_vmx_msr_bitmap() &&
9858 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9859 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9860 ;
9861 else
9862 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9863 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009864}
9865
Jan Kiszkaf4124502014-03-07 20:03:13 +01009866static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9867{
9868 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9869 struct vcpu_vmx *vmx = to_vmx(vcpu);
9870
9871 if (vcpu->arch.virtual_tsc_khz == 0)
9872 return;
9873
9874 /* Make sure short timeouts reliably trigger an immediate vmexit.
9875 * hrtimer_start does not guarantee this. */
9876 if (preemption_timeout <= 1) {
9877 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9878 return;
9879 }
9880
9881 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9882 preemption_timeout *= 1000000;
9883 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9884 hrtimer_start(&vmx->nested.preemption_timer,
9885 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9886}
9887
Jim Mattson56a20512017-07-06 16:33:06 -07009888static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9889 struct vmcs12 *vmcs12)
9890{
9891 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9892 return 0;
9893
9894 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9895 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9896 return -EINVAL;
9897
9898 return 0;
9899}
9900
Wincy Van3af18d92015-02-03 23:49:31 +08009901static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9902 struct vmcs12 *vmcs12)
9903{
Wincy Van3af18d92015-02-03 23:49:31 +08009904 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9905 return 0;
9906
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009907 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +08009908 return -EINVAL;
9909
9910 return 0;
9911}
9912
9913/*
9914 * Merge L0's and L1's MSR bitmap, return false to indicate that
9915 * we do not use the hardware.
9916 */
9917static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9918 struct vmcs12 *vmcs12)
9919{
Wincy Van82f0dd42015-02-03 23:57:18 +08009920 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009921 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +02009922 unsigned long *msr_bitmap_l1;
9923 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +08009924
Radim Krčmářd048c092016-08-08 20:16:22 +02009925 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +08009926 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9927 return false;
9928
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009929 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
9930 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +08009931 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +02009932 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009933
Radim Krčmářd048c092016-08-08 20:16:22 +02009934 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
9935
Wincy Vanf2b93282015-02-03 23:56:03 +08009936 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009937 if (nested_cpu_has_apic_reg_virt(vmcs12))
9938 for (msr = 0x800; msr <= 0x8ff; msr++)
9939 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009940 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +08009941 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +02009942
9943 nested_vmx_disable_intercept_for_msr(
9944 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +08009945 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9946 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +02009947
Wincy Van608406e2015-02-03 23:57:51 +08009948 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +08009949 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009950 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009951 APIC_BASE_MSR + (APIC_EOI >> 4),
9952 MSR_TYPE_W);
9953 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009954 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009955 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9956 MSR_TYPE_W);
9957 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009958 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009959 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009960 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009961
9962 return true;
9963}
9964
9965static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9966 struct vmcs12 *vmcs12)
9967{
Wincy Van82f0dd42015-02-03 23:57:18 +08009968 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009969 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009970 !nested_cpu_has_vid(vmcs12) &&
9971 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009972 return 0;
9973
9974 /*
9975 * If virtualize x2apic mode is enabled,
9976 * virtualize apic access must be disabled.
9977 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009978 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9979 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009980 return -EINVAL;
9981
Wincy Van608406e2015-02-03 23:57:51 +08009982 /*
9983 * If virtual interrupt delivery is enabled,
9984 * we must exit on external interrupts.
9985 */
9986 if (nested_cpu_has_vid(vmcs12) &&
9987 !nested_exit_on_intr(vcpu))
9988 return -EINVAL;
9989
Wincy Van705699a2015-02-03 23:58:17 +08009990 /*
9991 * bits 15:8 should be zero in posted_intr_nv,
9992 * the descriptor address has been already checked
9993 * in nested_get_vmcs12_pages.
9994 */
9995 if (nested_cpu_has_posted_intr(vmcs12) &&
9996 (!nested_cpu_has_vid(vmcs12) ||
9997 !nested_exit_intr_ack_set(vcpu) ||
9998 vmcs12->posted_intr_nv & 0xff00))
9999 return -EINVAL;
10000
Wincy Vanf2b93282015-02-03 23:56:03 +080010001 /* tpr shadow is needed by all apicv features. */
10002 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10003 return -EINVAL;
10004
10005 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010006}
10007
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010008static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10009 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010010 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010011{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010012 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010013 u64 count, addr;
10014
10015 if (vmcs12_read_any(vcpu, count_field, &count) ||
10016 vmcs12_read_any(vcpu, addr_field, &addr)) {
10017 WARN_ON(1);
10018 return -EINVAL;
10019 }
10020 if (count == 0)
10021 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010022 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010023 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10024 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010025 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010026 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10027 addr_field, maxphyaddr, count, addr);
10028 return -EINVAL;
10029 }
10030 return 0;
10031}
10032
10033static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10034 struct vmcs12 *vmcs12)
10035{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010036 if (vmcs12->vm_exit_msr_load_count == 0 &&
10037 vmcs12->vm_exit_msr_store_count == 0 &&
10038 vmcs12->vm_entry_msr_load_count == 0)
10039 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010040 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010041 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010042 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010043 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010044 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010045 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010046 return -EINVAL;
10047 return 0;
10048}
10049
Bandan Dasc5f983f2017-05-05 15:25:14 -040010050static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10051 struct vmcs12 *vmcs12)
10052{
10053 u64 address = vmcs12->pml_address;
10054 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10055
10056 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10057 if (!nested_cpu_has_ept(vmcs12) ||
10058 !IS_ALIGNED(address, 4096) ||
10059 address >> maxphyaddr)
10060 return -EINVAL;
10061 }
10062
10063 return 0;
10064}
10065
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010066static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10067 struct vmx_msr_entry *e)
10068{
10069 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010070 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010071 return -EINVAL;
10072 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10073 e->index == MSR_IA32_UCODE_REV)
10074 return -EINVAL;
10075 if (e->reserved != 0)
10076 return -EINVAL;
10077 return 0;
10078}
10079
10080static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10081 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010082{
10083 if (e->index == MSR_FS_BASE ||
10084 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010085 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10086 nested_vmx_msr_check_common(vcpu, e))
10087 return -EINVAL;
10088 return 0;
10089}
10090
10091static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10092 struct vmx_msr_entry *e)
10093{
10094 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10095 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010096 return -EINVAL;
10097 return 0;
10098}
10099
10100/*
10101 * Load guest's/host's msr at nested entry/exit.
10102 * return 0 for success, entry index for failure.
10103 */
10104static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10105{
10106 u32 i;
10107 struct vmx_msr_entry e;
10108 struct msr_data msr;
10109
10110 msr.host_initiated = false;
10111 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010112 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10113 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010114 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010115 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10116 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010117 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010118 }
10119 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010120 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010121 "%s check failed (%u, 0x%x, 0x%x)\n",
10122 __func__, i, e.index, e.reserved);
10123 goto fail;
10124 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010125 msr.index = e.index;
10126 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010127 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010128 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010129 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10130 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010131 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010132 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010133 }
10134 return 0;
10135fail:
10136 return i + 1;
10137}
10138
10139static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10140{
10141 u32 i;
10142 struct vmx_msr_entry e;
10143
10144 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010145 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010146 if (kvm_vcpu_read_guest(vcpu,
10147 gpa + i * sizeof(e),
10148 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010149 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010150 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10151 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010152 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010153 }
10154 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010155 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010156 "%s check failed (%u, 0x%x, 0x%x)\n",
10157 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010158 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010159 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010160 msr_info.host_initiated = false;
10161 msr_info.index = e.index;
10162 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010163 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010164 "%s cannot read MSR (%u, 0x%x)\n",
10165 __func__, i, e.index);
10166 return -EINVAL;
10167 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010168 if (kvm_vcpu_write_guest(vcpu,
10169 gpa + i * sizeof(e) +
10170 offsetof(struct vmx_msr_entry, value),
10171 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010172 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010173 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010174 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010175 return -EINVAL;
10176 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010177 }
10178 return 0;
10179}
10180
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010181static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10182{
10183 unsigned long invalid_mask;
10184
10185 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10186 return (val & invalid_mask) == 0;
10187}
10188
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010189/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010190 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10191 * emulating VM entry into a guest with EPT enabled.
10192 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10193 * is assigned to entry_failure_code on failure.
10194 */
10195static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010196 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010197{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010198 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010199 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010200 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10201 return 1;
10202 }
10203
10204 /*
10205 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10206 * must not be dereferenced.
10207 */
10208 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10209 !nested_ept) {
10210 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10211 *entry_failure_code = ENTRY_FAIL_PDPTE;
10212 return 1;
10213 }
10214 }
10215
10216 vcpu->arch.cr3 = cr3;
10217 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10218 }
10219
10220 kvm_mmu_reset_context(vcpu);
10221 return 0;
10222}
10223
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010224/*
10225 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10226 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010227 * 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 +030010228 * guest in a way that will both be appropriate to L1's requests, and our
10229 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10230 * function also has additional necessary side-effects, like setting various
10231 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010232 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10233 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010234 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010235static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010236 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010237{
10238 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010239 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010240
10241 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10242 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10243 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10244 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10245 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10246 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10247 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10248 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10249 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10250 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10251 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10252 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10253 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10254 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10255 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10256 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10257 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10258 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10259 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10260 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10261 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10262 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10263 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10264 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10265 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10266 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10267 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10268 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10269 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10270 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10271 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10272 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10273 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10274 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10275 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10276 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10277
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010278 if (from_vmentry &&
10279 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010280 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10281 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10282 } else {
10283 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10284 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10285 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010286 if (from_vmentry) {
10287 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10288 vmcs12->vm_entry_intr_info_field);
10289 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10290 vmcs12->vm_entry_exception_error_code);
10291 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10292 vmcs12->vm_entry_instruction_len);
10293 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10294 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010295 vmx->loaded_vmcs->nmi_known_unmasked =
10296 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010297 } else {
10298 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10299 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010300 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010301 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010302 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10303 vmcs12->guest_pending_dbg_exceptions);
10304 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10305 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10306
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010307 if (nested_cpu_has_xsaves(vmcs12))
10308 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010309 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10310
Jan Kiszkaf4124502014-03-07 20:03:13 +010010311 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010312
Paolo Bonzini93140062016-07-06 13:23:51 +020010313 /* Preemption timer setting is only taken from vmcs01. */
10314 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10315 exec_control |= vmcs_config.pin_based_exec_ctrl;
10316 if (vmx->hv_deadline_tsc == -1)
10317 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10318
10319 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010320 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010321 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10322 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010323 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010324 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010325 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010326 }
Wincy Van705699a2015-02-03 23:58:17 +080010327
Jan Kiszkaf4124502014-03-07 20:03:13 +010010328 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010329
Jan Kiszkaf4124502014-03-07 20:03:13 +010010330 vmx->nested.preemption_timer_expired = false;
10331 if (nested_cpu_has_preemption_timer(vmcs12))
10332 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010333
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010334 /*
10335 * Whether page-faults are trapped is determined by a combination of
10336 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10337 * If enable_ept, L0 doesn't care about page faults and we should
10338 * set all of these to L1's desires. However, if !enable_ept, L0 does
10339 * care about (at least some) page faults, and because it is not easy
10340 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10341 * to exit on each and every L2 page fault. This is done by setting
10342 * MASK=MATCH=0 and (see below) EB.PF=1.
10343 * Note that below we don't need special code to set EB.PF beyond the
10344 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10345 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10346 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010347 */
10348 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10349 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10350 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10351 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10352
10353 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf4124502014-03-07 20:03:13 +010010354 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +080010355
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010356 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010357 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010358 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010359 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010360 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010361 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10362 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010363 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010364 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10365 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10366 ~SECONDARY_EXEC_ENABLE_PML;
10367 exec_control |= vmcs12_exec_ctrl;
10368 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010369
Bandan Das27c42a12017-08-03 15:54:42 -040010370 /* All VMFUNCs are currently emulated through L0 vmexits. */
10371 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10372 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10373
Wincy Van608406e2015-02-03 23:57:51 +080010374 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10375 vmcs_write64(EOI_EXIT_BITMAP0,
10376 vmcs12->eoi_exit_bitmap0);
10377 vmcs_write64(EOI_EXIT_BITMAP1,
10378 vmcs12->eoi_exit_bitmap1);
10379 vmcs_write64(EOI_EXIT_BITMAP2,
10380 vmcs12->eoi_exit_bitmap2);
10381 vmcs_write64(EOI_EXIT_BITMAP3,
10382 vmcs12->eoi_exit_bitmap3);
10383 vmcs_write16(GUEST_INTR_STATUS,
10384 vmcs12->guest_intr_status);
10385 }
10386
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010387 /*
10388 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10389 * nested_get_vmcs12_pages will either fix it up or
10390 * remove the VM execution control.
10391 */
10392 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10393 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10394
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010395 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10396 }
10397
10398
10399 /*
10400 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10401 * Some constant fields are set here by vmx_set_constant_host_state().
10402 * Other fields are different per CPU, and will be set later when
10403 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10404 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010405 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010406
10407 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010408 * Set the MSR load/store lists to match L0's settings.
10409 */
10410 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10411 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10412 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10413 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10414 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10415
10416 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010417 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10418 * entry, but only if the current (host) sp changed from the value
10419 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10420 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10421 * here we just force the write to happen on entry.
10422 */
10423 vmx->host_rsp = 0;
10424
10425 exec_control = vmx_exec_control(vmx); /* L0's desires */
10426 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10427 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10428 exec_control &= ~CPU_BASED_TPR_SHADOW;
10429 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010430
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010431 /*
10432 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10433 * nested_get_vmcs12_pages can't fix it up, the illegal value
10434 * will result in a VM entry failure.
10435 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010436 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010437 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010438 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10439 }
10440
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010441 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010442 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010443 * Rather, exit every time.
10444 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010445 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10446 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10447
10448 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10449
10450 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10451 * bitwise-or of what L1 wants to trap for L2, and what we want to
10452 * trap. Note that CR0.TS also needs updating - we do this later.
10453 */
10454 update_exception_bitmap(vcpu);
10455 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10456 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10457
Nadav Har'El8049d652013-08-05 11:07:06 +030010458 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10459 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10460 * bits are further modified by vmx_set_efer() below.
10461 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010462 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010463
10464 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10465 * emulated by vmx_set_efer(), below.
10466 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010467 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010468 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10469 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010470 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10471
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010472 if (from_vmentry &&
10473 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010474 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010475 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010476 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010477 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010478 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010479
10480 set_cr4_guest_host_mask(vmx);
10481
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010482 if (from_vmentry &&
10483 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010484 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10485
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010486 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10487 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010488 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010489 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010490 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010491 if (kvm_has_tsc_control)
10492 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010493
10494 if (enable_vpid) {
10495 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010496 * There is no direct mapping between vpid02 and vpid12, the
10497 * vpid02 is per-vCPU for L0 and reused while the value of
10498 * vpid12 is changed w/ one invvpid during nested vmentry.
10499 * The vpid12 is allocated by L1 for L2, so it will not
10500 * influence global bitmap(for vpid01 and vpid02 allocation)
10501 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010502 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010503 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10504 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10505 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10506 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10507 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10508 }
10509 } else {
10510 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10511 vmx_flush_tlb(vcpu);
10512 }
10513
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010514 }
10515
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010516 if (enable_pml) {
10517 /*
10518 * Conceptually we want to copy the PML address and index from
10519 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10520 * since we always flush the log on each vmexit, this happens
10521 * to be equivalent to simply resetting the fields in vmcs02.
10522 */
10523 ASSERT(vmx->pml_pg);
10524 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10525 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10526 }
10527
Nadav Har'El155a97a2013-08-05 11:07:16 +030010528 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010529 if (nested_ept_init_mmu_context(vcpu)) {
10530 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10531 return 1;
10532 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010533 } else if (nested_cpu_has2(vmcs12,
10534 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10535 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010536 }
10537
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010538 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010539 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10540 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010541 * The CR0_READ_SHADOW is what L2 should have expected to read given
10542 * the specifications by L1; It's not enough to take
10543 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10544 * have more bits than L1 expected.
10545 */
10546 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10547 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10548
10549 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10550 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10551
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010552 if (from_vmentry &&
10553 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010554 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10555 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10556 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10557 else
10558 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10559 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10560 vmx_set_efer(vcpu, vcpu->arch.efer);
10561
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010562 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010563 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010564 entry_failure_code))
10565 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010566
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010567 if (!enable_ept)
10568 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10569
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010570 /*
10571 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10572 */
10573 if (enable_ept) {
10574 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10575 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10576 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10577 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10578 }
10579
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010580 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10581 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010582 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010583}
10584
Jim Mattsonca0bde22016-11-30 12:03:46 -080010585static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10586{
10587 struct vcpu_vmx *vmx = to_vmx(vcpu);
10588
10589 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10590 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10591 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10592
Jim Mattson56a20512017-07-06 16:33:06 -070010593 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10594 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10595
Jim Mattsonca0bde22016-11-30 12:03:46 -080010596 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10597 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10598
10599 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10600 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10601
10602 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10603 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10604
Bandan Dasc5f983f2017-05-05 15:25:14 -040010605 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10606 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10607
Jim Mattsonca0bde22016-11-30 12:03:46 -080010608 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10609 vmx->nested.nested_vmx_procbased_ctls_low,
10610 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010611 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10612 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10613 vmx->nested.nested_vmx_secondary_ctls_low,
10614 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010615 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10616 vmx->nested.nested_vmx_pinbased_ctls_low,
10617 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10618 !vmx_control_verify(vmcs12->vm_exit_controls,
10619 vmx->nested.nested_vmx_exit_ctls_low,
10620 vmx->nested.nested_vmx_exit_ctls_high) ||
10621 !vmx_control_verify(vmcs12->vm_entry_controls,
10622 vmx->nested.nested_vmx_entry_ctls_low,
10623 vmx->nested.nested_vmx_entry_ctls_high))
10624 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10625
Bandan Das41ab9372017-08-03 15:54:43 -040010626 if (nested_cpu_has_vmfunc(vmcs12)) {
10627 if (vmcs12->vm_function_control &
10628 ~vmx->nested.nested_vmx_vmfunc_controls)
10629 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10630
10631 if (nested_cpu_has_eptp_switching(vmcs12)) {
10632 if (!nested_cpu_has_ept(vmcs12) ||
10633 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10634 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10635 }
10636 }
Bandan Das27c42a12017-08-03 15:54:42 -040010637
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010638 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10639 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10640
Jim Mattsonca0bde22016-11-30 12:03:46 -080010641 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10642 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10643 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10644 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10645
10646 return 0;
10647}
10648
10649static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10650 u32 *exit_qual)
10651{
10652 bool ia32e;
10653
10654 *exit_qual = ENTRY_FAIL_DEFAULT;
10655
10656 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10657 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10658 return 1;
10659
10660 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10661 vmcs12->vmcs_link_pointer != -1ull) {
10662 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10663 return 1;
10664 }
10665
10666 /*
10667 * If the load IA32_EFER VM-entry control is 1, the following checks
10668 * are performed on the field for the IA32_EFER MSR:
10669 * - Bits reserved in the IA32_EFER MSR must be 0.
10670 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10671 * the IA-32e mode guest VM-exit control. It must also be identical
10672 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10673 * CR0.PG) is 1.
10674 */
10675 if (to_vmx(vcpu)->nested.nested_run_pending &&
10676 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10677 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10678 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10679 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10680 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10681 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10682 return 1;
10683 }
10684
10685 /*
10686 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10687 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10688 * the values of the LMA and LME bits in the field must each be that of
10689 * the host address-space size VM-exit control.
10690 */
10691 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10692 ia32e = (vmcs12->vm_exit_controls &
10693 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10694 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10695 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10696 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10697 return 1;
10698 }
10699
10700 return 0;
10701}
10702
Jim Mattson858e25c2016-11-30 12:03:47 -080010703static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10704{
10705 struct vcpu_vmx *vmx = to_vmx(vcpu);
10706 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10707 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010708 u32 msr_entry_idx;
10709 u32 exit_qual;
10710
10711 vmcs02 = nested_get_current_vmcs02(vmx);
10712 if (!vmcs02)
10713 return -ENOMEM;
10714
10715 enter_guest_mode(vcpu);
10716
10717 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10718 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10719
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010720 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010721 vmx_segment_cache_clear(vmx);
10722
10723 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10724 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010725 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010726 nested_vmx_entry_failure(vcpu, vmcs12,
10727 EXIT_REASON_INVALID_STATE, exit_qual);
10728 return 1;
10729 }
10730
10731 nested_get_vmcs12_pages(vcpu, vmcs12);
10732
10733 msr_entry_idx = nested_vmx_load_msr(vcpu,
10734 vmcs12->vm_entry_msr_load_addr,
10735 vmcs12->vm_entry_msr_load_count);
10736 if (msr_entry_idx) {
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_MSR_LOAD_FAIL, msr_entry_idx);
10741 return 1;
10742 }
10743
Jim Mattson858e25c2016-11-30 12:03:47 -080010744 /*
10745 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10746 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10747 * returned as far as L1 is concerned. It will only return (and set
10748 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10749 */
10750 return 0;
10751}
10752
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010753/*
10754 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10755 * for running an L2 nested guest.
10756 */
10757static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10758{
10759 struct vmcs12 *vmcs12;
10760 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010761 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010762 u32 exit_qual;
10763 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010764
Kyle Hueyeb277562016-11-29 12:40:39 -080010765 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010766 return 1;
10767
Kyle Hueyeb277562016-11-29 12:40:39 -080010768 if (!nested_vmx_check_vmcs12(vcpu))
10769 goto out;
10770
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010771 vmcs12 = get_vmcs12(vcpu);
10772
Abel Gordon012f83c2013-04-18 14:39:25 +030010773 if (enable_shadow_vmcs)
10774 copy_shadow_to_vmcs12(vmx);
10775
Nadav Har'El7c177932011-05-25 23:12:04 +030010776 /*
10777 * The nested entry process starts with enforcing various prerequisites
10778 * on vmcs12 as required by the Intel SDM, and act appropriately when
10779 * they fail: As the SDM explains, some conditions should cause the
10780 * instruction to fail, while others will cause the instruction to seem
10781 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10782 * To speed up the normal (success) code path, we should avoid checking
10783 * for misconfigurations which will anyway be caught by the processor
10784 * when using the merged vmcs02.
10785 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010786 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10787 nested_vmx_failValid(vcpu,
10788 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10789 goto out;
10790 }
10791
Nadav Har'El7c177932011-05-25 23:12:04 +030010792 if (vmcs12->launch_state == launch) {
10793 nested_vmx_failValid(vcpu,
10794 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10795 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010796 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010797 }
10798
Jim Mattsonca0bde22016-11-30 12:03:46 -080010799 ret = check_vmentry_prereqs(vcpu, vmcs12);
10800 if (ret) {
10801 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010802 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010803 }
10804
Nadav Har'El7c177932011-05-25 23:12:04 +030010805 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010806 * After this point, the trap flag no longer triggers a singlestep trap
10807 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10808 * This is not 100% correct; for performance reasons, we delegate most
10809 * of the checks on host state to the processor. If those fail,
10810 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010811 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010812 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010813
Jim Mattsonca0bde22016-11-30 12:03:46 -080010814 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10815 if (ret) {
10816 nested_vmx_entry_failure(vcpu, vmcs12,
10817 EXIT_REASON_INVALID_STATE, exit_qual);
10818 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010819 }
10820
10821 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010822 * We're finally done with prerequisite checking, and can start with
10823 * the nested entry.
10824 */
10825
Jim Mattson858e25c2016-11-30 12:03:47 -080010826 ret = enter_vmx_non_root_mode(vcpu, true);
10827 if (ret)
10828 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010829
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010830 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010831 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010832
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010833 vmx->nested.nested_run_pending = 1;
10834
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010835 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010836
10837out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010838 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010839}
10840
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010841/*
10842 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10843 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10844 * This function returns the new value we should put in vmcs12.guest_cr0.
10845 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10846 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10847 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10848 * didn't trap the bit, because if L1 did, so would L0).
10849 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10850 * been modified by L2, and L1 knows it. So just leave the old value of
10851 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10852 * isn't relevant, because if L0 traps this bit it can set it to anything.
10853 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10854 * changed these bits, and therefore they need to be updated, but L0
10855 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10856 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10857 */
10858static inline unsigned long
10859vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10860{
10861 return
10862 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10863 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10864 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10865 vcpu->arch.cr0_guest_owned_bits));
10866}
10867
10868static inline unsigned long
10869vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10870{
10871 return
10872 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10873 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10874 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10875 vcpu->arch.cr4_guest_owned_bits));
10876}
10877
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010878static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10879 struct vmcs12 *vmcs12)
10880{
10881 u32 idt_vectoring;
10882 unsigned int nr;
10883
Gleb Natapov851eb6672013-09-25 12:51:34 +030010884 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010885 nr = vcpu->arch.exception.nr;
10886 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10887
10888 if (kvm_exception_is_soft(nr)) {
10889 vmcs12->vm_exit_instruction_len =
10890 vcpu->arch.event_exit_inst_len;
10891 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10892 } else
10893 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10894
10895 if (vcpu->arch.exception.has_error_code) {
10896 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10897 vmcs12->idt_vectoring_error_code =
10898 vcpu->arch.exception.error_code;
10899 }
10900
10901 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010902 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010903 vmcs12->idt_vectoring_info_field =
10904 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10905 } else if (vcpu->arch.interrupt.pending) {
10906 nr = vcpu->arch.interrupt.nr;
10907 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10908
10909 if (vcpu->arch.interrupt.soft) {
10910 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10911 vmcs12->vm_entry_instruction_len =
10912 vcpu->arch.event_exit_inst_len;
10913 } else
10914 idt_vectoring |= INTR_TYPE_EXT_INTR;
10915
10916 vmcs12->idt_vectoring_info_field = idt_vectoring;
10917 }
10918}
10919
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010920static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10921{
10922 struct vcpu_vmx *vmx = to_vmx(vcpu);
10923
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010924 if (vcpu->arch.exception.pending ||
10925 vcpu->arch.nmi_injected ||
10926 vcpu->arch.interrupt.pending)
10927 return -EBUSY;
10928
Jan Kiszkaf4124502014-03-07 20:03:13 +010010929 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10930 vmx->nested.preemption_timer_expired) {
10931 if (vmx->nested.nested_run_pending)
10932 return -EBUSY;
10933 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10934 return 0;
10935 }
10936
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010937 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080010938 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010939 return -EBUSY;
10940 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10941 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10942 INTR_INFO_VALID_MASK, 0);
10943 /*
10944 * The NMI-triggered VM exit counts as injection:
10945 * clear this one and block further NMIs.
10946 */
10947 vcpu->arch.nmi_pending = 0;
10948 vmx_set_nmi_mask(vcpu, true);
10949 return 0;
10950 }
10951
10952 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10953 nested_exit_on_intr(vcpu)) {
10954 if (vmx->nested.nested_run_pending)
10955 return -EBUSY;
10956 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010957 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010958 }
10959
David Hildenbrand6342c502017-01-25 11:58:58 +010010960 vmx_complete_nested_posted_interrupt(vcpu);
10961 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010962}
10963
Jan Kiszkaf4124502014-03-07 20:03:13 +010010964static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10965{
10966 ktime_t remaining =
10967 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10968 u64 value;
10969
10970 if (ktime_to_ns(remaining) <= 0)
10971 return 0;
10972
10973 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10974 do_div(value, 1000000);
10975 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10976}
10977
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010978/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010979 * Update the guest state fields of vmcs12 to reflect changes that
10980 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
10981 * VM-entry controls is also updated, since this is really a guest
10982 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010983 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010984static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010985{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010986 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10987 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10988
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010989 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10990 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10991 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10992
10993 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10994 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10995 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10996 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10997 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10998 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10999 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11000 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11001 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11002 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11003 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11004 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11005 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11006 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11007 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11008 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11009 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11010 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11011 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11012 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11013 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11014 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11015 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11016 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11017 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11018 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11019 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11020 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11021 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11022 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11023 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11024 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11025 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11026 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11027 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11028 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11029
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011030 vmcs12->guest_interruptibility_info =
11031 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11032 vmcs12->guest_pending_dbg_exceptions =
11033 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011034 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11035 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11036 else
11037 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011038
Jan Kiszkaf4124502014-03-07 20:03:13 +010011039 if (nested_cpu_has_preemption_timer(vmcs12)) {
11040 if (vmcs12->vm_exit_controls &
11041 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11042 vmcs12->vmx_preemption_timer_value =
11043 vmx_get_preemption_timer_value(vcpu);
11044 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11045 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011046
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011047 /*
11048 * In some cases (usually, nested EPT), L2 is allowed to change its
11049 * own CR3 without exiting. If it has changed it, we must keep it.
11050 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11051 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11052 *
11053 * Additionally, restore L2's PDPTR to vmcs12.
11054 */
11055 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011056 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011057 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11058 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11059 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11060 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11061 }
11062
Jim Mattsond281e132017-06-01 12:44:46 -070011063 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011064
Wincy Van608406e2015-02-03 23:57:51 +080011065 if (nested_cpu_has_vid(vmcs12))
11066 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11067
Jan Kiszkac18911a2013-03-13 16:06:41 +010011068 vmcs12->vm_entry_controls =
11069 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011070 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011071
Jan Kiszka2996fca2014-06-16 13:59:43 +020011072 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11073 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11074 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11075 }
11076
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011077 /* TODO: These cannot have changed unless we have MSR bitmaps and
11078 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011079 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011080 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011081 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11082 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011083 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11084 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11085 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011086 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011087 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011088}
11089
11090/*
11091 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11092 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11093 * and this function updates it to reflect the changes to the guest state while
11094 * L2 was running (and perhaps made some exits which were handled directly by L0
11095 * without going back to L1), and to reflect the exit reason.
11096 * Note that we do not have to copy here all VMCS fields, just those that
11097 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11098 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11099 * which already writes to vmcs12 directly.
11100 */
11101static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11102 u32 exit_reason, u32 exit_intr_info,
11103 unsigned long exit_qualification)
11104{
11105 /* update guest state fields: */
11106 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011107
11108 /* update exit information fields: */
11109
Jan Kiszka533558b2014-01-04 18:47:20 +010011110 vmcs12->vm_exit_reason = exit_reason;
11111 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011112 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011113
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011114 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011115 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11116 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11117
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011118 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011119 vmcs12->launch_state = 1;
11120
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011121 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11122 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011123 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011124
11125 /*
11126 * Transfer the event that L0 or L1 may wanted to inject into
11127 * L2 to IDT_VECTORING_INFO_FIELD.
11128 */
11129 vmcs12_save_pending_event(vcpu, vmcs12);
11130 }
11131
11132 /*
11133 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11134 * preserved above and would only end up incorrectly in L1.
11135 */
11136 vcpu->arch.nmi_injected = false;
11137 kvm_clear_exception_queue(vcpu);
11138 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011139}
11140
11141/*
11142 * A part of what we need to when the nested L2 guest exits and we want to
11143 * run its L1 parent, is to reset L1's guest state to the host state specified
11144 * in vmcs12.
11145 * This function is to be called not only on normal nested exit, but also on
11146 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11147 * Failures During or After Loading Guest State").
11148 * This function should be called when the active VMCS is L1's (vmcs01).
11149 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011150static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11151 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011152{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011153 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011154 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011155
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011156 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11157 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011158 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011159 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11160 else
11161 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11162 vmx_set_efer(vcpu, vcpu->arch.efer);
11163
11164 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11165 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011166 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011167 /*
11168 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011169 * actually changed, because vmx_set_cr0 refers to efer set above.
11170 *
11171 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11172 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011173 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011174 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011175 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011176
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011177 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011178 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
11179 kvm_set_cr4(vcpu, vmcs12->host_cr4);
11180
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011181 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011182
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011183 /*
11184 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11185 * couldn't have changed.
11186 */
11187 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11188 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011189
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011190 if (!enable_ept)
11191 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11192
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011193 if (enable_vpid) {
11194 /*
11195 * Trivially support vpid by letting L2s share their parent
11196 * L1's vpid. TODO: move to a more elaborate solution, giving
11197 * each L2 its own vpid and exposing the vpid feature to L1.
11198 */
11199 vmx_flush_tlb(vcpu);
11200 }
Wincy Van06a55242017-04-28 13:13:59 +080011201 /* Restore posted intr vector. */
11202 if (nested_cpu_has_posted_intr(vmcs12))
11203 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011204
11205 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11206 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11207 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11208 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11209 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011210
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011211 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11212 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11213 vmcs_write64(GUEST_BNDCFGS, 0);
11214
Jan Kiszka44811c02013-08-04 17:17:27 +020011215 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011216 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011217 vcpu->arch.pat = vmcs12->host_ia32_pat;
11218 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011219 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11220 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11221 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011222
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011223 /* Set L1 segment info according to Intel SDM
11224 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11225 seg = (struct kvm_segment) {
11226 .base = 0,
11227 .limit = 0xFFFFFFFF,
11228 .selector = vmcs12->host_cs_selector,
11229 .type = 11,
11230 .present = 1,
11231 .s = 1,
11232 .g = 1
11233 };
11234 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11235 seg.l = 1;
11236 else
11237 seg.db = 1;
11238 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11239 seg = (struct kvm_segment) {
11240 .base = 0,
11241 .limit = 0xFFFFFFFF,
11242 .type = 3,
11243 .present = 1,
11244 .s = 1,
11245 .db = 1,
11246 .g = 1
11247 };
11248 seg.selector = vmcs12->host_ds_selector;
11249 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11250 seg.selector = vmcs12->host_es_selector;
11251 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11252 seg.selector = vmcs12->host_ss_selector;
11253 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11254 seg.selector = vmcs12->host_fs_selector;
11255 seg.base = vmcs12->host_fs_base;
11256 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11257 seg.selector = vmcs12->host_gs_selector;
11258 seg.base = vmcs12->host_gs_base;
11259 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11260 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011261 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011262 .limit = 0x67,
11263 .selector = vmcs12->host_tr_selector,
11264 .type = 11,
11265 .present = 1
11266 };
11267 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11268
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011269 kvm_set_dr(vcpu, 7, 0x400);
11270 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011271
Wincy Van3af18d92015-02-03 23:49:31 +080011272 if (cpu_has_vmx_msr_bitmap())
11273 vmx_set_msr_bitmap(vcpu);
11274
Wincy Vanff651cb2014-12-11 08:52:58 +030011275 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11276 vmcs12->vm_exit_msr_load_count))
11277 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011278}
11279
11280/*
11281 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11282 * and modify vmcs12 to make it see what it would expect to see there if
11283 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11284 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011285static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11286 u32 exit_intr_info,
11287 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011288{
11289 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011290 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011291 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011292
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011293 /* trying to cancel vmlaunch/vmresume is a bug */
11294 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11295
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011296 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011297 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11298 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011299
Wincy Vanff651cb2014-12-11 08:52:58 +030011300 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11301 vmcs12->vm_exit_msr_store_count))
11302 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11303
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011304 if (unlikely(vmx->fail))
11305 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11306
David Hildenbrand1279a6b12017-03-20 10:00:08 +010011307 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Wanpeng Lif3380ca2014-08-05 12:42:23 +080011308
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011309 /*
11310 * TODO: SDM says that with acknowledge interrupt on exit, bit 31 of
11311 * the VM-exit interrupt information (valid interrupt) is always set to
11312 * 1 on EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't need
11313 * kvm_cpu_has_interrupt(). See the commit message for details.
11314 */
11315 if (nested_exit_intr_ack_set(vcpu) &&
11316 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11317 kvm_cpu_has_interrupt(vcpu)) {
Bandan Das77b0f5d2014-04-19 18:17:45 -040011318 int irq = kvm_cpu_get_interrupt(vcpu);
11319 WARN_ON(irq < 0);
11320 vmcs12->vm_exit_intr_info = irq |
11321 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11322 }
11323
Jan Kiszka542060e2014-01-04 18:47:21 +010011324 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11325 vmcs12->exit_qualification,
11326 vmcs12->idt_vectoring_info_field,
11327 vmcs12->vm_exit_intr_info,
11328 vmcs12->vm_exit_intr_error_code,
11329 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011330
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011331 vm_entry_controls_reset_shadow(vmx);
11332 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011333 vmx_segment_cache_clear(vmx);
11334
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011335 /* if no vmcs02 cache requested, remove the one we used */
11336 if (VMCS02_POOL_SIZE == 0)
11337 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11338
11339 load_vmcs12_host_state(vcpu, vmcs12);
11340
Paolo Bonzini93140062016-07-06 13:23:51 +020011341 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011342 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11343 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011344 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020011345 if (vmx->hv_deadline_tsc == -1)
11346 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11347 PIN_BASED_VMX_PREEMPTION_TIMER);
11348 else
11349 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11350 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011351 if (kvm_has_tsc_control)
11352 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011353
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011354 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11355 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11356 vmx_set_virtual_x2apic_mode(vcpu,
11357 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011358 } else if (!nested_cpu_has_ept(vmcs12) &&
11359 nested_cpu_has2(vmcs12,
11360 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11361 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011362 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011363
11364 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11365 vmx->host_rsp = 0;
11366
11367 /* Unpin physical memory we referred to in vmcs02 */
11368 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011369 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011370 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011371 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011372 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011373 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011374 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011375 }
Wincy Van705699a2015-02-03 23:58:17 +080011376 if (vmx->nested.pi_desc_page) {
11377 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011378 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011379 vmx->nested.pi_desc_page = NULL;
11380 vmx->nested.pi_desc = NULL;
11381 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011382
11383 /*
Tang Chen38b99172014-09-24 15:57:54 +080011384 * We are now running in L2, mmu_notifier will force to reload the
11385 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11386 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011387 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011388
11389 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011390 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11391 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11392 * success or failure flag accordingly.
11393 */
11394 if (unlikely(vmx->fail)) {
11395 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011396 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011397 } else
11398 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011399 if (enable_shadow_vmcs)
11400 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011401
11402 /* in case we halted in L2 */
11403 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011404}
11405
Nadav Har'El7c177932011-05-25 23:12:04 +030011406/*
Jan Kiszka42124922014-01-04 18:47:19 +010011407 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11408 */
11409static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11410{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011411 if (is_guest_mode(vcpu)) {
11412 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011413 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011414 }
Jan Kiszka42124922014-01-04 18:47:19 +010011415 free_nested(to_vmx(vcpu));
11416}
11417
11418/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011419 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11420 * 23.7 "VM-entry failures during or after loading guest state" (this also
11421 * lists the acceptable exit-reason and exit-qualification parameters).
11422 * It should only be called before L2 actually succeeded to run, and when
11423 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11424 */
11425static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11426 struct vmcs12 *vmcs12,
11427 u32 reason, unsigned long qualification)
11428{
11429 load_vmcs12_host_state(vcpu, vmcs12);
11430 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11431 vmcs12->exit_qualification = qualification;
11432 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011433 if (enable_shadow_vmcs)
11434 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011435}
11436
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011437static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11438 struct x86_instruction_info *info,
11439 enum x86_intercept_stage stage)
11440{
11441 return X86EMUL_CONTINUE;
11442}
11443
Yunhong Jiang64672c92016-06-13 14:19:59 -070011444#ifdef CONFIG_X86_64
11445/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11446static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11447 u64 divisor, u64 *result)
11448{
11449 u64 low = a << shift, high = a >> (64 - shift);
11450
11451 /* To avoid the overflow on divq */
11452 if (high >= divisor)
11453 return 1;
11454
11455 /* Low hold the result, high hold rem which is discarded */
11456 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11457 "rm" (divisor), "0" (low), "1" (high));
11458 *result = low;
11459
11460 return 0;
11461}
11462
11463static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11464{
11465 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011466 u64 tscl = rdtsc();
11467 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11468 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011469
11470 /* Convert to host delta tsc if tsc scaling is enabled */
11471 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11472 u64_shl_div_u64(delta_tsc,
11473 kvm_tsc_scaling_ratio_frac_bits,
11474 vcpu->arch.tsc_scaling_ratio,
11475 &delta_tsc))
11476 return -ERANGE;
11477
11478 /*
11479 * If the delta tsc can't fit in the 32 bit after the multi shift,
11480 * we can't use the preemption timer.
11481 * It's possible that it fits on later vmentries, but checking
11482 * on every vmentry is costly so we just use an hrtimer.
11483 */
11484 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11485 return -ERANGE;
11486
11487 vmx->hv_deadline_tsc = tscl + delta_tsc;
11488 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11489 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011490
11491 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011492}
11493
11494static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11495{
11496 struct vcpu_vmx *vmx = to_vmx(vcpu);
11497 vmx->hv_deadline_tsc = -1;
11498 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11499 PIN_BASED_VMX_PREEMPTION_TIMER);
11500}
11501#endif
11502
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011503static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011504{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011505 if (ple_gap)
11506 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011507}
11508
Kai Huang843e4332015-01-28 10:54:28 +080011509static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11510 struct kvm_memory_slot *slot)
11511{
11512 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11513 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11514}
11515
11516static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11517 struct kvm_memory_slot *slot)
11518{
11519 kvm_mmu_slot_set_dirty(kvm, slot);
11520}
11521
11522static void vmx_flush_log_dirty(struct kvm *kvm)
11523{
11524 kvm_flush_pml_buffers(kvm);
11525}
11526
Bandan Dasc5f983f2017-05-05 15:25:14 -040011527static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11528{
11529 struct vmcs12 *vmcs12;
11530 struct vcpu_vmx *vmx = to_vmx(vcpu);
11531 gpa_t gpa;
11532 struct page *page = NULL;
11533 u64 *pml_address;
11534
11535 if (is_guest_mode(vcpu)) {
11536 WARN_ON_ONCE(vmx->nested.pml_full);
11537
11538 /*
11539 * Check if PML is enabled for the nested guest.
11540 * Whether eptp bit 6 is set is already checked
11541 * as part of A/D emulation.
11542 */
11543 vmcs12 = get_vmcs12(vcpu);
11544 if (!nested_cpu_has_pml(vmcs12))
11545 return 0;
11546
Dan Carpenter47698862017-05-10 22:43:17 +030011547 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011548 vmx->nested.pml_full = true;
11549 return 1;
11550 }
11551
11552 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11553
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011554 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11555 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011556 return 0;
11557
11558 pml_address = kmap(page);
11559 pml_address[vmcs12->guest_pml_index--] = gpa;
11560 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011561 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011562 }
11563
11564 return 0;
11565}
11566
Kai Huang843e4332015-01-28 10:54:28 +080011567static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11568 struct kvm_memory_slot *memslot,
11569 gfn_t offset, unsigned long mask)
11570{
11571 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11572}
11573
Feng Wuefc64402015-09-18 22:29:51 +080011574/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011575 * This routine does the following things for vCPU which is going
11576 * to be blocked if VT-d PI is enabled.
11577 * - Store the vCPU to the wakeup list, so when interrupts happen
11578 * we can find the right vCPU to wake up.
11579 * - Change the Posted-interrupt descriptor as below:
11580 * 'NDST' <-- vcpu->pre_pcpu
11581 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11582 * - If 'ON' is set during this process, which means at least one
11583 * interrupt is posted for this vCPU, we cannot block it, in
11584 * this case, return 1, otherwise, return 0.
11585 *
11586 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011587static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011588{
11589 unsigned long flags;
11590 unsigned int dest;
11591 struct pi_desc old, new;
11592 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11593
11594 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011595 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11596 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011597 return 0;
11598
11599 vcpu->pre_pcpu = vcpu->cpu;
11600 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11601 vcpu->pre_pcpu), flags);
11602 list_add_tail(&vcpu->blocked_vcpu_list,
11603 &per_cpu(blocked_vcpu_on_cpu,
11604 vcpu->pre_pcpu));
11605 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11606 vcpu->pre_pcpu), flags);
11607
11608 do {
11609 old.control = new.control = pi_desc->control;
11610
11611 /*
11612 * We should not block the vCPU if
11613 * an interrupt is posted for it.
11614 */
11615 if (pi_test_on(pi_desc) == 1) {
11616 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11617 vcpu->pre_pcpu), flags);
11618 list_del(&vcpu->blocked_vcpu_list);
11619 spin_unlock_irqrestore(
11620 &per_cpu(blocked_vcpu_on_cpu_lock,
11621 vcpu->pre_pcpu), flags);
11622 vcpu->pre_pcpu = -1;
11623
11624 return 1;
11625 }
11626
11627 WARN((pi_desc->sn == 1),
11628 "Warning: SN field of posted-interrupts "
11629 "is set before blocking\n");
11630
11631 /*
11632 * Since vCPU can be preempted during this process,
11633 * vcpu->cpu could be different with pre_pcpu, we
11634 * need to set pre_pcpu as the destination of wakeup
11635 * notification event, then we can find the right vCPU
11636 * to wakeup in wakeup handler if interrupts happen
11637 * when the vCPU is in blocked state.
11638 */
11639 dest = cpu_physical_id(vcpu->pre_pcpu);
11640
11641 if (x2apic_enabled())
11642 new.ndst = dest;
11643 else
11644 new.ndst = (dest << 8) & 0xFF00;
11645
11646 /* set 'NV' to 'wakeup vector' */
11647 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11648 } while (cmpxchg(&pi_desc->control, old.control,
11649 new.control) != old.control);
11650
11651 return 0;
11652}
11653
Yunhong Jiangbc225122016-06-13 14:19:58 -070011654static int vmx_pre_block(struct kvm_vcpu *vcpu)
11655{
11656 if (pi_pre_block(vcpu))
11657 return 1;
11658
Yunhong Jiang64672c92016-06-13 14:19:59 -070011659 if (kvm_lapic_hv_timer_in_use(vcpu))
11660 kvm_lapic_switch_to_sw_timer(vcpu);
11661
Yunhong Jiangbc225122016-06-13 14:19:58 -070011662 return 0;
11663}
11664
11665static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011666{
11667 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11668 struct pi_desc old, new;
11669 unsigned int dest;
11670 unsigned long flags;
11671
11672 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011673 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11674 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011675 return;
11676
11677 do {
11678 old.control = new.control = pi_desc->control;
11679
11680 dest = cpu_physical_id(vcpu->cpu);
11681
11682 if (x2apic_enabled())
11683 new.ndst = dest;
11684 else
11685 new.ndst = (dest << 8) & 0xFF00;
11686
11687 /* Allow posting non-urgent interrupts */
11688 new.sn = 0;
11689
11690 /* set 'NV' to 'notification vector' */
11691 new.nv = POSTED_INTR_VECTOR;
11692 } while (cmpxchg(&pi_desc->control, old.control,
11693 new.control) != old.control);
11694
11695 if(vcpu->pre_pcpu != -1) {
11696 spin_lock_irqsave(
11697 &per_cpu(blocked_vcpu_on_cpu_lock,
11698 vcpu->pre_pcpu), flags);
11699 list_del(&vcpu->blocked_vcpu_list);
11700 spin_unlock_irqrestore(
11701 &per_cpu(blocked_vcpu_on_cpu_lock,
11702 vcpu->pre_pcpu), flags);
11703 vcpu->pre_pcpu = -1;
11704 }
11705}
11706
Yunhong Jiangbc225122016-06-13 14:19:58 -070011707static void vmx_post_block(struct kvm_vcpu *vcpu)
11708{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011709 if (kvm_x86_ops->set_hv_timer)
11710 kvm_lapic_switch_to_hv_timer(vcpu);
11711
Yunhong Jiangbc225122016-06-13 14:19:58 -070011712 pi_post_block(vcpu);
11713}
11714
Feng Wubf9f6ac2015-09-18 22:29:55 +080011715/*
Feng Wuefc64402015-09-18 22:29:51 +080011716 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11717 *
11718 * @kvm: kvm
11719 * @host_irq: host irq of the interrupt
11720 * @guest_irq: gsi of the interrupt
11721 * @set: set or unset PI
11722 * returns 0 on success, < 0 on failure
11723 */
11724static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11725 uint32_t guest_irq, bool set)
11726{
11727 struct kvm_kernel_irq_routing_entry *e;
11728 struct kvm_irq_routing_table *irq_rt;
11729 struct kvm_lapic_irq irq;
11730 struct kvm_vcpu *vcpu;
11731 struct vcpu_data vcpu_info;
11732 int idx, ret = -EINVAL;
11733
11734 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011735 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11736 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011737 return 0;
11738
11739 idx = srcu_read_lock(&kvm->irq_srcu);
11740 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11741 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11742
11743 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11744 if (e->type != KVM_IRQ_ROUTING_MSI)
11745 continue;
11746 /*
11747 * VT-d PI cannot support posting multicast/broadcast
11748 * interrupts to a vCPU, we still use interrupt remapping
11749 * for these kind of interrupts.
11750 *
11751 * For lowest-priority interrupts, we only support
11752 * those with single CPU as the destination, e.g. user
11753 * configures the interrupts via /proc/irq or uses
11754 * irqbalance to make the interrupts single-CPU.
11755 *
11756 * We will support full lowest-priority interrupt later.
11757 */
11758
Radim Krčmář371313132016-07-12 22:09:27 +020011759 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011760 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11761 /*
11762 * Make sure the IRTE is in remapped mode if
11763 * we don't handle it in posted mode.
11764 */
11765 ret = irq_set_vcpu_affinity(host_irq, NULL);
11766 if (ret < 0) {
11767 printk(KERN_INFO
11768 "failed to back to remapped mode, irq: %u\n",
11769 host_irq);
11770 goto out;
11771 }
11772
Feng Wuefc64402015-09-18 22:29:51 +080011773 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011774 }
Feng Wuefc64402015-09-18 22:29:51 +080011775
11776 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11777 vcpu_info.vector = irq.vector;
11778
Feng Wub6ce9782016-01-25 16:53:35 +080011779 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011780 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11781
11782 if (set)
11783 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11784 else {
11785 /* suppress notification event before unposting */
11786 pi_set_sn(vcpu_to_pi_desc(vcpu));
11787 ret = irq_set_vcpu_affinity(host_irq, NULL);
11788 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11789 }
11790
11791 if (ret < 0) {
11792 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11793 __func__);
11794 goto out;
11795 }
11796 }
11797
11798 ret = 0;
11799out:
11800 srcu_read_unlock(&kvm->irq_srcu, idx);
11801 return ret;
11802}
11803
Ashok Rajc45dcc72016-06-22 14:59:56 +080011804static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11805{
11806 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11807 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11808 FEATURE_CONTROL_LMCE;
11809 else
11810 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11811 ~FEATURE_CONTROL_LMCE;
11812}
11813
Kees Cook404f6aa2016-08-08 16:29:06 -070011814static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011815 .cpu_has_kvm_support = cpu_has_kvm_support,
11816 .disabled_by_bios = vmx_disabled_by_bios,
11817 .hardware_setup = hardware_setup,
11818 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011819 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011820 .hardware_enable = hardware_enable,
11821 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011822 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011823 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011824
11825 .vcpu_create = vmx_create_vcpu,
11826 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011827 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011828
Avi Kivity04d2cc72007-09-10 18:10:54 +030011829 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011830 .vcpu_load = vmx_vcpu_load,
11831 .vcpu_put = vmx_vcpu_put,
11832
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011833 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011834 .get_msr = vmx_get_msr,
11835 .set_msr = vmx_set_msr,
11836 .get_segment_base = vmx_get_segment_base,
11837 .get_segment = vmx_get_segment,
11838 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011839 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011840 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011841 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011842 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011843 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011844 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011845 .set_cr3 = vmx_set_cr3,
11846 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011847 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011848 .get_idt = vmx_get_idt,
11849 .set_idt = vmx_set_idt,
11850 .get_gdt = vmx_get_gdt,
11851 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011852 .get_dr6 = vmx_get_dr6,
11853 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011854 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011855 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011856 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011857 .get_rflags = vmx_get_rflags,
11858 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011859
11860 .get_pkru = vmx_get_pkru,
11861
Avi Kivity6aa8b732006-12-10 02:21:36 -080011862 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011863
Avi Kivity6aa8b732006-12-10 02:21:36 -080011864 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011865 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011866 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011867 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11868 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011869 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011870 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011871 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011872 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011873 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011874 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011875 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011876 .get_nmi_mask = vmx_get_nmi_mask,
11877 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011878 .enable_nmi_window = enable_nmi_window,
11879 .enable_irq_window = enable_irq_window,
11880 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011881 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011882 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011883 .get_enable_apicv = vmx_get_enable_apicv,
11884 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011885 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011886 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011887 .hwapic_irr_update = vmx_hwapic_irr_update,
11888 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011889 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11890 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011891
Izik Eiduscbc94022007-10-25 00:29:55 +020011892 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011893 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011894 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011895
Avi Kivity586f9602010-11-18 13:09:54 +020011896 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011897
Sheng Yang17cc3932010-01-05 19:02:27 +080011898 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011899
11900 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011901
11902 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011903 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011904
11905 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011906
11907 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011908
11909 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011910
11911 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011912
11913 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011914 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011915 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011916 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011917
11918 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011919
11920 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011921
11922 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11923 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11924 .flush_log_dirty = vmx_flush_log_dirty,
11925 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040011926 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020011927
Feng Wubf9f6ac2015-09-18 22:29:55 +080011928 .pre_block = vmx_pre_block,
11929 .post_block = vmx_post_block,
11930
Wei Huang25462f7f2015-06-19 15:45:05 +020011931 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011932
11933 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011934
11935#ifdef CONFIG_X86_64
11936 .set_hv_timer = vmx_set_hv_timer,
11937 .cancel_hv_timer = vmx_cancel_hv_timer,
11938#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011939
11940 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011941};
11942
11943static int __init vmx_init(void)
11944{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011945 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11946 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011947 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011948 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011949
Dave Young2965faa2015-09-09 15:38:55 -070011950#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011951 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11952 crash_vmclear_local_loaded_vmcss);
11953#endif
11954
He, Qingfdef3ad2007-04-30 09:45:24 +030011955 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011956}
11957
11958static void __exit vmx_exit(void)
11959{
Dave Young2965faa2015-09-09 15:38:55 -070011960#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011961 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011962 synchronize_rcu();
11963#endif
11964
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011965 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011966}
11967
11968module_init(vmx_init)
11969module_exit(vmx_exit)