blob: 33cb8d2b96533f43fa91ef87f44e41082e0456b5 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf41245002014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030036#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030037#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040038
Feng Wu28b835d2015-09-18 22:29:54 +080039#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080040#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080041#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020042#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020043#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080044#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020045#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020046#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010047#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080048#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010049#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080050#include <asm/irq_remapping.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Marcelo Tosatti229456f2009-06-17 09:22:14 -030052#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020053#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054
Avi Kivity4ecac3f2008-05-13 13:23:38 +030055#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040056#define __ex_clear(x, reg) \
57 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030058
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplette9bda3b2012-03-20 23:33:51 -070062static const struct x86_cpu_id vmx_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_VMX),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
67
Rusty Russell476bc002012-01-13 09:32:18 +103068static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020069module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080070
Rusty Russell476bc002012-01-13 09:32:18 +103071static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020072module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020073
Rusty Russell476bc002012-01-13 09:32:18 +103074static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020075module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080076
Rusty Russell476bc002012-01-13 09:32:18 +103077static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070078module_param_named(unrestricted_guest,
79 enable_unrestricted_guest, bool, S_IRUGO);
80
Xudong Hao83c3a332012-05-28 19:33:35 +080081static bool __read_mostly enable_ept_ad_bits = 1;
82module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
83
Avi Kivitya27685c2012-06-12 20:30:18 +030084static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020085module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly vmm_exclusive = 1;
Dongxiao Xub923e622010-05-11 18:29:45 +080088module_param(vmm_exclusive, bool, S_IRUGO);
89
Rusty Russell476bc002012-01-13 09:32:18 +103090static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030091module_param(fasteoi, bool, S_IRUGO);
92
Yang Zhang5a717852013-04-11 19:25:16 +080093static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080094module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080095
Abel Gordonabc4fc52013-04-18 14:35:25 +030096static bool __read_mostly enable_shadow_vmcs = 1;
97module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030098/*
99 * If nested=1, nested virtualization is supported, i.e., guests may use
100 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
101 * use VMX instructions.
102 */
Rusty Russell476bc002012-01-13 09:32:18 +1030103static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300104module_param(nested, bool, S_IRUGO);
105
Wanpeng Li20300092014-12-02 19:14:59 +0800106static u64 __read_mostly host_xss;
107
Kai Huang843e4332015-01-28 10:54:28 +0800108static bool __read_mostly enable_pml = 1;
109module_param_named(pml, enable_pml, bool, S_IRUGO);
110
Haozhong Zhang64903d62015-10-20 15:39:09 +0800111#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
112
Yunhong Jiang64672c92016-06-13 14:19:59 -0700113/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
114static int __read_mostly cpu_preemption_timer_multi;
115static bool __read_mostly enable_preemption_timer = 1;
116#ifdef CONFIG_X86_64
117module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
118#endif
119
Gleb Natapov50378782013-02-04 16:00:28 +0200120#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
121#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200122#define KVM_VM_CR0_ALWAYS_ON \
123 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200124#define KVM_CR4_GUEST_OWNED_BITS \
125 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700126 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200127
Avi Kivitycdc0e242009-12-06 17:21:14 +0200128#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
129#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
130
Avi Kivity78ac8b42010-04-08 18:19:35 +0300131#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
132
Jan Kiszkaf41245002014-03-07 20:03:13 +0100133#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
134
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800135/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300136 * Hyper-V requires all of these, so mark them as supported even though
137 * they are just treated the same as all-context.
138 */
139#define VMX_VPID_EXTENT_SUPPORTED_MASK \
140 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
141 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
142 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
143 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
144
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800145/*
146 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
147 * ple_gap: upper bound on the amount of time between two successive
148 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500149 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800150 * ple_window: upper bound on the amount of time a guest is allowed to execute
151 * in a PAUSE loop. Tests indicate that most spinlocks are held for
152 * less than 2^12 cycles
153 * Time is measured based on a counter that runs at the same rate as the TSC,
154 * refer SDM volume 3b section 21.6.13 & 22.1.3.
155 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200156#define KVM_VMX_DEFAULT_PLE_GAP 128
157#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
158#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
159#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
160#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
161 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
162
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800163static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
164module_param(ple_gap, int, S_IRUGO);
165
166static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
167module_param(ple_window, int, S_IRUGO);
168
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200169/* Default doubles per-vcpu window every exit. */
170static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
171module_param(ple_window_grow, int, S_IRUGO);
172
173/* Default resets per-vcpu window every exit to ple_window. */
174static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
175module_param(ple_window_shrink, int, S_IRUGO);
176
177/* Default is to compute the maximum so we can never overflow. */
178static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
180module_param(ple_window_max, int, S_IRUGO);
181
Avi Kivity83287ea422012-09-16 15:10:57 +0300182extern const ulong vmx_return;
183
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200184#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300185#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300186
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400187struct vmcs {
188 u32 revision_id;
189 u32 abort;
190 char data[0];
191};
192
Nadav Har'Eld462b812011-05-24 15:26:10 +0300193/*
194 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
195 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
196 * loaded on this CPU (so we can clear them if the CPU goes down).
197 */
198struct loaded_vmcs {
199 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700200 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300201 int cpu;
202 int launched;
203 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;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300246 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800247 u64 eoi_exit_bitmap0;
248 u64 eoi_exit_bitmap1;
249 u64 eoi_exit_bitmap2;
250 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800251 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300252 u64 guest_physical_address;
253 u64 vmcs_link_pointer;
254 u64 guest_ia32_debugctl;
255 u64 guest_ia32_pat;
256 u64 guest_ia32_efer;
257 u64 guest_ia32_perf_global_ctrl;
258 u64 guest_pdptr0;
259 u64 guest_pdptr1;
260 u64 guest_pdptr2;
261 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100262 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300263 u64 host_ia32_pat;
264 u64 host_ia32_efer;
265 u64 host_ia32_perf_global_ctrl;
266 u64 padding64[8]; /* room for future expansion */
267 /*
268 * To allow migration of L1 (complete with its L2 guests) between
269 * machines of different natural widths (32 or 64 bit), we cannot have
270 * unsigned long fields with no explict size. We use u64 (aliased
271 * natural_width) instead. Luckily, x86 is little-endian.
272 */
273 natural_width cr0_guest_host_mask;
274 natural_width cr4_guest_host_mask;
275 natural_width cr0_read_shadow;
276 natural_width cr4_read_shadow;
277 natural_width cr3_target_value0;
278 natural_width cr3_target_value1;
279 natural_width cr3_target_value2;
280 natural_width cr3_target_value3;
281 natural_width exit_qualification;
282 natural_width guest_linear_address;
283 natural_width guest_cr0;
284 natural_width guest_cr3;
285 natural_width guest_cr4;
286 natural_width guest_es_base;
287 natural_width guest_cs_base;
288 natural_width guest_ss_base;
289 natural_width guest_ds_base;
290 natural_width guest_fs_base;
291 natural_width guest_gs_base;
292 natural_width guest_ldtr_base;
293 natural_width guest_tr_base;
294 natural_width guest_gdtr_base;
295 natural_width guest_idtr_base;
296 natural_width guest_dr7;
297 natural_width guest_rsp;
298 natural_width guest_rip;
299 natural_width guest_rflags;
300 natural_width guest_pending_dbg_exceptions;
301 natural_width guest_sysenter_esp;
302 natural_width guest_sysenter_eip;
303 natural_width host_cr0;
304 natural_width host_cr3;
305 natural_width host_cr4;
306 natural_width host_fs_base;
307 natural_width host_gs_base;
308 natural_width host_tr_base;
309 natural_width host_gdtr_base;
310 natural_width host_idtr_base;
311 natural_width host_ia32_sysenter_esp;
312 natural_width host_ia32_sysenter_eip;
313 natural_width host_rsp;
314 natural_width host_rip;
315 natural_width paddingl[8]; /* room for future expansion */
316 u32 pin_based_vm_exec_control;
317 u32 cpu_based_vm_exec_control;
318 u32 exception_bitmap;
319 u32 page_fault_error_code_mask;
320 u32 page_fault_error_code_match;
321 u32 cr3_target_count;
322 u32 vm_exit_controls;
323 u32 vm_exit_msr_store_count;
324 u32 vm_exit_msr_load_count;
325 u32 vm_entry_controls;
326 u32 vm_entry_msr_load_count;
327 u32 vm_entry_intr_info_field;
328 u32 vm_entry_exception_error_code;
329 u32 vm_entry_instruction_len;
330 u32 tpr_threshold;
331 u32 secondary_vm_exec_control;
332 u32 vm_instruction_error;
333 u32 vm_exit_reason;
334 u32 vm_exit_intr_info;
335 u32 vm_exit_intr_error_code;
336 u32 idt_vectoring_info_field;
337 u32 idt_vectoring_error_code;
338 u32 vm_exit_instruction_len;
339 u32 vmx_instruction_info;
340 u32 guest_es_limit;
341 u32 guest_cs_limit;
342 u32 guest_ss_limit;
343 u32 guest_ds_limit;
344 u32 guest_fs_limit;
345 u32 guest_gs_limit;
346 u32 guest_ldtr_limit;
347 u32 guest_tr_limit;
348 u32 guest_gdtr_limit;
349 u32 guest_idtr_limit;
350 u32 guest_es_ar_bytes;
351 u32 guest_cs_ar_bytes;
352 u32 guest_ss_ar_bytes;
353 u32 guest_ds_ar_bytes;
354 u32 guest_fs_ar_bytes;
355 u32 guest_gs_ar_bytes;
356 u32 guest_ldtr_ar_bytes;
357 u32 guest_tr_ar_bytes;
358 u32 guest_interruptibility_info;
359 u32 guest_activity_state;
360 u32 guest_sysenter_cs;
361 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100362 u32 vmx_preemption_timer_value;
363 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300364 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800365 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300366 u16 guest_es_selector;
367 u16 guest_cs_selector;
368 u16 guest_ss_selector;
369 u16 guest_ds_selector;
370 u16 guest_fs_selector;
371 u16 guest_gs_selector;
372 u16 guest_ldtr_selector;
373 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800374 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300375 u16 host_es_selector;
376 u16 host_cs_selector;
377 u16 host_ss_selector;
378 u16 host_ds_selector;
379 u16 host_fs_selector;
380 u16 host_gs_selector;
381 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300382};
383
384/*
385 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
386 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
387 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
388 */
389#define VMCS12_REVISION 0x11e57ed0
390
391/*
392 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
393 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
394 * current implementation, 4K are reserved to avoid future complications.
395 */
396#define VMCS12_SIZE 0x1000
397
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300398/* Used to remember the last vmcs02 used for some recently used vmcs12s */
399struct vmcs02_list {
400 struct list_head list;
401 gpa_t vmptr;
402 struct loaded_vmcs vmcs02;
403};
404
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300405/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300406 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
407 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
408 */
409struct nested_vmx {
410 /* Has the level1 guest done vmxon? */
411 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400412 gpa_t vmxon_ptr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300413
414 /* The guest-physical address of the current VMCS L1 keeps for L2 */
415 gpa_t current_vmptr;
416 /* The host-usable pointer to the above */
417 struct page *current_vmcs12_page;
418 struct vmcs12 *current_vmcs12;
David Matlack4f2777b2016-07-13 17:16:37 -0700419 /*
420 * Cache of the guest's VMCS, existing outside of guest memory.
421 * Loaded from guest memory during VMPTRLD. Flushed to guest
422 * memory during VMXOFF, VMCLEAR, VMPTRLD.
423 */
424 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300425 /*
426 * Indicates if the shadow vmcs must be updated with the
427 * data hold by vmcs12
428 */
429 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300430
431 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
432 struct list_head vmcs02_pool;
433 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200434 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300435 /* L2 must run next, and mustn't decide to exit to L1. */
436 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300437 /*
438 * Guest pages referred to in vmcs02 with host-physical pointers, so
439 * we must keep them pinned while L2 runs.
440 */
441 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800442 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800443 struct page *pi_desc_page;
444 struct pi_desc *pi_desc;
445 bool pi_pending;
446 u16 posted_intr_nv;
Jan Kiszkaf41245002014-03-07 20:03:13 +0100447
Radim Krčmářd048c092016-08-08 20:16:22 +0200448 unsigned long *msr_bitmap;
449
Jan Kiszkaf41245002014-03-07 20:03:13 +0100450 struct hrtimer preemption_timer;
451 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200452
453 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
454 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800455
Wanpeng Li5c614b32015-10-13 09:18:36 -0700456 u16 vpid02;
457 u16 last_vpid;
458
David Matlack0115f9c2016-11-29 18:14:06 -0800459 /*
460 * We only store the "true" versions of the VMX capability MSRs. We
461 * generate the "non-true" versions by setting the must-be-1 bits
462 * according to the SDM.
463 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800464 u32 nested_vmx_procbased_ctls_low;
465 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466 u32 nested_vmx_secondary_ctls_low;
467 u32 nested_vmx_secondary_ctls_high;
468 u32 nested_vmx_pinbased_ctls_low;
469 u32 nested_vmx_pinbased_ctls_high;
470 u32 nested_vmx_exit_ctls_low;
471 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800472 u32 nested_vmx_entry_ctls_low;
473 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800474 u32 nested_vmx_misc_low;
475 u32 nested_vmx_misc_high;
476 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700477 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800478 u64 nested_vmx_basic;
479 u64 nested_vmx_cr0_fixed0;
480 u64 nested_vmx_cr0_fixed1;
481 u64 nested_vmx_cr4_fixed0;
482 u64 nested_vmx_cr4_fixed1;
483 u64 nested_vmx_vmcs_enum;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300484};
485
Yang Zhang01e439b2013-04-11 19:25:12 +0800486#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800487#define POSTED_INTR_SN 1
488
Yang Zhang01e439b2013-04-11 19:25:12 +0800489/* Posted-Interrupt Descriptor */
490struct pi_desc {
491 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800492 union {
493 struct {
494 /* bit 256 - Outstanding Notification */
495 u16 on : 1,
496 /* bit 257 - Suppress Notification */
497 sn : 1,
498 /* bit 271:258 - Reserved */
499 rsvd_1 : 14;
500 /* bit 279:272 - Notification Vector */
501 u8 nv;
502 /* bit 287:280 - Reserved */
503 u8 rsvd_2;
504 /* bit 319:288 - Notification Destination */
505 u32 ndst;
506 };
507 u64 control;
508 };
509 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800510} __aligned(64);
511
Yang Zhanga20ed542013-04-11 19:25:15 +0800512static bool pi_test_and_set_on(struct pi_desc *pi_desc)
513{
514 return test_and_set_bit(POSTED_INTR_ON,
515 (unsigned long *)&pi_desc->control);
516}
517
518static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
519{
520 return test_and_clear_bit(POSTED_INTR_ON,
521 (unsigned long *)&pi_desc->control);
522}
523
524static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
525{
526 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
527}
528
Feng Wuebbfc762015-09-18 22:29:46 +0800529static inline void pi_clear_sn(struct pi_desc *pi_desc)
530{
531 return clear_bit(POSTED_INTR_SN,
532 (unsigned long *)&pi_desc->control);
533}
534
535static inline void pi_set_sn(struct pi_desc *pi_desc)
536{
537 return set_bit(POSTED_INTR_SN,
538 (unsigned long *)&pi_desc->control);
539}
540
Paolo Bonziniad361092016-09-20 16:15:05 +0200541static inline void pi_clear_on(struct pi_desc *pi_desc)
542{
543 clear_bit(POSTED_INTR_ON,
544 (unsigned long *)&pi_desc->control);
545}
546
Feng Wuebbfc762015-09-18 22:29:46 +0800547static inline int pi_test_on(struct pi_desc *pi_desc)
548{
549 return test_bit(POSTED_INTR_ON,
550 (unsigned long *)&pi_desc->control);
551}
552
553static inline int pi_test_sn(struct pi_desc *pi_desc)
554{
555 return test_bit(POSTED_INTR_SN,
556 (unsigned long *)&pi_desc->control);
557}
558
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400559struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000560 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300561 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300562 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200563 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300564 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200565 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200566 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300567 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400568 int nmsrs;
569 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800570 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400571#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300572 u64 msr_host_kernel_gs_base;
573 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400574#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200575 u32 vm_entry_controls_shadow;
576 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300577 /*
578 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
579 * non-nested (L1) guest, it always points to vmcs01. For a nested
580 * guest (L2), it points to a different VMCS.
581 */
582 struct loaded_vmcs vmcs01;
583 struct loaded_vmcs *loaded_vmcs;
584 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300585 struct msr_autoload {
586 unsigned nr;
587 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
588 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
589 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400590 struct {
591 int loaded;
592 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300593#ifdef CONFIG_X86_64
594 u16 ds_sel, es_sel;
595#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200596 int gs_ldt_reload_needed;
597 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000598 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700599 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400600 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200601 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300602 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300603 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300604 struct kvm_segment segs[8];
605 } rmode;
606 struct {
607 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300608 struct kvm_save_segment {
609 u16 selector;
610 unsigned long base;
611 u32 limit;
612 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300613 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300614 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800615 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300616 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200617
618 /* Support for vnmi-less CPUs */
619 int soft_vnmi_blocked;
620 ktime_t entry_time;
621 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800622 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800623
Yang Zhang01e439b2013-04-11 19:25:12 +0800624 /* Posted interrupt descriptor */
625 struct pi_desc pi_desc;
626
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300627 /* Support for a guest hypervisor (nested VMX) */
628 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200629
630 /* Dynamic PLE window. */
631 int ple_window;
632 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800633
634 /* Support for PML */
635#define PML_ENTITY_NUM 512
636 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800637
Yunhong Jiang64672c92016-06-13 14:19:59 -0700638 /* apic deadline value in host tsc */
639 u64 hv_deadline_tsc;
640
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800641 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800642
643 bool guest_pkru_valid;
644 u32 guest_pkru;
645 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800646
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800647 /*
648 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
649 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
650 * in msr_ia32_feature_control_valid_bits.
651 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800652 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800653 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400654};
655
Avi Kivity2fb92db2011-04-27 19:42:18 +0300656enum segment_cache_field {
657 SEG_FIELD_SEL = 0,
658 SEG_FIELD_BASE = 1,
659 SEG_FIELD_LIMIT = 2,
660 SEG_FIELD_AR = 3,
661
662 SEG_FIELD_NR = 4
663};
664
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400665static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
666{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000667 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400668}
669
Feng Wuefc64402015-09-18 22:29:51 +0800670static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
671{
672 return &(to_vmx(vcpu)->pi_desc);
673}
674
Nadav Har'El22bd0352011-05-25 23:05:57 +0300675#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
676#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
677#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
678 [number##_HIGH] = VMCS12_OFFSET(name)+4
679
Abel Gordon4607c2d2013-04-18 14:35:55 +0300680
Bandan Dasfe2b2012014-04-21 15:20:14 -0400681static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300682 /*
683 * We do NOT shadow fields that are modified when L0
684 * traps and emulates any vmx instruction (e.g. VMPTRLD,
685 * VMXON...) executed by L1.
686 * For example, VM_INSTRUCTION_ERROR is read
687 * by L1 if a vmx instruction fails (part of the error path).
688 * Note the code assumes this logic. If for some reason
689 * we start shadowing these fields then we need to
690 * force a shadow sync when L0 emulates vmx instructions
691 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
692 * by nested_vmx_failValid)
693 */
694 VM_EXIT_REASON,
695 VM_EXIT_INTR_INFO,
696 VM_EXIT_INSTRUCTION_LEN,
697 IDT_VECTORING_INFO_FIELD,
698 IDT_VECTORING_ERROR_CODE,
699 VM_EXIT_INTR_ERROR_CODE,
700 EXIT_QUALIFICATION,
701 GUEST_LINEAR_ADDRESS,
702 GUEST_PHYSICAL_ADDRESS
703};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400704static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300705 ARRAY_SIZE(shadow_read_only_fields);
706
Bandan Dasfe2b2012014-04-21 15:20:14 -0400707static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800708 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300709 GUEST_RIP,
710 GUEST_RSP,
711 GUEST_CR0,
712 GUEST_CR3,
713 GUEST_CR4,
714 GUEST_INTERRUPTIBILITY_INFO,
715 GUEST_RFLAGS,
716 GUEST_CS_SELECTOR,
717 GUEST_CS_AR_BYTES,
718 GUEST_CS_LIMIT,
719 GUEST_CS_BASE,
720 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100721 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300722 CR0_GUEST_HOST_MASK,
723 CR0_READ_SHADOW,
724 CR4_READ_SHADOW,
725 TSC_OFFSET,
726 EXCEPTION_BITMAP,
727 CPU_BASED_VM_EXEC_CONTROL,
728 VM_ENTRY_EXCEPTION_ERROR_CODE,
729 VM_ENTRY_INTR_INFO_FIELD,
730 VM_ENTRY_INSTRUCTION_LEN,
731 VM_ENTRY_EXCEPTION_ERROR_CODE,
732 HOST_FS_BASE,
733 HOST_GS_BASE,
734 HOST_FS_SELECTOR,
735 HOST_GS_SELECTOR
736};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400737static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300738 ARRAY_SIZE(shadow_read_write_fields);
739
Mathias Krause772e0312012-08-30 01:30:19 +0200740static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300741 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800742 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300743 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
744 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
745 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
746 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
747 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
748 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
749 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
750 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800751 FIELD(GUEST_INTR_STATUS, guest_intr_status),
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),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300769 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800770 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
771 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
772 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
773 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800774 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300775 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
776 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
777 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
778 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
779 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
780 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
781 FIELD64(GUEST_PDPTR0, guest_pdptr0),
782 FIELD64(GUEST_PDPTR1, guest_pdptr1),
783 FIELD64(GUEST_PDPTR2, guest_pdptr2),
784 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100785 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300786 FIELD64(HOST_IA32_PAT, host_ia32_pat),
787 FIELD64(HOST_IA32_EFER, host_ia32_efer),
788 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
789 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
790 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
791 FIELD(EXCEPTION_BITMAP, exception_bitmap),
792 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
793 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
794 FIELD(CR3_TARGET_COUNT, cr3_target_count),
795 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
796 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
797 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
798 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
799 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
800 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
801 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
802 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
803 FIELD(TPR_THRESHOLD, tpr_threshold),
804 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
805 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
806 FIELD(VM_EXIT_REASON, vm_exit_reason),
807 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
808 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
809 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
810 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
811 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
812 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
813 FIELD(GUEST_ES_LIMIT, guest_es_limit),
814 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
815 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
816 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
817 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
818 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
819 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
820 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
821 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
822 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
823 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
824 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
825 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
826 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
827 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
828 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
829 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
830 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
831 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
832 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
833 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
834 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100835 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300836 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
837 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
838 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
839 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
840 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
841 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
842 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
843 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
844 FIELD(EXIT_QUALIFICATION, exit_qualification),
845 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
846 FIELD(GUEST_CR0, guest_cr0),
847 FIELD(GUEST_CR3, guest_cr3),
848 FIELD(GUEST_CR4, guest_cr4),
849 FIELD(GUEST_ES_BASE, guest_es_base),
850 FIELD(GUEST_CS_BASE, guest_cs_base),
851 FIELD(GUEST_SS_BASE, guest_ss_base),
852 FIELD(GUEST_DS_BASE, guest_ds_base),
853 FIELD(GUEST_FS_BASE, guest_fs_base),
854 FIELD(GUEST_GS_BASE, guest_gs_base),
855 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
856 FIELD(GUEST_TR_BASE, guest_tr_base),
857 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
858 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
859 FIELD(GUEST_DR7, guest_dr7),
860 FIELD(GUEST_RSP, guest_rsp),
861 FIELD(GUEST_RIP, guest_rip),
862 FIELD(GUEST_RFLAGS, guest_rflags),
863 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
864 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
865 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
866 FIELD(HOST_CR0, host_cr0),
867 FIELD(HOST_CR3, host_cr3),
868 FIELD(HOST_CR4, host_cr4),
869 FIELD(HOST_FS_BASE, host_fs_base),
870 FIELD(HOST_GS_BASE, host_gs_base),
871 FIELD(HOST_TR_BASE, host_tr_base),
872 FIELD(HOST_GDTR_BASE, host_gdtr_base),
873 FIELD(HOST_IDTR_BASE, host_idtr_base),
874 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
875 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
876 FIELD(HOST_RSP, host_rsp),
877 FIELD(HOST_RIP, host_rip),
878};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300879
880static inline short vmcs_field_to_offset(unsigned long field)
881{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100882 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
883
884 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
885 vmcs_field_to_offset_table[field] == 0)
886 return -ENOENT;
887
Nadav Har'El22bd0352011-05-25 23:05:57 +0300888 return vmcs_field_to_offset_table[field];
889}
890
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300891static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
892{
David Matlack4f2777b2016-07-13 17:16:37 -0700893 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300894}
895
896static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
897{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200898 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800899 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300900 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800901
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300902 return page;
903}
904
905static void nested_release_page(struct page *page)
906{
907 kvm_release_page_dirty(page);
908}
909
910static void nested_release_page_clean(struct page *page)
911{
912 kvm_release_page_clean(page);
913}
914
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300915static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800916static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800917static void kvm_cpu_vmxon(u64 addr);
918static void kvm_cpu_vmxoff(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800919static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200920static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300921static void vmx_set_segment(struct kvm_vcpu *vcpu,
922 struct kvm_segment *var, int seg);
923static void vmx_get_segment(struct kvm_vcpu *vcpu,
924 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200925static bool guest_state_valid(struct kvm_vcpu *vcpu);
926static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300927static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300928static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800929static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300930
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931static DEFINE_PER_CPU(struct vmcs *, vmxarea);
932static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300933/*
934 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
935 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
936 */
937static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300938static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939
Feng Wubf9f6ac2015-09-18 22:29:55 +0800940/*
941 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
942 * can find which vCPU should be waken up.
943 */
944static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
945static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
946
Radim Krčmář23611332016-09-29 22:41:33 +0200947enum {
948 VMX_IO_BITMAP_A,
949 VMX_IO_BITMAP_B,
950 VMX_MSR_BITMAP_LEGACY,
951 VMX_MSR_BITMAP_LONGMODE,
952 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
953 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
954 VMX_MSR_BITMAP_LEGACY_X2APIC,
955 VMX_MSR_BITMAP_LONGMODE_X2APIC,
956 VMX_VMREAD_BITMAP,
957 VMX_VMWRITE_BITMAP,
958 VMX_BITMAP_NR
959};
960
961static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
962
963#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
964#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
965#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
966#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
967#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
968#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
969#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
970#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
971#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
972#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300973
Avi Kivity110312c2010-12-21 12:54:20 +0200974static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200975static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200976
Sheng Yang2384d2b2008-01-17 15:14:33 +0800977static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
978static DEFINE_SPINLOCK(vmx_vpid_lock);
979
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300980static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 int size;
982 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300983 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300985 u32 pin_based_exec_ctrl;
986 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800987 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300988 u32 vmexit_ctrl;
989 u32 vmentry_ctrl;
990} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991
Hannes Ederefff9e52008-11-28 17:02:06 +0100992static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800993 u32 ept;
994 u32 vpid;
995} vmx_capability;
996
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997#define VMX_SEGMENT_FIELD(seg) \
998 [VCPU_SREG_##seg] = { \
999 .selector = GUEST_##seg##_SELECTOR, \
1000 .base = GUEST_##seg##_BASE, \
1001 .limit = GUEST_##seg##_LIMIT, \
1002 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1003 }
1004
Mathias Krause772e0312012-08-30 01:30:19 +02001005static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 unsigned selector;
1007 unsigned base;
1008 unsigned limit;
1009 unsigned ar_bytes;
1010} kvm_vmx_segment_fields[] = {
1011 VMX_SEGMENT_FIELD(CS),
1012 VMX_SEGMENT_FIELD(DS),
1013 VMX_SEGMENT_FIELD(ES),
1014 VMX_SEGMENT_FIELD(FS),
1015 VMX_SEGMENT_FIELD(GS),
1016 VMX_SEGMENT_FIELD(SS),
1017 VMX_SEGMENT_FIELD(TR),
1018 VMX_SEGMENT_FIELD(LDTR),
1019};
1020
Avi Kivity26bb0982009-09-07 11:14:12 +03001021static u64 host_efer;
1022
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001023static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1024
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001025/*
Brian Gerst8c065852010-07-17 09:03:26 -04001026 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001027 * away by decrementing the array size.
1028 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001030#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001031 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001033 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035
Jan Kiszka5bb16012016-02-09 20:14:21 +01001036static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037{
1038 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1039 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001040 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1041}
1042
Jan Kiszka6f054852016-02-09 20:15:18 +01001043static inline bool is_debug(u32 intr_info)
1044{
1045 return is_exception_n(intr_info, DB_VECTOR);
1046}
1047
1048static inline bool is_breakpoint(u32 intr_info)
1049{
1050 return is_exception_n(intr_info, BP_VECTOR);
1051}
1052
Jan Kiszka5bb16012016-02-09 20:14:21 +01001053static inline bool is_page_fault(u32 intr_info)
1054{
1055 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056}
1057
Gui Jianfeng31299942010-03-15 17:29:09 +08001058static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001059{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001060 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001061}
1062
Gui Jianfeng31299942010-03-15 17:29:09 +08001063static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001064{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001065 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001066}
1067
Gui Jianfeng31299942010-03-15 17:29:09 +08001068static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069{
1070 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1071 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1072}
1073
Gui Jianfeng31299942010-03-15 17:29:09 +08001074static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001075{
1076 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1077 INTR_INFO_VALID_MASK)) ==
1078 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1079}
1080
Gui Jianfeng31299942010-03-15 17:29:09 +08001081static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001082{
Sheng Yang04547152009-04-01 15:52:31 +08001083 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001084}
1085
Gui Jianfeng31299942010-03-15 17:29:09 +08001086static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001087{
Sheng Yang04547152009-04-01 15:52:31 +08001088 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001089}
1090
Paolo Bonzini35754c92015-07-29 12:05:37 +02001091static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001092{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001093 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001094}
1095
Gui Jianfeng31299942010-03-15 17:29:09 +08001096static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001097{
Sheng Yang04547152009-04-01 15:52:31 +08001098 return vmcs_config.cpu_based_exec_ctrl &
1099 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001100}
1101
Avi Kivity774ead32007-12-26 13:57:04 +02001102static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001103{
Sheng Yang04547152009-04-01 15:52:31 +08001104 return vmcs_config.cpu_based_2nd_exec_ctrl &
1105 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1106}
1107
Yang Zhang8d146952013-01-25 10:18:50 +08001108static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1109{
1110 return vmcs_config.cpu_based_2nd_exec_ctrl &
1111 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1112}
1113
Yang Zhang83d4c282013-01-25 10:18:49 +08001114static inline bool cpu_has_vmx_apic_register_virt(void)
1115{
1116 return vmcs_config.cpu_based_2nd_exec_ctrl &
1117 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1118}
1119
Yang Zhangc7c9c562013-01-25 10:18:51 +08001120static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1121{
1122 return vmcs_config.cpu_based_2nd_exec_ctrl &
1123 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1124}
1125
Yunhong Jiang64672c92016-06-13 14:19:59 -07001126/*
1127 * Comment's format: document - errata name - stepping - processor name.
1128 * Refer from
1129 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1130 */
1131static u32 vmx_preemption_cpu_tfms[] = {
1132/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11330x000206E6,
1134/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1135/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1136/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11370x00020652,
1138/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11390x00020655,
1140/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1141/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1142/*
1143 * 320767.pdf - AAP86 - B1 -
1144 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1145 */
11460x000106E5,
1147/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11480x000106A0,
1149/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11500x000106A1,
1151/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11520x000106A4,
1153 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1154 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1155 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11560x000106A5,
1157};
1158
1159static inline bool cpu_has_broken_vmx_preemption_timer(void)
1160{
1161 u32 eax = cpuid_eax(0x00000001), i;
1162
1163 /* Clear the reserved bits */
1164 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001165 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001166 if (eax == vmx_preemption_cpu_tfms[i])
1167 return true;
1168
1169 return false;
1170}
1171
1172static inline bool cpu_has_vmx_preemption_timer(void)
1173{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001174 return vmcs_config.pin_based_exec_ctrl &
1175 PIN_BASED_VMX_PREEMPTION_TIMER;
1176}
1177
Yang Zhang01e439b2013-04-11 19:25:12 +08001178static inline bool cpu_has_vmx_posted_intr(void)
1179{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001180 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1181 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001182}
1183
1184static inline bool cpu_has_vmx_apicv(void)
1185{
1186 return cpu_has_vmx_apic_register_virt() &&
1187 cpu_has_vmx_virtual_intr_delivery() &&
1188 cpu_has_vmx_posted_intr();
1189}
1190
Sheng Yang04547152009-04-01 15:52:31 +08001191static inline bool cpu_has_vmx_flexpriority(void)
1192{
1193 return cpu_has_vmx_tpr_shadow() &&
1194 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001195}
1196
Marcelo Tosattie7997942009-06-11 12:07:40 -03001197static inline bool cpu_has_vmx_ept_execute_only(void)
1198{
Gui Jianfeng31299942010-03-15 17:29:09 +08001199 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001200}
1201
Marcelo Tosattie7997942009-06-11 12:07:40 -03001202static inline bool cpu_has_vmx_ept_2m_page(void)
1203{
Gui Jianfeng31299942010-03-15 17:29:09 +08001204 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001205}
1206
Sheng Yang878403b2010-01-05 19:02:29 +08001207static inline bool cpu_has_vmx_ept_1g_page(void)
1208{
Gui Jianfeng31299942010-03-15 17:29:09 +08001209 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001210}
1211
Sheng Yang4bc9b982010-06-02 14:05:24 +08001212static inline bool cpu_has_vmx_ept_4levels(void)
1213{
1214 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1215}
1216
Xudong Hao83c3a332012-05-28 19:33:35 +08001217static inline bool cpu_has_vmx_ept_ad_bits(void)
1218{
1219 return vmx_capability.ept & VMX_EPT_AD_BIT;
1220}
1221
Gui Jianfeng31299942010-03-15 17:29:09 +08001222static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001223{
Gui Jianfeng31299942010-03-15 17:29:09 +08001224 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001225}
1226
Gui Jianfeng31299942010-03-15 17:29:09 +08001227static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001228{
Gui Jianfeng31299942010-03-15 17:29:09 +08001229 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001230}
1231
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001232static inline bool cpu_has_vmx_invvpid_single(void)
1233{
1234 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1235}
1236
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001237static inline bool cpu_has_vmx_invvpid_global(void)
1238{
1239 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1240}
1241
Gui Jianfeng31299942010-03-15 17:29:09 +08001242static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001243{
Sheng Yang04547152009-04-01 15:52:31 +08001244 return vmcs_config.cpu_based_2nd_exec_ctrl &
1245 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001246}
1247
Gui Jianfeng31299942010-03-15 17:29:09 +08001248static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001249{
1250 return vmcs_config.cpu_based_2nd_exec_ctrl &
1251 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1252}
1253
Gui Jianfeng31299942010-03-15 17:29:09 +08001254static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001255{
1256 return vmcs_config.cpu_based_2nd_exec_ctrl &
1257 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1258}
1259
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001260static inline bool cpu_has_vmx_basic_inout(void)
1261{
1262 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1263}
1264
Paolo Bonzini35754c92015-07-29 12:05:37 +02001265static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001266{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001267 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001268}
1269
Gui Jianfeng31299942010-03-15 17:29:09 +08001270static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001271{
Sheng Yang04547152009-04-01 15:52:31 +08001272 return vmcs_config.cpu_based_2nd_exec_ctrl &
1273 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001274}
1275
Gui Jianfeng31299942010-03-15 17:29:09 +08001276static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001277{
1278 return vmcs_config.cpu_based_2nd_exec_ctrl &
1279 SECONDARY_EXEC_RDTSCP;
1280}
1281
Mao, Junjiead756a12012-07-02 01:18:48 +00001282static inline bool cpu_has_vmx_invpcid(void)
1283{
1284 return vmcs_config.cpu_based_2nd_exec_ctrl &
1285 SECONDARY_EXEC_ENABLE_INVPCID;
1286}
1287
Gui Jianfeng31299942010-03-15 17:29:09 +08001288static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001289{
1290 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1291}
1292
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001293static inline bool cpu_has_vmx_wbinvd_exit(void)
1294{
1295 return vmcs_config.cpu_based_2nd_exec_ctrl &
1296 SECONDARY_EXEC_WBINVD_EXITING;
1297}
1298
Abel Gordonabc4fc52013-04-18 14:35:25 +03001299static inline bool cpu_has_vmx_shadow_vmcs(void)
1300{
1301 u64 vmx_msr;
1302 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1303 /* check if the cpu supports writing r/o exit information fields */
1304 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1305 return false;
1306
1307 return vmcs_config.cpu_based_2nd_exec_ctrl &
1308 SECONDARY_EXEC_SHADOW_VMCS;
1309}
1310
Kai Huang843e4332015-01-28 10:54:28 +08001311static inline bool cpu_has_vmx_pml(void)
1312{
1313 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1314}
1315
Haozhong Zhang64903d62015-10-20 15:39:09 +08001316static inline bool cpu_has_vmx_tsc_scaling(void)
1317{
1318 return vmcs_config.cpu_based_2nd_exec_ctrl &
1319 SECONDARY_EXEC_TSC_SCALING;
1320}
1321
Sheng Yang04547152009-04-01 15:52:31 +08001322static inline bool report_flexpriority(void)
1323{
1324 return flexpriority_enabled;
1325}
1326
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001327static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1328{
1329 return vmcs12->cpu_based_vm_exec_control & bit;
1330}
1331
1332static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1333{
1334 return (vmcs12->cpu_based_vm_exec_control &
1335 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1336 (vmcs12->secondary_vm_exec_control & bit);
1337}
1338
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001339static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001340{
1341 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1342}
1343
Jan Kiszkaf41245002014-03-07 20:03:13 +01001344static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1345{
1346 return vmcs12->pin_based_vm_exec_control &
1347 PIN_BASED_VMX_PREEMPTION_TIMER;
1348}
1349
Nadav Har'El155a97a2013-08-05 11:07:16 +03001350static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1351{
1352 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1353}
1354
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001355static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1356{
1357 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1358 vmx_xsaves_supported();
1359}
1360
Wincy Vanf2b93282015-02-03 23:56:03 +08001361static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1362{
1363 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1364}
1365
Wanpeng Li5c614b32015-10-13 09:18:36 -07001366static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1367{
1368 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1369}
1370
Wincy Van82f0dd42015-02-03 23:57:18 +08001371static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1372{
1373 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1374}
1375
Wincy Van608406e2015-02-03 23:57:51 +08001376static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1377{
1378 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1379}
1380
Wincy Van705699a2015-02-03 23:58:17 +08001381static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1382{
1383 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1384}
1385
Jim Mattsonef85b672016-12-12 11:01:37 -08001386static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001387{
1388 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001389 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001390}
1391
Jan Kiszka533558b2014-01-04 18:47:20 +01001392static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1393 u32 exit_intr_info,
1394 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001395static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1396 struct vmcs12 *vmcs12,
1397 u32 reason, unsigned long qualification);
1398
Rusty Russell8b9cf982007-07-30 16:31:43 +10001399static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001400{
1401 int i;
1402
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001403 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001404 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001405 return i;
1406 return -1;
1407}
1408
Sheng Yang2384d2b2008-01-17 15:14:33 +08001409static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1410{
1411 struct {
1412 u64 vpid : 16;
1413 u64 rsvd : 48;
1414 u64 gva;
1415 } operand = { vpid, 0, gva };
1416
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001417 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001418 /* CF==1 or ZF==1 --> rc = -1 */
1419 "; ja 1f ; ud2 ; 1:"
1420 : : "a"(&operand), "c"(ext) : "cc", "memory");
1421}
1422
Sheng Yang14394422008-04-28 12:24:45 +08001423static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1424{
1425 struct {
1426 u64 eptp, gpa;
1427 } operand = {eptp, gpa};
1428
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001429 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001430 /* CF==1 or ZF==1 --> rc = -1 */
1431 "; ja 1f ; ud2 ; 1:\n"
1432 : : "a" (&operand), "c" (ext) : "cc", "memory");
1433}
1434
Avi Kivity26bb0982009-09-07 11:14:12 +03001435static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001436{
1437 int i;
1438
Rusty Russell8b9cf982007-07-30 16:31:43 +10001439 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001440 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001441 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001442 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001443}
1444
Avi Kivity6aa8b732006-12-10 02:21:36 -08001445static void vmcs_clear(struct vmcs *vmcs)
1446{
1447 u64 phys_addr = __pa(vmcs);
1448 u8 error;
1449
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001450 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001451 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452 : "cc", "memory");
1453 if (error)
1454 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1455 vmcs, phys_addr);
1456}
1457
Nadav Har'Eld462b812011-05-24 15:26:10 +03001458static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1459{
1460 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001461 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1462 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001463 loaded_vmcs->cpu = -1;
1464 loaded_vmcs->launched = 0;
1465}
1466
Dongxiao Xu7725b892010-05-11 18:29:38 +08001467static void vmcs_load(struct vmcs *vmcs)
1468{
1469 u64 phys_addr = __pa(vmcs);
1470 u8 error;
1471
1472 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001473 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001474 : "cc", "memory");
1475 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001476 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001477 vmcs, phys_addr);
1478}
1479
Dave Young2965faa2015-09-09 15:38:55 -07001480#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001481/*
1482 * This bitmap is used to indicate whether the vmclear
1483 * operation is enabled on all cpus. All disabled by
1484 * default.
1485 */
1486static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1487
1488static inline void crash_enable_local_vmclear(int cpu)
1489{
1490 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1491}
1492
1493static inline void crash_disable_local_vmclear(int cpu)
1494{
1495 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1496}
1497
1498static inline int crash_local_vmclear_enabled(int cpu)
1499{
1500 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1501}
1502
1503static void crash_vmclear_local_loaded_vmcss(void)
1504{
1505 int cpu = raw_smp_processor_id();
1506 struct loaded_vmcs *v;
1507
1508 if (!crash_local_vmclear_enabled(cpu))
1509 return;
1510
1511 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1512 loaded_vmcss_on_cpu_link)
1513 vmcs_clear(v->vmcs);
1514}
1515#else
1516static inline void crash_enable_local_vmclear(int cpu) { }
1517static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001518#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001519
Nadav Har'Eld462b812011-05-24 15:26:10 +03001520static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001522 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001523 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524
Nadav Har'Eld462b812011-05-24 15:26:10 +03001525 if (loaded_vmcs->cpu != cpu)
1526 return; /* vcpu migration can race with cpu offline */
1527 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001528 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001529 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001530 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001531
1532 /*
1533 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1534 * is before setting loaded_vmcs->vcpu to -1 which is done in
1535 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1536 * then adds the vmcs into percpu list before it is deleted.
1537 */
1538 smp_wmb();
1539
Nadav Har'Eld462b812011-05-24 15:26:10 +03001540 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001541 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542}
1543
Nadav Har'Eld462b812011-05-24 15:26:10 +03001544static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001545{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001546 int cpu = loaded_vmcs->cpu;
1547
1548 if (cpu != -1)
1549 smp_call_function_single(cpu,
1550 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001551}
1552
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001553static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001554{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001555 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001556 return;
1557
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001558 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001559 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001560}
1561
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001562static inline void vpid_sync_vcpu_global(void)
1563{
1564 if (cpu_has_vmx_invvpid_global())
1565 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1566}
1567
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001568static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001569{
1570 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001571 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001572 else
1573 vpid_sync_vcpu_global();
1574}
1575
Sheng Yang14394422008-04-28 12:24:45 +08001576static inline void ept_sync_global(void)
1577{
1578 if (cpu_has_vmx_invept_global())
1579 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1580}
1581
1582static inline void ept_sync_context(u64 eptp)
1583{
Avi Kivity089d0342009-03-23 18:26:32 +02001584 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001585 if (cpu_has_vmx_invept_context())
1586 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1587 else
1588 ept_sync_global();
1589 }
1590}
1591
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001592static __always_inline void vmcs_check16(unsigned long field)
1593{
1594 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1595 "16-bit accessor invalid for 64-bit field");
1596 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1597 "16-bit accessor invalid for 64-bit high field");
1598 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1599 "16-bit accessor invalid for 32-bit high field");
1600 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1601 "16-bit accessor invalid for natural width field");
1602}
1603
1604static __always_inline void vmcs_check32(unsigned long field)
1605{
1606 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1607 "32-bit accessor invalid for 16-bit field");
1608 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1609 "32-bit accessor invalid for natural width field");
1610}
1611
1612static __always_inline void vmcs_check64(unsigned long field)
1613{
1614 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1615 "64-bit accessor invalid for 16-bit field");
1616 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1617 "64-bit accessor invalid for 64-bit high field");
1618 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1619 "64-bit accessor invalid for 32-bit field");
1620 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1621 "64-bit accessor invalid for natural width field");
1622}
1623
1624static __always_inline void vmcs_checkl(unsigned long field)
1625{
1626 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1627 "Natural width accessor invalid for 16-bit field");
1628 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1629 "Natural width accessor invalid for 64-bit field");
1630 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1631 "Natural width accessor invalid for 64-bit high field");
1632 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1633 "Natural width accessor invalid for 32-bit field");
1634}
1635
1636static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637{
Avi Kivity5e520e62011-05-15 10:13:12 -04001638 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639
Avi Kivity5e520e62011-05-15 10:13:12 -04001640 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1641 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642 return value;
1643}
1644
Avi Kivity96304212011-05-15 10:13:13 -04001645static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001647 vmcs_check16(field);
1648 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649}
1650
Avi Kivity96304212011-05-15 10:13:13 -04001651static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001653 vmcs_check32(field);
1654 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655}
1656
Avi Kivity96304212011-05-15 10:13:13 -04001657static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001659 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001660#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001661 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001662#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001663 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664#endif
1665}
1666
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001667static __always_inline unsigned long vmcs_readl(unsigned long field)
1668{
1669 vmcs_checkl(field);
1670 return __vmcs_readl(field);
1671}
1672
Avi Kivitye52de1b2007-01-05 16:36:56 -08001673static noinline void vmwrite_error(unsigned long field, unsigned long value)
1674{
1675 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1676 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1677 dump_stack();
1678}
1679
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001680static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681{
1682 u8 error;
1683
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001684 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001685 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001686 if (unlikely(error))
1687 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688}
1689
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001690static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001692 vmcs_check16(field);
1693 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001694}
1695
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001696static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001698 vmcs_check32(field);
1699 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700}
1701
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001702static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001704 vmcs_check64(field);
1705 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001706#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001708 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709#endif
1710}
1711
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001712static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001713{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001714 vmcs_checkl(field);
1715 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001716}
1717
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001718static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001719{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001720 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1721 "vmcs_clear_bits does not support 64-bit fields");
1722 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1723}
1724
1725static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1726{
1727 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1728 "vmcs_set_bits does not support 64-bit fields");
1729 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001730}
1731
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001732static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1733{
1734 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1735}
1736
Gleb Natapov2961e8762013-11-25 15:37:13 +02001737static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1738{
1739 vmcs_write32(VM_ENTRY_CONTROLS, val);
1740 vmx->vm_entry_controls_shadow = val;
1741}
1742
1743static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1744{
1745 if (vmx->vm_entry_controls_shadow != val)
1746 vm_entry_controls_init(vmx, val);
1747}
1748
1749static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1750{
1751 return vmx->vm_entry_controls_shadow;
1752}
1753
1754
1755static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1756{
1757 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1758}
1759
1760static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1761{
1762 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1763}
1764
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001765static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1766{
1767 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1768}
1769
Gleb Natapov2961e8762013-11-25 15:37:13 +02001770static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1771{
1772 vmcs_write32(VM_EXIT_CONTROLS, val);
1773 vmx->vm_exit_controls_shadow = val;
1774}
1775
1776static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1777{
1778 if (vmx->vm_exit_controls_shadow != val)
1779 vm_exit_controls_init(vmx, val);
1780}
1781
1782static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1783{
1784 return vmx->vm_exit_controls_shadow;
1785}
1786
1787
1788static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1789{
1790 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1791}
1792
1793static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1794{
1795 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1796}
1797
Avi Kivity2fb92db2011-04-27 19:42:18 +03001798static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1799{
1800 vmx->segment_cache.bitmask = 0;
1801}
1802
1803static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1804 unsigned field)
1805{
1806 bool ret;
1807 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1808
1809 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1810 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1811 vmx->segment_cache.bitmask = 0;
1812 }
1813 ret = vmx->segment_cache.bitmask & mask;
1814 vmx->segment_cache.bitmask |= mask;
1815 return ret;
1816}
1817
1818static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1819{
1820 u16 *p = &vmx->segment_cache.seg[seg].selector;
1821
1822 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1823 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1824 return *p;
1825}
1826
1827static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1828{
1829 ulong *p = &vmx->segment_cache.seg[seg].base;
1830
1831 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1832 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1833 return *p;
1834}
1835
1836static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1837{
1838 u32 *p = &vmx->segment_cache.seg[seg].limit;
1839
1840 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1841 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1842 return *p;
1843}
1844
1845static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1846{
1847 u32 *p = &vmx->segment_cache.seg[seg].ar;
1848
1849 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1850 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1851 return *p;
1852}
1853
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001854static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1855{
1856 u32 eb;
1857
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001858 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001859 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001860 if ((vcpu->guest_debug &
1861 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1862 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1863 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001864 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001865 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001866 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001867 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001868 if (vcpu->fpu_active)
1869 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001870
1871 /* When we are running a nested L2 guest and L1 specified for it a
1872 * certain exception bitmap, we must trap the same exceptions and pass
1873 * them to L1. When running L2, we will only handle the exceptions
1874 * specified above if L1 did not want them.
1875 */
1876 if (is_guest_mode(vcpu))
1877 eb |= get_vmcs12(vcpu)->exception_bitmap;
1878
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001879 vmcs_write32(EXCEPTION_BITMAP, eb);
1880}
1881
Gleb Natapov2961e8762013-11-25 15:37:13 +02001882static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1883 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001884{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001885 vm_entry_controls_clearbit(vmx, entry);
1886 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001887}
1888
Avi Kivity61d2ef22010-04-28 16:40:38 +03001889static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1890{
1891 unsigned i;
1892 struct msr_autoload *m = &vmx->msr_autoload;
1893
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001894 switch (msr) {
1895 case MSR_EFER:
1896 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001897 clear_atomic_switch_msr_special(vmx,
1898 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001899 VM_EXIT_LOAD_IA32_EFER);
1900 return;
1901 }
1902 break;
1903 case MSR_CORE_PERF_GLOBAL_CTRL:
1904 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001905 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001906 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1907 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1908 return;
1909 }
1910 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001911 }
1912
Avi Kivity61d2ef22010-04-28 16:40:38 +03001913 for (i = 0; i < m->nr; ++i)
1914 if (m->guest[i].index == msr)
1915 break;
1916
1917 if (i == m->nr)
1918 return;
1919 --m->nr;
1920 m->guest[i] = m->guest[m->nr];
1921 m->host[i] = m->host[m->nr];
1922 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1923 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1924}
1925
Gleb Natapov2961e8762013-11-25 15:37:13 +02001926static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1927 unsigned long entry, unsigned long exit,
1928 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1929 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001930{
1931 vmcs_write64(guest_val_vmcs, guest_val);
1932 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001933 vm_entry_controls_setbit(vmx, entry);
1934 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001935}
1936
Avi Kivity61d2ef22010-04-28 16:40:38 +03001937static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1938 u64 guest_val, u64 host_val)
1939{
1940 unsigned i;
1941 struct msr_autoload *m = &vmx->msr_autoload;
1942
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001943 switch (msr) {
1944 case MSR_EFER:
1945 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001946 add_atomic_switch_msr_special(vmx,
1947 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001948 VM_EXIT_LOAD_IA32_EFER,
1949 GUEST_IA32_EFER,
1950 HOST_IA32_EFER,
1951 guest_val, host_val);
1952 return;
1953 }
1954 break;
1955 case MSR_CORE_PERF_GLOBAL_CTRL:
1956 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001957 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001958 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1959 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1960 GUEST_IA32_PERF_GLOBAL_CTRL,
1961 HOST_IA32_PERF_GLOBAL_CTRL,
1962 guest_val, host_val);
1963 return;
1964 }
1965 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001966 case MSR_IA32_PEBS_ENABLE:
1967 /* PEBS needs a quiescent period after being disabled (to write
1968 * a record). Disabling PEBS through VMX MSR swapping doesn't
1969 * provide that period, so a CPU could write host's record into
1970 * guest's memory.
1971 */
1972 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001973 }
1974
Avi Kivity61d2ef22010-04-28 16:40:38 +03001975 for (i = 0; i < m->nr; ++i)
1976 if (m->guest[i].index == msr)
1977 break;
1978
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001979 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001980 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001981 "Can't add msr %x\n", msr);
1982 return;
1983 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001984 ++m->nr;
1985 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1986 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1987 }
1988
1989 m->guest[i].index = msr;
1990 m->guest[i].value = guest_val;
1991 m->host[i].index = msr;
1992 m->host[i].value = host_val;
1993}
1994
Avi Kivity33ed6322007-05-02 16:54:03 +03001995static void reload_tss(void)
1996{
Avi Kivity33ed6322007-05-02 16:54:03 +03001997 /*
1998 * VT restores TR but not its size. Useless.
1999 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05002000 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02002001 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03002002
Avi Kivityd3591922010-07-26 18:32:39 +03002003 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03002004 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
2005 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03002006}
2007
Avi Kivity92c0d902009-10-29 11:00:16 +02002008static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002009{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002010 u64 guest_efer = vmx->vcpu.arch.efer;
2011 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002012
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002013 if (!enable_ept) {
2014 /*
2015 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2016 * host CPUID is more efficient than testing guest CPUID
2017 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2018 */
2019 if (boot_cpu_has(X86_FEATURE_SMEP))
2020 guest_efer |= EFER_NX;
2021 else if (!(guest_efer & EFER_NX))
2022 ignore_bits |= EFER_NX;
2023 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002024
Avi Kivity51c6cf62007-08-29 03:48:05 +03002025 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002026 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002027 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002028 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002029#ifdef CONFIG_X86_64
2030 ignore_bits |= EFER_LMA | EFER_LME;
2031 /* SCE is meaningful only in long mode on Intel */
2032 if (guest_efer & EFER_LMA)
2033 ignore_bits &= ~(u64)EFER_SCE;
2034#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002035
2036 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002037
2038 /*
2039 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2040 * On CPUs that support "load IA32_EFER", always switch EFER
2041 * atomically, since it's faster than switching it manually.
2042 */
2043 if (cpu_has_load_ia32_efer ||
2044 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002045 if (!(guest_efer & EFER_LMA))
2046 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002047 if (guest_efer != host_efer)
2048 add_atomic_switch_msr(vmx, MSR_EFER,
2049 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002050 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002051 } else {
2052 guest_efer &= ~ignore_bits;
2053 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002054
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002055 vmx->guest_msrs[efer_offset].data = guest_efer;
2056 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2057
2058 return true;
2059 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002060}
2061
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002062static unsigned long segment_base(u16 selector)
2063{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002064 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002065 struct desc_struct *d;
2066 unsigned long table_base;
2067 unsigned long v;
2068
2069 if (!(selector & ~3))
2070 return 0;
2071
Avi Kivityd3591922010-07-26 18:32:39 +03002072 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002073
2074 if (selector & 4) { /* from ldt */
2075 u16 ldt_selector = kvm_read_ldt();
2076
2077 if (!(ldt_selector & ~3))
2078 return 0;
2079
2080 table_base = segment_base(ldt_selector);
2081 }
2082 d = (struct desc_struct *)(table_base + (selector & ~7));
2083 v = get_desc_base(d);
2084#ifdef CONFIG_X86_64
2085 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
2086 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
2087#endif
2088 return v;
2089}
2090
2091static inline unsigned long kvm_read_tr_base(void)
2092{
2093 u16 tr;
2094 asm("str %0" : "=g"(tr));
2095 return segment_base(tr);
2096}
2097
Avi Kivity04d2cc72007-09-10 18:10:54 +03002098static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002099{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002100 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002101 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002102
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002103 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002104 return;
2105
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002106 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002107 /*
2108 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2109 * allow segment selectors with cpl > 0 or ti == 1.
2110 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002111 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002112 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002113 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002114 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002115 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002116 vmx->host_state.fs_reload_needed = 0;
2117 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002118 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002119 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002120 }
Avi Kivity9581d442010-10-19 16:46:55 +02002121 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002122 if (!(vmx->host_state.gs_sel & 7))
2123 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002124 else {
2125 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002126 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002127 }
2128
2129#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002130 savesegment(ds, vmx->host_state.ds_sel);
2131 savesegment(es, vmx->host_state.es_sel);
2132#endif
2133
2134#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002135 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2136 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2137#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002138 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2139 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002140#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002141
2142#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002143 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2144 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002145 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002146#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002147 if (boot_cpu_has(X86_FEATURE_MPX))
2148 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002149 for (i = 0; i < vmx->save_nmsrs; ++i)
2150 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002151 vmx->guest_msrs[i].data,
2152 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002153}
2154
Avi Kivitya9b21b62008-06-24 11:48:49 +03002155static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002156{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002157 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002158 return;
2159
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002160 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002161 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002162#ifdef CONFIG_X86_64
2163 if (is_long_mode(&vmx->vcpu))
2164 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2165#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002166 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002167 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002168#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002169 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002170#else
2171 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002172#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002173 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002174 if (vmx->host_state.fs_reload_needed)
2175 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002176#ifdef CONFIG_X86_64
2177 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2178 loadsegment(ds, vmx->host_state.ds_sel);
2179 loadsegment(es, vmx->host_state.es_sel);
2180 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002181#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002182 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002183#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002184 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002185#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002186 if (vmx->host_state.msr_host_bndcfgs)
2187 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Christoph Lameter89cbc762014-08-17 12:30:40 -05002188 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002189}
2190
Avi Kivitya9b21b62008-06-24 11:48:49 +03002191static void vmx_load_host_state(struct vcpu_vmx *vmx)
2192{
2193 preempt_disable();
2194 __vmx_load_host_state(vmx);
2195 preempt_enable();
2196}
2197
Feng Wu28b835d2015-09-18 22:29:54 +08002198static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2199{
2200 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2201 struct pi_desc old, new;
2202 unsigned int dest;
2203
2204 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002205 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2206 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002207 return;
2208
2209 do {
2210 old.control = new.control = pi_desc->control;
2211
2212 /*
2213 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2214 * are two possible cases:
2215 * 1. After running 'pre_block', context switch
2216 * happened. For this case, 'sn' was set in
2217 * vmx_vcpu_put(), so we need to clear it here.
2218 * 2. After running 'pre_block', we were blocked,
2219 * and woken up by some other guy. For this case,
2220 * we don't need to do anything, 'pi_post_block'
2221 * will do everything for us. However, we cannot
2222 * check whether it is case #1 or case #2 here
2223 * (maybe, not needed), so we also clear sn here,
2224 * I think it is not a big deal.
2225 */
2226 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2227 if (vcpu->cpu != cpu) {
2228 dest = cpu_physical_id(cpu);
2229
2230 if (x2apic_enabled())
2231 new.ndst = dest;
2232 else
2233 new.ndst = (dest << 8) & 0xFF00;
2234 }
2235
2236 /* set 'NV' to 'notification vector' */
2237 new.nv = POSTED_INTR_VECTOR;
2238 }
2239
2240 /* Allow posting non-urgent interrupts */
2241 new.sn = 0;
2242 } while (cmpxchg(&pi_desc->control, old.control,
2243 new.control) != old.control);
2244}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002245
Peter Feinerc95ba922016-08-17 09:36:47 -07002246static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2247{
2248 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2249 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2250}
2251
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252/*
2253 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2254 * vcpu mutex is already taken.
2255 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002256static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002258 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002259 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002260 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002262 if (!vmm_exclusive)
2263 kvm_cpu_vmxon(phys_addr);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002264 else if (!already_loaded)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002265 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002267 if (!already_loaded) {
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002268 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002269 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002270
2271 /*
2272 * Read loaded_vmcs->cpu should be before fetching
2273 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2274 * See the comments in __loaded_vmcs_clear().
2275 */
2276 smp_rmb();
2277
Nadav Har'Eld462b812011-05-24 15:26:10 +03002278 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2279 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002280 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002281 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002282 }
2283
2284 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2285 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2286 vmcs_load(vmx->loaded_vmcs->vmcs);
2287 }
2288
2289 if (!already_loaded) {
2290 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
2291 unsigned long sysenter_esp;
2292
2293 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002294
Avi Kivity6aa8b732006-12-10 02:21:36 -08002295 /*
2296 * Linux uses per-cpu TSS and GDT, so set these when switching
2297 * processors.
2298 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002299 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002300 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301
2302 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2303 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002304
Nadav Har'Eld462b812011-05-24 15:26:10 +03002305 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 }
Feng Wu28b835d2015-09-18 22:29:54 +08002307
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002308 /* Setup TSC multiplier */
2309 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002310 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2311 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002312
Feng Wu28b835d2015-09-18 22:29:54 +08002313 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002314 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002315}
2316
2317static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2318{
2319 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2320
2321 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002322 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2323 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002324 return;
2325
2326 /* Set SN when the vCPU is preempted */
2327 if (vcpu->preempted)
2328 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329}
2330
2331static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2332{
Feng Wu28b835d2015-09-18 22:29:54 +08002333 vmx_vcpu_pi_put(vcpu);
2334
Avi Kivitya9b21b62008-06-24 11:48:49 +03002335 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002336 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002337 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2338 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002339 kvm_cpu_vmxoff();
2340 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002343static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2344{
Avi Kivity81231c62010-01-24 16:26:40 +02002345 ulong cr0;
2346
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002347 if (vcpu->fpu_active)
2348 return;
2349 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002350 cr0 = vmcs_readl(GUEST_CR0);
2351 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2352 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2353 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002354 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002355 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002356 if (is_guest_mode(vcpu))
2357 vcpu->arch.cr0_guest_owned_bits &=
2358 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002359 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002360}
2361
Avi Kivityedcafe32009-12-30 18:07:40 +02002362static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2363
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002364/*
2365 * Return the cr0 value that a nested guest would read. This is a combination
2366 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2367 * its hypervisor (cr0_read_shadow).
2368 */
2369static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2370{
2371 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2372 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2373}
2374static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2375{
2376 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2377 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2378}
2379
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002380static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2381{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002382 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2383 * set this *before* calling this function.
2384 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002385 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002386 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002387 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002388 vcpu->arch.cr0_guest_owned_bits = 0;
2389 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002390 if (is_guest_mode(vcpu)) {
2391 /*
2392 * L1's specified read shadow might not contain the TS bit,
2393 * so now that we turned on shadowing of this bit, we need to
2394 * set this bit of the shadow. Like in nested_vmx_run we need
2395 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2396 * up-to-date here because we just decached cr0.TS (and we'll
2397 * only update vmcs12->guest_cr0 on nested exit).
2398 */
2399 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2400 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2401 (vcpu->arch.cr0 & X86_CR0_TS);
2402 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2403 } else
2404 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002405}
2406
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2408{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002409 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002410
Avi Kivity6de12732011-03-07 12:51:22 +02002411 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2412 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2413 rflags = vmcs_readl(GUEST_RFLAGS);
2414 if (to_vmx(vcpu)->rmode.vm86_active) {
2415 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2416 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2417 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2418 }
2419 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002420 }
Avi Kivity6de12732011-03-07 12:51:22 +02002421 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002422}
2423
2424static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2425{
Avi Kivity6de12732011-03-07 12:51:22 +02002426 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2427 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002428 if (to_vmx(vcpu)->rmode.vm86_active) {
2429 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002430 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002431 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432 vmcs_writel(GUEST_RFLAGS, rflags);
2433}
2434
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002435static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2436{
2437 return to_vmx(vcpu)->guest_pkru;
2438}
2439
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002440static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002441{
2442 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2443 int ret = 0;
2444
2445 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002446 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002447 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002448 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002449
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002450 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002451}
2452
2453static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2454{
2455 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2456 u32 interruptibility = interruptibility_old;
2457
2458 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2459
Jan Kiszka48005f62010-02-19 19:38:07 +01002460 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002461 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002462 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002463 interruptibility |= GUEST_INTR_STATE_STI;
2464
2465 if ((interruptibility != interruptibility_old))
2466 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2467}
2468
Avi Kivity6aa8b732006-12-10 02:21:36 -08002469static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2470{
2471 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002473 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002475 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476
Glauber Costa2809f5d2009-05-12 16:21:05 -04002477 /* skipping an emulated instruction also counts */
2478 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479}
2480
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002481/*
2482 * KVM wants to inject page-faults which it got to the guest. This function
2483 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002484 */
Gleb Natapove011c662013-09-25 12:51:35 +03002485static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002486{
2487 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2488
Gleb Natapove011c662013-09-25 12:51:35 +03002489 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002490 return 0;
2491
Jan Kiszka533558b2014-01-04 18:47:20 +01002492 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2493 vmcs_read32(VM_EXIT_INTR_INFO),
2494 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002495 return 1;
2496}
2497
Avi Kivity298101d2007-11-25 13:41:11 +02002498static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002499 bool has_error_code, u32 error_code,
2500 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002501{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002502 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002503 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002504
Gleb Natapove011c662013-09-25 12:51:35 +03002505 if (!reinject && is_guest_mode(vcpu) &&
2506 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002507 return;
2508
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002509 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002510 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002511 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2512 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002513
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002514 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002515 int inc_eip = 0;
2516 if (kvm_exception_is_soft(nr))
2517 inc_eip = vcpu->arch.event_exit_inst_len;
2518 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002519 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002520 return;
2521 }
2522
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002523 if (kvm_exception_is_soft(nr)) {
2524 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2525 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002526 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2527 } else
2528 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2529
2530 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002531}
2532
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002533static bool vmx_rdtscp_supported(void)
2534{
2535 return cpu_has_vmx_rdtscp();
2536}
2537
Mao, Junjiead756a12012-07-02 01:18:48 +00002538static bool vmx_invpcid_supported(void)
2539{
2540 return cpu_has_vmx_invpcid() && enable_ept;
2541}
2542
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543/*
Eddie Donga75beee2007-05-17 18:55:15 +03002544 * Swap MSR entry in host/guest MSR entry array.
2545 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002546static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002547{
Avi Kivity26bb0982009-09-07 11:14:12 +03002548 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002549
2550 tmp = vmx->guest_msrs[to];
2551 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2552 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002553}
2554
Yang Zhang8d146952013-01-25 10:18:50 +08002555static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2556{
2557 unsigned long *msr_bitmap;
2558
Wincy Van670125b2015-03-04 14:31:56 +08002559 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002560 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002561 else if (cpu_has_secondary_exec_ctrls() &&
2562 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2563 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002564 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2565 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002566 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2567 else
2568 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2569 } else {
2570 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002571 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2572 else
2573 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002574 }
Yang Zhang8d146952013-01-25 10:18:50 +08002575 } else {
2576 if (is_long_mode(vcpu))
2577 msr_bitmap = vmx_msr_bitmap_longmode;
2578 else
2579 msr_bitmap = vmx_msr_bitmap_legacy;
2580 }
2581
2582 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2583}
2584
Eddie Donga75beee2007-05-17 18:55:15 +03002585/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002586 * Set up the vmcs to automatically save and restore system
2587 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2588 * mode, as fiddling with msrs is very expensive.
2589 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002590static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002591{
Avi Kivity26bb0982009-09-07 11:14:12 +03002592 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002593
Eddie Donga75beee2007-05-17 18:55:15 +03002594 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002595#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002596 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002597 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002598 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002599 move_msr_up(vmx, index, save_nmsrs++);
2600 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002601 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002602 move_msr_up(vmx, index, save_nmsrs++);
2603 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002604 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002605 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002606 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002607 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002608 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002609 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002610 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002611 * if efer.sce is enabled.
2612 */
Brian Gerst8c065852010-07-17 09:03:26 -04002613 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002614 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002615 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002616 }
Eddie Donga75beee2007-05-17 18:55:15 +03002617#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002618 index = __find_msr_index(vmx, MSR_EFER);
2619 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002620 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002621
Avi Kivity26bb0982009-09-07 11:14:12 +03002622 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002623
Yang Zhang8d146952013-01-25 10:18:50 +08002624 if (cpu_has_vmx_msr_bitmap())
2625 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002626}
2627
2628/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002630 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2631 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002633static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634{
2635 u64 host_tsc, tsc_offset;
2636
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002637 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002638 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002639 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640}
2641
2642/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002643 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002645static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002647 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002648 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002649 * We're here if L1 chose not to trap WRMSR to TSC. According
2650 * to the spec, this should set L1's TSC; The offset that L1
2651 * set for L2 remains unchanged, and still needs to be added
2652 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002653 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002654 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002655 /* recalculate vmcs02.TSC_OFFSET: */
2656 vmcs12 = get_vmcs12(vcpu);
2657 vmcs_write64(TSC_OFFSET, offset +
2658 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2659 vmcs12->tsc_offset : 0));
2660 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002661 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2662 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002663 vmcs_write64(TSC_OFFSET, offset);
2664 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665}
2666
Nadav Har'El801d3422011-05-25 23:02:23 +03002667static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2668{
2669 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2670 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2671}
2672
2673/*
2674 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2675 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2676 * all guests if the "nested" module option is off, and can also be disabled
2677 * for a single guest by disabling its VMX cpuid bit.
2678 */
2679static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2680{
2681 return nested && guest_cpuid_has_vmx(vcpu);
2682}
2683
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002685 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2686 * returned for the various VMX controls MSRs when nested VMX is enabled.
2687 * The same values should also be used to verify that vmcs12 control fields are
2688 * valid during nested entry from L1 to L2.
2689 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2690 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2691 * bit in the high half is on if the corresponding bit in the control field
2692 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002693 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002694static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002695{
2696 /*
2697 * Note that as a general rule, the high half of the MSRs (bits in
2698 * the control fields which may be 1) should be initialized by the
2699 * intersection of the underlying hardware's MSR (i.e., features which
2700 * can be supported) and the list of features we want to expose -
2701 * because they are known to be properly supported in our code.
2702 * Also, usually, the low half of the MSRs (bits which must be 1) can
2703 * be set to 0, meaning that L1 may turn off any of these bits. The
2704 * reason is that if one of these bits is necessary, it will appear
2705 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2706 * fields of vmcs01 and vmcs02, will turn these bits off - and
2707 * nested_vmx_exit_handled() will not pass related exits to L1.
2708 * These rules have exceptions below.
2709 */
2710
2711 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002712 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002713 vmx->nested.nested_vmx_pinbased_ctls_low,
2714 vmx->nested.nested_vmx_pinbased_ctls_high);
2715 vmx->nested.nested_vmx_pinbased_ctls_low |=
2716 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2717 vmx->nested.nested_vmx_pinbased_ctls_high &=
2718 PIN_BASED_EXT_INTR_MASK |
2719 PIN_BASED_NMI_EXITING |
2720 PIN_BASED_VIRTUAL_NMIS;
2721 vmx->nested.nested_vmx_pinbased_ctls_high |=
2722 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002723 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002724 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002725 vmx->nested.nested_vmx_pinbased_ctls_high |=
2726 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002727
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002728 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002729 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002730 vmx->nested.nested_vmx_exit_ctls_low,
2731 vmx->nested.nested_vmx_exit_ctls_high);
2732 vmx->nested.nested_vmx_exit_ctls_low =
2733 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002734
Wincy Vanb9c237b2015-02-03 23:56:30 +08002735 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002736#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002737 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002738#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002739 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002740 vmx->nested.nested_vmx_exit_ctls_high |=
2741 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002742 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002743 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2744
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002745 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002746 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002747
Jan Kiszka2996fca2014-06-16 13:59:43 +02002748 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002749 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002750
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002751 /* entry controls */
2752 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002753 vmx->nested.nested_vmx_entry_ctls_low,
2754 vmx->nested.nested_vmx_entry_ctls_high);
2755 vmx->nested.nested_vmx_entry_ctls_low =
2756 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2757 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002758#ifdef CONFIG_X86_64
2759 VM_ENTRY_IA32E_MODE |
2760#endif
2761 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002762 vmx->nested.nested_vmx_entry_ctls_high |=
2763 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002764 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002765 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002766
Jan Kiszka2996fca2014-06-16 13:59:43 +02002767 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002768 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002769
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002770 /* cpu-based controls */
2771 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002772 vmx->nested.nested_vmx_procbased_ctls_low,
2773 vmx->nested.nested_vmx_procbased_ctls_high);
2774 vmx->nested.nested_vmx_procbased_ctls_low =
2775 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2776 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002777 CPU_BASED_VIRTUAL_INTR_PENDING |
2778 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002779 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2780 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2781 CPU_BASED_CR3_STORE_EXITING |
2782#ifdef CONFIG_X86_64
2783 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2784#endif
2785 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002786 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2787 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2788 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2789 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002790 /*
2791 * We can allow some features even when not supported by the
2792 * hardware. For example, L1 can specify an MSR bitmap - and we
2793 * can use it to avoid exits to L1 - even when L0 runs L2
2794 * without MSR bitmaps.
2795 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002796 vmx->nested.nested_vmx_procbased_ctls_high |=
2797 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002798 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002799
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002800 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002801 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002802 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2803
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002804 /* secondary cpu-based controls */
2805 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002806 vmx->nested.nested_vmx_secondary_ctls_low,
2807 vmx->nested.nested_vmx_secondary_ctls_high);
2808 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2809 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002810 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002811 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002812 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002813 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002814 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002815 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002816 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002817 SECONDARY_EXEC_WBINVD_EXITING |
Dan Williamsdfa169b2016-06-02 11:17:24 -07002818 SECONDARY_EXEC_XSAVES;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002819
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002820 if (enable_ept) {
2821 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002822 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002823 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002824 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002825 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2826 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 |
2832 VMX_EPT_EXTENT_CONTEXT_BIT;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002833 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002834 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002835
Paolo Bonzinief697a72016-03-18 16:58:38 +01002836 /*
2837 * Old versions of KVM use the single-context version without
2838 * checking for support, so declare that it is supported even
2839 * though it is treated as global context. The alternative is
2840 * not failing the single-context invvpid, and it is worse.
2841 */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002842 if (enable_vpid)
2843 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002844 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002845 else
2846 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002847
Radim Krčmář0790ec12015-03-17 14:02:32 +01002848 if (enable_unrestricted_guest)
2849 vmx->nested.nested_vmx_secondary_ctls_high |=
2850 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2851
Jan Kiszkac18911a2013-03-13 16:06:41 +01002852 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002853 rdmsr(MSR_IA32_VMX_MISC,
2854 vmx->nested.nested_vmx_misc_low,
2855 vmx->nested.nested_vmx_misc_high);
2856 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2857 vmx->nested.nested_vmx_misc_low |=
2858 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002859 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002860 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002861
2862 /*
2863 * This MSR reports some information about VMX support. We
2864 * should return information about the VMX we emulate for the
2865 * guest, and the VMCS structure we give it - not about the
2866 * VMX support of the underlying hardware.
2867 */
2868 vmx->nested.nested_vmx_basic =
2869 VMCS12_REVISION |
2870 VMX_BASIC_TRUE_CTLS |
2871 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2872 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2873
2874 if (cpu_has_vmx_basic_inout())
2875 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2876
2877 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002878 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002879 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2880 * We picked the standard core2 setting.
2881 */
2882#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2883#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2884 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002885 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002886
2887 /* These MSRs specify bits which the guest must keep fixed off. */
2888 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2889 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002890
2891 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2892 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002893}
2894
David Matlack38991522016-11-29 18:14:08 -08002895/*
2896 * if fixed0[i] == 1: val[i] must be 1
2897 * if fixed1[i] == 0: val[i] must be 0
2898 */
2899static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2900{
2901 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002902}
2903
2904static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2905{
David Matlack38991522016-11-29 18:14:08 -08002906 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002907}
2908
2909static inline u64 vmx_control_msr(u32 low, u32 high)
2910{
2911 return low | ((u64)high << 32);
2912}
2913
David Matlack62cc6b9d2016-11-29 18:14:07 -08002914static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2915{
2916 superset &= mask;
2917 subset &= mask;
2918
2919 return (superset | subset) == superset;
2920}
2921
2922static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2923{
2924 const u64 feature_and_reserved =
2925 /* feature (except bit 48; see below) */
2926 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2927 /* reserved */
2928 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2929 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2930
2931 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2932 return -EINVAL;
2933
2934 /*
2935 * KVM does not emulate a version of VMX that constrains physical
2936 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2937 */
2938 if (data & BIT_ULL(48))
2939 return -EINVAL;
2940
2941 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2942 vmx_basic_vmcs_revision_id(data))
2943 return -EINVAL;
2944
2945 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2946 return -EINVAL;
2947
2948 vmx->nested.nested_vmx_basic = data;
2949 return 0;
2950}
2951
2952static int
2953vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2954{
2955 u64 supported;
2956 u32 *lowp, *highp;
2957
2958 switch (msr_index) {
2959 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2960 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2961 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2962 break;
2963 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2964 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2965 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2966 break;
2967 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2968 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2969 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2970 break;
2971 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2972 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2973 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2974 break;
2975 case MSR_IA32_VMX_PROCBASED_CTLS2:
2976 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2977 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
2978 break;
2979 default:
2980 BUG();
2981 }
2982
2983 supported = vmx_control_msr(*lowp, *highp);
2984
2985 /* Check must-be-1 bits are still 1. */
2986 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
2987 return -EINVAL;
2988
2989 /* Check must-be-0 bits are still 0. */
2990 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
2991 return -EINVAL;
2992
2993 *lowp = data;
2994 *highp = data >> 32;
2995 return 0;
2996}
2997
2998static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
2999{
3000 const u64 feature_and_reserved_bits =
3001 /* feature */
3002 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3003 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3004 /* reserved */
3005 GENMASK_ULL(13, 9) | BIT_ULL(31);
3006 u64 vmx_misc;
3007
3008 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3009 vmx->nested.nested_vmx_misc_high);
3010
3011 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3012 return -EINVAL;
3013
3014 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3015 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3016 vmx_misc_preemption_timer_rate(data) !=
3017 vmx_misc_preemption_timer_rate(vmx_misc))
3018 return -EINVAL;
3019
3020 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3021 return -EINVAL;
3022
3023 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3024 return -EINVAL;
3025
3026 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3027 return -EINVAL;
3028
3029 vmx->nested.nested_vmx_misc_low = data;
3030 vmx->nested.nested_vmx_misc_high = data >> 32;
3031 return 0;
3032}
3033
3034static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3035{
3036 u64 vmx_ept_vpid_cap;
3037
3038 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3039 vmx->nested.nested_vmx_vpid_caps);
3040
3041 /* Every bit is either reserved or a feature bit. */
3042 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3043 return -EINVAL;
3044
3045 vmx->nested.nested_vmx_ept_caps = data;
3046 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3047 return 0;
3048}
3049
3050static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3051{
3052 u64 *msr;
3053
3054 switch (msr_index) {
3055 case MSR_IA32_VMX_CR0_FIXED0:
3056 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3057 break;
3058 case MSR_IA32_VMX_CR4_FIXED0:
3059 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3060 break;
3061 default:
3062 BUG();
3063 }
3064
3065 /*
3066 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3067 * must be 1 in the restored value.
3068 */
3069 if (!is_bitwise_subset(data, *msr, -1ULL))
3070 return -EINVAL;
3071
3072 *msr = data;
3073 return 0;
3074}
3075
3076/*
3077 * Called when userspace is restoring VMX MSRs.
3078 *
3079 * Returns 0 on success, non-0 otherwise.
3080 */
3081static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3082{
3083 struct vcpu_vmx *vmx = to_vmx(vcpu);
3084
3085 switch (msr_index) {
3086 case MSR_IA32_VMX_BASIC:
3087 return vmx_restore_vmx_basic(vmx, data);
3088 case MSR_IA32_VMX_PINBASED_CTLS:
3089 case MSR_IA32_VMX_PROCBASED_CTLS:
3090 case MSR_IA32_VMX_EXIT_CTLS:
3091 case MSR_IA32_VMX_ENTRY_CTLS:
3092 /*
3093 * The "non-true" VMX capability MSRs are generated from the
3094 * "true" MSRs, so we do not support restoring them directly.
3095 *
3096 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3097 * should restore the "true" MSRs with the must-be-1 bits
3098 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3099 * DEFAULT SETTINGS".
3100 */
3101 return -EINVAL;
3102 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3103 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3104 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3105 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3106 case MSR_IA32_VMX_PROCBASED_CTLS2:
3107 return vmx_restore_control_msr(vmx, msr_index, data);
3108 case MSR_IA32_VMX_MISC:
3109 return vmx_restore_vmx_misc(vmx, data);
3110 case MSR_IA32_VMX_CR0_FIXED0:
3111 case MSR_IA32_VMX_CR4_FIXED0:
3112 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3113 case MSR_IA32_VMX_CR0_FIXED1:
3114 case MSR_IA32_VMX_CR4_FIXED1:
3115 /*
3116 * These MSRs are generated based on the vCPU's CPUID, so we
3117 * do not support restoring them directly.
3118 */
3119 return -EINVAL;
3120 case MSR_IA32_VMX_EPT_VPID_CAP:
3121 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3122 case MSR_IA32_VMX_VMCS_ENUM:
3123 vmx->nested.nested_vmx_vmcs_enum = data;
3124 return 0;
3125 default:
3126 /*
3127 * The rest of the VMX capability MSRs do not support restore.
3128 */
3129 return -EINVAL;
3130 }
3131}
3132
Jan Kiszkacae50132014-01-04 18:47:22 +01003133/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003134static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3135{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003136 struct vcpu_vmx *vmx = to_vmx(vcpu);
3137
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003138 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003139 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003140 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003141 break;
3142 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3143 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003144 *pdata = vmx_control_msr(
3145 vmx->nested.nested_vmx_pinbased_ctls_low,
3146 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003147 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3148 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003149 break;
3150 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3151 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003152 *pdata = vmx_control_msr(
3153 vmx->nested.nested_vmx_procbased_ctls_low,
3154 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003155 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3156 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003157 break;
3158 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3159 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003160 *pdata = vmx_control_msr(
3161 vmx->nested.nested_vmx_exit_ctls_low,
3162 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003163 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3164 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003165 break;
3166 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3167 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003168 *pdata = vmx_control_msr(
3169 vmx->nested.nested_vmx_entry_ctls_low,
3170 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003171 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3172 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003173 break;
3174 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003175 *pdata = vmx_control_msr(
3176 vmx->nested.nested_vmx_misc_low,
3177 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003178 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003179 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003180 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003181 break;
3182 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003183 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003184 break;
3185 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003186 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003187 break;
3188 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003189 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003190 break;
3191 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003192 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003193 break;
3194 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003195 *pdata = vmx_control_msr(
3196 vmx->nested.nested_vmx_secondary_ctls_low,
3197 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003198 break;
3199 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003200 *pdata = vmx->nested.nested_vmx_ept_caps |
3201 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003202 break;
3203 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003204 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003205 }
3206
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003207 return 0;
3208}
3209
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003210static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3211 uint64_t val)
3212{
3213 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3214
3215 return !(val & ~valid_bits);
3216}
3217
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003218/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003219 * Reads an msr value (of 'msr_index') into 'pdata'.
3220 * Returns 0 on success, non-0 otherwise.
3221 * Assumes vcpu_load() was already called.
3222 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003223static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003224{
Avi Kivity26bb0982009-09-07 11:14:12 +03003225 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003226
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003227 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003228#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003229 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003230 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003231 break;
3232 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003233 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003235 case MSR_KERNEL_GS_BASE:
3236 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003237 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003238 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003239#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003241 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303242 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003243 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003244 break;
3245 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003246 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003247 break;
3248 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003249 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250 break;
3251 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003252 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003254 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003255 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003256 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003257 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003258 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003259 case MSR_IA32_MCG_EXT_CTL:
3260 if (!msr_info->host_initiated &&
3261 !(to_vmx(vcpu)->msr_ia32_feature_control &
3262 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003263 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003264 msr_info->data = vcpu->arch.mcg_ext_ctl;
3265 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003266 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003267 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003268 break;
3269 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3270 if (!nested_vmx_allowed(vcpu))
3271 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003272 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003273 case MSR_IA32_XSS:
3274 if (!vmx_xsaves_supported())
3275 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003276 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003277 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003278 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003279 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003280 return 1;
3281 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003282 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003283 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003284 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003285 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003286 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003287 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003288 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003289 }
3290
Avi Kivity6aa8b732006-12-10 02:21:36 -08003291 return 0;
3292}
3293
Jan Kiszkacae50132014-01-04 18:47:22 +01003294static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3295
Avi Kivity6aa8b732006-12-10 02:21:36 -08003296/*
3297 * Writes msr value into into the appropriate "register".
3298 * Returns 0 on success, non-0 otherwise.
3299 * Assumes vcpu_load() was already called.
3300 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003301static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003302{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003303 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003304 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003305 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003306 u32 msr_index = msr_info->index;
3307 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003308
Avi Kivity6aa8b732006-12-10 02:21:36 -08003309 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003310 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003311 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003312 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003313#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003314 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003315 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003316 vmcs_writel(GUEST_FS_BASE, data);
3317 break;
3318 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003319 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003320 vmcs_writel(GUEST_GS_BASE, data);
3321 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003322 case MSR_KERNEL_GS_BASE:
3323 vmx_load_host_state(vmx);
3324 vmx->msr_guest_kernel_gs_base = data;
3325 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003326#endif
3327 case MSR_IA32_SYSENTER_CS:
3328 vmcs_write32(GUEST_SYSENTER_CS, data);
3329 break;
3330 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003331 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003332 break;
3333 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003334 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003335 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003336 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003337 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003338 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003339 vmcs_write64(GUEST_BNDCFGS, data);
3340 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303341 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08003342 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343 break;
Sheng Yang468d4722008-10-09 16:01:55 +08003344 case MSR_IA32_CR_PAT:
3345 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003346 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3347 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003348 vmcs_write64(GUEST_IA32_PAT, data);
3349 vcpu->arch.pat = data;
3350 break;
3351 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003352 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003353 break;
Will Auldba904632012-11-29 12:42:50 -08003354 case MSR_IA32_TSC_ADJUST:
3355 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003356 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003357 case MSR_IA32_MCG_EXT_CTL:
3358 if ((!msr_info->host_initiated &&
3359 !(to_vmx(vcpu)->msr_ia32_feature_control &
3360 FEATURE_CONTROL_LMCE)) ||
3361 (data & ~MCG_EXT_CTL_LMCE_EN))
3362 return 1;
3363 vcpu->arch.mcg_ext_ctl = data;
3364 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003365 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003366 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003367 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003368 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3369 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003370 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003371 if (msr_info->host_initiated && data == 0)
3372 vmx_leave_nested(vcpu);
3373 break;
3374 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003375 if (!msr_info->host_initiated)
3376 return 1; /* they are read-only */
3377 if (!nested_vmx_allowed(vcpu))
3378 return 1;
3379 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003380 case MSR_IA32_XSS:
3381 if (!vmx_xsaves_supported())
3382 return 1;
3383 /*
3384 * The only supported bit as of Skylake is bit 8, but
3385 * it is not supported on KVM.
3386 */
3387 if (data != 0)
3388 return 1;
3389 vcpu->arch.ia32_xss = data;
3390 if (vcpu->arch.ia32_xss != host_xss)
3391 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3392 vcpu->arch.ia32_xss, host_xss);
3393 else
3394 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3395 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003396 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003397 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003398 return 1;
3399 /* Check reserved bit, higher 32 bits should be zero */
3400 if ((data >> 32) != 0)
3401 return 1;
3402 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003403 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003404 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003405 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003406 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003407 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003408 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3409 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003410 ret = kvm_set_shared_msr(msr->index, msr->data,
3411 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003412 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003413 if (ret)
3414 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003415 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003416 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003417 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003418 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419 }
3420
Eddie Dong2cc51562007-05-21 07:28:09 +03003421 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003422}
3423
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003424static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003425{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003426 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3427 switch (reg) {
3428 case VCPU_REGS_RSP:
3429 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3430 break;
3431 case VCPU_REGS_RIP:
3432 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3433 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003434 case VCPU_EXREG_PDPTR:
3435 if (enable_ept)
3436 ept_save_pdptrs(vcpu);
3437 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003438 default:
3439 break;
3440 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003441}
3442
Avi Kivity6aa8b732006-12-10 02:21:36 -08003443static __init int cpu_has_kvm_support(void)
3444{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003445 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003446}
3447
3448static __init int vmx_disabled_by_bios(void)
3449{
3450 u64 msr;
3451
3452 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003453 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003454 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003455 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3456 && tboot_enabled())
3457 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003458 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003459 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003460 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003461 && !tboot_enabled()) {
3462 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003463 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003464 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003465 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003466 /* launched w/o TXT and VMX disabled */
3467 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3468 && !tboot_enabled())
3469 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003470 }
3471
3472 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003473}
3474
Dongxiao Xu7725b892010-05-11 18:29:38 +08003475static void kvm_cpu_vmxon(u64 addr)
3476{
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003477 intel_pt_handle_vmx(1);
3478
Dongxiao Xu7725b892010-05-11 18:29:38 +08003479 asm volatile (ASM_VMX_VMXON_RAX
3480 : : "a"(&addr), "m"(addr)
3481 : "memory", "cc");
3482}
3483
Radim Krčmář13a34e02014-08-28 15:13:03 +02003484static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003485{
3486 int cpu = raw_smp_processor_id();
3487 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003488 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003489
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003490 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003491 return -EBUSY;
3492
Nadav Har'Eld462b812011-05-24 15:26:10 +03003493 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003494 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3495 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003496
3497 /*
3498 * Now we can enable the vmclear operation in kdump
3499 * since the loaded_vmcss_on_cpu list on this cpu
3500 * has been initialized.
3501 *
3502 * Though the cpu is not in VMX operation now, there
3503 * is no problem to enable the vmclear operation
3504 * for the loaded_vmcss_on_cpu list is empty!
3505 */
3506 crash_enable_local_vmclear(cpu);
3507
Avi Kivity6aa8b732006-12-10 02:21:36 -08003508 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003509
3510 test_bits = FEATURE_CONTROL_LOCKED;
3511 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3512 if (tboot_enabled())
3513 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3514
3515 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003516 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003517 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3518 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003519 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003520
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003521 if (vmm_exclusive) {
3522 kvm_cpu_vmxon(phys_addr);
3523 ept_sync_global();
3524 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003525
Christoph Lameter89cbc762014-08-17 12:30:40 -05003526 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003527
Alexander Graf10474ae2009-09-15 11:37:46 +02003528 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003529}
3530
Nadav Har'Eld462b812011-05-24 15:26:10 +03003531static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003532{
3533 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003534 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003535
Nadav Har'Eld462b812011-05-24 15:26:10 +03003536 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3537 loaded_vmcss_on_cpu_link)
3538 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003539}
3540
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003541
3542/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3543 * tricks.
3544 */
3545static void kvm_cpu_vmxoff(void)
3546{
3547 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003548
3549 intel_pt_handle_vmx(0);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003550}
3551
Radim Krčmář13a34e02014-08-28 15:13:03 +02003552static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003553{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003554 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003555 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003556 kvm_cpu_vmxoff();
3557 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003558 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003559}
3560
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003561static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003562 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003563{
3564 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003565 u32 ctl = ctl_min | ctl_opt;
3566
3567 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3568
3569 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3570 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3571
3572 /* Ensure minimum (required) set of control bits are supported. */
3573 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003574 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003575
3576 *result = ctl;
3577 return 0;
3578}
3579
Avi Kivity110312c2010-12-21 12:54:20 +02003580static __init bool allow_1_setting(u32 msr, u32 ctl)
3581{
3582 u32 vmx_msr_low, vmx_msr_high;
3583
3584 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3585 return vmx_msr_high & ctl;
3586}
3587
Yang, Sheng002c7f72007-07-31 14:23:01 +03003588static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003589{
3590 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003591 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003592 u32 _pin_based_exec_control = 0;
3593 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003594 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003595 u32 _vmexit_control = 0;
3596 u32 _vmentry_control = 0;
3597
Raghavendra K T10166742012-02-07 23:19:20 +05303598 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003599#ifdef CONFIG_X86_64
3600 CPU_BASED_CR8_LOAD_EXITING |
3601 CPU_BASED_CR8_STORE_EXITING |
3602#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003603 CPU_BASED_CR3_LOAD_EXITING |
3604 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003605 CPU_BASED_USE_IO_BITMAPS |
3606 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003607 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003608 CPU_BASED_MWAIT_EXITING |
3609 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003610 CPU_BASED_INVLPG_EXITING |
3611 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003612
Sheng Yangf78e0e22007-10-29 09:40:42 +08003613 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003614 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003615 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003616 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3617 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003618 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003619#ifdef CONFIG_X86_64
3620 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3621 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3622 ~CPU_BASED_CR8_STORE_EXITING;
3623#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003624 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003625 min2 = 0;
3626 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003627 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003628 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003629 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003630 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003631 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003632 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003633 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003634 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003635 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003636 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003637 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003638 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003639 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003640 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003641 if (adjust_vmx_controls(min2, opt2,
3642 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003643 &_cpu_based_2nd_exec_control) < 0)
3644 return -EIO;
3645 }
3646#ifndef CONFIG_X86_64
3647 if (!(_cpu_based_2nd_exec_control &
3648 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3649 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3650#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003651
3652 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3653 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003654 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003655 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3656 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003657
Sheng Yangd56f5462008-04-25 10:13:16 +08003658 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003659 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3660 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003661 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3662 CPU_BASED_CR3_STORE_EXITING |
3663 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003664 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3665 vmx_capability.ept, vmx_capability.vpid);
3666 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003667
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003668 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003669#ifdef CONFIG_X86_64
3670 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3671#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003672 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003673 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003674 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3675 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003676 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003677
Yang Zhang01e439b2013-04-11 19:25:12 +08003678 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Yunhong Jiang64672c92016-06-13 14:19:59 -07003679 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
3680 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003681 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3682 &_pin_based_exec_control) < 0)
3683 return -EIO;
3684
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003685 if (cpu_has_broken_vmx_preemption_timer())
3686 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003687 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003688 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003689 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3690
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003691 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003692 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003693 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3694 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003695 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003697 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003698
3699 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3700 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003701 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003702
3703#ifdef CONFIG_X86_64
3704 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3705 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003706 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003707#endif
3708
3709 /* Require Write-Back (WB) memory type for VMCS accesses. */
3710 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003711 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003712
Yang, Sheng002c7f72007-07-31 14:23:01 +03003713 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003714 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003715 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003716 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003717
Yang, Sheng002c7f72007-07-31 14:23:01 +03003718 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3719 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003720 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003721 vmcs_conf->vmexit_ctrl = _vmexit_control;
3722 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003723
Avi Kivity110312c2010-12-21 12:54:20 +02003724 cpu_has_load_ia32_efer =
3725 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3726 VM_ENTRY_LOAD_IA32_EFER)
3727 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3728 VM_EXIT_LOAD_IA32_EFER);
3729
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003730 cpu_has_load_perf_global_ctrl =
3731 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3732 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3733 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3734 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3735
3736 /*
3737 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003738 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003739 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3740 *
3741 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3742 *
3743 * AAK155 (model 26)
3744 * AAP115 (model 30)
3745 * AAT100 (model 37)
3746 * BC86,AAY89,BD102 (model 44)
3747 * BA97 (model 46)
3748 *
3749 */
3750 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3751 switch (boot_cpu_data.x86_model) {
3752 case 26:
3753 case 30:
3754 case 37:
3755 case 44:
3756 case 46:
3757 cpu_has_load_perf_global_ctrl = false;
3758 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3759 "does not work properly. Using workaround\n");
3760 break;
3761 default:
3762 break;
3763 }
3764 }
3765
Borislav Petkov782511b2016-04-04 22:25:03 +02003766 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003767 rdmsrl(MSR_IA32_XSS, host_xss);
3768
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003769 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003770}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003771
3772static struct vmcs *alloc_vmcs_cpu(int cpu)
3773{
3774 int node = cpu_to_node(cpu);
3775 struct page *pages;
3776 struct vmcs *vmcs;
3777
Vlastimil Babka96db8002015-09-08 15:03:50 -07003778 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003779 if (!pages)
3780 return NULL;
3781 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003782 memset(vmcs, 0, vmcs_config.size);
3783 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003784 return vmcs;
3785}
3786
3787static struct vmcs *alloc_vmcs(void)
3788{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003789 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790}
3791
3792static void free_vmcs(struct vmcs *vmcs)
3793{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003794 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003795}
3796
Nadav Har'Eld462b812011-05-24 15:26:10 +03003797/*
3798 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3799 */
3800static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3801{
3802 if (!loaded_vmcs->vmcs)
3803 return;
3804 loaded_vmcs_clear(loaded_vmcs);
3805 free_vmcs(loaded_vmcs->vmcs);
3806 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003807 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003808}
3809
Sam Ravnborg39959582007-06-01 00:47:13 -07003810static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003811{
3812 int cpu;
3813
Zachary Amsden3230bb42009-09-29 11:38:37 -10003814 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003816 per_cpu(vmxarea, cpu) = NULL;
3817 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003818}
3819
Bandan Dasfe2b2012014-04-21 15:20:14 -04003820static void init_vmcs_shadow_fields(void)
3821{
3822 int i, j;
3823
3824 /* No checks for read only fields yet */
3825
3826 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3827 switch (shadow_read_write_fields[i]) {
3828 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003829 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003830 continue;
3831 break;
3832 default:
3833 break;
3834 }
3835
3836 if (j < i)
3837 shadow_read_write_fields[j] =
3838 shadow_read_write_fields[i];
3839 j++;
3840 }
3841 max_shadow_read_write_fields = j;
3842
3843 /* shadowed fields guest access without vmexit */
3844 for (i = 0; i < max_shadow_read_write_fields; i++) {
3845 clear_bit(shadow_read_write_fields[i],
3846 vmx_vmwrite_bitmap);
3847 clear_bit(shadow_read_write_fields[i],
3848 vmx_vmread_bitmap);
3849 }
3850 for (i = 0; i < max_shadow_read_only_fields; i++)
3851 clear_bit(shadow_read_only_fields[i],
3852 vmx_vmread_bitmap);
3853}
3854
Avi Kivity6aa8b732006-12-10 02:21:36 -08003855static __init int alloc_kvm_area(void)
3856{
3857 int cpu;
3858
Zachary Amsden3230bb42009-09-29 11:38:37 -10003859 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003860 struct vmcs *vmcs;
3861
3862 vmcs = alloc_vmcs_cpu(cpu);
3863 if (!vmcs) {
3864 free_kvm_area();
3865 return -ENOMEM;
3866 }
3867
3868 per_cpu(vmxarea, cpu) = vmcs;
3869 }
3870 return 0;
3871}
3872
Gleb Natapov14168782013-01-21 15:36:49 +02003873static bool emulation_required(struct kvm_vcpu *vcpu)
3874{
3875 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3876}
3877
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003878static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003879 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003880{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003881 if (!emulate_invalid_guest_state) {
3882 /*
3883 * CS and SS RPL should be equal during guest entry according
3884 * to VMX spec, but in reality it is not always so. Since vcpu
3885 * is in the middle of the transition from real mode to
3886 * protected mode it is safe to assume that RPL 0 is a good
3887 * default value.
3888 */
3889 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003890 save->selector &= ~SEGMENT_RPL_MASK;
3891 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003892 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003893 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003894 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003895}
3896
3897static void enter_pmode(struct kvm_vcpu *vcpu)
3898{
3899 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003900 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003901
Gleb Natapovd99e4152012-12-20 16:57:45 +02003902 /*
3903 * Update real mode segment cache. It may be not up-to-date if sement
3904 * register was written while vcpu was in a guest mode.
3905 */
3906 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3907 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3908 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3909 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3910 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3911 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3912
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003913 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914
Avi Kivity2fb92db2011-04-27 19:42:18 +03003915 vmx_segment_cache_clear(vmx);
3916
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003917 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003918
3919 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003920 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3921 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003922 vmcs_writel(GUEST_RFLAGS, flags);
3923
Rusty Russell66aee912007-07-17 23:34:16 +10003924 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3925 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003926
3927 update_exception_bitmap(vcpu);
3928
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003929 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3930 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3931 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3932 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3933 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3934 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935}
3936
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003937static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938{
Mathias Krause772e0312012-08-30 01:30:19 +02003939 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003940 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003941
Gleb Natapovd99e4152012-12-20 16:57:45 +02003942 var.dpl = 0x3;
3943 if (seg == VCPU_SREG_CS)
3944 var.type = 0x3;
3945
3946 if (!emulate_invalid_guest_state) {
3947 var.selector = var.base >> 4;
3948 var.base = var.base & 0xffff0;
3949 var.limit = 0xffff;
3950 var.g = 0;
3951 var.db = 0;
3952 var.present = 1;
3953 var.s = 1;
3954 var.l = 0;
3955 var.unusable = 0;
3956 var.type = 0x3;
3957 var.avl = 0;
3958 if (save->base & 0xf)
3959 printk_once(KERN_WARNING "kvm: segment base is not "
3960 "paragraph aligned when entering "
3961 "protected mode (seg=%d)", seg);
3962 }
3963
3964 vmcs_write16(sf->selector, var.selector);
3965 vmcs_write32(sf->base, var.base);
3966 vmcs_write32(sf->limit, var.limit);
3967 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003968}
3969
3970static void enter_rmode(struct kvm_vcpu *vcpu)
3971{
3972 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003973 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003974
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003975 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3976 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3977 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3978 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3979 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003980 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3981 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003982
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003983 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003984
Gleb Natapov776e58e2011-03-13 12:34:27 +02003985 /*
3986 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003987 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003988 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003989 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003990 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3991 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003992
Avi Kivity2fb92db2011-04-27 19:42:18 +03003993 vmx_segment_cache_clear(vmx);
3994
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003995 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003997 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3998
3999 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004000 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004001
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004002 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004003
4004 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004005 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004006 update_exception_bitmap(vcpu);
4007
Gleb Natapovd99e4152012-12-20 16:57:45 +02004008 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4009 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4010 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4011 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4012 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4013 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004014
Eddie Dong8668a3c2007-10-10 14:26:45 +08004015 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004016}
4017
Amit Shah401d10d2009-02-20 22:53:37 +05304018static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4019{
4020 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004021 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4022
4023 if (!msr)
4024 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304025
Avi Kivity44ea2b12009-09-06 15:55:37 +03004026 /*
4027 * Force kernel_gs_base reloading before EFER changes, as control
4028 * of this msr depends on is_long_mode().
4029 */
4030 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004031 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304032 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004033 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304034 msr->data = efer;
4035 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004036 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304037
4038 msr->data = efer & ~EFER_LME;
4039 }
4040 setup_msrs(vmx);
4041}
4042
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004043#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004044
4045static void enter_lmode(struct kvm_vcpu *vcpu)
4046{
4047 u32 guest_tr_ar;
4048
Avi Kivity2fb92db2011-04-27 19:42:18 +03004049 vmx_segment_cache_clear(to_vmx(vcpu));
4050
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004052 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004053 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4054 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004056 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4057 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058 }
Avi Kivityda38f432010-07-06 11:30:49 +03004059 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004060}
4061
4062static void exit_lmode(struct kvm_vcpu *vcpu)
4063{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004064 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004065 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066}
4067
4068#endif
4069
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004070static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004071{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004072 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004073 if (enable_ept) {
4074 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4075 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08004076 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004077 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004078}
4079
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004080static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4081{
4082 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4083}
4084
Avi Kivitye8467fd2009-12-29 18:43:06 +02004085static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4086{
4087 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4088
4089 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4090 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4091}
4092
Avi Kivityaff48ba2010-12-05 18:56:11 +02004093static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4094{
4095 if (enable_ept && is_paging(vcpu))
4096 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4097 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4098}
4099
Anthony Liguori25c4c272007-04-27 09:29:21 +03004100static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004101{
Avi Kivityfc78f512009-12-07 12:16:48 +02004102 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4103
4104 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4105 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004106}
4107
Sheng Yang14394422008-04-28 12:24:45 +08004108static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4109{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004110 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4111
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004112 if (!test_bit(VCPU_EXREG_PDPTR,
4113 (unsigned long *)&vcpu->arch.regs_dirty))
4114 return;
4115
Sheng Yang14394422008-04-28 12:24:45 +08004116 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004117 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4118 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4119 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4120 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004121 }
4122}
4123
Avi Kivity8f5d5492009-05-31 18:41:29 +03004124static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4125{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004126 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4127
Avi Kivity8f5d5492009-05-31 18:41:29 +03004128 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004129 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4130 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4131 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4132 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004133 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004134
4135 __set_bit(VCPU_EXREG_PDPTR,
4136 (unsigned long *)&vcpu->arch.regs_avail);
4137 __set_bit(VCPU_EXREG_PDPTR,
4138 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004139}
4140
David Matlack38991522016-11-29 18:14:08 -08004141static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4142{
4143 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4144 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4145 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4146
4147 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4148 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4149 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4150 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4151
4152 return fixed_bits_valid(val, fixed0, fixed1);
4153}
4154
4155static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4156{
4157 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4158 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4159
4160 return fixed_bits_valid(val, fixed0, fixed1);
4161}
4162
4163static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4164{
4165 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4166 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4167
4168 return fixed_bits_valid(val, fixed0, fixed1);
4169}
4170
4171/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4172#define nested_guest_cr4_valid nested_cr4_valid
4173#define nested_host_cr4_valid nested_cr4_valid
4174
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004175static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004176
4177static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4178 unsigned long cr0,
4179 struct kvm_vcpu *vcpu)
4180{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004181 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4182 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004183 if (!(cr0 & X86_CR0_PG)) {
4184 /* From paging/starting to nonpaging */
4185 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004186 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004187 (CPU_BASED_CR3_LOAD_EXITING |
4188 CPU_BASED_CR3_STORE_EXITING));
4189 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004190 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004191 } else if (!is_paging(vcpu)) {
4192 /* From nonpaging to paging */
4193 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004194 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004195 ~(CPU_BASED_CR3_LOAD_EXITING |
4196 CPU_BASED_CR3_STORE_EXITING));
4197 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004198 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004199 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004200
4201 if (!(cr0 & X86_CR0_WP))
4202 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004203}
4204
Avi Kivity6aa8b732006-12-10 02:21:36 -08004205static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4206{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004207 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004208 unsigned long hw_cr0;
4209
Gleb Natapov50378782013-02-04 16:00:28 +02004210 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004211 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004212 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004213 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004214 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004215
Gleb Natapov218e7632013-01-21 15:36:45 +02004216 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4217 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004218
Gleb Natapov218e7632013-01-21 15:36:45 +02004219 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4220 enter_rmode(vcpu);
4221 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004222
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004223#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004224 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004225 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004226 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004227 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004228 exit_lmode(vcpu);
4229 }
4230#endif
4231
Avi Kivity089d0342009-03-23 18:26:32 +02004232 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004233 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4234
Avi Kivity02daab22009-12-30 12:40:26 +02004235 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02004236 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02004237
Avi Kivity6aa8b732006-12-10 02:21:36 -08004238 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004239 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004240 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004241
4242 /* depends on vcpu->arch.cr0 to be set to a new value */
4243 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244}
4245
Sheng Yang14394422008-04-28 12:24:45 +08004246static u64 construct_eptp(unsigned long root_hpa)
4247{
4248 u64 eptp;
4249
4250 /* TODO write the value reading from MSR */
4251 eptp = VMX_EPT_DEFAULT_MT |
4252 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08004253 if (enable_ept_ad_bits)
4254 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004255 eptp |= (root_hpa & PAGE_MASK);
4256
4257 return eptp;
4258}
4259
Avi Kivity6aa8b732006-12-10 02:21:36 -08004260static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4261{
Sheng Yang14394422008-04-28 12:24:45 +08004262 unsigned long guest_cr3;
4263 u64 eptp;
4264
4265 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004266 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004267 eptp = construct_eptp(cr3);
4268 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004269 if (is_paging(vcpu) || is_guest_mode(vcpu))
4270 guest_cr3 = kvm_read_cr3(vcpu);
4271 else
4272 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02004273 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004274 }
4275
Sheng Yang2384d2b2008-01-17 15:14:33 +08004276 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004277 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278}
4279
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004280static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004281{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004282 /*
4283 * Pass through host's Machine Check Enable value to hw_cr4, which
4284 * is in force while we are in guest mode. Do not let guests control
4285 * this bit, even if host CR4.MCE == 0.
4286 */
4287 unsigned long hw_cr4 =
4288 (cr4_read_shadow() & X86_CR4_MCE) |
4289 (cr4 & ~X86_CR4_MCE) |
4290 (to_vmx(vcpu)->rmode.vm86_active ?
4291 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004292
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004293 if (cr4 & X86_CR4_VMXE) {
4294 /*
4295 * To use VMXON (and later other VMX instructions), a guest
4296 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4297 * So basically the check on whether to allow nested VMX
4298 * is here.
4299 */
4300 if (!nested_vmx_allowed(vcpu))
4301 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004302 }
David Matlack38991522016-11-29 18:14:08 -08004303
4304 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004305 return 1;
4306
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004307 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004308 if (enable_ept) {
4309 if (!is_paging(vcpu)) {
4310 hw_cr4 &= ~X86_CR4_PAE;
4311 hw_cr4 |= X86_CR4_PSE;
4312 } else if (!(cr4 & X86_CR4_PAE)) {
4313 hw_cr4 &= ~X86_CR4_PAE;
4314 }
4315 }
Sheng Yang14394422008-04-28 12:24:45 +08004316
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004317 if (!enable_unrestricted_guest && !is_paging(vcpu))
4318 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004319 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4320 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4321 * to be manually disabled when guest switches to non-paging
4322 * mode.
4323 *
4324 * If !enable_unrestricted_guest, the CPU is always running
4325 * with CR0.PG=1 and CR4 needs to be modified.
4326 * If enable_unrestricted_guest, the CPU automatically
4327 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004328 */
Huaitong Handdba2622016-03-22 16:51:15 +08004329 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004330
Sheng Yang14394422008-04-28 12:24:45 +08004331 vmcs_writel(CR4_READ_SHADOW, cr4);
4332 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004333 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004334}
4335
Avi Kivity6aa8b732006-12-10 02:21:36 -08004336static void vmx_get_segment(struct kvm_vcpu *vcpu,
4337 struct kvm_segment *var, int seg)
4338{
Avi Kivitya9179492011-01-03 14:28:52 +02004339 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004340 u32 ar;
4341
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004342 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004343 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004344 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004345 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004346 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004347 var->base = vmx_read_guest_seg_base(vmx, seg);
4348 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4349 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004350 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004351 var->base = vmx_read_guest_seg_base(vmx, seg);
4352 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4353 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4354 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004355 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004356 var->type = ar & 15;
4357 var->s = (ar >> 4) & 1;
4358 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004359 /*
4360 * Some userspaces do not preserve unusable property. Since usable
4361 * segment has to be present according to VMX spec we can use present
4362 * property to amend userspace bug by making unusable segment always
4363 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4364 * segment as unusable.
4365 */
4366 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367 var->avl = (ar >> 12) & 1;
4368 var->l = (ar >> 13) & 1;
4369 var->db = (ar >> 14) & 1;
4370 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004371}
4372
Avi Kivitya9179492011-01-03 14:28:52 +02004373static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4374{
Avi Kivitya9179492011-01-03 14:28:52 +02004375 struct kvm_segment s;
4376
4377 if (to_vmx(vcpu)->rmode.vm86_active) {
4378 vmx_get_segment(vcpu, &s, seg);
4379 return s.base;
4380 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004381 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004382}
4383
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004384static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004385{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004386 struct vcpu_vmx *vmx = to_vmx(vcpu);
4387
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004388 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004389 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004390 else {
4391 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004392 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004393 }
Avi Kivity69c73022011-03-07 15:26:44 +02004394}
4395
Avi Kivity653e3102007-05-07 10:55:37 +03004396static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004398 u32 ar;
4399
Avi Kivityf0495f92012-06-07 17:06:10 +03004400 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004401 ar = 1 << 16;
4402 else {
4403 ar = var->type & 15;
4404 ar |= (var->s & 1) << 4;
4405 ar |= (var->dpl & 3) << 5;
4406 ar |= (var->present & 1) << 7;
4407 ar |= (var->avl & 1) << 12;
4408 ar |= (var->l & 1) << 13;
4409 ar |= (var->db & 1) << 14;
4410 ar |= (var->g & 1) << 15;
4411 }
Avi Kivity653e3102007-05-07 10:55:37 +03004412
4413 return ar;
4414}
4415
4416static void vmx_set_segment(struct kvm_vcpu *vcpu,
4417 struct kvm_segment *var, int seg)
4418{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004419 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004420 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004421
Avi Kivity2fb92db2011-04-27 19:42:18 +03004422 vmx_segment_cache_clear(vmx);
4423
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004424 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4425 vmx->rmode.segs[seg] = *var;
4426 if (seg == VCPU_SREG_TR)
4427 vmcs_write16(sf->selector, var->selector);
4428 else if (var->s)
4429 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004430 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004431 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004432
Avi Kivity653e3102007-05-07 10:55:37 +03004433 vmcs_writel(sf->base, var->base);
4434 vmcs_write32(sf->limit, var->limit);
4435 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004436
4437 /*
4438 * Fix the "Accessed" bit in AR field of segment registers for older
4439 * qemu binaries.
4440 * IA32 arch specifies that at the time of processor reset the
4441 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004442 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004443 * state vmexit when "unrestricted guest" mode is turned on.
4444 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4445 * tree. Newer qemu binaries with that qemu fix would not need this
4446 * kvm hack.
4447 */
4448 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004449 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004450
Gleb Natapovf924d662012-12-12 19:10:55 +02004451 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004452
4453out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004454 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004455}
4456
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4458{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004459 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004460
4461 *db = (ar >> 14) & 1;
4462 *l = (ar >> 13) & 1;
4463}
4464
Gleb Natapov89a27f42010-02-16 10:51:48 +02004465static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004466{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004467 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4468 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004469}
4470
Gleb Natapov89a27f42010-02-16 10:51:48 +02004471static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004472{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004473 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4474 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004475}
4476
Gleb Natapov89a27f42010-02-16 10:51:48 +02004477static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004478{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004479 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4480 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004481}
4482
Gleb Natapov89a27f42010-02-16 10:51:48 +02004483static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004484{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004485 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4486 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004487}
4488
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004489static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4490{
4491 struct kvm_segment var;
4492 u32 ar;
4493
4494 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004495 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004496 if (seg == VCPU_SREG_CS)
4497 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004498 ar = vmx_segment_access_rights(&var);
4499
4500 if (var.base != (var.selector << 4))
4501 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004502 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004503 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004504 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004505 return false;
4506
4507 return true;
4508}
4509
4510static bool code_segment_valid(struct kvm_vcpu *vcpu)
4511{
4512 struct kvm_segment cs;
4513 unsigned int cs_rpl;
4514
4515 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004516 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004517
Avi Kivity1872a3f2009-01-04 23:26:52 +02004518 if (cs.unusable)
4519 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004520 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004521 return false;
4522 if (!cs.s)
4523 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004524 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004525 if (cs.dpl > cs_rpl)
4526 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004527 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004528 if (cs.dpl != cs_rpl)
4529 return false;
4530 }
4531 if (!cs.present)
4532 return false;
4533
4534 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4535 return true;
4536}
4537
4538static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4539{
4540 struct kvm_segment ss;
4541 unsigned int ss_rpl;
4542
4543 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004544 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004545
Avi Kivity1872a3f2009-01-04 23:26:52 +02004546 if (ss.unusable)
4547 return true;
4548 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004549 return false;
4550 if (!ss.s)
4551 return false;
4552 if (ss.dpl != ss_rpl) /* DPL != RPL */
4553 return false;
4554 if (!ss.present)
4555 return false;
4556
4557 return true;
4558}
4559
4560static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4561{
4562 struct kvm_segment var;
4563 unsigned int rpl;
4564
4565 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004566 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004567
Avi Kivity1872a3f2009-01-04 23:26:52 +02004568 if (var.unusable)
4569 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004570 if (!var.s)
4571 return false;
4572 if (!var.present)
4573 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004574 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004575 if (var.dpl < rpl) /* DPL < RPL */
4576 return false;
4577 }
4578
4579 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4580 * rights flags
4581 */
4582 return true;
4583}
4584
4585static bool tr_valid(struct kvm_vcpu *vcpu)
4586{
4587 struct kvm_segment tr;
4588
4589 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4590
Avi Kivity1872a3f2009-01-04 23:26:52 +02004591 if (tr.unusable)
4592 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004593 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004594 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004595 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004596 return false;
4597 if (!tr.present)
4598 return false;
4599
4600 return true;
4601}
4602
4603static bool ldtr_valid(struct kvm_vcpu *vcpu)
4604{
4605 struct kvm_segment ldtr;
4606
4607 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4608
Avi Kivity1872a3f2009-01-04 23:26:52 +02004609 if (ldtr.unusable)
4610 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004611 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004612 return false;
4613 if (ldtr.type != 2)
4614 return false;
4615 if (!ldtr.present)
4616 return false;
4617
4618 return true;
4619}
4620
4621static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4622{
4623 struct kvm_segment cs, ss;
4624
4625 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4626 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4627
Nadav Amitb32a9912015-03-29 16:33:04 +03004628 return ((cs.selector & SEGMENT_RPL_MASK) ==
4629 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004630}
4631
4632/*
4633 * Check if guest state is valid. Returns true if valid, false if
4634 * not.
4635 * We assume that registers are always usable
4636 */
4637static bool guest_state_valid(struct kvm_vcpu *vcpu)
4638{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004639 if (enable_unrestricted_guest)
4640 return true;
4641
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004642 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004643 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004644 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4645 return false;
4646 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4647 return false;
4648 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4649 return false;
4650 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4651 return false;
4652 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4653 return false;
4654 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4655 return false;
4656 } else {
4657 /* protected mode guest state checks */
4658 if (!cs_ss_rpl_check(vcpu))
4659 return false;
4660 if (!code_segment_valid(vcpu))
4661 return false;
4662 if (!stack_segment_valid(vcpu))
4663 return false;
4664 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4665 return false;
4666 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4667 return false;
4668 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4669 return false;
4670 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4671 return false;
4672 if (!tr_valid(vcpu))
4673 return false;
4674 if (!ldtr_valid(vcpu))
4675 return false;
4676 }
4677 /* TODO:
4678 * - Add checks on RIP
4679 * - Add checks on RFLAGS
4680 */
4681
4682 return true;
4683}
4684
Mike Dayd77c26f2007-10-08 09:02:08 -04004685static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004686{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004687 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004688 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004689 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004690
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004691 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004692 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004693 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4694 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004695 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004696 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004697 r = kvm_write_guest_page(kvm, fn++, &data,
4698 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004699 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004700 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004701 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4702 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004703 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004704 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4705 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004706 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004707 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004708 r = kvm_write_guest_page(kvm, fn, &data,
4709 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4710 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004711out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004712 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004713 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004714}
4715
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004716static int init_rmode_identity_map(struct kvm *kvm)
4717{
Tang Chenf51770e2014-09-16 18:41:59 +08004718 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004719 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004720 u32 tmp;
4721
Avi Kivity089d0342009-03-23 18:26:32 +02004722 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004723 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004724
4725 /* Protect kvm->arch.ept_identity_pagetable_done. */
4726 mutex_lock(&kvm->slots_lock);
4727
Tang Chenf51770e2014-09-16 18:41:59 +08004728 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004729 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004730
Sheng Yangb927a3c2009-07-21 10:42:48 +08004731 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004732
4733 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004734 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004735 goto out2;
4736
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004737 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004738 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4739 if (r < 0)
4740 goto out;
4741 /* Set up identity-mapping pagetable for EPT in real mode */
4742 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4743 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4744 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4745 r = kvm_write_guest_page(kvm, identity_map_pfn,
4746 &tmp, i * sizeof(tmp), sizeof(tmp));
4747 if (r < 0)
4748 goto out;
4749 }
4750 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004751
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004752out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004753 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004754
4755out2:
4756 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004757 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004758}
4759
Avi Kivity6aa8b732006-12-10 02:21:36 -08004760static void seg_setup(int seg)
4761{
Mathias Krause772e0312012-08-30 01:30:19 +02004762 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004763 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004764
4765 vmcs_write16(sf->selector, 0);
4766 vmcs_writel(sf->base, 0);
4767 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004768 ar = 0x93;
4769 if (seg == VCPU_SREG_CS)
4770 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004771
4772 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004773}
4774
Sheng Yangf78e0e22007-10-29 09:40:42 +08004775static int alloc_apic_access_page(struct kvm *kvm)
4776{
Xiao Guangrong44841412012-09-07 14:14:20 +08004777 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004778 int r = 0;
4779
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004780 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004781 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004782 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004783 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4784 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004785 if (r)
4786 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004787
Tang Chen73a6d942014-09-11 13:38:00 +08004788 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004789 if (is_error_page(page)) {
4790 r = -EFAULT;
4791 goto out;
4792 }
4793
Tang Chenc24ae0d2014-09-24 15:57:58 +08004794 /*
4795 * Do not pin the page in memory, so that memory hot-unplug
4796 * is able to migrate it.
4797 */
4798 put_page(page);
4799 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004800out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004801 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004802 return r;
4803}
4804
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004805static int alloc_identity_pagetable(struct kvm *kvm)
4806{
Tang Chena255d472014-09-16 18:41:58 +08004807 /* Called with kvm->slots_lock held. */
4808
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004809 int r = 0;
4810
Tang Chena255d472014-09-16 18:41:58 +08004811 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4812
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004813 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4814 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004815
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004816 return r;
4817}
4818
Wanpeng Li991e7a02015-09-16 17:30:05 +08004819static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004820{
4821 int vpid;
4822
Avi Kivity919818a2009-03-23 18:01:29 +02004823 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004824 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004825 spin_lock(&vmx_vpid_lock);
4826 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004827 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004828 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004829 else
4830 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004831 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004832 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004833}
4834
Wanpeng Li991e7a02015-09-16 17:30:05 +08004835static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004836{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004837 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004838 return;
4839 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004840 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004841 spin_unlock(&vmx_vpid_lock);
4842}
4843
Yang Zhang8d146952013-01-25 10:18:50 +08004844#define MSR_TYPE_R 1
4845#define MSR_TYPE_W 2
4846static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4847 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004848{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004849 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004850
4851 if (!cpu_has_vmx_msr_bitmap())
4852 return;
4853
4854 /*
4855 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4856 * have the write-low and read-high bitmap offsets the wrong way round.
4857 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4858 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004859 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004860 if (type & MSR_TYPE_R)
4861 /* read-low */
4862 __clear_bit(msr, msr_bitmap + 0x000 / f);
4863
4864 if (type & MSR_TYPE_W)
4865 /* write-low */
4866 __clear_bit(msr, msr_bitmap + 0x800 / f);
4867
Sheng Yang25c5f222008-03-28 13:18:56 +08004868 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4869 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004870 if (type & MSR_TYPE_R)
4871 /* read-high */
4872 __clear_bit(msr, msr_bitmap + 0x400 / f);
4873
4874 if (type & MSR_TYPE_W)
4875 /* write-high */
4876 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4877
4878 }
4879}
4880
Wincy Vanf2b93282015-02-03 23:56:03 +08004881/*
4882 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4883 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4884 */
4885static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4886 unsigned long *msr_bitmap_nested,
4887 u32 msr, int type)
4888{
4889 int f = sizeof(unsigned long);
4890
4891 if (!cpu_has_vmx_msr_bitmap()) {
4892 WARN_ON(1);
4893 return;
4894 }
4895
4896 /*
4897 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4898 * have the write-low and read-high bitmap offsets the wrong way round.
4899 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4900 */
4901 if (msr <= 0x1fff) {
4902 if (type & MSR_TYPE_R &&
4903 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4904 /* read-low */
4905 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4906
4907 if (type & MSR_TYPE_W &&
4908 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4909 /* write-low */
4910 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4911
4912 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4913 msr &= 0x1fff;
4914 if (type & MSR_TYPE_R &&
4915 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4916 /* read-high */
4917 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4918
4919 if (type & MSR_TYPE_W &&
4920 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4921 /* write-high */
4922 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4923
4924 }
4925}
4926
Avi Kivity58972972009-02-24 22:26:47 +02004927static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4928{
4929 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004930 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4931 msr, MSR_TYPE_R | MSR_TYPE_W);
4932 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4933 msr, MSR_TYPE_R | MSR_TYPE_W);
4934}
4935
Radim Krčmář2e69f862016-09-29 22:41:32 +02004936static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004937{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004938 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08004939 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004940 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08004941 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004942 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004943 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004944 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004945 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004946 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004947 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004948 }
Avi Kivity58972972009-02-24 22:26:47 +02004949}
4950
Andrey Smetanind62caab2015-11-10 15:36:33 +03004951static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004952{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004953 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004954}
4955
David Hildenbrand6342c502017-01-25 11:58:58 +01004956static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08004957{
4958 struct vcpu_vmx *vmx = to_vmx(vcpu);
4959 int max_irr;
4960 void *vapic_page;
4961 u16 status;
4962
4963 if (vmx->nested.pi_desc &&
4964 vmx->nested.pi_pending) {
4965 vmx->nested.pi_pending = false;
4966 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
David Hildenbrand6342c502017-01-25 11:58:58 +01004967 return;
Wincy Van705699a2015-02-03 23:58:17 +08004968
4969 max_irr = find_last_bit(
4970 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4971
4972 if (max_irr == 256)
David Hildenbrand6342c502017-01-25 11:58:58 +01004973 return;
Wincy Van705699a2015-02-03 23:58:17 +08004974
4975 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08004976 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4977 kunmap(vmx->nested.virtual_apic_page);
4978
4979 status = vmcs_read16(GUEST_INTR_STATUS);
4980 if ((u8)max_irr > ((u8)status & 0xff)) {
4981 status &= ~0xff;
4982 status |= (u8)max_irr;
4983 vmcs_write16(GUEST_INTR_STATUS, status);
4984 }
4985 }
Wincy Van705699a2015-02-03 23:58:17 +08004986}
4987
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004988static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4989{
4990#ifdef CONFIG_SMP
4991 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004992 struct vcpu_vmx *vmx = to_vmx(vcpu);
4993
4994 /*
4995 * Currently, we don't support urgent interrupt,
4996 * all interrupts are recognized as non-urgent
4997 * interrupt, so we cannot post interrupts when
4998 * 'SN' is set.
4999 *
5000 * If the vcpu is in guest mode, it means it is
5001 * running instead of being scheduled out and
5002 * waiting in the run queue, and that's the only
5003 * case when 'SN' is set currently, warning if
5004 * 'SN' is set.
5005 */
5006 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
5007
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005008 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
5009 POSTED_INTR_VECTOR);
5010 return true;
5011 }
5012#endif
5013 return false;
5014}
5015
Wincy Van705699a2015-02-03 23:58:17 +08005016static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5017 int vector)
5018{
5019 struct vcpu_vmx *vmx = to_vmx(vcpu);
5020
5021 if (is_guest_mode(vcpu) &&
5022 vector == vmx->nested.posted_intr_nv) {
5023 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005024 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005025 /*
5026 * If a posted intr is not recognized by hardware,
5027 * we will accomplish it in the next vmentry.
5028 */
5029 vmx->nested.pi_pending = true;
5030 kvm_make_request(KVM_REQ_EVENT, vcpu);
5031 return 0;
5032 }
5033 return -1;
5034}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005035/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005036 * Send interrupt to vcpu via posted interrupt way.
5037 * 1. If target vcpu is running(non-root mode), send posted interrupt
5038 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5039 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5040 * interrupt from PIR in next vmentry.
5041 */
5042static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5043{
5044 struct vcpu_vmx *vmx = to_vmx(vcpu);
5045 int r;
5046
Wincy Van705699a2015-02-03 23:58:17 +08005047 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5048 if (!r)
5049 return;
5050
Yang Zhanga20ed542013-04-11 19:25:15 +08005051 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5052 return;
5053
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005054 /* If a previous notification has sent the IPI, nothing to do. */
5055 if (pi_test_and_set_on(&vmx->pi_desc))
5056 return;
5057
5058 if (!kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08005059 kvm_vcpu_kick(vcpu);
5060}
5061
Avi Kivity6aa8b732006-12-10 02:21:36 -08005062/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005063 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5064 * will not change in the lifetime of the guest.
5065 * Note that host-state that does change is set elsewhere. E.g., host-state
5066 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5067 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005068static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005069{
5070 u32 low32, high32;
5071 unsigned long tmpl;
5072 struct desc_ptr dt;
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005073 unsigned long cr0, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005074
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005075 cr0 = read_cr0();
5076 WARN_ON(cr0 & X86_CR0_TS);
5077 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005078 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
5079
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005080 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005081 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005082 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5083 vmx->host_state.vmcs_host_cr4 = cr4;
5084
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005085 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005086#ifdef CONFIG_X86_64
5087 /*
5088 * Load null selectors, so we can avoid reloading them in
5089 * __vmx_load_host_state(), in case userspace uses the null selectors
5090 * too (the expected case).
5091 */
5092 vmcs_write16(HOST_DS_SELECTOR, 0);
5093 vmcs_write16(HOST_ES_SELECTOR, 0);
5094#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005095 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5096 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005097#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005098 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5099 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5100
5101 native_store_idt(&dt);
5102 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005103 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005104
Avi Kivity83287ea422012-09-16 15:10:57 +03005105 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005106
5107 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5108 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5109 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5110 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5111
5112 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5113 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5114 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5115 }
5116}
5117
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005118static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5119{
5120 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5121 if (enable_ept)
5122 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005123 if (is_guest_mode(&vmx->vcpu))
5124 vmx->vcpu.arch.cr4_guest_owned_bits &=
5125 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005126 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5127}
5128
Yang Zhang01e439b2013-04-11 19:25:12 +08005129static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5130{
5131 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5132
Andrey Smetanind62caab2015-11-10 15:36:33 +03005133 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005134 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005135 /* Enable the preemption timer dynamically */
5136 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005137 return pin_based_exec_ctrl;
5138}
5139
Andrey Smetanind62caab2015-11-10 15:36:33 +03005140static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5141{
5142 struct vcpu_vmx *vmx = to_vmx(vcpu);
5143
5144 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005145 if (cpu_has_secondary_exec_ctrls()) {
5146 if (kvm_vcpu_apicv_active(vcpu))
5147 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5148 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5149 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5150 else
5151 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5152 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5153 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5154 }
5155
5156 if (cpu_has_vmx_msr_bitmap())
5157 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005158}
5159
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005160static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5161{
5162 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005163
5164 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5165 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5166
Paolo Bonzini35754c92015-07-29 12:05:37 +02005167 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005168 exec_control &= ~CPU_BASED_TPR_SHADOW;
5169#ifdef CONFIG_X86_64
5170 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5171 CPU_BASED_CR8_LOAD_EXITING;
5172#endif
5173 }
5174 if (!enable_ept)
5175 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5176 CPU_BASED_CR3_LOAD_EXITING |
5177 CPU_BASED_INVLPG_EXITING;
5178 return exec_control;
5179}
5180
5181static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
5182{
5183 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005184 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005185 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5186 if (vmx->vpid == 0)
5187 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5188 if (!enable_ept) {
5189 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5190 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005191 /* Enable INVPCID for non-ept guests may cause performance regression. */
5192 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005193 }
5194 if (!enable_unrestricted_guest)
5195 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5196 if (!ple_gap)
5197 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03005198 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005199 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5200 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005201 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005202 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5203 (handle_vmptrld).
5204 We can NOT enable shadow_vmcs here because we don't have yet
5205 a current VMCS12
5206 */
5207 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005208
5209 if (!enable_pml)
5210 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005211
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005212 return exec_control;
5213}
5214
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005215static void ept_set_mmio_spte_mask(void)
5216{
5217 /*
5218 * EPT Misconfigurations can be generated if the value of bits 2:0
5219 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005220 */
Junaid Shahid312b6162016-12-21 20:29:29 -08005221 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005222}
5223
Wanpeng Lif53cd632014-12-02 19:14:58 +08005224#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005225/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005226 * Sets up the vmcs for emulated real mode.
5227 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005228static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005229{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005230#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005231 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005232#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005233 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005234
Avi Kivity6aa8b732006-12-10 02:21:36 -08005235 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005236 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5237 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005238
Abel Gordon4607c2d2013-04-18 14:35:55 +03005239 if (enable_shadow_vmcs) {
5240 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5241 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5242 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005243 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005244 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005245
Avi Kivity6aa8b732006-12-10 02:21:36 -08005246 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5247
Avi Kivity6aa8b732006-12-10 02:21:36 -08005248 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005249 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005250 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005251
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005252 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005253
Dan Williamsdfa169b2016-06-02 11:17:24 -07005254 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005255 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5256 vmx_secondary_exec_control(vmx));
Dan Williamsdfa169b2016-06-02 11:17:24 -07005257 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005258
Andrey Smetanind62caab2015-11-10 15:36:33 +03005259 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005260 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5261 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5262 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5263 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5264
5265 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005266
Li RongQing0bcf2612015-12-03 13:29:34 +08005267 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005268 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005269 }
5270
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005271 if (ple_gap) {
5272 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005273 vmx->ple_window = ple_window;
5274 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005275 }
5276
Xiao Guangrongc3707952011-07-12 03:28:04 +08005277 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5278 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005279 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5280
Avi Kivity9581d442010-10-19 16:46:55 +02005281 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5282 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005283 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005284#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005285 rdmsrl(MSR_FS_BASE, a);
5286 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5287 rdmsrl(MSR_GS_BASE, a);
5288 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5289#else
5290 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5291 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5292#endif
5293
Eddie Dong2cc51562007-05-21 07:28:09 +03005294 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5295 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005296 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005297 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005298 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005299
Radim Krčmář74545702015-04-27 15:11:25 +02005300 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5301 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005302
Paolo Bonzini03916db2014-07-24 14:21:57 +02005303 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005304 u32 index = vmx_msr_index[i];
5305 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005306 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005307
5308 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5309 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005310 if (wrmsr_safe(index, data_low, data_high) < 0)
5311 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005312 vmx->guest_msrs[j].index = i;
5313 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005314 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005315 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005316 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005317
Gleb Natapov2961e8762013-11-25 15:37:13 +02005318
5319 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005320
5321 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005322 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005323
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005324 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005325 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005326
Wanpeng Lif53cd632014-12-02 19:14:58 +08005327 if (vmx_xsaves_supported())
5328 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5329
Peter Feiner4e595162016-07-07 14:49:58 -07005330 if (enable_pml) {
5331 ASSERT(vmx->pml_pg);
5332 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5333 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5334 }
5335
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005336 return 0;
5337}
5338
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005339static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005340{
5341 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005342 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005343 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005344
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005345 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005346
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005347 vmx->soft_vnmi_blocked = 0;
5348
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005349 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005350 kvm_set_cr8(vcpu, 0);
5351
5352 if (!init_event) {
5353 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5354 MSR_IA32_APICBASE_ENABLE;
5355 if (kvm_vcpu_is_reset_bsp(vcpu))
5356 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5357 apic_base_msr.host_initiated = true;
5358 kvm_set_apic_base(vcpu, &apic_base_msr);
5359 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005360
Avi Kivity2fb92db2011-04-27 19:42:18 +03005361 vmx_segment_cache_clear(vmx);
5362
Avi Kivity5706be02008-08-20 15:07:31 +03005363 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005364 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005365 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005366
5367 seg_setup(VCPU_SREG_DS);
5368 seg_setup(VCPU_SREG_ES);
5369 seg_setup(VCPU_SREG_FS);
5370 seg_setup(VCPU_SREG_GS);
5371 seg_setup(VCPU_SREG_SS);
5372
5373 vmcs_write16(GUEST_TR_SELECTOR, 0);
5374 vmcs_writel(GUEST_TR_BASE, 0);
5375 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5376 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5377
5378 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5379 vmcs_writel(GUEST_LDTR_BASE, 0);
5380 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5381 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5382
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005383 if (!init_event) {
5384 vmcs_write32(GUEST_SYSENTER_CS, 0);
5385 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5386 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5387 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5388 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005389
5390 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005391 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005392
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005393 vmcs_writel(GUEST_GDTR_BASE, 0);
5394 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5395
5396 vmcs_writel(GUEST_IDTR_BASE, 0);
5397 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5398
Anthony Liguori443381a2010-12-06 10:53:38 -06005399 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005400 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005401 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005402
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005403 setup_msrs(vmx);
5404
Avi Kivity6aa8b732006-12-10 02:21:36 -08005405 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5406
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005407 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005408 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005409 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005410 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005411 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005412 vmcs_write32(TPR_THRESHOLD, 0);
5413 }
5414
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005415 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005416
Andrey Smetanind62caab2015-11-10 15:36:33 +03005417 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005418 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5419
Sheng Yang2384d2b2008-01-17 15:14:33 +08005420 if (vmx->vpid != 0)
5421 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5422
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005423 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005424 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005425 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005426 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005427 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005428 vmx_fpu_activate(vcpu);
5429 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005430
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005431 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005432}
5433
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005434/*
5435 * In nested virtualization, check if L1 asked to exit on external interrupts.
5436 * For most existing hypervisors, this will always return true.
5437 */
5438static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5439{
5440 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5441 PIN_BASED_EXT_INTR_MASK;
5442}
5443
Bandan Das77b0f5d2014-04-19 18:17:45 -04005444/*
5445 * In nested virtualization, check if L1 has set
5446 * VM_EXIT_ACK_INTR_ON_EXIT
5447 */
5448static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5449{
5450 return get_vmcs12(vcpu)->vm_exit_controls &
5451 VM_EXIT_ACK_INTR_ON_EXIT;
5452}
5453
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005454static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5455{
5456 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5457 PIN_BASED_NMI_EXITING;
5458}
5459
Jan Kiszkac9a79532014-03-07 20:03:15 +01005460static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005461{
5462 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005463
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005464 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5465 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5466 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5467}
5468
Jan Kiszkac9a79532014-03-07 20:03:15 +01005469static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005470{
5471 u32 cpu_based_vm_exec_control;
5472
Jan Kiszkac9a79532014-03-07 20:03:15 +01005473 if (!cpu_has_virtual_nmis() ||
5474 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5475 enable_irq_window(vcpu);
5476 return;
5477 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005478
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005479 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5480 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5481 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5482}
5483
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005484static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005485{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005486 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005487 uint32_t intr;
5488 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005489
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005490 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005491
Avi Kivityfa89a812008-09-01 15:57:51 +03005492 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005493 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005494 int inc_eip = 0;
5495 if (vcpu->arch.interrupt.soft)
5496 inc_eip = vcpu->arch.event_exit_inst_len;
5497 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005498 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005499 return;
5500 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005501 intr = irq | INTR_INFO_VALID_MASK;
5502 if (vcpu->arch.interrupt.soft) {
5503 intr |= INTR_TYPE_SOFT_INTR;
5504 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5505 vmx->vcpu.arch.event_exit_inst_len);
5506 } else
5507 intr |= INTR_TYPE_EXT_INTR;
5508 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005509}
5510
Sheng Yangf08864b2008-05-15 18:23:25 +08005511static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5512{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005513 struct vcpu_vmx *vmx = to_vmx(vcpu);
5514
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005515 if (!is_guest_mode(vcpu)) {
5516 if (!cpu_has_virtual_nmis()) {
5517 /*
5518 * Tracking the NMI-blocked state in software is built upon
5519 * finding the next open IRQ window. This, in turn, depends on
5520 * well-behaving guests: They have to keep IRQs disabled at
5521 * least as long as the NMI handler runs. Otherwise we may
5522 * cause NMI nesting, maybe breaking the guest. But as this is
5523 * highly unlikely, we can live with the residual risk.
5524 */
5525 vmx->soft_vnmi_blocked = 1;
5526 vmx->vnmi_blocked_time = 0;
5527 }
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005528
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005529 ++vcpu->stat.nmi_injections;
5530 vmx->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005531 }
5532
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005533 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005534 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005535 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005536 return;
5537 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005538
Sheng Yangf08864b2008-05-15 18:23:25 +08005539 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5540 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005541}
5542
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005543static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5544{
5545 if (!cpu_has_virtual_nmis())
5546 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005547 if (to_vmx(vcpu)->nmi_known_unmasked)
5548 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005549 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005550}
5551
5552static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5553{
5554 struct vcpu_vmx *vmx = to_vmx(vcpu);
5555
5556 if (!cpu_has_virtual_nmis()) {
5557 if (vmx->soft_vnmi_blocked != masked) {
5558 vmx->soft_vnmi_blocked = masked;
5559 vmx->vnmi_blocked_time = 0;
5560 }
5561 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005562 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005563 if (masked)
5564 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5565 GUEST_INTR_STATE_NMI);
5566 else
5567 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5568 GUEST_INTR_STATE_NMI);
5569 }
5570}
5571
Jan Kiszka2505dc92013-04-14 12:12:47 +02005572static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5573{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005574 if (to_vmx(vcpu)->nested.nested_run_pending)
5575 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005576
Jan Kiszka2505dc92013-04-14 12:12:47 +02005577 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5578 return 0;
5579
5580 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5581 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5582 | GUEST_INTR_STATE_NMI));
5583}
5584
Gleb Natapov78646122009-03-23 12:12:11 +02005585static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5586{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005587 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5588 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005589 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5590 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005591}
5592
Izik Eiduscbc94022007-10-25 00:29:55 +02005593static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5594{
5595 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005596
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005597 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5598 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005599 if (ret)
5600 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005601 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005602 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005603}
5604
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005605static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005606{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005607 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005608 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005609 /*
5610 * Update instruction length as we may reinject the exception
5611 * from user space while in guest debugging mode.
5612 */
5613 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5614 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005615 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005616 return false;
5617 /* fall through */
5618 case DB_VECTOR:
5619 if (vcpu->guest_debug &
5620 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5621 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005622 /* fall through */
5623 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005624 case OF_VECTOR:
5625 case BR_VECTOR:
5626 case UD_VECTOR:
5627 case DF_VECTOR:
5628 case SS_VECTOR:
5629 case GP_VECTOR:
5630 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005631 return true;
5632 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005633 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005634 return false;
5635}
5636
5637static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5638 int vec, u32 err_code)
5639{
5640 /*
5641 * Instruction with address size override prefix opcode 0x67
5642 * Cause the #SS fault with 0 error code in VM86 mode.
5643 */
5644 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5645 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5646 if (vcpu->arch.halt_request) {
5647 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005648 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005649 }
5650 return 1;
5651 }
5652 return 0;
5653 }
5654
5655 /*
5656 * Forward all other exceptions that are valid in real mode.
5657 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5658 * the required debugging infrastructure rework.
5659 */
5660 kvm_queue_exception(vcpu, vec);
5661 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005662}
5663
Andi Kleena0861c02009-06-08 17:37:09 +08005664/*
5665 * Trigger machine check on the host. We assume all the MSRs are already set up
5666 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5667 * We pass a fake environment to the machine check handler because we want
5668 * the guest to be always treated like user space, no matter what context
5669 * it used internally.
5670 */
5671static void kvm_machine_check(void)
5672{
5673#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5674 struct pt_regs regs = {
5675 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5676 .flags = X86_EFLAGS_IF,
5677 };
5678
5679 do_machine_check(&regs, 0);
5680#endif
5681}
5682
Avi Kivity851ba692009-08-24 11:10:17 +03005683static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005684{
5685 /* already handled by vcpu_run */
5686 return 1;
5687}
5688
Avi Kivity851ba692009-08-24 11:10:17 +03005689static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005690{
Avi Kivity1155f762007-11-22 11:30:47 +02005691 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005692 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005693 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005694 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005695 u32 vect_info;
5696 enum emulation_result er;
5697
Avi Kivity1155f762007-11-22 11:30:47 +02005698 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005699 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005700
Andi Kleena0861c02009-06-08 17:37:09 +08005701 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005702 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005703
Jim Mattsonef85b672016-12-12 11:01:37 -08005704 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005705 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005706
5707 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005708 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005709 return 1;
5710 }
5711
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005712 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005713 if (is_guest_mode(vcpu)) {
5714 kvm_queue_exception(vcpu, UD_VECTOR);
5715 return 1;
5716 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005717 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005718 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005719 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005720 return 1;
5721 }
5722
Avi Kivity6aa8b732006-12-10 02:21:36 -08005723 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005724 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005725 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005726
5727 /*
5728 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5729 * MMIO, it is better to report an internal error.
5730 * See the comments in vmx_handle_exit.
5731 */
5732 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5733 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5734 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5735 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005736 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005737 vcpu->run->internal.data[0] = vect_info;
5738 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005739 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005740 return 0;
5741 }
5742
Avi Kivity6aa8b732006-12-10 02:21:36 -08005743 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005744 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005745 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005746 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005747 trace_kvm_page_fault(cr2, error_code);
5748
Gleb Natapov3298b752009-05-11 13:35:46 +03005749 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005750 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005751 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752 }
5753
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005754 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005755
5756 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5757 return handle_rmode_exception(vcpu, ex_no, error_code);
5758
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005759 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005760 case AC_VECTOR:
5761 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5762 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005763 case DB_VECTOR:
5764 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5765 if (!(vcpu->guest_debug &
5766 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005767 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005768 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005769 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5770 skip_emulated_instruction(vcpu);
5771
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005772 kvm_queue_exception(vcpu, DB_VECTOR);
5773 return 1;
5774 }
5775 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5776 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5777 /* fall through */
5778 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005779 /*
5780 * Update instruction length as we may reinject #BP from
5781 * user space while in guest debugging mode. Reading it for
5782 * #DB as well causes no harm, it is not used in that case.
5783 */
5784 vmx->vcpu.arch.event_exit_inst_len =
5785 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005786 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005787 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005788 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5789 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005790 break;
5791 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005792 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5793 kvm_run->ex.exception = ex_no;
5794 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005795 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005796 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005797 return 0;
5798}
5799
Avi Kivity851ba692009-08-24 11:10:17 +03005800static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005801{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005802 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005803 return 1;
5804}
5805
Avi Kivity851ba692009-08-24 11:10:17 +03005806static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005807{
Avi Kivity851ba692009-08-24 11:10:17 +03005808 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005809 return 0;
5810}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005811
Avi Kivity851ba692009-08-24 11:10:17 +03005812static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005813{
He, Qingbfdaab02007-09-12 14:18:28 +08005814 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005815 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005816 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005817
He, Qingbfdaab02007-09-12 14:18:28 +08005818 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005819 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005820 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005821
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005822 ++vcpu->stat.io_exits;
5823
5824 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005825 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005826
5827 port = exit_qualification >> 16;
5828 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005829
Kyle Huey6affcbe2016-11-29 12:40:40 -08005830 ret = kvm_skip_emulated_instruction(vcpu);
5831
5832 /*
5833 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5834 * KVM_EXIT_DEBUG here.
5835 */
5836 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005837}
5838
Ingo Molnar102d8322007-02-19 14:37:47 +02005839static void
5840vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5841{
5842 /*
5843 * Patch in the VMCALL instruction:
5844 */
5845 hypercall[0] = 0x0f;
5846 hypercall[1] = 0x01;
5847 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005848}
5849
Guo Chao0fa06072012-06-28 15:16:19 +08005850/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005851static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5852{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005853 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005854 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5855 unsigned long orig_val = val;
5856
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005857 /*
5858 * We get here when L2 changed cr0 in a way that did not change
5859 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005860 * but did change L0 shadowed bits. So we first calculate the
5861 * effective cr0 value that L1 would like to write into the
5862 * hardware. It consists of the L2-owned bits from the new
5863 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005864 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005865 val = (val & ~vmcs12->cr0_guest_host_mask) |
5866 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5867
David Matlack38991522016-11-29 18:14:08 -08005868 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005869 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005870
5871 if (kvm_set_cr0(vcpu, val))
5872 return 1;
5873 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005874 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005875 } else {
5876 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005877 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005878 return 1;
David Matlack38991522016-11-29 18:14:08 -08005879
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005880 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005881 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005882}
5883
5884static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5885{
5886 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005887 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5888 unsigned long orig_val = val;
5889
5890 /* analogously to handle_set_cr0 */
5891 val = (val & ~vmcs12->cr4_guest_host_mask) |
5892 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5893 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005894 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005895 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005896 return 0;
5897 } else
5898 return kvm_set_cr4(vcpu, val);
5899}
5900
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08005901/* called to set cr0 as appropriate for clts instruction exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005902static void handle_clts(struct kvm_vcpu *vcpu)
5903{
5904 if (is_guest_mode(vcpu)) {
5905 /*
5906 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5907 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5908 * just pretend it's off (also in arch.cr0 for fpu_activate).
5909 */
5910 vmcs_writel(CR0_READ_SHADOW,
5911 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5912 vcpu->arch.cr0 &= ~X86_CR0_TS;
5913 } else
5914 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5915}
5916
Avi Kivity851ba692009-08-24 11:10:17 +03005917static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005918{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005919 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005920 int cr;
5921 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005922 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005923 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005924
He, Qingbfdaab02007-09-12 14:18:28 +08005925 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005926 cr = exit_qualification & 15;
5927 reg = (exit_qualification >> 8) & 15;
5928 switch ((exit_qualification >> 4) & 3) {
5929 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005930 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005931 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005932 switch (cr) {
5933 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005934 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005935 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005936 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005937 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005938 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005939 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005940 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005941 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005942 case 8: {
5943 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005944 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005945 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005946 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005947 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005948 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005949 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005950 return ret;
5951 /*
5952 * TODO: we might be squashing a
5953 * KVM_GUESTDBG_SINGLESTEP-triggered
5954 * KVM_EXIT_DEBUG here.
5955 */
Avi Kivity851ba692009-08-24 11:10:17 +03005956 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005957 return 0;
5958 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005959 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005960 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005961 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005962 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005963 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Avi Kivity6b52d182010-01-21 15:31:47 +02005964 vmx_fpu_activate(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005965 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005966 case 1: /*mov from cr*/
5967 switch (cr) {
5968 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005969 val = kvm_read_cr3(vcpu);
5970 kvm_register_write(vcpu, reg, val);
5971 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005972 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005973 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005974 val = kvm_get_cr8(vcpu);
5975 kvm_register_write(vcpu, reg, val);
5976 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005977 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005978 }
5979 break;
5980 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005981 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005982 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005983 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005984
Kyle Huey6affcbe2016-11-29 12:40:40 -08005985 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005986 default:
5987 break;
5988 }
Avi Kivity851ba692009-08-24 11:10:17 +03005989 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005990 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005991 (int)(exit_qualification >> 4) & 3, cr);
5992 return 0;
5993}
5994
Avi Kivity851ba692009-08-24 11:10:17 +03005995static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005996{
He, Qingbfdaab02007-09-12 14:18:28 +08005997 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005998 int dr, dr7, reg;
5999
6000 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6001 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6002
6003 /* First, if DR does not exist, trigger UD */
6004 if (!kvm_require_dr(vcpu, dr))
6005 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006006
Jan Kiszkaf2483412010-01-20 18:20:20 +01006007 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006008 if (!kvm_require_cpl(vcpu, 0))
6009 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006010 dr7 = vmcs_readl(GUEST_DR7);
6011 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006012 /*
6013 * As the vm-exit takes precedence over the debug trap, we
6014 * need to emulate the latter, either for the host or the
6015 * guest debugging itself.
6016 */
6017 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006018 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006019 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006020 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006021 vcpu->run->debug.arch.exception = DB_VECTOR;
6022 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006023 return 0;
6024 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006025 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006026 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006027 kvm_queue_exception(vcpu, DB_VECTOR);
6028 return 1;
6029 }
6030 }
6031
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006032 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006033 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6034 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006035
6036 /*
6037 * No more DR vmexits; force a reload of the debug registers
6038 * and reenter on this instruction. The next vmexit will
6039 * retrieve the full state of the debug registers.
6040 */
6041 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6042 return 1;
6043 }
6044
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006045 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6046 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006047 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006048
6049 if (kvm_get_dr(vcpu, dr, &val))
6050 return 1;
6051 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006052 } else
Nadav Amit57773922014-06-18 17:19:23 +03006053 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006054 return 1;
6055
Kyle Huey6affcbe2016-11-29 12:40:40 -08006056 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006057}
6058
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006059static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6060{
6061 return vcpu->arch.dr6;
6062}
6063
6064static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6065{
6066}
6067
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006068static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6069{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006070 get_debugreg(vcpu->arch.db[0], 0);
6071 get_debugreg(vcpu->arch.db[1], 1);
6072 get_debugreg(vcpu->arch.db[2], 2);
6073 get_debugreg(vcpu->arch.db[3], 3);
6074 get_debugreg(vcpu->arch.dr6, 6);
6075 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6076
6077 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006078 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006079}
6080
Gleb Natapov020df072010-04-13 10:05:23 +03006081static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6082{
6083 vmcs_writel(GUEST_DR7, val);
6084}
6085
Avi Kivity851ba692009-08-24 11:10:17 +03006086static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006087{
Kyle Huey6a908b62016-11-29 12:40:37 -08006088 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006089}
6090
Avi Kivity851ba692009-08-24 11:10:17 +03006091static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006092{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006093 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006094 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006095
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006096 msr_info.index = ecx;
6097 msr_info.host_initiated = false;
6098 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006099 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006100 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006101 return 1;
6102 }
6103
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006104 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006105
Avi Kivity6aa8b732006-12-10 02:21:36 -08006106 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006107 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6108 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006109 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006110}
6111
Avi Kivity851ba692009-08-24 11:10:17 +03006112static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006113{
Will Auld8fe8ab42012-11-29 12:42:12 -08006114 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006115 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6116 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6117 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006118
Will Auld8fe8ab42012-11-29 12:42:12 -08006119 msr.data = data;
6120 msr.index = ecx;
6121 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006122 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006123 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006124 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006125 return 1;
6126 }
6127
Avi Kivity59200272010-01-25 19:47:02 +02006128 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006129 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006130}
6131
Avi Kivity851ba692009-08-24 11:10:17 +03006132static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006133{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006134 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006135 return 1;
6136}
6137
Avi Kivity851ba692009-08-24 11:10:17 +03006138static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006139{
Eddie Dong85f455f2007-07-06 12:20:49 +03006140 u32 cpu_based_vm_exec_control;
6141
6142 /* clear pending irq */
6143 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6144 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
6145 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006146
Avi Kivity3842d132010-07-27 12:30:24 +03006147 kvm_make_request(KVM_REQ_EVENT, vcpu);
6148
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006149 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006150 return 1;
6151}
6152
Avi Kivity851ba692009-08-24 11:10:17 +03006153static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006154{
Avi Kivityd3bef152007-06-05 15:53:05 +03006155 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006156}
6157
Avi Kivity851ba692009-08-24 11:10:17 +03006158static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006159{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006160 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006161}
6162
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006163static int handle_invd(struct kvm_vcpu *vcpu)
6164{
Andre Przywara51d8b662010-12-21 11:12:02 +01006165 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006166}
6167
Avi Kivity851ba692009-08-24 11:10:17 +03006168static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006169{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006170 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006171
6172 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006173 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006174}
6175
Avi Kivityfee84b02011-11-10 14:57:25 +02006176static int handle_rdpmc(struct kvm_vcpu *vcpu)
6177{
6178 int err;
6179
6180 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006181 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006182}
6183
Avi Kivity851ba692009-08-24 11:10:17 +03006184static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006185{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006186 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006187}
6188
Dexuan Cui2acf9232010-06-10 11:27:12 +08006189static int handle_xsetbv(struct kvm_vcpu *vcpu)
6190{
6191 u64 new_bv = kvm_read_edx_eax(vcpu);
6192 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6193
6194 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006195 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006196 return 1;
6197}
6198
Wanpeng Lif53cd632014-12-02 19:14:58 +08006199static int handle_xsaves(struct kvm_vcpu *vcpu)
6200{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006201 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006202 WARN(1, "this should never happen\n");
6203 return 1;
6204}
6205
6206static int handle_xrstors(struct kvm_vcpu *vcpu)
6207{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006208 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006209 WARN(1, "this should never happen\n");
6210 return 1;
6211}
6212
Avi Kivity851ba692009-08-24 11:10:17 +03006213static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006214{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006215 if (likely(fasteoi)) {
6216 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6217 int access_type, offset;
6218
6219 access_type = exit_qualification & APIC_ACCESS_TYPE;
6220 offset = exit_qualification & APIC_ACCESS_OFFSET;
6221 /*
6222 * Sane guest uses MOV to write EOI, with written value
6223 * not cared. So make a short-circuit here by avoiding
6224 * heavy instruction emulation.
6225 */
6226 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6227 (offset == APIC_EOI)) {
6228 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006229 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006230 }
6231 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006232 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006233}
6234
Yang Zhangc7c9c562013-01-25 10:18:51 +08006235static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6236{
6237 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6238 int vector = exit_qualification & 0xff;
6239
6240 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6241 kvm_apic_set_eoi_accelerated(vcpu, vector);
6242 return 1;
6243}
6244
Yang Zhang83d4c282013-01-25 10:18:49 +08006245static int handle_apic_write(struct kvm_vcpu *vcpu)
6246{
6247 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6248 u32 offset = exit_qualification & 0xfff;
6249
6250 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6251 kvm_apic_write_nodecode(vcpu, offset);
6252 return 1;
6253}
6254
Avi Kivity851ba692009-08-24 11:10:17 +03006255static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006256{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006257 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006258 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006259 bool has_error_code = false;
6260 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006261 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006262 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006263
6264 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006265 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006266 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006267
6268 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6269
6270 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006271 if (reason == TASK_SWITCH_GATE && idt_v) {
6272 switch (type) {
6273 case INTR_TYPE_NMI_INTR:
6274 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006275 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006276 break;
6277 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006278 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006279 kvm_clear_interrupt_queue(vcpu);
6280 break;
6281 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006282 if (vmx->idt_vectoring_info &
6283 VECTORING_INFO_DELIVER_CODE_MASK) {
6284 has_error_code = true;
6285 error_code =
6286 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6287 }
6288 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006289 case INTR_TYPE_SOFT_EXCEPTION:
6290 kvm_clear_exception_queue(vcpu);
6291 break;
6292 default:
6293 break;
6294 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006295 }
Izik Eidus37817f22008-03-24 23:14:53 +02006296 tss_selector = exit_qualification;
6297
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006298 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6299 type != INTR_TYPE_EXT_INTR &&
6300 type != INTR_TYPE_NMI_INTR))
6301 skip_emulated_instruction(vcpu);
6302
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006303 if (kvm_task_switch(vcpu, tss_selector,
6304 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6305 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006306 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6307 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6308 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006309 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006310 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006311
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006312 /*
6313 * TODO: What about debug traps on tss switch?
6314 * Are we supposed to inject them and update dr6?
6315 */
6316
6317 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006318}
6319
Avi Kivity851ba692009-08-24 11:10:17 +03006320static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006321{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006322 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006323 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006324 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006325 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08006326
Sheng Yangf9c617f2009-03-25 10:08:52 +08006327 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006328
Sheng Yang14394422008-04-28 12:24:45 +08006329 gla_validity = (exit_qualification >> 7) & 0x3;
Liang Li72e0ae52016-08-18 15:49:19 +08006330 if (gla_validity == 0x2) {
Sheng Yang14394422008-04-28 12:24:45 +08006331 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
6332 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
6333 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08006334 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08006335 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
6336 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03006337 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6338 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03006339 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08006340 }
6341
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006342 /*
6343 * EPT violation happened while executing iret from NMI,
6344 * "blocked by NMI" bit has to be set before next VM entry.
6345 * There are errata that may cause this bit to not be set:
6346 * AAK134, BY25.
6347 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006348 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
6349 cpu_has_virtual_nmis() &&
6350 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006351 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6352
Sheng Yang14394422008-04-28 12:24:45 +08006353 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006354 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006355
Junaid Shahid27959a42016-12-06 16:46:10 -08006356 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006357 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006358 ? PFERR_USER_MASK : 0;
6359 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006360 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006361 ? PFERR_WRITE_MASK : 0;
6362 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006363 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006364 ? PFERR_FETCH_MASK : 0;
6365 /* ept page table entry is present? */
6366 error_code |= (exit_qualification &
6367 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6368 EPT_VIOLATION_EXECUTABLE))
6369 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006370
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01006371 vcpu->arch.gpa_available = true;
Yang Zhang25d92082013-08-06 12:00:32 +03006372 vcpu->arch.exit_qualification = exit_qualification;
6373
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006374 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006375}
6376
Avi Kivity851ba692009-08-24 11:10:17 +03006377static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006378{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006379 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006380 gpa_t gpa;
6381
6382 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006383 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006384 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006385 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006386 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006387
Paolo Bonzini450869d2015-11-04 13:41:21 +01006388 ret = handle_mmio_page_fault(vcpu, gpa, true);
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01006389 vcpu->arch.gpa_available = true;
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006390 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006391 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
6392 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08006393
6394 if (unlikely(ret == RET_MMIO_PF_INVALID))
6395 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
6396
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006397 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006398 return 1;
6399
6400 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006401 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006402
Avi Kivity851ba692009-08-24 11:10:17 +03006403 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6404 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006405
6406 return 0;
6407}
6408
Avi Kivity851ba692009-08-24 11:10:17 +03006409static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006410{
6411 u32 cpu_based_vm_exec_control;
6412
6413 /* clear pending NMI */
6414 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6415 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6416 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6417 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006418 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006419
6420 return 1;
6421}
6422
Mohammed Gamal80ced182009-09-01 12:48:18 +02006423static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006424{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006425 struct vcpu_vmx *vmx = to_vmx(vcpu);
6426 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006427 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006428 u32 cpu_exec_ctrl;
6429 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006430 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006431
6432 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6433 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006434
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006435 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006436 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006437 return handle_interrupt_window(&vmx->vcpu);
6438
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006439 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6440 return 1;
6441
Gleb Natapov991eebf2013-04-11 12:10:51 +03006442 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006443
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006444 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006445 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006446 ret = 0;
6447 goto out;
6448 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006449
Avi Kivityde5f70e2012-06-12 20:22:28 +03006450 if (err != EMULATE_DONE) {
6451 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6452 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6453 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006454 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006455 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006456
Gleb Natapov8d76c492013-05-08 18:38:44 +03006457 if (vcpu->arch.halt_request) {
6458 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006459 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006460 goto out;
6461 }
6462
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006463 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006464 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006465 if (need_resched())
6466 schedule();
6467 }
6468
Mohammed Gamal80ced182009-09-01 12:48:18 +02006469out:
6470 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006471}
6472
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006473static int __grow_ple_window(int val)
6474{
6475 if (ple_window_grow < 1)
6476 return ple_window;
6477
6478 val = min(val, ple_window_actual_max);
6479
6480 if (ple_window_grow < ple_window)
6481 val *= ple_window_grow;
6482 else
6483 val += ple_window_grow;
6484
6485 return val;
6486}
6487
6488static int __shrink_ple_window(int val, int modifier, int minimum)
6489{
6490 if (modifier < 1)
6491 return ple_window;
6492
6493 if (modifier < ple_window)
6494 val /= modifier;
6495 else
6496 val -= modifier;
6497
6498 return max(val, minimum);
6499}
6500
6501static void grow_ple_window(struct kvm_vcpu *vcpu)
6502{
6503 struct vcpu_vmx *vmx = to_vmx(vcpu);
6504 int old = vmx->ple_window;
6505
6506 vmx->ple_window = __grow_ple_window(old);
6507
6508 if (vmx->ple_window != old)
6509 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006510
6511 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006512}
6513
6514static void shrink_ple_window(struct kvm_vcpu *vcpu)
6515{
6516 struct vcpu_vmx *vmx = to_vmx(vcpu);
6517 int old = vmx->ple_window;
6518
6519 vmx->ple_window = __shrink_ple_window(old,
6520 ple_window_shrink, ple_window);
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_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006526}
6527
6528/*
6529 * ple_window_actual_max is computed to be one grow_ple_window() below
6530 * ple_window_max. (See __grow_ple_window for the reason.)
6531 * This prevents overflows, because ple_window_max is int.
6532 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6533 * this process.
6534 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6535 */
6536static void update_ple_window_actual_max(void)
6537{
6538 ple_window_actual_max =
6539 __shrink_ple_window(max(ple_window_max, ple_window),
6540 ple_window_grow, INT_MIN);
6541}
6542
Feng Wubf9f6ac2015-09-18 22:29:55 +08006543/*
6544 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6545 */
6546static void wakeup_handler(void)
6547{
6548 struct kvm_vcpu *vcpu;
6549 int cpu = smp_processor_id();
6550
6551 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6552 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6553 blocked_vcpu_list) {
6554 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6555
6556 if (pi_test_on(pi_desc) == 1)
6557 kvm_vcpu_kick(vcpu);
6558 }
6559 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6560}
6561
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006562void vmx_enable_tdp(void)
6563{
6564 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6565 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6566 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6567 0ull, VMX_EPT_EXECUTABLE_MASK,
6568 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Junaid Shahid312b6162016-12-21 20:29:29 -08006569 enable_ept_ad_bits ? 0ull : VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006570
6571 ept_set_mmio_spte_mask();
6572 kvm_enable_tdp();
6573}
6574
Tiejun Chenf2c76482014-10-28 10:14:47 +08006575static __init int hardware_setup(void)
6576{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006577 int r = -ENOMEM, i, msr;
6578
6579 rdmsrl_safe(MSR_EFER, &host_efer);
6580
6581 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6582 kvm_define_shared_msr(i, vmx_msr_index[i]);
6583
Radim Krčmář23611332016-09-29 22:41:33 +02006584 for (i = 0; i < VMX_BITMAP_NR; i++) {
6585 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6586 if (!vmx_bitmap[i])
6587 goto out;
6588 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006589
6590 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006591 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6592 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6593
6594 /*
6595 * Allow direct access to the PC debug port (it is often used for I/O
6596 * delays, but the vmexits simply slow things down).
6597 */
6598 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6599 clear_bit(0x80, vmx_io_bitmap_a);
6600
6601 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6602
6603 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6604 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6605
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006606 if (setup_vmcs_config(&vmcs_config) < 0) {
6607 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006608 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006609 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006610
6611 if (boot_cpu_has(X86_FEATURE_NX))
6612 kvm_enable_efer_bits(EFER_NX);
6613
6614 if (!cpu_has_vmx_vpid())
6615 enable_vpid = 0;
6616 if (!cpu_has_vmx_shadow_vmcs())
6617 enable_shadow_vmcs = 0;
6618 if (enable_shadow_vmcs)
6619 init_vmcs_shadow_fields();
6620
6621 if (!cpu_has_vmx_ept() ||
6622 !cpu_has_vmx_ept_4levels()) {
6623 enable_ept = 0;
6624 enable_unrestricted_guest = 0;
6625 enable_ept_ad_bits = 0;
6626 }
6627
6628 if (!cpu_has_vmx_ept_ad_bits())
6629 enable_ept_ad_bits = 0;
6630
6631 if (!cpu_has_vmx_unrestricted_guest())
6632 enable_unrestricted_guest = 0;
6633
Paolo Bonziniad15a292015-01-30 16:18:49 +01006634 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006635 flexpriority_enabled = 0;
6636
Paolo Bonziniad15a292015-01-30 16:18:49 +01006637 /*
6638 * set_apic_access_page_addr() is used to reload apic access
6639 * page upon invalidation. No need to do anything if not
6640 * using the APIC_ACCESS_ADDR VMCS field.
6641 */
6642 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006643 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006644
6645 if (!cpu_has_vmx_tpr_shadow())
6646 kvm_x86_ops->update_cr8_intercept = NULL;
6647
6648 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6649 kvm_disable_largepages();
6650
6651 if (!cpu_has_vmx_ple())
6652 ple_gap = 0;
6653
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006654 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006655 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006656 kvm_x86_ops->sync_pir_to_irr = NULL;
6657 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006658
Haozhong Zhang64903d62015-10-20 15:39:09 +08006659 if (cpu_has_vmx_tsc_scaling()) {
6660 kvm_has_tsc_control = true;
6661 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6662 kvm_tsc_scaling_ratio_frac_bits = 48;
6663 }
6664
Tiejun Chenbaa03522014-12-23 16:21:11 +08006665 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6666 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6667 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6668 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6669 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6670 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6671 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6672
Wanpeng Lic63e4562016-09-23 19:17:16 +08006673 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6674 vmx_msr_bitmap_legacy, PAGE_SIZE);
6675 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6676 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006677 memcpy(vmx_msr_bitmap_legacy_x2apic,
6678 vmx_msr_bitmap_legacy, PAGE_SIZE);
6679 memcpy(vmx_msr_bitmap_longmode_x2apic,
6680 vmx_msr_bitmap_longmode, PAGE_SIZE);
6681
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006682 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6683
Radim Krčmář40d83382016-09-29 22:41:31 +02006684 for (msr = 0x800; msr <= 0x8ff; msr++) {
6685 if (msr == 0x839 /* TMCCT */)
6686 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006687 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006688 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006689
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006690 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006691 * TPR reads and writes can be virtualized even if virtual interrupt
6692 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006693 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006694 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6695 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6696
Roman Kagan3ce424e2016-05-18 17:48:20 +03006697 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006698 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006699 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006700 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006701
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006702 if (enable_ept)
6703 vmx_enable_tdp();
6704 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006705 kvm_disable_tdp();
6706
6707 update_ple_window_actual_max();
6708
Kai Huang843e4332015-01-28 10:54:28 +08006709 /*
6710 * Only enable PML when hardware supports PML feature, and both EPT
6711 * and EPT A/D bit features are enabled -- PML depends on them to work.
6712 */
6713 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6714 enable_pml = 0;
6715
6716 if (!enable_pml) {
6717 kvm_x86_ops->slot_enable_log_dirty = NULL;
6718 kvm_x86_ops->slot_disable_log_dirty = NULL;
6719 kvm_x86_ops->flush_log_dirty = NULL;
6720 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6721 }
6722
Yunhong Jiang64672c92016-06-13 14:19:59 -07006723 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6724 u64 vmx_msr;
6725
6726 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6727 cpu_preemption_timer_multi =
6728 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6729 } else {
6730 kvm_x86_ops->set_hv_timer = NULL;
6731 kvm_x86_ops->cancel_hv_timer = NULL;
6732 }
6733
Feng Wubf9f6ac2015-09-18 22:29:55 +08006734 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6735
Ashok Rajc45dcc72016-06-22 14:59:56 +08006736 kvm_mce_cap_supported |= MCG_LMCE_P;
6737
Tiejun Chenf2c76482014-10-28 10:14:47 +08006738 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006739
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006740out:
Radim Krčmář23611332016-09-29 22:41:33 +02006741 for (i = 0; i < VMX_BITMAP_NR; i++)
6742 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006743
6744 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006745}
6746
6747static __exit void hardware_unsetup(void)
6748{
Radim Krčmář23611332016-09-29 22:41:33 +02006749 int i;
6750
6751 for (i = 0; i < VMX_BITMAP_NR; i++)
6752 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006753
Tiejun Chenf2c76482014-10-28 10:14:47 +08006754 free_kvm_area();
6755}
6756
Avi Kivity6aa8b732006-12-10 02:21:36 -08006757/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006758 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6759 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6760 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006761static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006762{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006763 if (ple_gap)
6764 grow_ple_window(vcpu);
6765
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006766 kvm_vcpu_on_spin(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006767 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006768}
6769
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006770static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006771{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006772 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006773}
6774
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006775static int handle_mwait(struct kvm_vcpu *vcpu)
6776{
6777 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6778 return handle_nop(vcpu);
6779}
6780
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006781static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6782{
6783 return 1;
6784}
6785
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006786static int handle_monitor(struct kvm_vcpu *vcpu)
6787{
6788 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6789 return handle_nop(vcpu);
6790}
6791
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006792/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006793 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6794 * We could reuse a single VMCS for all the L2 guests, but we also want the
6795 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6796 * allows keeping them loaded on the processor, and in the future will allow
6797 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6798 * every entry if they never change.
6799 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6800 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6801 *
6802 * The following functions allocate and free a vmcs02 in this pool.
6803 */
6804
6805/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6806static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6807{
6808 struct vmcs02_list *item;
6809 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6810 if (item->vmptr == vmx->nested.current_vmptr) {
6811 list_move(&item->list, &vmx->nested.vmcs02_pool);
6812 return &item->vmcs02;
6813 }
6814
6815 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6816 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006817 item = list_last_entry(&vmx->nested.vmcs02_pool,
6818 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006819 item->vmptr = vmx->nested.current_vmptr;
6820 list_move(&item->list, &vmx->nested.vmcs02_pool);
6821 return &item->vmcs02;
6822 }
6823
6824 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006825 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006826 if (!item)
6827 return NULL;
6828 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006829 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006830 if (!item->vmcs02.vmcs) {
6831 kfree(item);
6832 return NULL;
6833 }
6834 loaded_vmcs_init(&item->vmcs02);
6835 item->vmptr = vmx->nested.current_vmptr;
6836 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6837 vmx->nested.vmcs02_num++;
6838 return &item->vmcs02;
6839}
6840
6841/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6842static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6843{
6844 struct vmcs02_list *item;
6845 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6846 if (item->vmptr == vmptr) {
6847 free_loaded_vmcs(&item->vmcs02);
6848 list_del(&item->list);
6849 kfree(item);
6850 vmx->nested.vmcs02_num--;
6851 return;
6852 }
6853}
6854
6855/*
6856 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006857 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6858 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006859 */
6860static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6861{
6862 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006863
6864 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006865 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006866 /*
6867 * Something will leak if the above WARN triggers. Better than
6868 * a use-after-free.
6869 */
6870 if (vmx->loaded_vmcs == &item->vmcs02)
6871 continue;
6872
6873 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006874 list_del(&item->list);
6875 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006876 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006877 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006878}
6879
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006880/*
6881 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6882 * set the success or error code of an emulated VMX instruction, as specified
6883 * by Vol 2B, VMX Instruction Reference, "Conventions".
6884 */
6885static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6886{
6887 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6888 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6889 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6890}
6891
6892static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6893{
6894 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6895 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6896 X86_EFLAGS_SF | X86_EFLAGS_OF))
6897 | X86_EFLAGS_CF);
6898}
6899
Abel Gordon145c28d2013-04-18 14:36:55 +03006900static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006901 u32 vm_instruction_error)
6902{
6903 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6904 /*
6905 * failValid writes the error number to the current VMCS, which
6906 * can't be done there isn't a current VMCS.
6907 */
6908 nested_vmx_failInvalid(vcpu);
6909 return;
6910 }
6911 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6912 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6913 X86_EFLAGS_SF | X86_EFLAGS_OF))
6914 | X86_EFLAGS_ZF);
6915 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6916 /*
6917 * We don't need to force a shadow sync because
6918 * VM_INSTRUCTION_ERROR is not shadowed
6919 */
6920}
Abel Gordon145c28d2013-04-18 14:36:55 +03006921
Wincy Vanff651cb2014-12-11 08:52:58 +03006922static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6923{
6924 /* TODO: not to reset guest simply here. */
6925 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02006926 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03006927}
6928
Jan Kiszkaf41245002014-03-07 20:03:13 +01006929static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6930{
6931 struct vcpu_vmx *vmx =
6932 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6933
6934 vmx->nested.preemption_timer_expired = true;
6935 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6936 kvm_vcpu_kick(&vmx->vcpu);
6937
6938 return HRTIMER_NORESTART;
6939}
6940
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006941/*
Bandan Das19677e32014-05-06 02:19:15 -04006942 * Decode the memory-address operand of a vmx instruction, as recorded on an
6943 * exit caused by such an instruction (run by a guest hypervisor).
6944 * On success, returns 0. When the operand is invalid, returns 1 and throws
6945 * #UD or #GP.
6946 */
6947static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6948 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006949 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006950{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006951 gva_t off;
6952 bool exn;
6953 struct kvm_segment s;
6954
Bandan Das19677e32014-05-06 02:19:15 -04006955 /*
6956 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6957 * Execution", on an exit, vmx_instruction_info holds most of the
6958 * addressing components of the operand. Only the displacement part
6959 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6960 * For how an actual address is calculated from all these components,
6961 * refer to Vol. 1, "Operand Addressing".
6962 */
6963 int scaling = vmx_instruction_info & 3;
6964 int addr_size = (vmx_instruction_info >> 7) & 7;
6965 bool is_reg = vmx_instruction_info & (1u << 10);
6966 int seg_reg = (vmx_instruction_info >> 15) & 7;
6967 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6968 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6969 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6970 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6971
6972 if (is_reg) {
6973 kvm_queue_exception(vcpu, UD_VECTOR);
6974 return 1;
6975 }
6976
6977 /* Addr = segment_base + offset */
6978 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006979 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006980 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006981 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006982 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006983 off += kvm_register_read(vcpu, index_reg)<<scaling;
6984 vmx_get_segment(vcpu, &s, seg_reg);
6985 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006986
6987 if (addr_size == 1) /* 32 bit */
6988 *ret &= 0xffffffff;
6989
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006990 /* Checks for #GP/#SS exceptions. */
6991 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02006992 if (is_long_mode(vcpu)) {
6993 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6994 * non-canonical form. This is the only check on the memory
6995 * destination for long mode!
6996 */
6997 exn = is_noncanonical_address(*ret);
6998 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006999 /* Protected mode: apply checks for segment validity in the
7000 * following order:
7001 * - segment type check (#GP(0) may be thrown)
7002 * - usability check (#GP(0)/#SS(0))
7003 * - limit check (#GP(0)/#SS(0))
7004 */
7005 if (wr)
7006 /* #GP(0) if the destination operand is located in a
7007 * read-only data segment or any code segment.
7008 */
7009 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7010 else
7011 /* #GP(0) if the source operand is located in an
7012 * execute-only code segment
7013 */
7014 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007015 if (exn) {
7016 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7017 return 1;
7018 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007019 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7020 */
7021 exn = (s.unusable != 0);
7022 /* Protected mode: #GP(0)/#SS(0) if the memory
7023 * operand is outside the segment limit.
7024 */
7025 exn = exn || (off + sizeof(u64) > s.limit);
7026 }
7027 if (exn) {
7028 kvm_queue_exception_e(vcpu,
7029 seg_reg == VCPU_SREG_SS ?
7030 SS_VECTOR : GP_VECTOR,
7031 0);
7032 return 1;
7033 }
7034
Bandan Das19677e32014-05-06 02:19:15 -04007035 return 0;
7036}
7037
7038/*
Bandan Das3573e222014-05-06 02:19:16 -04007039 * This function performs the various checks including
7040 * - if it's 4KB aligned
7041 * - No bits beyond the physical address width are set
7042 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04007043 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04007044 */
Bandan Das4291b582014-05-06 02:19:18 -04007045static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
7046 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007047{
7048 gva_t gva;
7049 gpa_t vmptr;
7050 struct x86_exception e;
7051 struct page *page;
7052 struct vcpu_vmx *vmx = to_vmx(vcpu);
7053 int maxphyaddr = cpuid_maxphyaddr(vcpu);
7054
7055 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007056 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007057 return 1;
7058
7059 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
7060 sizeof(vmptr), &e)) {
7061 kvm_inject_page_fault(vcpu, &e);
7062 return 1;
7063 }
7064
7065 switch (exit_reason) {
7066 case EXIT_REASON_VMON:
7067 /*
7068 * SDM 3: 24.11.5
7069 * The first 4 bytes of VMXON region contain the supported
7070 * VMCS revision identifier
7071 *
7072 * Note - IA32_VMX_BASIC[48] will never be 1
7073 * for the nested case;
7074 * which replaces physical address width with 32
7075 *
7076 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02007077 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04007078 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007079 return kvm_skip_emulated_instruction(vcpu);
Bandan Das3573e222014-05-06 02:19:16 -04007080 }
7081
7082 page = nested_get_page(vcpu, vmptr);
7083 if (page == NULL ||
7084 *(u32 *)kmap(page) != VMCS12_REVISION) {
7085 nested_vmx_failInvalid(vcpu);
7086 kunmap(page);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007087 return kvm_skip_emulated_instruction(vcpu);
Bandan Das3573e222014-05-06 02:19:16 -04007088 }
7089 kunmap(page);
7090 vmx->nested.vmxon_ptr = vmptr;
7091 break;
Bandan Das4291b582014-05-06 02:19:18 -04007092 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02007093 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04007094 nested_vmx_failValid(vcpu,
7095 VMXERR_VMCLEAR_INVALID_ADDRESS);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007096 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007097 }
Bandan Das3573e222014-05-06 02:19:16 -04007098
Bandan Das4291b582014-05-06 02:19:18 -04007099 if (vmptr == vmx->nested.vmxon_ptr) {
7100 nested_vmx_failValid(vcpu,
7101 VMXERR_VMCLEAR_VMXON_POINTER);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007102 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007103 }
7104 break;
7105 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02007106 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04007107 nested_vmx_failValid(vcpu,
7108 VMXERR_VMPTRLD_INVALID_ADDRESS);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007109 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007110 }
7111
7112 if (vmptr == vmx->nested.vmxon_ptr) {
7113 nested_vmx_failValid(vcpu,
GanShun37b9a672016-11-30 10:28:19 -08007114 VMXERR_VMPTRLD_VMXON_POINTER);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007115 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007116 }
7117 break;
Bandan Das3573e222014-05-06 02:19:16 -04007118 default:
7119 return 1; /* shouldn't happen */
7120 }
7121
Bandan Das4291b582014-05-06 02:19:18 -04007122 if (vmpointer)
7123 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04007124 return 0;
7125}
7126
Jim Mattsone29acc52016-11-30 12:03:43 -08007127static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7128{
7129 struct vcpu_vmx *vmx = to_vmx(vcpu);
7130 struct vmcs *shadow_vmcs;
7131
7132 if (cpu_has_vmx_msr_bitmap()) {
7133 vmx->nested.msr_bitmap =
7134 (unsigned long *)__get_free_page(GFP_KERNEL);
7135 if (!vmx->nested.msr_bitmap)
7136 goto out_msr_bitmap;
7137 }
7138
7139 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7140 if (!vmx->nested.cached_vmcs12)
7141 goto out_cached_vmcs12;
7142
7143 if (enable_shadow_vmcs) {
7144 shadow_vmcs = alloc_vmcs();
7145 if (!shadow_vmcs)
7146 goto out_shadow_vmcs;
7147 /* mark vmcs as shadow */
7148 shadow_vmcs->revision_id |= (1u << 31);
7149 /* init shadow vmcs */
7150 vmcs_clear(shadow_vmcs);
7151 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7152 }
7153
7154 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7155 vmx->nested.vmcs02_num = 0;
7156
7157 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7158 HRTIMER_MODE_REL_PINNED);
7159 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7160
7161 vmx->nested.vmxon = true;
7162 return 0;
7163
7164out_shadow_vmcs:
7165 kfree(vmx->nested.cached_vmcs12);
7166
7167out_cached_vmcs12:
7168 free_page((unsigned long)vmx->nested.msr_bitmap);
7169
7170out_msr_bitmap:
7171 return -ENOMEM;
7172}
7173
Bandan Das3573e222014-05-06 02:19:16 -04007174/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007175 * Emulate the VMXON instruction.
7176 * Currently, we just remember that VMX is active, and do not save or even
7177 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7178 * do not currently need to store anything in that guest-allocated memory
7179 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7180 * argument is different from the VMXON pointer (which the spec says they do).
7181 */
7182static int handle_vmon(struct kvm_vcpu *vcpu)
7183{
Jim Mattsone29acc52016-11-30 12:03:43 -08007184 int ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007185 struct kvm_segment cs;
7186 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007187 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7188 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007189
7190 /* The Intel VMX Instruction Reference lists a bunch of bits that
7191 * are prerequisite to running VMXON, most notably cr4.VMXE must be
7192 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
7193 * Otherwise, we should fail with #UD. We test these now:
7194 */
7195 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
7196 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
7197 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
7198 kvm_queue_exception(vcpu, UD_VECTOR);
7199 return 1;
7200 }
7201
7202 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
7203 if (is_long_mode(vcpu) && !cs.l) {
7204 kvm_queue_exception(vcpu, UD_VECTOR);
7205 return 1;
7206 }
7207
7208 if (vmx_get_cpl(vcpu)) {
7209 kvm_inject_gp(vcpu, 0);
7210 return 1;
7211 }
Bandan Das3573e222014-05-06 02:19:16 -04007212
Abel Gordon145c28d2013-04-18 14:36:55 +03007213 if (vmx->nested.vmxon) {
7214 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007215 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007216 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007217
Haozhong Zhang3b840802016-06-22 14:59:54 +08007218 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007219 != VMXON_NEEDED_FEATURES) {
7220 kvm_inject_gp(vcpu, 0);
7221 return 1;
7222 }
7223
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007224 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
7225 return 1;
Jim Mattsone29acc52016-11-30 12:03:43 -08007226
7227 ret = enter_vmx_operation(vcpu);
7228 if (ret)
7229 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007230
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007231 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007232 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007233}
7234
7235/*
7236 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7237 * for running VMX instructions (except VMXON, whose prerequisites are
7238 * slightly different). It also specifies what exception to inject otherwise.
7239 */
7240static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7241{
7242 struct kvm_segment cs;
7243 struct vcpu_vmx *vmx = to_vmx(vcpu);
7244
7245 if (!vmx->nested.vmxon) {
7246 kvm_queue_exception(vcpu, UD_VECTOR);
7247 return 0;
7248 }
7249
7250 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
7251 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
7252 (is_long_mode(vcpu) && !cs.l)) {
7253 kvm_queue_exception(vcpu, UD_VECTOR);
7254 return 0;
7255 }
7256
7257 if (vmx_get_cpl(vcpu)) {
7258 kvm_inject_gp(vcpu, 0);
7259 return 0;
7260 }
7261
7262 return 1;
7263}
7264
Abel Gordone7953d72013-04-18 14:37:55 +03007265static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7266{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007267 if (vmx->nested.current_vmptr == -1ull)
7268 return;
7269
7270 /* current_vmptr and current_vmcs12 are always set/reset together */
7271 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
7272 return;
7273
Abel Gordon012f83c2013-04-18 14:39:25 +03007274 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007275 /* copy to memory all shadowed fields in case
7276 they were modified */
7277 copy_shadow_to_vmcs12(vmx);
7278 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007279 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
7280 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007281 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03007282 }
Wincy Van705699a2015-02-03 23:58:17 +08007283 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007284
7285 /* Flush VMCS12 to guest memory */
7286 memcpy(vmx->nested.current_vmcs12, vmx->nested.cached_vmcs12,
7287 VMCS12_SIZE);
7288
Abel Gordone7953d72013-04-18 14:37:55 +03007289 kunmap(vmx->nested.current_vmcs12_page);
7290 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007291 vmx->nested.current_vmptr = -1ull;
7292 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03007293}
7294
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007295/*
7296 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7297 * just stops using VMX.
7298 */
7299static void free_nested(struct vcpu_vmx *vmx)
7300{
7301 if (!vmx->nested.vmxon)
7302 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007303
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007304 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007305 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007306 nested_release_vmcs12(vmx);
Radim Krčmářd048c092016-08-08 20:16:22 +02007307 if (vmx->nested.msr_bitmap) {
7308 free_page((unsigned long)vmx->nested.msr_bitmap);
7309 vmx->nested.msr_bitmap = NULL;
7310 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007311 if (enable_shadow_vmcs) {
7312 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7313 free_vmcs(vmx->vmcs01.shadow_vmcs);
7314 vmx->vmcs01.shadow_vmcs = NULL;
7315 }
David Matlack4f2777b2016-07-13 17:16:37 -07007316 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007317 /* Unpin physical memory we referred to in current vmcs02 */
7318 if (vmx->nested.apic_access_page) {
7319 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007320 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007321 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007322 if (vmx->nested.virtual_apic_page) {
7323 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007324 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007325 }
Wincy Van705699a2015-02-03 23:58:17 +08007326 if (vmx->nested.pi_desc_page) {
7327 kunmap(vmx->nested.pi_desc_page);
7328 nested_release_page(vmx->nested.pi_desc_page);
7329 vmx->nested.pi_desc_page = NULL;
7330 vmx->nested.pi_desc = NULL;
7331 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007332
7333 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007334}
7335
7336/* Emulate the VMXOFF instruction */
7337static int handle_vmoff(struct kvm_vcpu *vcpu)
7338{
7339 if (!nested_vmx_check_permission(vcpu))
7340 return 1;
7341 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007342 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007343 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007344}
7345
Nadav Har'El27d6c862011-05-25 23:06:59 +03007346/* Emulate the VMCLEAR instruction */
7347static int handle_vmclear(struct kvm_vcpu *vcpu)
7348{
7349 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007350 gpa_t vmptr;
7351 struct vmcs12 *vmcs12;
7352 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007353
7354 if (!nested_vmx_check_permission(vcpu))
7355 return 1;
7356
Bandan Das4291b582014-05-06 02:19:18 -04007357 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007358 return 1;
7359
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007360 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007361 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007362
7363 page = nested_get_page(vcpu, vmptr);
7364 if (page == NULL) {
7365 /*
7366 * For accurate processor emulation, VMCLEAR beyond available
7367 * physical memory should do nothing at all. However, it is
7368 * possible that a nested vmx bug, not a guest hypervisor bug,
7369 * resulted in this case, so let's shut down before doing any
7370 * more damage:
7371 */
7372 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7373 return 1;
7374 }
7375 vmcs12 = kmap(page);
7376 vmcs12->launch_state = 0;
7377 kunmap(page);
7378 nested_release_page(page);
7379
7380 nested_free_vmcs02(vmx, vmptr);
7381
Nadav Har'El27d6c862011-05-25 23:06:59 +03007382 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007383 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007384}
7385
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007386static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7387
7388/* Emulate the VMLAUNCH instruction */
7389static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7390{
7391 return nested_vmx_run(vcpu, true);
7392}
7393
7394/* Emulate the VMRESUME instruction */
7395static int handle_vmresume(struct kvm_vcpu *vcpu)
7396{
7397
7398 return nested_vmx_run(vcpu, false);
7399}
7400
Nadav Har'El49f705c2011-05-25 23:08:30 +03007401enum vmcs_field_type {
7402 VMCS_FIELD_TYPE_U16 = 0,
7403 VMCS_FIELD_TYPE_U64 = 1,
7404 VMCS_FIELD_TYPE_U32 = 2,
7405 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
7406};
7407
7408static inline int vmcs_field_type(unsigned long field)
7409{
7410 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7411 return VMCS_FIELD_TYPE_U32;
7412 return (field >> 13) & 0x3 ;
7413}
7414
7415static inline int vmcs_field_readonly(unsigned long field)
7416{
7417 return (((field >> 10) & 0x3) == 1);
7418}
7419
7420/*
7421 * Read a vmcs12 field. Since these can have varying lengths and we return
7422 * one type, we chose the biggest type (u64) and zero-extend the return value
7423 * to that size. Note that the caller, handle_vmread, might need to use only
7424 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7425 * 64-bit fields are to be returned).
7426 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007427static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7428 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007429{
7430 short offset = vmcs_field_to_offset(field);
7431 char *p;
7432
7433 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007434 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007435
7436 p = ((char *)(get_vmcs12(vcpu))) + offset;
7437
7438 switch (vmcs_field_type(field)) {
7439 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7440 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007441 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007442 case VMCS_FIELD_TYPE_U16:
7443 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007444 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007445 case VMCS_FIELD_TYPE_U32:
7446 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007447 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007448 case VMCS_FIELD_TYPE_U64:
7449 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007450 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007451 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007452 WARN_ON(1);
7453 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007454 }
7455}
7456
Abel Gordon20b97fe2013-04-18 14:36:25 +03007457
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007458static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7459 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007460 short offset = vmcs_field_to_offset(field);
7461 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7462 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007463 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007464
7465 switch (vmcs_field_type(field)) {
7466 case VMCS_FIELD_TYPE_U16:
7467 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007468 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007469 case VMCS_FIELD_TYPE_U32:
7470 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007471 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007472 case VMCS_FIELD_TYPE_U64:
7473 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007474 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007475 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7476 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007477 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007478 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007479 WARN_ON(1);
7480 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007481 }
7482
7483}
7484
Abel Gordon16f5b902013-04-18 14:38:25 +03007485static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7486{
7487 int i;
7488 unsigned long field;
7489 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007490 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007491 const unsigned long *fields = shadow_read_write_fields;
7492 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007493
Jan Kiszka282da872014-10-08 18:05:39 +02007494 preempt_disable();
7495
Abel Gordon16f5b902013-04-18 14:38:25 +03007496 vmcs_load(shadow_vmcs);
7497
7498 for (i = 0; i < num_fields; i++) {
7499 field = fields[i];
7500 switch (vmcs_field_type(field)) {
7501 case VMCS_FIELD_TYPE_U16:
7502 field_value = vmcs_read16(field);
7503 break;
7504 case VMCS_FIELD_TYPE_U32:
7505 field_value = vmcs_read32(field);
7506 break;
7507 case VMCS_FIELD_TYPE_U64:
7508 field_value = vmcs_read64(field);
7509 break;
7510 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7511 field_value = vmcs_readl(field);
7512 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007513 default:
7514 WARN_ON(1);
7515 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007516 }
7517 vmcs12_write_any(&vmx->vcpu, field, field_value);
7518 }
7519
7520 vmcs_clear(shadow_vmcs);
7521 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007522
7523 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007524}
7525
Abel Gordonc3114422013-04-18 14:38:55 +03007526static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7527{
Mathias Krausec2bae892013-06-26 20:36:21 +02007528 const unsigned long *fields[] = {
7529 shadow_read_write_fields,
7530 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007531 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007532 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007533 max_shadow_read_write_fields,
7534 max_shadow_read_only_fields
7535 };
7536 int i, q;
7537 unsigned long field;
7538 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007539 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007540
7541 vmcs_load(shadow_vmcs);
7542
Mathias Krausec2bae892013-06-26 20:36:21 +02007543 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007544 for (i = 0; i < max_fields[q]; i++) {
7545 field = fields[q][i];
7546 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7547
7548 switch (vmcs_field_type(field)) {
7549 case VMCS_FIELD_TYPE_U16:
7550 vmcs_write16(field, (u16)field_value);
7551 break;
7552 case VMCS_FIELD_TYPE_U32:
7553 vmcs_write32(field, (u32)field_value);
7554 break;
7555 case VMCS_FIELD_TYPE_U64:
7556 vmcs_write64(field, (u64)field_value);
7557 break;
7558 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7559 vmcs_writel(field, (long)field_value);
7560 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007561 default:
7562 WARN_ON(1);
7563 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007564 }
7565 }
7566 }
7567
7568 vmcs_clear(shadow_vmcs);
7569 vmcs_load(vmx->loaded_vmcs->vmcs);
7570}
7571
Nadav Har'El49f705c2011-05-25 23:08:30 +03007572/*
7573 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7574 * used before) all generate the same failure when it is missing.
7575 */
7576static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7577{
7578 struct vcpu_vmx *vmx = to_vmx(vcpu);
7579 if (vmx->nested.current_vmptr == -1ull) {
7580 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007581 return 0;
7582 }
7583 return 1;
7584}
7585
7586static int handle_vmread(struct kvm_vcpu *vcpu)
7587{
7588 unsigned long field;
7589 u64 field_value;
7590 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7591 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7592 gva_t gva = 0;
7593
Kyle Hueyeb277562016-11-29 12:40:39 -08007594 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007595 return 1;
7596
Kyle Huey6affcbe2016-11-29 12:40:40 -08007597 if (!nested_vmx_check_vmcs12(vcpu))
7598 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007599
Nadav Har'El49f705c2011-05-25 23:08:30 +03007600 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007601 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007602 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007603 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007604 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007605 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007606 }
7607 /*
7608 * Now copy part of this value to register or memory, as requested.
7609 * Note that the number of bits actually copied is 32 or 64 depending
7610 * on the guest's mode (32 or 64 bit), not on the given field's length.
7611 */
7612 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007613 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007614 field_value);
7615 } else {
7616 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007617 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007618 return 1;
7619 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7620 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7621 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7622 }
7623
7624 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007625 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007626}
7627
7628
7629static int handle_vmwrite(struct kvm_vcpu *vcpu)
7630{
7631 unsigned long field;
7632 gva_t gva;
7633 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7634 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007635 /* The value to write might be 32 or 64 bits, depending on L1's long
7636 * mode, and eventually we need to write that into a field of several
7637 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007638 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007639 * bits into the vmcs12 field.
7640 */
7641 u64 field_value = 0;
7642 struct x86_exception e;
7643
Kyle Hueyeb277562016-11-29 12:40:39 -08007644 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007645 return 1;
7646
Kyle Huey6affcbe2016-11-29 12:40:40 -08007647 if (!nested_vmx_check_vmcs12(vcpu))
7648 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007649
Nadav Har'El49f705c2011-05-25 23:08:30 +03007650 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007651 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007652 (((vmx_instruction_info) >> 3) & 0xf));
7653 else {
7654 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007655 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007656 return 1;
7657 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007658 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007659 kvm_inject_page_fault(vcpu, &e);
7660 return 1;
7661 }
7662 }
7663
7664
Nadav Amit27e6fb52014-06-18 17:19:26 +03007665 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007666 if (vmcs_field_readonly(field)) {
7667 nested_vmx_failValid(vcpu,
7668 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007669 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007670 }
7671
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007672 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007673 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007674 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007675 }
7676
7677 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007678 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007679}
7680
Nadav Har'El63846662011-05-25 23:07:29 +03007681/* Emulate the VMPTRLD instruction */
7682static int handle_vmptrld(struct kvm_vcpu *vcpu)
7683{
7684 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007685 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007686
7687 if (!nested_vmx_check_permission(vcpu))
7688 return 1;
7689
Bandan Das4291b582014-05-06 02:19:18 -04007690 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007691 return 1;
7692
Nadav Har'El63846662011-05-25 23:07:29 +03007693 if (vmx->nested.current_vmptr != vmptr) {
7694 struct vmcs12 *new_vmcs12;
7695 struct page *page;
7696 page = nested_get_page(vcpu, vmptr);
7697 if (page == NULL) {
7698 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007699 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007700 }
7701 new_vmcs12 = kmap(page);
7702 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7703 kunmap(page);
7704 nested_release_page_clean(page);
7705 nested_vmx_failValid(vcpu,
7706 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007707 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007708 }
Nadav Har'El63846662011-05-25 23:07:29 +03007709
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007710 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007711 vmx->nested.current_vmptr = vmptr;
7712 vmx->nested.current_vmcs12 = new_vmcs12;
7713 vmx->nested.current_vmcs12_page = page;
David Matlack4f2777b2016-07-13 17:16:37 -07007714 /*
7715 * Load VMCS12 from guest memory since it is not already
7716 * cached.
7717 */
7718 memcpy(vmx->nested.cached_vmcs12,
7719 vmx->nested.current_vmcs12, VMCS12_SIZE);
7720
Abel Gordon012f83c2013-04-18 14:39:25 +03007721 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007722 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7723 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007724 vmcs_write64(VMCS_LINK_POINTER,
Jim Mattson355f4fb2016-10-28 08:29:39 -07007725 __pa(vmx->vmcs01.shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007726 vmx->nested.sync_shadow_vmcs = true;
7727 }
Nadav Har'El63846662011-05-25 23:07:29 +03007728 }
7729
7730 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007731 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007732}
7733
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007734/* Emulate the VMPTRST instruction */
7735static int handle_vmptrst(struct kvm_vcpu *vcpu)
7736{
7737 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7738 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7739 gva_t vmcs_gva;
7740 struct x86_exception e;
7741
7742 if (!nested_vmx_check_permission(vcpu))
7743 return 1;
7744
7745 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007746 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007747 return 1;
7748 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7749 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7750 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7751 sizeof(u64), &e)) {
7752 kvm_inject_page_fault(vcpu, &e);
7753 return 1;
7754 }
7755 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007756 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007757}
7758
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007759/* Emulate the INVEPT instruction */
7760static int handle_invept(struct kvm_vcpu *vcpu)
7761{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007762 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007763 u32 vmx_instruction_info, types;
7764 unsigned long type;
7765 gva_t gva;
7766 struct x86_exception e;
7767 struct {
7768 u64 eptp, gpa;
7769 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007770
Wincy Vanb9c237b2015-02-03 23:56:30 +08007771 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7772 SECONDARY_EXEC_ENABLE_EPT) ||
7773 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007774 kvm_queue_exception(vcpu, UD_VECTOR);
7775 return 1;
7776 }
7777
7778 if (!nested_vmx_check_permission(vcpu))
7779 return 1;
7780
7781 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7782 kvm_queue_exception(vcpu, UD_VECTOR);
7783 return 1;
7784 }
7785
7786 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007787 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007788
Wincy Vanb9c237b2015-02-03 23:56:30 +08007789 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007790
Jim Mattson85c856b2016-10-26 08:38:38 -07007791 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007792 nested_vmx_failValid(vcpu,
7793 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007794 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007795 }
7796
7797 /* According to the Intel VMX instruction reference, the memory
7798 * operand is read even if it isn't needed (e.g., for type==global)
7799 */
7800 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007801 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007802 return 1;
7803 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7804 sizeof(operand), &e)) {
7805 kvm_inject_page_fault(vcpu, &e);
7806 return 1;
7807 }
7808
7809 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007810 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007811 /*
7812 * TODO: track mappings and invalidate
7813 * single context requests appropriately
7814 */
7815 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007816 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007817 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007818 nested_vmx_succeed(vcpu);
7819 break;
7820 default:
7821 BUG_ON(1);
7822 break;
7823 }
7824
Kyle Huey6affcbe2016-11-29 12:40:40 -08007825 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007826}
7827
Petr Matouseka642fc32014-09-23 20:22:30 +02007828static int handle_invvpid(struct kvm_vcpu *vcpu)
7829{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007830 struct vcpu_vmx *vmx = to_vmx(vcpu);
7831 u32 vmx_instruction_info;
7832 unsigned long type, types;
7833 gva_t gva;
7834 struct x86_exception e;
7835 int vpid;
7836
7837 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7838 SECONDARY_EXEC_ENABLE_VPID) ||
7839 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7840 kvm_queue_exception(vcpu, UD_VECTOR);
7841 return 1;
7842 }
7843
7844 if (!nested_vmx_check_permission(vcpu))
7845 return 1;
7846
7847 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7848 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7849
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007850 types = (vmx->nested.nested_vmx_vpid_caps &
7851 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007852
Jim Mattson85c856b2016-10-26 08:38:38 -07007853 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007854 nested_vmx_failValid(vcpu,
7855 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007856 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007857 }
7858
7859 /* according to the intel vmx instruction reference, the memory
7860 * operand is read even if it isn't needed (e.g., for type==global)
7861 */
7862 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7863 vmx_instruction_info, false, &gva))
7864 return 1;
7865 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7866 sizeof(u32), &e)) {
7867 kvm_inject_page_fault(vcpu, &e);
7868 return 1;
7869 }
7870
7871 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007872 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Paolo Bonzinief697a72016-03-18 16:58:38 +01007873 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007874 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
7875 if (!vpid) {
7876 nested_vmx_failValid(vcpu,
7877 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007878 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007879 }
7880 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007881 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007882 break;
7883 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007884 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007885 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007886 }
7887
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007888 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7889 nested_vmx_succeed(vcpu);
7890
Kyle Huey6affcbe2016-11-29 12:40:40 -08007891 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007892}
7893
Kai Huang843e4332015-01-28 10:54:28 +08007894static int handle_pml_full(struct kvm_vcpu *vcpu)
7895{
7896 unsigned long exit_qualification;
7897
7898 trace_kvm_pml_full(vcpu->vcpu_id);
7899
7900 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7901
7902 /*
7903 * PML buffer FULL happened while executing iret from NMI,
7904 * "blocked by NMI" bit has to be set before next VM entry.
7905 */
7906 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7907 cpu_has_virtual_nmis() &&
7908 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7909 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7910 GUEST_INTR_STATE_NMI);
7911
7912 /*
7913 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7914 * here.., and there's no userspace involvement needed for PML.
7915 */
7916 return 1;
7917}
7918
Yunhong Jiang64672c92016-06-13 14:19:59 -07007919static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7920{
7921 kvm_lapic_expired_hv_timer(vcpu);
7922 return 1;
7923}
7924
Nadav Har'El0140cae2011-05-25 23:06:28 +03007925/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007926 * The exit handlers return 1 if the exit was handled fully and guest execution
7927 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7928 * to be done to userspace and return 0.
7929 */
Mathias Krause772e0312012-08-30 01:30:19 +02007930static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007931 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7932 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007933 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007934 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007935 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007936 [EXIT_REASON_CR_ACCESS] = handle_cr,
7937 [EXIT_REASON_DR_ACCESS] = handle_dr,
7938 [EXIT_REASON_CPUID] = handle_cpuid,
7939 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7940 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7941 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7942 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007943 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007944 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007945 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007946 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007947 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007948 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007949 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007950 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007951 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007952 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007953 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007954 [EXIT_REASON_VMOFF] = handle_vmoff,
7955 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007956 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7957 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007958 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007959 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007960 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007961 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007962 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007963 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007964 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7965 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007966 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007967 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007968 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007969 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007970 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007971 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007972 [EXIT_REASON_XSAVES] = handle_xsaves,
7973 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007974 [EXIT_REASON_PML_FULL] = handle_pml_full,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007975 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007976};
7977
7978static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007979 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007980
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007981static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7982 struct vmcs12 *vmcs12)
7983{
7984 unsigned long exit_qualification;
7985 gpa_t bitmap, last_bitmap;
7986 unsigned int port;
7987 int size;
7988 u8 b;
7989
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007990 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007991 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007992
7993 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7994
7995 port = exit_qualification >> 16;
7996 size = (exit_qualification & 7) + 1;
7997
7998 last_bitmap = (gpa_t)-1;
7999 b = -1;
8000
8001 while (size > 0) {
8002 if (port < 0x8000)
8003 bitmap = vmcs12->io_bitmap_a;
8004 else if (port < 0x10000)
8005 bitmap = vmcs12->io_bitmap_b;
8006 else
Joe Perches1d804d02015-03-30 16:46:09 -07008007 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008008 bitmap += (port & 0x7fff) / 8;
8009
8010 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008011 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008012 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008013 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008014 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008015
8016 port++;
8017 size--;
8018 last_bitmap = bitmap;
8019 }
8020
Joe Perches1d804d02015-03-30 16:46:09 -07008021 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008022}
8023
Nadav Har'El644d7112011-05-25 23:12:35 +03008024/*
8025 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8026 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8027 * disinterest in the current event (read or write a specific MSR) by using an
8028 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8029 */
8030static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8031 struct vmcs12 *vmcs12, u32 exit_reason)
8032{
8033 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8034 gpa_t bitmap;
8035
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008036 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008037 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008038
8039 /*
8040 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8041 * for the four combinations of read/write and low/high MSR numbers.
8042 * First we need to figure out which of the four to use:
8043 */
8044 bitmap = vmcs12->msr_bitmap;
8045 if (exit_reason == EXIT_REASON_MSR_WRITE)
8046 bitmap += 2048;
8047 if (msr_index >= 0xc0000000) {
8048 msr_index -= 0xc0000000;
8049 bitmap += 1024;
8050 }
8051
8052 /* Then read the msr_index'th bit from this bitmap: */
8053 if (msr_index < 1024*8) {
8054 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008055 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008056 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008057 return 1 & (b >> (msr_index & 7));
8058 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008059 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008060}
8061
8062/*
8063 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8064 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8065 * intercept (via guest_host_mask etc.) the current event.
8066 */
8067static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8068 struct vmcs12 *vmcs12)
8069{
8070 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8071 int cr = exit_qualification & 15;
8072 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03008073 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008074
8075 switch ((exit_qualification >> 4) & 3) {
8076 case 0: /* mov to cr */
8077 switch (cr) {
8078 case 0:
8079 if (vmcs12->cr0_guest_host_mask &
8080 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008081 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008082 break;
8083 case 3:
8084 if ((vmcs12->cr3_target_count >= 1 &&
8085 vmcs12->cr3_target_value0 == val) ||
8086 (vmcs12->cr3_target_count >= 2 &&
8087 vmcs12->cr3_target_value1 == val) ||
8088 (vmcs12->cr3_target_count >= 3 &&
8089 vmcs12->cr3_target_value2 == val) ||
8090 (vmcs12->cr3_target_count >= 4 &&
8091 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008092 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008093 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008094 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008095 break;
8096 case 4:
8097 if (vmcs12->cr4_guest_host_mask &
8098 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008099 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008100 break;
8101 case 8:
8102 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008103 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008104 break;
8105 }
8106 break;
8107 case 2: /* clts */
8108 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8109 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008110 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008111 break;
8112 case 1: /* mov from cr */
8113 switch (cr) {
8114 case 3:
8115 if (vmcs12->cpu_based_vm_exec_control &
8116 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008117 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008118 break;
8119 case 8:
8120 if (vmcs12->cpu_based_vm_exec_control &
8121 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008122 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008123 break;
8124 }
8125 break;
8126 case 3: /* lmsw */
8127 /*
8128 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8129 * cr0. Other attempted changes are ignored, with no exit.
8130 */
8131 if (vmcs12->cr0_guest_host_mask & 0xe &
8132 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008133 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008134 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8135 !(vmcs12->cr0_read_shadow & 0x1) &&
8136 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008137 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008138 break;
8139 }
Joe Perches1d804d02015-03-30 16:46:09 -07008140 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008141}
8142
8143/*
8144 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8145 * should handle it ourselves in L0 (and then continue L2). Only call this
8146 * when in is_guest_mode (L2).
8147 */
8148static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
8149{
Nadav Har'El644d7112011-05-25 23:12:35 +03008150 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8151 struct vcpu_vmx *vmx = to_vmx(vcpu);
8152 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01008153 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03008154
Jan Kiszka542060e2014-01-04 18:47:21 +01008155 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8156 vmcs_readl(EXIT_QUALIFICATION),
8157 vmx->idt_vectoring_info,
8158 intr_info,
8159 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8160 KVM_ISA_VMX);
8161
Nadav Har'El644d7112011-05-25 23:12:35 +03008162 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008163 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008164
8165 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008166 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8167 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008168 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008169 }
8170
8171 switch (exit_reason) {
8172 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008173 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008174 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008175 else if (is_page_fault(intr_info))
8176 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008177 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008178 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008179 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008180 else if (is_debug(intr_info) &&
8181 vcpu->guest_debug &
8182 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8183 return false;
8184 else if (is_breakpoint(intr_info) &&
8185 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8186 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008187 return vmcs12->exception_bitmap &
8188 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8189 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008190 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008191 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008192 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008193 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008194 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008195 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008196 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008197 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008198 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008199 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008200 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008201 case EXIT_REASON_HLT:
8202 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8203 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008204 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008205 case EXIT_REASON_INVLPG:
8206 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8207 case EXIT_REASON_RDPMC:
8208 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008209 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008210 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8211 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8212 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8213 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8214 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8215 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008216 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008217 /*
8218 * VMX instructions trap unconditionally. This allows L1 to
8219 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8220 */
Joe Perches1d804d02015-03-30 16:46:09 -07008221 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008222 case EXIT_REASON_CR_ACCESS:
8223 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8224 case EXIT_REASON_DR_ACCESS:
8225 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8226 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008227 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008228 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8229 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008230 case EXIT_REASON_MSR_READ:
8231 case EXIT_REASON_MSR_WRITE:
8232 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8233 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008234 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008235 case EXIT_REASON_MWAIT_INSTRUCTION:
8236 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008237 case EXIT_REASON_MONITOR_TRAP_FLAG:
8238 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008239 case EXIT_REASON_MONITOR_INSTRUCTION:
8240 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8241 case EXIT_REASON_PAUSE_INSTRUCTION:
8242 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8243 nested_cpu_has2(vmcs12,
8244 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8245 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008246 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008247 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008248 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008249 case EXIT_REASON_APIC_ACCESS:
8250 return nested_cpu_has2(vmcs12,
8251 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008252 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008253 case EXIT_REASON_EOI_INDUCED:
8254 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008255 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008256 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008257 /*
8258 * L0 always deals with the EPT violation. If nested EPT is
8259 * used, and the nested mmu code discovers that the address is
8260 * missing in the guest EPT table (EPT12), the EPT violation
8261 * will be injected with nested_ept_inject_page_fault()
8262 */
Joe Perches1d804d02015-03-30 16:46:09 -07008263 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008264 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008265 /*
8266 * L2 never uses directly L1's EPT, but rather L0's own EPT
8267 * table (shadow on EPT) or a merged EPT table that L0 built
8268 * (EPT on EPT). So any problems with the structure of the
8269 * table is L0's fault.
8270 */
Joe Perches1d804d02015-03-30 16:46:09 -07008271 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008272 case EXIT_REASON_WBINVD:
8273 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8274 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008275 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008276 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8277 /*
8278 * This should never happen, since it is not possible to
8279 * set XSS to a non-zero value---neither in L1 nor in L2.
8280 * If if it were, XSS would have to be checked against
8281 * the XSS exit bitmap in vmcs12.
8282 */
8283 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008284 case EXIT_REASON_PREEMPTION_TIMER:
8285 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008286 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008287 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008288 }
8289}
8290
Avi Kivity586f9602010-11-18 13:09:54 +02008291static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8292{
8293 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8294 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8295}
8296
Kai Huanga3eaa862015-11-04 13:46:05 +08008297static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008298{
Kai Huanga3eaa862015-11-04 13:46:05 +08008299 if (vmx->pml_pg) {
8300 __free_page(vmx->pml_pg);
8301 vmx->pml_pg = NULL;
8302 }
Kai Huang843e4332015-01-28 10:54:28 +08008303}
8304
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008305static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008306{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008307 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008308 u64 *pml_buf;
8309 u16 pml_idx;
8310
8311 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8312
8313 /* Do nothing if PML buffer is empty */
8314 if (pml_idx == (PML_ENTITY_NUM - 1))
8315 return;
8316
8317 /* PML index always points to next available PML buffer entity */
8318 if (pml_idx >= PML_ENTITY_NUM)
8319 pml_idx = 0;
8320 else
8321 pml_idx++;
8322
8323 pml_buf = page_address(vmx->pml_pg);
8324 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8325 u64 gpa;
8326
8327 gpa = pml_buf[pml_idx];
8328 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008329 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008330 }
8331
8332 /* reset PML index */
8333 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8334}
8335
8336/*
8337 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8338 * Called before reporting dirty_bitmap to userspace.
8339 */
8340static void kvm_flush_pml_buffers(struct kvm *kvm)
8341{
8342 int i;
8343 struct kvm_vcpu *vcpu;
8344 /*
8345 * We only need to kick vcpu out of guest mode here, as PML buffer
8346 * is flushed at beginning of all VMEXITs, and it's obvious that only
8347 * vcpus running in guest are possible to have unflushed GPAs in PML
8348 * buffer.
8349 */
8350 kvm_for_each_vcpu(i, vcpu, kvm)
8351 kvm_vcpu_kick(vcpu);
8352}
8353
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008354static void vmx_dump_sel(char *name, uint32_t sel)
8355{
8356 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
8357 name, vmcs_read32(sel),
8358 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8359 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8360 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8361}
8362
8363static void vmx_dump_dtsel(char *name, uint32_t limit)
8364{
8365 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8366 name, vmcs_read32(limit),
8367 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8368}
8369
8370static void dump_vmcs(void)
8371{
8372 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8373 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8374 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8375 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8376 u32 secondary_exec_control = 0;
8377 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008378 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008379 int i, n;
8380
8381 if (cpu_has_secondary_exec_ctrls())
8382 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8383
8384 pr_err("*** Guest State ***\n");
8385 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8386 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8387 vmcs_readl(CR0_GUEST_HOST_MASK));
8388 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8389 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8390 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8391 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8392 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8393 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008394 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8395 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8396 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8397 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008398 }
8399 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8400 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8401 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8402 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8403 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8404 vmcs_readl(GUEST_SYSENTER_ESP),
8405 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8406 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8407 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8408 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8409 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8410 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8411 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8412 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8413 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8414 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8415 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8416 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8417 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008418 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8419 efer, vmcs_read64(GUEST_IA32_PAT));
8420 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8421 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008422 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8423 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008424 pr_err("PerfGlobCtl = 0x%016llx\n",
8425 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008426 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008427 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008428 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8429 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8430 vmcs_read32(GUEST_ACTIVITY_STATE));
8431 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8432 pr_err("InterruptStatus = %04x\n",
8433 vmcs_read16(GUEST_INTR_STATUS));
8434
8435 pr_err("*** Host State ***\n");
8436 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8437 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8438 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8439 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8440 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8441 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8442 vmcs_read16(HOST_TR_SELECTOR));
8443 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8444 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8445 vmcs_readl(HOST_TR_BASE));
8446 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8447 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8448 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8449 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8450 vmcs_readl(HOST_CR4));
8451 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8452 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8453 vmcs_read32(HOST_IA32_SYSENTER_CS),
8454 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8455 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008456 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8457 vmcs_read64(HOST_IA32_EFER),
8458 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008459 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008460 pr_err("PerfGlobCtl = 0x%016llx\n",
8461 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008462
8463 pr_err("*** Control State ***\n");
8464 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8465 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8466 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8467 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8468 vmcs_read32(EXCEPTION_BITMAP),
8469 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8470 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8471 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8472 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8473 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8474 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8475 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8476 vmcs_read32(VM_EXIT_INTR_INFO),
8477 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8478 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8479 pr_err(" reason=%08x qualification=%016lx\n",
8480 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8481 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8482 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8483 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008484 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008485 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008486 pr_err("TSC Multiplier = 0x%016llx\n",
8487 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008488 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8489 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8490 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8491 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8492 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008493 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008494 n = vmcs_read32(CR3_TARGET_COUNT);
8495 for (i = 0; i + 1 < n; i += 4)
8496 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8497 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8498 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8499 if (i < n)
8500 pr_err("CR3 target%u=%016lx\n",
8501 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8502 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8503 pr_err("PLE Gap=%08x Window=%08x\n",
8504 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8505 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8506 pr_err("Virtual processor ID = 0x%04x\n",
8507 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8508}
8509
Avi Kivity6aa8b732006-12-10 02:21:36 -08008510/*
8511 * The guest has exited. See if we can fix it or if we need userspace
8512 * assistance.
8513 */
Avi Kivity851ba692009-08-24 11:10:17 +03008514static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008515{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008516 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008517 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008518 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008519
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008520 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01008521 vcpu->arch.gpa_available = false;
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008522
Kai Huang843e4332015-01-28 10:54:28 +08008523 /*
8524 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8525 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8526 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8527 * mode as if vcpus is in root mode, the PML buffer must has been
8528 * flushed already.
8529 */
8530 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008531 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008532
Mohammed Gamal80ced182009-09-01 12:48:18 +02008533 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008534 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008535 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008536
Nadav Har'El644d7112011-05-25 23:12:35 +03008537 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008538 nested_vmx_vmexit(vcpu, exit_reason,
8539 vmcs_read32(VM_EXIT_INTR_INFO),
8540 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008541 return 1;
8542 }
8543
Mohammed Gamal51207022010-05-31 22:40:54 +03008544 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008545 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008546 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8547 vcpu->run->fail_entry.hardware_entry_failure_reason
8548 = exit_reason;
8549 return 0;
8550 }
8551
Avi Kivity29bd8a72007-09-10 17:27:03 +03008552 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008553 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8554 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008555 = vmcs_read32(VM_INSTRUCTION_ERROR);
8556 return 0;
8557 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008558
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008559 /*
8560 * Note:
8561 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8562 * delivery event since it indicates guest is accessing MMIO.
8563 * The vm-exit can be triggered again after return to guest that
8564 * will cause infinite loop.
8565 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008566 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008567 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008568 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008569 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008570 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8571 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8572 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8573 vcpu->run->internal.ndata = 2;
8574 vcpu->run->internal.data[0] = vectoring_info;
8575 vcpu->run->internal.data[1] = exit_reason;
8576 return 0;
8577 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008578
Nadav Har'El644d7112011-05-25 23:12:35 +03008579 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8580 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008581 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008582 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008583 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008584 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008585 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008586 /*
8587 * This CPU don't support us in finding the end of an
8588 * NMI-blocked window if the guest runs with IRQs
8589 * disabled. So we pull the trigger after 1 s of
8590 * futile waiting, but inform the user about this.
8591 */
8592 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8593 "state on VCPU %d after 1 s timeout\n",
8594 __func__, vcpu->vcpu_id);
8595 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008596 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008597 }
8598
Avi Kivity6aa8b732006-12-10 02:21:36 -08008599 if (exit_reason < kvm_vmx_max_exit_handlers
8600 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008601 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008602 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008603 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8604 kvm_queue_exception(vcpu, UD_VECTOR);
8605 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008606 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008607}
8608
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008609static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008610{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008611 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8612
8613 if (is_guest_mode(vcpu) &&
8614 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8615 return;
8616
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008617 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008618 vmcs_write32(TPR_THRESHOLD, 0);
8619 return;
8620 }
8621
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008622 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008623}
8624
Yang Zhang8d146952013-01-25 10:18:50 +08008625static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8626{
8627 u32 sec_exec_control;
8628
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008629 /* Postpone execution until vmcs01 is the current VMCS. */
8630 if (is_guest_mode(vcpu)) {
8631 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8632 return;
8633 }
8634
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008635 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008636 return;
8637
Paolo Bonzini35754c92015-07-29 12:05:37 +02008638 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008639 return;
8640
8641 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8642
8643 if (set) {
8644 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8645 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8646 } else {
8647 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8648 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8649 }
8650 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8651
8652 vmx_set_msr_bitmap(vcpu);
8653}
8654
Tang Chen38b99172014-09-24 15:57:54 +08008655static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8656{
8657 struct vcpu_vmx *vmx = to_vmx(vcpu);
8658
8659 /*
8660 * Currently we do not handle the nested case where L2 has an
8661 * APIC access page of its own; that page is still pinned.
8662 * Hence, we skip the case where the VCPU is in guest mode _and_
8663 * L1 prepared an APIC access page for L2.
8664 *
8665 * For the case where L1 and L2 share the same APIC access page
8666 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8667 * in the vmcs12), this function will only update either the vmcs01
8668 * or the vmcs02. If the former, the vmcs02 will be updated by
8669 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8670 * the next L2->L1 exit.
8671 */
8672 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008673 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Tang Chen38b99172014-09-24 15:57:54 +08008674 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8675 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8676}
8677
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008678static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008679{
8680 u16 status;
8681 u8 old;
8682
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008683 if (max_isr == -1)
8684 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008685
8686 status = vmcs_read16(GUEST_INTR_STATUS);
8687 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008688 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008689 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008690 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008691 vmcs_write16(GUEST_INTR_STATUS, status);
8692 }
8693}
8694
8695static void vmx_set_rvi(int vector)
8696{
8697 u16 status;
8698 u8 old;
8699
Wei Wang4114c272014-11-05 10:53:43 +08008700 if (vector == -1)
8701 vector = 0;
8702
Yang Zhangc7c9c562013-01-25 10:18:51 +08008703 status = vmcs_read16(GUEST_INTR_STATUS);
8704 old = (u8)status & 0xff;
8705 if ((u8)vector != old) {
8706 status &= ~0xff;
8707 status |= (u8)vector;
8708 vmcs_write16(GUEST_INTR_STATUS, status);
8709 }
8710}
8711
8712static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8713{
Wanpeng Li963fee12014-07-17 19:03:00 +08008714 if (!is_guest_mode(vcpu)) {
8715 vmx_set_rvi(max_irr);
8716 return;
8717 }
8718
Wei Wang4114c272014-11-05 10:53:43 +08008719 if (max_irr == -1)
8720 return;
8721
Wanpeng Li963fee12014-07-17 19:03:00 +08008722 /*
Wei Wang4114c272014-11-05 10:53:43 +08008723 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8724 * handles it.
8725 */
8726 if (nested_exit_on_intr(vcpu))
8727 return;
8728
8729 /*
8730 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008731 * is run without virtual interrupt delivery.
8732 */
8733 if (!kvm_event_needs_reinjection(vcpu) &&
8734 vmx_interrupt_allowed(vcpu)) {
8735 kvm_queue_interrupt(vcpu, max_irr, false);
8736 vmx_inject_irq(vcpu);
8737 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008738}
8739
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008740static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008741{
8742 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008743 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008744
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008745 WARN_ON(!vcpu->arch.apicv_active);
8746 if (pi_test_on(&vmx->pi_desc)) {
8747 pi_clear_on(&vmx->pi_desc);
8748 /*
8749 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8750 * But on x86 this is just a compiler barrier anyway.
8751 */
8752 smp_mb__after_atomic();
8753 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8754 } else {
8755 max_irr = kvm_lapic_find_highest_irr(vcpu);
8756 }
8757 vmx_hwapic_irr_update(vcpu, max_irr);
8758 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008759}
8760
Andrey Smetanin63086302015-11-10 15:36:32 +03008761static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008762{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008763 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008764 return;
8765
Yang Zhangc7c9c562013-01-25 10:18:51 +08008766 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8767 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8768 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8769 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8770}
8771
Paolo Bonzini967235d2016-12-19 14:03:45 +01008772static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8773{
8774 struct vcpu_vmx *vmx = to_vmx(vcpu);
8775
8776 pi_clear_on(&vmx->pi_desc);
8777 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
8778}
8779
Avi Kivity51aa01d2010-07-20 14:31:20 +03008780static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008781{
Avi Kivity00eba012011-03-07 17:24:54 +02008782 u32 exit_intr_info;
8783
8784 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8785 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8786 return;
8787
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008788 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008789 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008790
8791 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008792 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008793 kvm_machine_check();
8794
Gleb Natapov20f65982009-05-11 13:35:55 +03008795 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08008796 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008797 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008798 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008799 kvm_after_handle_nmi(&vmx->vcpu);
8800 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008801}
Gleb Natapov20f65982009-05-11 13:35:55 +03008802
Yang Zhanga547c6d2013-04-11 19:25:10 +08008803static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8804{
8805 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008806 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008807
Yang Zhanga547c6d2013-04-11 19:25:10 +08008808 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8809 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8810 unsigned int vector;
8811 unsigned long entry;
8812 gate_desc *desc;
8813 struct vcpu_vmx *vmx = to_vmx(vcpu);
8814#ifdef CONFIG_X86_64
8815 unsigned long tmp;
8816#endif
8817
8818 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8819 desc = (gate_desc *)vmx->host_idt_base + vector;
8820 entry = gate_offset(*desc);
8821 asm volatile(
8822#ifdef CONFIG_X86_64
8823 "mov %%" _ASM_SP ", %[sp]\n\t"
8824 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8825 "push $%c[ss]\n\t"
8826 "push %[sp]\n\t"
8827#endif
8828 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008829 __ASM_SIZE(push) " $%c[cs]\n\t"
8830 "call *%[entry]\n\t"
8831 :
8832#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008833 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008834#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008835 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008836 :
8837 [entry]"r"(entry),
8838 [ss]"i"(__KERNEL_DS),
8839 [cs]"i"(__KERNEL_CS)
8840 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008841 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08008842}
8843
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008844static bool vmx_has_high_real_mode_segbase(void)
8845{
8846 return enable_unrestricted_guest || emulate_invalid_guest_state;
8847}
8848
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008849static bool vmx_mpx_supported(void)
8850{
8851 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8852 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8853}
8854
Wanpeng Li55412b22014-12-02 19:21:30 +08008855static bool vmx_xsaves_supported(void)
8856{
8857 return vmcs_config.cpu_based_2nd_exec_ctrl &
8858 SECONDARY_EXEC_XSAVES;
8859}
8860
Avi Kivity51aa01d2010-07-20 14:31:20 +03008861static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8862{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008863 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008864 bool unblock_nmi;
8865 u8 vector;
8866 bool idtv_info_valid;
8867
8868 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008869
Avi Kivitycf393f72008-07-01 16:20:21 +03008870 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008871 if (vmx->nmi_known_unmasked)
8872 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008873 /*
8874 * Can't use vmx->exit_intr_info since we're not sure what
8875 * the exit reason is.
8876 */
8877 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008878 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8879 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8880 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008881 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008882 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8883 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008884 * SDM 3: 23.2.2 (September 2008)
8885 * Bit 12 is undefined in any of the following cases:
8886 * If the VM exit sets the valid bit in the IDT-vectoring
8887 * information field.
8888 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008889 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008890 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8891 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008892 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8893 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008894 else
8895 vmx->nmi_known_unmasked =
8896 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8897 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008898 } else if (unlikely(vmx->soft_vnmi_blocked))
8899 vmx->vnmi_blocked_time +=
8900 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008901}
8902
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008903static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008904 u32 idt_vectoring_info,
8905 int instr_len_field,
8906 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008907{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008908 u8 vector;
8909 int type;
8910 bool idtv_info_valid;
8911
8912 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008913
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008914 vcpu->arch.nmi_injected = false;
8915 kvm_clear_exception_queue(vcpu);
8916 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008917
8918 if (!idtv_info_valid)
8919 return;
8920
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008921 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008922
Avi Kivity668f6122008-07-02 09:28:55 +03008923 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8924 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008925
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008926 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008927 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008928 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008929 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008930 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008931 * Clear bit "block by NMI" before VM entry if a NMI
8932 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008933 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008934 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008935 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008936 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008937 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008938 /* fall through */
8939 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008940 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008941 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008942 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008943 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008944 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008945 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008946 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008947 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008948 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008949 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008950 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008951 break;
8952 default:
8953 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008954 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008955}
8956
Avi Kivity83422e12010-07-20 14:43:23 +03008957static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8958{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008959 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008960 VM_EXIT_INSTRUCTION_LEN,
8961 IDT_VECTORING_ERROR_CODE);
8962}
8963
Avi Kivityb463a6f2010-07-20 15:06:17 +03008964static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8965{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008966 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008967 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8968 VM_ENTRY_INSTRUCTION_LEN,
8969 VM_ENTRY_EXCEPTION_ERROR_CODE);
8970
8971 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8972}
8973
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008974static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8975{
8976 int i, nr_msrs;
8977 struct perf_guest_switch_msr *msrs;
8978
8979 msrs = perf_guest_get_msrs(&nr_msrs);
8980
8981 if (!msrs)
8982 return;
8983
8984 for (i = 0; i < nr_msrs; i++)
8985 if (msrs[i].host == msrs[i].guest)
8986 clear_atomic_switch_msr(vmx, msrs[i].msr);
8987 else
8988 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8989 msrs[i].host);
8990}
8991
Jiang Biao33365e72016-11-03 15:03:37 +08008992static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07008993{
8994 struct vcpu_vmx *vmx = to_vmx(vcpu);
8995 u64 tscl;
8996 u32 delta_tsc;
8997
8998 if (vmx->hv_deadline_tsc == -1)
8999 return;
9000
9001 tscl = rdtsc();
9002 if (vmx->hv_deadline_tsc > tscl)
9003 /* sure to be 32 bit only because checked on set_hv_timer */
9004 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9005 cpu_preemption_timer_multi);
9006 else
9007 delta_tsc = 0;
9008
9009 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9010}
9011
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009012static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009013{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009014 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009015 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009016
9017 /* Record the guest's net vcpu time for enforced NMI injections. */
9018 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
9019 vmx->entry_time = ktime_get();
9020
9021 /* Don't enter VMX if guest state is invalid, let the exit handler
9022 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009023 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009024 return;
9025
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009026 if (vmx->ple_window_dirty) {
9027 vmx->ple_window_dirty = false;
9028 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9029 }
9030
Abel Gordon012f83c2013-04-18 14:39:25 +03009031 if (vmx->nested.sync_shadow_vmcs) {
9032 copy_vmcs12_to_shadow(vmx);
9033 vmx->nested.sync_shadow_vmcs = false;
9034 }
9035
Avi Kivity104f2262010-11-18 13:12:52 +02009036 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9037 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9038 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9039 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9040
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009041 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009042 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
9043 vmcs_writel(HOST_CR4, cr4);
9044 vmx->host_state.vmcs_host_cr4 = cr4;
9045 }
9046
Avi Kivity104f2262010-11-18 13:12:52 +02009047 /* When single-stepping over STI and MOV SS, we must clear the
9048 * corresponding interruptibility bits in the guest state. Otherwise
9049 * vmentry fails as it then expects bit 14 (BS) in pending debug
9050 * exceptions being set, but that's not correct for the guest debugging
9051 * case. */
9052 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9053 vmx_set_interrupt_shadow(vcpu, 0);
9054
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009055 if (vmx->guest_pkru_valid)
9056 __write_pkru(vmx->guest_pkru);
9057
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009058 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009059 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009060
Yunhong Jiang64672c92016-06-13 14:19:59 -07009061 vmx_arm_hv_timer(vcpu);
9062
Nadav Har'Eld462b812011-05-24 15:26:10 +03009063 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009064 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009065 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009066 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9067 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9068 "push %%" _ASM_CX " \n\t"
9069 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009070 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009071 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009072 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009073 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009074 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009075 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9076 "mov %%cr2, %%" _ASM_DX " \n\t"
9077 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009078 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009079 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009080 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009081 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009082 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009083 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009084 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9085 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9086 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9087 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9088 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9089 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009090#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009091 "mov %c[r8](%0), %%r8 \n\t"
9092 "mov %c[r9](%0), %%r9 \n\t"
9093 "mov %c[r10](%0), %%r10 \n\t"
9094 "mov %c[r11](%0), %%r11 \n\t"
9095 "mov %c[r12](%0), %%r12 \n\t"
9096 "mov %c[r13](%0), %%r13 \n\t"
9097 "mov %c[r14](%0), %%r14 \n\t"
9098 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009099#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009100 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009101
Avi Kivity6aa8b732006-12-10 02:21:36 -08009102 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009103 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009104 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009105 "jmp 2f \n\t"
9106 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9107 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009108 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009109 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009110 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009111 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9112 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9113 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9114 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9115 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9116 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9117 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009118#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009119 "mov %%r8, %c[r8](%0) \n\t"
9120 "mov %%r9, %c[r9](%0) \n\t"
9121 "mov %%r10, %c[r10](%0) \n\t"
9122 "mov %%r11, %c[r11](%0) \n\t"
9123 "mov %%r12, %c[r12](%0) \n\t"
9124 "mov %%r13, %c[r13](%0) \n\t"
9125 "mov %%r14, %c[r14](%0) \n\t"
9126 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009127#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009128 "mov %%cr2, %%" _ASM_AX " \n\t"
9129 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009130
Avi Kivityb188c81f2012-09-16 15:10:58 +03009131 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009132 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009133 ".pushsection .rodata \n\t"
9134 ".global vmx_return \n\t"
9135 "vmx_return: " _ASM_PTR " 2b \n\t"
9136 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009137 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009138 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009139 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009140 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009141 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9142 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9143 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9144 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9145 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9146 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9147 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009148#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009149 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9150 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9151 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9152 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9153 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9154 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9155 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9156 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009157#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009158 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9159 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009160 : "cc", "memory"
9161#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009162 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009163 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009164#else
9165 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009166#endif
9167 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009168
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009169 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9170 if (debugctlmsr)
9171 update_debugctlmsr(debugctlmsr);
9172
Avi Kivityaa67f602012-08-01 16:48:03 +03009173#ifndef CONFIG_X86_64
9174 /*
9175 * The sysexit path does not restore ds/es, so we must set them to
9176 * a reasonable value ourselves.
9177 *
9178 * We can't defer this to vmx_load_host_state() since that function
9179 * may be executed in interrupt context, which saves and restore segments
9180 * around it, nullifying its effect.
9181 */
9182 loadsegment(ds, __USER_DS);
9183 loadsegment(es, __USER_DS);
9184#endif
9185
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009186 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009187 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009188 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009189 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009190 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009191 vcpu->arch.regs_dirty = 0;
9192
Avi Kivity1155f762007-11-22 11:30:47 +02009193 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9194
Nadav Har'Eld462b812011-05-24 15:26:10 +03009195 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009196
Avi Kivity51aa01d2010-07-20 14:31:20 +03009197 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009198
Gleb Natapove0b890d2013-09-25 12:51:33 +03009199 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009200 * eager fpu is enabled if PKEY is supported and CR4 is switched
9201 * back on host, so it is safe to read guest PKRU from current
9202 * XSAVE.
9203 */
9204 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9205 vmx->guest_pkru = __read_pkru();
9206 if (vmx->guest_pkru != vmx->host_pkru) {
9207 vmx->guest_pkru_valid = true;
9208 __write_pkru(vmx->host_pkru);
9209 } else
9210 vmx->guest_pkru_valid = false;
9211 }
9212
9213 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009214 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9215 * we did not inject a still-pending event to L1 now because of
9216 * nested_run_pending, we need to re-enable this bit.
9217 */
9218 if (vmx->nested.nested_run_pending)
9219 kvm_make_request(KVM_REQ_EVENT, vcpu);
9220
9221 vmx->nested.nested_run_pending = 0;
9222
Avi Kivity51aa01d2010-07-20 14:31:20 +03009223 vmx_complete_atomic_exit(vmx);
9224 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009225 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009226}
9227
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009228static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
9229{
9230 struct vcpu_vmx *vmx = to_vmx(vcpu);
9231 int cpu;
9232
9233 if (vmx->loaded_vmcs == &vmx->vmcs01)
9234 return;
9235
9236 cpu = get_cpu();
9237 vmx->loaded_vmcs = &vmx->vmcs01;
9238 vmx_vcpu_put(vcpu);
9239 vmx_vcpu_load(vcpu, cpu);
9240 vcpu->cpu = cpu;
9241 put_cpu();
9242}
9243
Jim Mattson2f1fe812016-07-08 15:36:06 -07009244/*
9245 * Ensure that the current vmcs of the logical processor is the
9246 * vmcs01 of the vcpu before calling free_nested().
9247 */
9248static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9249{
9250 struct vcpu_vmx *vmx = to_vmx(vcpu);
9251 int r;
9252
9253 r = vcpu_load(vcpu);
9254 BUG_ON(r);
9255 vmx_load_vmcs01(vcpu);
9256 free_nested(vmx);
9257 vcpu_put(vcpu);
9258}
9259
Avi Kivity6aa8b732006-12-10 02:21:36 -08009260static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9261{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009262 struct vcpu_vmx *vmx = to_vmx(vcpu);
9263
Kai Huang843e4332015-01-28 10:54:28 +08009264 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009265 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009266 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009267 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009268 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009269 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009270 kfree(vmx->guest_msrs);
9271 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009272 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009273}
9274
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009275static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009276{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009277 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009278 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009279 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009280
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009281 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009282 return ERR_PTR(-ENOMEM);
9283
Wanpeng Li991e7a02015-09-16 17:30:05 +08009284 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009285
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009286 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9287 if (err)
9288 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009289
Peter Feiner4e595162016-07-07 14:49:58 -07009290 err = -ENOMEM;
9291
9292 /*
9293 * If PML is turned on, failure on enabling PML just results in failure
9294 * of creating the vcpu, therefore we can simplify PML logic (by
9295 * avoiding dealing with cases, such as enabling PML partially on vcpus
9296 * for the guest, etc.
9297 */
9298 if (enable_pml) {
9299 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9300 if (!vmx->pml_pg)
9301 goto uninit_vcpu;
9302 }
9303
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009304 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009305 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9306 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009307
Peter Feiner4e595162016-07-07 14:49:58 -07009308 if (!vmx->guest_msrs)
9309 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009310
Nadav Har'Eld462b812011-05-24 15:26:10 +03009311 vmx->loaded_vmcs = &vmx->vmcs01;
9312 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009313 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009314 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009315 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009316 if (!vmm_exclusive)
9317 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
9318 loaded_vmcs_init(vmx->loaded_vmcs);
9319 if (!vmm_exclusive)
9320 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009321
Avi Kivity15ad7142007-07-11 18:17:21 +03009322 cpu = get_cpu();
9323 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009324 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009325 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009326 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009327 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009328 if (err)
9329 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009330 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009331 err = alloc_apic_access_page(kvm);
9332 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009333 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009334 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009335
Sheng Yangb927a3c2009-07-21 10:42:48 +08009336 if (enable_ept) {
9337 if (!kvm->arch.ept_identity_map_addr)
9338 kvm->arch.ept_identity_map_addr =
9339 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009340 err = init_rmode_identity_map(kvm);
9341 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009342 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009343 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009344
Wanpeng Li5c614b32015-10-13 09:18:36 -07009345 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009346 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009347 vmx->nested.vpid02 = allocate_vpid();
9348 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009349
Wincy Van705699a2015-02-03 23:58:17 +08009350 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009351 vmx->nested.current_vmptr = -1ull;
9352 vmx->nested.current_vmcs12 = NULL;
9353
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009354 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9355
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009356 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009357
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009358free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009359 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009360 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009361free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009362 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009363free_pml:
9364 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009365uninit_vcpu:
9366 kvm_vcpu_uninit(&vmx->vcpu);
9367free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009368 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009369 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009370 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009371}
9372
Yang, Sheng002c7f72007-07-31 14:23:01 +03009373static void __init vmx_check_processor_compat(void *rtn)
9374{
9375 struct vmcs_config vmcs_conf;
9376
9377 *(int *)rtn = 0;
9378 if (setup_vmcs_config(&vmcs_conf) < 0)
9379 *(int *)rtn = -EIO;
9380 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9381 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9382 smp_processor_id());
9383 *(int *)rtn = -EIO;
9384 }
9385}
9386
Sheng Yang67253af2008-04-25 10:20:22 +08009387static int get_ept_level(void)
9388{
9389 return VMX_EPT_DEFAULT_GAW + 1;
9390}
9391
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009392static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009393{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009394 u8 cache;
9395 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009396
Sheng Yang522c68c2009-04-27 20:35:43 +08009397 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009398 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009399 * 2. EPT with VT-d:
9400 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009401 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009402 * b. VT-d with snooping control feature: snooping control feature of
9403 * VT-d engine can guarantee the cache correctness. Just set it
9404 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009405 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009406 * consistent with host MTRR
9407 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009408 if (is_mmio) {
9409 cache = MTRR_TYPE_UNCACHABLE;
9410 goto exit;
9411 }
9412
9413 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009414 ipat = VMX_EPT_IPAT_BIT;
9415 cache = MTRR_TYPE_WRBACK;
9416 goto exit;
9417 }
9418
9419 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9420 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009421 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009422 cache = MTRR_TYPE_WRBACK;
9423 else
9424 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009425 goto exit;
9426 }
9427
Xiao Guangrongff536042015-06-15 16:55:22 +08009428 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009429
9430exit:
9431 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009432}
9433
Sheng Yang17cc3932010-01-05 19:02:27 +08009434static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009435{
Sheng Yang878403b2010-01-05 19:02:29 +08009436 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9437 return PT_DIRECTORY_LEVEL;
9438 else
9439 /* For shadow and EPT supported 1GB page */
9440 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009441}
9442
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009443static void vmcs_set_secondary_exec_control(u32 new_ctl)
9444{
9445 /*
9446 * These bits in the secondary execution controls field
9447 * are dynamic, the others are mostly based on the hypervisor
9448 * architecture and the guest's CPUID. Do not touch the
9449 * dynamic bits.
9450 */
9451 u32 mask =
9452 SECONDARY_EXEC_SHADOW_VMCS |
9453 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9454 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9455
9456 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9457
9458 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9459 (new_ctl & ~mask) | (cur_ctl & mask));
9460}
9461
David Matlack8322ebb2016-11-29 18:14:09 -08009462/*
9463 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9464 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9465 */
9466static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9467{
9468 struct vcpu_vmx *vmx = to_vmx(vcpu);
9469 struct kvm_cpuid_entry2 *entry;
9470
9471 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9472 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9473
9474#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9475 if (entry && (entry->_reg & (_cpuid_mask))) \
9476 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9477} while (0)
9478
9479 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9480 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9481 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9482 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9483 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9484 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9485 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9486 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9487 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9488 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9489 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9490 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9491 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9492 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9493 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9494
9495 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9496 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9497 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9498 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9499 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9500 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9501 cr4_fixed1_update(bit(11), ecx, bit(2));
9502
9503#undef cr4_fixed1_update
9504}
9505
Sheng Yang0e851882009-12-18 16:48:46 +08009506static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9507{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009508 struct kvm_cpuid_entry2 *best;
9509 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009510 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009511
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009512 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009513 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
9514 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009515 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009516
Paolo Bonzini8b972652015-09-15 17:34:42 +02009517 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009518 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009519 vmx->nested.nested_vmx_secondary_ctls_high |=
9520 SECONDARY_EXEC_RDTSCP;
9521 else
9522 vmx->nested.nested_vmx_secondary_ctls_high &=
9523 ~SECONDARY_EXEC_RDTSCP;
9524 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009525 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009526
Mao, Junjiead756a12012-07-02 01:18:48 +00009527 /* Exposing INVPCID only when PCID is exposed */
9528 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9529 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009530 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
9531 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009532 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009533
Mao, Junjiead756a12012-07-02 01:18:48 +00009534 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00009535 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00009536 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009537
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009538 if (cpu_has_secondary_exec_ctrls())
9539 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009540
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009541 if (nested_vmx_allowed(vcpu))
9542 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9543 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9544 else
9545 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9546 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009547
9548 if (nested_vmx_allowed(vcpu))
9549 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009550}
9551
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009552static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9553{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009554 if (func == 1 && nested)
9555 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009556}
9557
Yang Zhang25d92082013-08-06 12:00:32 +03009558static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9559 struct x86_exception *fault)
9560{
Jan Kiszka533558b2014-01-04 18:47:20 +01009561 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9562 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009563
9564 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009565 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009566 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009567 exit_reason = EXIT_REASON_EPT_VIOLATION;
9568 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009569 vmcs12->guest_physical_address = fault->address;
9570}
9571
Nadav Har'El155a97a2013-08-05 11:07:16 +03009572/* Callbacks for nested_ept_init_mmu_context: */
9573
9574static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9575{
9576 /* return the page table to be shadowed - in our case, EPT12 */
9577 return get_vmcs12(vcpu)->ept_pointer;
9578}
9579
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009580static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009581{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009582 WARN_ON(mmu_is_nested(vcpu));
9583 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009584 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9585 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009586 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9587 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9588 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9589
9590 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009591}
9592
9593static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9594{
9595 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9596}
9597
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009598static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9599 u16 error_code)
9600{
9601 bool inequality, bit;
9602
9603 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9604 inequality =
9605 (error_code & vmcs12->page_fault_error_code_mask) !=
9606 vmcs12->page_fault_error_code_match;
9607 return inequality ^ bit;
9608}
9609
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009610static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9611 struct x86_exception *fault)
9612{
9613 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9614
9615 WARN_ON(!is_guest_mode(vcpu));
9616
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009617 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009618 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9619 vmcs_read32(VM_EXIT_INTR_INFO),
9620 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009621 else
9622 kvm_inject_page_fault(vcpu, fault);
9623}
9624
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009625static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9626 struct vmcs12 *vmcs12)
9627{
9628 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009629 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009630
9631 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009632 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9633 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009634 return false;
9635
9636 /*
9637 * Translate L1 physical address to host physical
9638 * address for vmcs02. Keep the page pinned, so this
9639 * physical address remains valid. We keep a reference
9640 * to it so we can release it later.
9641 */
9642 if (vmx->nested.apic_access_page) /* shouldn't happen */
9643 nested_release_page(vmx->nested.apic_access_page);
9644 vmx->nested.apic_access_page =
9645 nested_get_page(vcpu, vmcs12->apic_access_addr);
9646 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009647
9648 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009649 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9650 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009651 return false;
9652
9653 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9654 nested_release_page(vmx->nested.virtual_apic_page);
9655 vmx->nested.virtual_apic_page =
9656 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9657
9658 /*
9659 * Failing the vm entry is _not_ what the processor does
9660 * but it's basically the only possibility we have.
9661 * We could still enter the guest if CR8 load exits are
9662 * enabled, CR8 store exits are enabled, and virtualize APIC
9663 * access is disabled; in this case the processor would never
9664 * use the TPR shadow and we could simply clear the bit from
9665 * the execution control. But such a configuration is useless,
9666 * so let's keep the code simple.
9667 */
9668 if (!vmx->nested.virtual_apic_page)
9669 return false;
9670 }
9671
Wincy Van705699a2015-02-03 23:58:17 +08009672 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009673 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9674 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009675 return false;
9676
9677 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9678 kunmap(vmx->nested.pi_desc_page);
9679 nested_release_page(vmx->nested.pi_desc_page);
9680 }
9681 vmx->nested.pi_desc_page =
9682 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9683 if (!vmx->nested.pi_desc_page)
9684 return false;
9685
9686 vmx->nested.pi_desc =
9687 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9688 if (!vmx->nested.pi_desc) {
9689 nested_release_page_clean(vmx->nested.pi_desc_page);
9690 return false;
9691 }
9692 vmx->nested.pi_desc =
9693 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9694 (unsigned long)(vmcs12->posted_intr_desc_addr &
9695 (PAGE_SIZE - 1)));
9696 }
9697
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009698 return true;
9699}
9700
Jan Kiszkaf41245002014-03-07 20:03:13 +01009701static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9702{
9703 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9704 struct vcpu_vmx *vmx = to_vmx(vcpu);
9705
9706 if (vcpu->arch.virtual_tsc_khz == 0)
9707 return;
9708
9709 /* Make sure short timeouts reliably trigger an immediate vmexit.
9710 * hrtimer_start does not guarantee this. */
9711 if (preemption_timeout <= 1) {
9712 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9713 return;
9714 }
9715
9716 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9717 preemption_timeout *= 1000000;
9718 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9719 hrtimer_start(&vmx->nested.preemption_timer,
9720 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9721}
9722
Wincy Van3af18d92015-02-03 23:49:31 +08009723static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9724 struct vmcs12 *vmcs12)
9725{
9726 int maxphyaddr;
9727 u64 addr;
9728
9729 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9730 return 0;
9731
9732 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9733 WARN_ON(1);
9734 return -EINVAL;
9735 }
9736 maxphyaddr = cpuid_maxphyaddr(vcpu);
9737
9738 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9739 ((addr + PAGE_SIZE) >> maxphyaddr))
9740 return -EINVAL;
9741
9742 return 0;
9743}
9744
9745/*
9746 * Merge L0's and L1's MSR bitmap, return false to indicate that
9747 * we do not use the hardware.
9748 */
9749static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9750 struct vmcs12 *vmcs12)
9751{
Wincy Van82f0dd42015-02-03 23:57:18 +08009752 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009753 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +02009754 unsigned long *msr_bitmap_l1;
9755 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +08009756
Radim Krčmářd048c092016-08-08 20:16:22 +02009757 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +08009758 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9759 return false;
9760
9761 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9762 if (!page) {
9763 WARN_ON(1);
9764 return false;
9765 }
Radim Krčmářd048c092016-08-08 20:16:22 +02009766 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009767
Radim Krčmářd048c092016-08-08 20:16:22 +02009768 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
9769
Wincy Vanf2b93282015-02-03 23:56:03 +08009770 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009771 if (nested_cpu_has_apic_reg_virt(vmcs12))
9772 for (msr = 0x800; msr <= 0x8ff; msr++)
9773 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009774 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +08009775 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +02009776
9777 nested_vmx_disable_intercept_for_msr(
9778 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +08009779 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9780 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +02009781
Wincy Van608406e2015-02-03 23:57:51 +08009782 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +08009783 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009784 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009785 APIC_BASE_MSR + (APIC_EOI >> 4),
9786 MSR_TYPE_W);
9787 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009788 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009789 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9790 MSR_TYPE_W);
9791 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009792 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009793 kunmap(page);
9794 nested_release_page_clean(page);
9795
9796 return true;
9797}
9798
9799static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9800 struct vmcs12 *vmcs12)
9801{
Wincy Van82f0dd42015-02-03 23:57:18 +08009802 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009803 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009804 !nested_cpu_has_vid(vmcs12) &&
9805 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009806 return 0;
9807
9808 /*
9809 * If virtualize x2apic mode is enabled,
9810 * virtualize apic access must be disabled.
9811 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009812 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9813 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009814 return -EINVAL;
9815
Wincy Van608406e2015-02-03 23:57:51 +08009816 /*
9817 * If virtual interrupt delivery is enabled,
9818 * we must exit on external interrupts.
9819 */
9820 if (nested_cpu_has_vid(vmcs12) &&
9821 !nested_exit_on_intr(vcpu))
9822 return -EINVAL;
9823
Wincy Van705699a2015-02-03 23:58:17 +08009824 /*
9825 * bits 15:8 should be zero in posted_intr_nv,
9826 * the descriptor address has been already checked
9827 * in nested_get_vmcs12_pages.
9828 */
9829 if (nested_cpu_has_posted_intr(vmcs12) &&
9830 (!nested_cpu_has_vid(vmcs12) ||
9831 !nested_exit_intr_ack_set(vcpu) ||
9832 vmcs12->posted_intr_nv & 0xff00))
9833 return -EINVAL;
9834
Wincy Vanf2b93282015-02-03 23:56:03 +08009835 /* tpr shadow is needed by all apicv features. */
9836 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9837 return -EINVAL;
9838
9839 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009840}
9841
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009842static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9843 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009844 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009845{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009846 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009847 u64 count, addr;
9848
9849 if (vmcs12_read_any(vcpu, count_field, &count) ||
9850 vmcs12_read_any(vcpu, addr_field, &addr)) {
9851 WARN_ON(1);
9852 return -EINVAL;
9853 }
9854 if (count == 0)
9855 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009856 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009857 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9858 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009859 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009860 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9861 addr_field, maxphyaddr, count, addr);
9862 return -EINVAL;
9863 }
9864 return 0;
9865}
9866
9867static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9868 struct vmcs12 *vmcs12)
9869{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009870 if (vmcs12->vm_exit_msr_load_count == 0 &&
9871 vmcs12->vm_exit_msr_store_count == 0 &&
9872 vmcs12->vm_entry_msr_load_count == 0)
9873 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009874 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009875 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009876 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009877 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009878 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009879 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009880 return -EINVAL;
9881 return 0;
9882}
9883
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009884static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9885 struct vmx_msr_entry *e)
9886{
9887 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009888 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009889 return -EINVAL;
9890 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9891 e->index == MSR_IA32_UCODE_REV)
9892 return -EINVAL;
9893 if (e->reserved != 0)
9894 return -EINVAL;
9895 return 0;
9896}
9897
9898static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9899 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009900{
9901 if (e->index == MSR_FS_BASE ||
9902 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009903 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9904 nested_vmx_msr_check_common(vcpu, e))
9905 return -EINVAL;
9906 return 0;
9907}
9908
9909static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9910 struct vmx_msr_entry *e)
9911{
9912 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9913 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009914 return -EINVAL;
9915 return 0;
9916}
9917
9918/*
9919 * Load guest's/host's msr at nested entry/exit.
9920 * return 0 for success, entry index for failure.
9921 */
9922static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9923{
9924 u32 i;
9925 struct vmx_msr_entry e;
9926 struct msr_data msr;
9927
9928 msr.host_initiated = false;
9929 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009930 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9931 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009932 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009933 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9934 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009935 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009936 }
9937 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009938 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009939 "%s check failed (%u, 0x%x, 0x%x)\n",
9940 __func__, i, e.index, e.reserved);
9941 goto fail;
9942 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009943 msr.index = e.index;
9944 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009945 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009946 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009947 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9948 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009949 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009950 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009951 }
9952 return 0;
9953fail:
9954 return i + 1;
9955}
9956
9957static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9958{
9959 u32 i;
9960 struct vmx_msr_entry e;
9961
9962 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009963 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009964 if (kvm_vcpu_read_guest(vcpu,
9965 gpa + i * sizeof(e),
9966 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009967 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009968 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9969 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009970 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009971 }
9972 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009973 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009974 "%s check failed (%u, 0x%x, 0x%x)\n",
9975 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009976 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009977 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009978 msr_info.host_initiated = false;
9979 msr_info.index = e.index;
9980 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009981 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009982 "%s cannot read MSR (%u, 0x%x)\n",
9983 __func__, i, e.index);
9984 return -EINVAL;
9985 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009986 if (kvm_vcpu_write_guest(vcpu,
9987 gpa + i * sizeof(e) +
9988 offsetof(struct vmx_msr_entry, value),
9989 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009990 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009991 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009992 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009993 return -EINVAL;
9994 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009995 }
9996 return 0;
9997}
9998
Ladi Prosek1dc35da2016-11-30 16:03:11 +01009999static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10000{
10001 unsigned long invalid_mask;
10002
10003 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10004 return (val & invalid_mask) == 0;
10005}
10006
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010007/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010008 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10009 * emulating VM entry into a guest with EPT enabled.
10010 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10011 * is assigned to entry_failure_code on failure.
10012 */
10013static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
10014 unsigned long *entry_failure_code)
10015{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010016 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010017 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010018 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10019 return 1;
10020 }
10021
10022 /*
10023 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10024 * must not be dereferenced.
10025 */
10026 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10027 !nested_ept) {
10028 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10029 *entry_failure_code = ENTRY_FAIL_PDPTE;
10030 return 1;
10031 }
10032 }
10033
10034 vcpu->arch.cr3 = cr3;
10035 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10036 }
10037
10038 kvm_mmu_reset_context(vcpu);
10039 return 0;
10040}
10041
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010042/*
10043 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10044 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010045 * 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 +030010046 * guest in a way that will both be appropriate to L1's requests, and our
10047 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10048 * function also has additional necessary side-effects, like setting various
10049 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010050 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10051 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010052 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010053static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010054 bool from_vmentry, unsigned long *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010055{
10056 struct vcpu_vmx *vmx = to_vmx(vcpu);
10057 u32 exec_control;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010058 bool nested_ept_enabled = false;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010059
10060 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10061 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10062 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10063 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10064 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10065 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10066 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10067 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10068 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10069 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10070 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10071 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10072 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10073 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10074 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10075 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10076 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10077 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10078 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10079 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10080 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10081 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10082 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10083 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10084 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10085 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10086 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10087 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10088 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10089 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10090 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10091 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10092 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10093 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10094 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10095 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10096
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010097 if (from_vmentry &&
10098 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010099 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10100 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10101 } else {
10102 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10103 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10104 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010105 if (from_vmentry) {
10106 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10107 vmcs12->vm_entry_intr_info_field);
10108 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10109 vmcs12->vm_entry_exception_error_code);
10110 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10111 vmcs12->vm_entry_instruction_len);
10112 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10113 vmcs12->guest_interruptibility_info);
10114 } else {
10115 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10116 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010117 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010118 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010119 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10120 vmcs12->guest_pending_dbg_exceptions);
10121 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10122 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10123
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010124 if (nested_cpu_has_xsaves(vmcs12))
10125 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010126 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10127
Jan Kiszkaf41245002014-03-07 20:03:13 +010010128 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010129
Paolo Bonzini9314006db2016-07-06 13:23:51 +020010130 /* Preemption timer setting is only taken from vmcs01. */
10131 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10132 exec_control |= vmcs_config.pin_based_exec_ctrl;
10133 if (vmx->hv_deadline_tsc == -1)
10134 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10135
10136 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010137 if (nested_cpu_has_posted_intr(vmcs12)) {
10138 /*
10139 * Note that we use L0's vector here and in
10140 * vmx_deliver_nested_posted_interrupt.
10141 */
10142 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10143 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +080010144 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +080010145 vmcs_write64(POSTED_INTR_DESC_ADDR,
10146 page_to_phys(vmx->nested.pi_desc_page) +
10147 (unsigned long)(vmcs12->posted_intr_desc_addr &
10148 (PAGE_SIZE - 1)));
10149 } else
10150 exec_control &= ~PIN_BASED_POSTED_INTR;
10151
Jan Kiszkaf41245002014-03-07 20:03:13 +010010152 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010153
Jan Kiszkaf41245002014-03-07 20:03:13 +010010154 vmx->nested.preemption_timer_expired = false;
10155 if (nested_cpu_has_preemption_timer(vmcs12))
10156 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010157
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010158 /*
10159 * Whether page-faults are trapped is determined by a combination of
10160 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10161 * If enable_ept, L0 doesn't care about page faults and we should
10162 * set all of these to L1's desires. However, if !enable_ept, L0 does
10163 * care about (at least some) page faults, and because it is not easy
10164 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10165 * to exit on each and every L2 page fault. This is done by setting
10166 * MASK=MATCH=0 and (see below) EB.PF=1.
10167 * Note that below we don't need special code to set EB.PF beyond the
10168 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10169 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10170 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
10171 *
10172 * A problem with this approach (when !enable_ept) is that L1 may be
10173 * injected with more page faults than it asked for. This could have
10174 * caused problems, but in practice existing hypervisors don't care.
10175 * To fix this, we will need to emulate the PFEC checking (on the L1
10176 * page tables), using walk_addr(), when injecting PFs to L1.
10177 */
10178 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10179 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10180 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10181 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10182
10183 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf41245002014-03-07 20:03:13 +010010184 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +080010185
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010186 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010187 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010188 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010189 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Dan Williamsdfa169b2016-06-02 11:17:24 -070010190 SECONDARY_EXEC_APIC_REGISTER_VIRT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010191 if (nested_cpu_has(vmcs12,
10192 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
10193 exec_control |= vmcs12->secondary_vm_exec_control;
10194
10195 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
10196 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010197 * If translation failed, no matter: This feature asks
10198 * to exit when accessing the given address, and if it
10199 * can never be accessed, this feature won't do
10200 * anything anyway.
10201 */
10202 if (!vmx->nested.apic_access_page)
10203 exec_control &=
10204 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
10205 else
10206 vmcs_write64(APIC_ACCESS_ADDR,
10207 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +080010208 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +020010209 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +010010210 exec_control |=
10211 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +080010212 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010213 }
10214
Wincy Van608406e2015-02-03 23:57:51 +080010215 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10216 vmcs_write64(EOI_EXIT_BITMAP0,
10217 vmcs12->eoi_exit_bitmap0);
10218 vmcs_write64(EOI_EXIT_BITMAP1,
10219 vmcs12->eoi_exit_bitmap1);
10220 vmcs_write64(EOI_EXIT_BITMAP2,
10221 vmcs12->eoi_exit_bitmap2);
10222 vmcs_write64(EOI_EXIT_BITMAP3,
10223 vmcs12->eoi_exit_bitmap3);
10224 vmcs_write16(GUEST_INTR_STATUS,
10225 vmcs12->guest_intr_status);
10226 }
10227
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010228 nested_ept_enabled = (exec_control & SECONDARY_EXEC_ENABLE_EPT) != 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010229 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10230 }
10231
10232
10233 /*
10234 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10235 * Some constant fields are set here by vmx_set_constant_host_state().
10236 * Other fields are different per CPU, and will be set later when
10237 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10238 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010239 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010240
10241 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010242 * Set the MSR load/store lists to match L0's settings.
10243 */
10244 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10245 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10246 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10247 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10248 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10249
10250 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010251 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10252 * entry, but only if the current (host) sp changed from the value
10253 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10254 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10255 * here we just force the write to happen on entry.
10256 */
10257 vmx->host_rsp = 0;
10258
10259 exec_control = vmx_exec_control(vmx); /* L0's desires */
10260 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10261 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10262 exec_control &= ~CPU_BASED_TPR_SHADOW;
10263 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010264
10265 if (exec_control & CPU_BASED_TPR_SHADOW) {
10266 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
10267 page_to_phys(vmx->nested.virtual_apic_page));
10268 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10269 }
10270
Wincy Van3af18d92015-02-03 23:49:31 +080010271 if (cpu_has_vmx_msr_bitmap() &&
Radim Krčmářd048c092016-08-08 20:16:22 +020010272 exec_control & CPU_BASED_USE_MSR_BITMAPS &&
10273 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
10274 ; /* MSR_BITMAP will be set by following vmx_set_efer. */
10275 else
Wincy Van3af18d92015-02-03 23:49:31 +080010276 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
10277
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010278 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010279 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010280 * Rather, exit every time.
10281 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010282 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10283 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10284
10285 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10286
10287 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10288 * bitwise-or of what L1 wants to trap for L2, and what we want to
10289 * trap. Note that CR0.TS also needs updating - we do this later.
10290 */
10291 update_exception_bitmap(vcpu);
10292 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10293 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10294
Nadav Har'El8049d652013-08-05 11:07:06 +030010295 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10296 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10297 * bits are further modified by vmx_set_efer() below.
10298 */
Jan Kiszkaf41245002014-03-07 20:03:13 +010010299 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010300
10301 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10302 * emulated by vmx_set_efer(), below.
10303 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010304 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010305 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10306 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010307 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10308
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010309 if (from_vmentry &&
10310 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010311 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010312 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010313 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010314 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010315 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010316
10317 set_cr4_guest_host_mask(vmx);
10318
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010319 if (from_vmentry &&
10320 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010321 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10322
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010323 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10324 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010325 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010326 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010327 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010328 if (kvm_has_tsc_control)
10329 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010330
10331 if (enable_vpid) {
10332 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010333 * There is no direct mapping between vpid02 and vpid12, the
10334 * vpid02 is per-vCPU for L0 and reused while the value of
10335 * vpid12 is changed w/ one invvpid during nested vmentry.
10336 * The vpid12 is allocated by L1 for L2, so it will not
10337 * influence global bitmap(for vpid01 and vpid02 allocation)
10338 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010339 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010340 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10341 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10342 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10343 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10344 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10345 }
10346 } else {
10347 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10348 vmx_flush_tlb(vcpu);
10349 }
10350
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010351 }
10352
Nadav Har'El155a97a2013-08-05 11:07:16 +030010353 if (nested_cpu_has_ept(vmcs12)) {
10354 kvm_mmu_unload(vcpu);
10355 nested_ept_init_mmu_context(vcpu);
10356 }
10357
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010358 /*
10359 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
10360 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
10361 * The CR0_READ_SHADOW is what L2 should have expected to read given
10362 * the specifications by L1; It's not enough to take
10363 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10364 * have more bits than L1 expected.
10365 */
10366 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10367 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10368
10369 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10370 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10371
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010372 if (from_vmentry &&
10373 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010374 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10375 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10376 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10377 else
10378 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10379 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10380 vmx_set_efer(vcpu, vcpu->arch.efer);
10381
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010382 /* Shadow page tables on either EPT or shadow page tables. */
10383 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_ept_enabled,
10384 entry_failure_code))
10385 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010386
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010387 kvm_mmu_reset_context(vcpu);
10388
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010389 if (!enable_ept)
10390 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10391
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010392 /*
10393 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10394 */
10395 if (enable_ept) {
10396 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10397 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10398 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10399 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10400 }
10401
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010402 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10403 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010404 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010405}
10406
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010407/*
10408 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10409 * for running an L2 nested guest.
10410 */
10411static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10412{
10413 struct vmcs12 *vmcs12;
10414 struct vcpu_vmx *vmx = to_vmx(vcpu);
10415 int cpu;
10416 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +020010417 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +030010418 u32 msr_entry_idx;
Ladi Prosekee146c12016-11-30 16:03:09 +010010419 unsigned long exit_qualification;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010420
Kyle Hueyeb277562016-11-29 12:40:39 -080010421 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010422 return 1;
10423
Kyle Hueyeb277562016-11-29 12:40:39 -080010424 if (!nested_vmx_check_vmcs12(vcpu))
10425 goto out;
10426
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010427 vmcs12 = get_vmcs12(vcpu);
10428
Abel Gordon012f83c2013-04-18 14:39:25 +030010429 if (enable_shadow_vmcs)
10430 copy_shadow_to_vmcs12(vmx);
10431
Nadav Har'El7c177932011-05-25 23:12:04 +030010432 /*
10433 * The nested entry process starts with enforcing various prerequisites
10434 * on vmcs12 as required by the Intel SDM, and act appropriately when
10435 * they fail: As the SDM explains, some conditions should cause the
10436 * instruction to fail, while others will cause the instruction to seem
10437 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10438 * To speed up the normal (success) code path, we should avoid checking
10439 * for misconfigurations which will anyway be caught by the processor
10440 * when using the merged vmcs02.
10441 */
10442 if (vmcs12->launch_state == launch) {
10443 nested_vmx_failValid(vcpu,
10444 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10445 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010446 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010447 }
10448
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010449 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10450 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010451 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010452 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010453 }
10454
Wincy Van3af18d92015-02-03 23:49:31 +080010455 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010456 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010457 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010458 }
10459
Wincy Van3af18d92015-02-03 23:49:31 +080010460 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010461 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010462 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010463 }
10464
Wincy Vanf2b93282015-02-03 23:56:03 +080010465 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
10466 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010467 goto out;
Wincy Vanf2b93282015-02-03 23:56:03 +080010468 }
10469
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010470 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
10471 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010472 goto out;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010473 }
10474
Nadav Har'El7c177932011-05-25 23:12:04 +030010475 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
David Matlack0115f9c2016-11-29 18:14:06 -080010476 vmx->nested.nested_vmx_procbased_ctls_low,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010477 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010478 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010479 vmx->nested.nested_vmx_secondary_ctls_low,
10480 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010481 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010482 vmx->nested.nested_vmx_pinbased_ctls_low,
10483 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010484 !vmx_control_verify(vmcs12->vm_exit_controls,
David Matlack0115f9c2016-11-29 18:14:06 -080010485 vmx->nested.nested_vmx_exit_ctls_low,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010486 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010487 !vmx_control_verify(vmcs12->vm_entry_controls,
David Matlack0115f9c2016-11-29 18:14:06 -080010488 vmx->nested.nested_vmx_entry_ctls_low,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010489 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +030010490 {
10491 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010492 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010493 }
10494
David Matlack38991522016-11-29 18:14:08 -080010495 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010496 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10497 !nested_cr3_valid(vcpu, vmcs12->host_cr3)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010498 nested_vmx_failValid(vcpu,
10499 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
Kyle Hueyeb277562016-11-29 12:40:39 -080010500 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010501 }
10502
David Matlack38991522016-11-29 18:14:08 -080010503 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10504 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010505 nested_vmx_entry_failure(vcpu, vmcs12,
10506 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
David Matlackb4280182016-12-19 12:48:41 -080010507 return 1;
Nadav Har'El7c177932011-05-25 23:12:04 +030010508 }
10509 if (vmcs12->vmcs_link_pointer != -1ull) {
10510 nested_vmx_entry_failure(vcpu, vmcs12,
10511 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
David Matlackb4280182016-12-19 12:48:41 -080010512 return 1;
Nadav Har'El7c177932011-05-25 23:12:04 +030010513 }
10514
10515 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +020010516 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +020010517 * are performed on the field for the IA32_EFER MSR:
10518 * - Bits reserved in the IA32_EFER MSR must be 0.
10519 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10520 * the IA-32e mode guest VM-exit control. It must also be identical
10521 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10522 * CR0.PG) is 1.
10523 */
10524 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
10525 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10526 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10527 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10528 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10529 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
10530 nested_vmx_entry_failure(vcpu, vmcs12,
10531 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
David Matlackb4280182016-12-19 12:48:41 -080010532 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010533 }
10534 }
10535
10536 /*
10537 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10538 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10539 * the values of the LMA and LME bits in the field must each be that of
10540 * the host address-space size VM-exit control.
10541 */
10542 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10543 ia32e = (vmcs12->vm_exit_controls &
10544 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10545 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10546 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10547 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
10548 nested_vmx_entry_failure(vcpu, vmcs12,
10549 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
David Matlackb4280182016-12-19 12:48:41 -080010550 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010551 }
10552 }
10553
10554 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010555 * We're finally done with prerequisite checking, and can start with
10556 * the nested entry.
10557 */
10558
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010559 vmcs02 = nested_get_current_vmcs02(vmx);
10560 if (!vmcs02)
10561 return -ENOMEM;
10562
Kyle Huey6affcbe2016-11-29 12:40:40 -080010563 /*
10564 * After this point, the trap flag no longer triggers a singlestep trap
10565 * on the vm entry instructions. Don't call
10566 * kvm_skip_emulated_instruction.
10567 */
Kyle Hueyeb277562016-11-29 12:40:39 -080010568 skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010569 enter_guest_mode(vcpu);
10570
Jan Kiszka2996fca2014-06-16 13:59:43 +020010571 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10572 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10573
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010574 cpu = get_cpu();
10575 vmx->loaded_vmcs = vmcs02;
10576 vmx_vcpu_put(vcpu);
10577 vmx_vcpu_load(vcpu, cpu);
10578 vcpu->cpu = cpu;
10579 put_cpu();
10580
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010581 vmx_segment_cache_clear(vmx);
10582
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010583 if (prepare_vmcs02(vcpu, vmcs12, true, &exit_qualification)) {
Ladi Prosekee146c12016-11-30 16:03:09 +010010584 leave_guest_mode(vcpu);
10585 vmx_load_vmcs01(vcpu);
10586 nested_vmx_entry_failure(vcpu, vmcs12,
10587 EXIT_REASON_INVALID_STATE, exit_qualification);
10588 return 1;
10589 }
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010590
Wincy Vanff651cb2014-12-11 08:52:58 +030010591 msr_entry_idx = nested_vmx_load_msr(vcpu,
10592 vmcs12->vm_entry_msr_load_addr,
10593 vmcs12->vm_entry_msr_load_count);
10594 if (msr_entry_idx) {
10595 leave_guest_mode(vcpu);
10596 vmx_load_vmcs01(vcpu);
10597 nested_vmx_entry_failure(vcpu, vmcs12,
10598 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10599 return 1;
10600 }
10601
10602 vmcs12->launch_state = 1;
10603
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010604 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010605 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010606
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010607 vmx->nested.nested_run_pending = 1;
10608
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010609 /*
10610 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10611 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10612 * returned as far as L1 is concerned. It will only return (and set
10613 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10614 */
10615 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010616
10617out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010618 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010619}
10620
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010621/*
10622 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10623 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10624 * This function returns the new value we should put in vmcs12.guest_cr0.
10625 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10626 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10627 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10628 * didn't trap the bit, because if L1 did, so would L0).
10629 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10630 * been modified by L2, and L1 knows it. So just leave the old value of
10631 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10632 * isn't relevant, because if L0 traps this bit it can set it to anything.
10633 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10634 * changed these bits, and therefore they need to be updated, but L0
10635 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10636 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10637 */
10638static inline unsigned long
10639vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10640{
10641 return
10642 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10643 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10644 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10645 vcpu->arch.cr0_guest_owned_bits));
10646}
10647
10648static inline unsigned long
10649vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10650{
10651 return
10652 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10653 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10654 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10655 vcpu->arch.cr4_guest_owned_bits));
10656}
10657
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010658static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10659 struct vmcs12 *vmcs12)
10660{
10661 u32 idt_vectoring;
10662 unsigned int nr;
10663
Gleb Natapov851eb6672013-09-25 12:51:34 +030010664 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010665 nr = vcpu->arch.exception.nr;
10666 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10667
10668 if (kvm_exception_is_soft(nr)) {
10669 vmcs12->vm_exit_instruction_len =
10670 vcpu->arch.event_exit_inst_len;
10671 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10672 } else
10673 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10674
10675 if (vcpu->arch.exception.has_error_code) {
10676 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10677 vmcs12->idt_vectoring_error_code =
10678 vcpu->arch.exception.error_code;
10679 }
10680
10681 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010682 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010683 vmcs12->idt_vectoring_info_field =
10684 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10685 } else if (vcpu->arch.interrupt.pending) {
10686 nr = vcpu->arch.interrupt.nr;
10687 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10688
10689 if (vcpu->arch.interrupt.soft) {
10690 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10691 vmcs12->vm_entry_instruction_len =
10692 vcpu->arch.event_exit_inst_len;
10693 } else
10694 idt_vectoring |= INTR_TYPE_EXT_INTR;
10695
10696 vmcs12->idt_vectoring_info_field = idt_vectoring;
10697 }
10698}
10699
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010700static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10701{
10702 struct vcpu_vmx *vmx = to_vmx(vcpu);
10703
Jan Kiszkaf41245002014-03-07 20:03:13 +010010704 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10705 vmx->nested.preemption_timer_expired) {
10706 if (vmx->nested.nested_run_pending)
10707 return -EBUSY;
10708 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10709 return 0;
10710 }
10711
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010712 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010713 if (vmx->nested.nested_run_pending ||
10714 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010715 return -EBUSY;
10716 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10717 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10718 INTR_INFO_VALID_MASK, 0);
10719 /*
10720 * The NMI-triggered VM exit counts as injection:
10721 * clear this one and block further NMIs.
10722 */
10723 vcpu->arch.nmi_pending = 0;
10724 vmx_set_nmi_mask(vcpu, true);
10725 return 0;
10726 }
10727
10728 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10729 nested_exit_on_intr(vcpu)) {
10730 if (vmx->nested.nested_run_pending)
10731 return -EBUSY;
10732 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010733 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010734 }
10735
David Hildenbrand6342c502017-01-25 11:58:58 +010010736 vmx_complete_nested_posted_interrupt(vcpu);
10737 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010738}
10739
Jan Kiszkaf41245002014-03-07 20:03:13 +010010740static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10741{
10742 ktime_t remaining =
10743 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10744 u64 value;
10745
10746 if (ktime_to_ns(remaining) <= 0)
10747 return 0;
10748
10749 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10750 do_div(value, 1000000);
10751 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10752}
10753
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010754/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010755 * Update the guest state fields of vmcs12 to reflect changes that
10756 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
10757 * VM-entry controls is also updated, since this is really a guest
10758 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010759 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010760static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010761{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010762 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10763 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10764
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010765 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10766 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10767 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10768
10769 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10770 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10771 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10772 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10773 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10774 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10775 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10776 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10777 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10778 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10779 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10780 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10781 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10782 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10783 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10784 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10785 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10786 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10787 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10788 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10789 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10790 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10791 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10792 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10793 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10794 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10795 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10796 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10797 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10798 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10799 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10800 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10801 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10802 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10803 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10804 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10805
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010806 vmcs12->guest_interruptibility_info =
10807 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10808 vmcs12->guest_pending_dbg_exceptions =
10809 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010810 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10811 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10812 else
10813 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010814
Jan Kiszkaf41245002014-03-07 20:03:13 +010010815 if (nested_cpu_has_preemption_timer(vmcs12)) {
10816 if (vmcs12->vm_exit_controls &
10817 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10818 vmcs12->vmx_preemption_timer_value =
10819 vmx_get_preemption_timer_value(vcpu);
10820 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10821 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010822
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010823 /*
10824 * In some cases (usually, nested EPT), L2 is allowed to change its
10825 * own CR3 without exiting. If it has changed it, we must keep it.
10826 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10827 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10828 *
10829 * Additionally, restore L2's PDPTR to vmcs12.
10830 */
10831 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010832 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010833 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10834 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10835 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10836 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10837 }
10838
Jan Dakinevich119a9c02016-09-04 21:22:47 +030010839 if (nested_cpu_has_ept(vmcs12))
10840 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
10841
Wincy Van608406e2015-02-03 23:57:51 +080010842 if (nested_cpu_has_vid(vmcs12))
10843 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10844
Jan Kiszkac18911a2013-03-13 16:06:41 +010010845 vmcs12->vm_entry_controls =
10846 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010847 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010848
Jan Kiszka2996fca2014-06-16 13:59:43 +020010849 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10850 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10851 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10852 }
10853
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010854 /* TODO: These cannot have changed unless we have MSR bitmaps and
10855 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010856 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010857 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010858 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10859 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010860 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10861 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10862 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010010863 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010864 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010865 if (nested_cpu_has_xsaves(vmcs12))
10866 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010867}
10868
10869/*
10870 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10871 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10872 * and this function updates it to reflect the changes to the guest state while
10873 * L2 was running (and perhaps made some exits which were handled directly by L0
10874 * without going back to L1), and to reflect the exit reason.
10875 * Note that we do not have to copy here all VMCS fields, just those that
10876 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10877 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10878 * which already writes to vmcs12 directly.
10879 */
10880static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10881 u32 exit_reason, u32 exit_intr_info,
10882 unsigned long exit_qualification)
10883{
10884 /* update guest state fields: */
10885 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010886
10887 /* update exit information fields: */
10888
Jan Kiszka533558b2014-01-04 18:47:20 +010010889 vmcs12->vm_exit_reason = exit_reason;
10890 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010891
Jan Kiszka533558b2014-01-04 18:47:20 +010010892 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010893 if ((vmcs12->vm_exit_intr_info &
10894 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10895 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10896 vmcs12->vm_exit_intr_error_code =
10897 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010898 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010899 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10900 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10901
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010902 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10903 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10904 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010905 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010906
10907 /*
10908 * Transfer the event that L0 or L1 may wanted to inject into
10909 * L2 to IDT_VECTORING_INFO_FIELD.
10910 */
10911 vmcs12_save_pending_event(vcpu, vmcs12);
10912 }
10913
10914 /*
10915 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10916 * preserved above and would only end up incorrectly in L1.
10917 */
10918 vcpu->arch.nmi_injected = false;
10919 kvm_clear_exception_queue(vcpu);
10920 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010921}
10922
10923/*
10924 * A part of what we need to when the nested L2 guest exits and we want to
10925 * run its L1 parent, is to reset L1's guest state to the host state specified
10926 * in vmcs12.
10927 * This function is to be called not only on normal nested exit, but also on
10928 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10929 * Failures During or After Loading Guest State").
10930 * This function should be called when the active VMCS is L1's (vmcs01).
10931 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010932static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10933 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010934{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010935 struct kvm_segment seg;
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010936 unsigned long entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010937
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010938 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10939 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010940 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010941 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10942 else
10943 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10944 vmx_set_efer(vcpu, vcpu->arch.efer);
10945
10946 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10947 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010948 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010949 /*
10950 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10951 * actually changed, because it depends on the current state of
10952 * fpu_active (which may have changed).
10953 * Note that vmx_set_cr0 refers to efer set above.
10954 */
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020010955 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010956 /*
10957 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10958 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10959 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10960 */
10961 update_exception_bitmap(vcpu);
10962 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10963 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10964
10965 /*
10966 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10967 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10968 */
10969 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10970 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10971
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010972 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010973
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010974 /*
10975 * Only PDPTE load can fail as the value of cr3 was checked on entry and
10976 * couldn't have changed.
10977 */
10978 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
10979 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010980
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010981 if (!enable_ept)
10982 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10983
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010984 if (enable_vpid) {
10985 /*
10986 * Trivially support vpid by letting L2s share their parent
10987 * L1's vpid. TODO: move to a more elaborate solution, giving
10988 * each L2 its own vpid and exposing the vpid feature to L1.
10989 */
10990 vmx_flush_tlb(vcpu);
10991 }
10992
10993
10994 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10995 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10996 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10997 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10998 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010999
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011000 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11001 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11002 vmcs_write64(GUEST_BNDCFGS, 0);
11003
Jan Kiszka44811c02013-08-04 17:17:27 +020011004 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011005 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011006 vcpu->arch.pat = vmcs12->host_ia32_pat;
11007 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011008 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11009 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11010 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011011
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011012 /* Set L1 segment info according to Intel SDM
11013 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11014 seg = (struct kvm_segment) {
11015 .base = 0,
11016 .limit = 0xFFFFFFFF,
11017 .selector = vmcs12->host_cs_selector,
11018 .type = 11,
11019 .present = 1,
11020 .s = 1,
11021 .g = 1
11022 };
11023 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11024 seg.l = 1;
11025 else
11026 seg.db = 1;
11027 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11028 seg = (struct kvm_segment) {
11029 .base = 0,
11030 .limit = 0xFFFFFFFF,
11031 .type = 3,
11032 .present = 1,
11033 .s = 1,
11034 .db = 1,
11035 .g = 1
11036 };
11037 seg.selector = vmcs12->host_ds_selector;
11038 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11039 seg.selector = vmcs12->host_es_selector;
11040 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11041 seg.selector = vmcs12->host_ss_selector;
11042 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11043 seg.selector = vmcs12->host_fs_selector;
11044 seg.base = vmcs12->host_fs_base;
11045 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11046 seg.selector = vmcs12->host_gs_selector;
11047 seg.base = vmcs12->host_gs_base;
11048 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11049 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011050 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011051 .limit = 0x67,
11052 .selector = vmcs12->host_tr_selector,
11053 .type = 11,
11054 .present = 1
11055 };
11056 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11057
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011058 kvm_set_dr(vcpu, 7, 0x400);
11059 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011060
Wincy Van3af18d92015-02-03 23:49:31 +080011061 if (cpu_has_vmx_msr_bitmap())
11062 vmx_set_msr_bitmap(vcpu);
11063
Wincy Vanff651cb2014-12-11 08:52:58 +030011064 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11065 vmcs12->vm_exit_msr_load_count))
11066 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011067}
11068
11069/*
11070 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11071 * and modify vmcs12 to make it see what it would expect to see there if
11072 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11073 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011074static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11075 u32 exit_intr_info,
11076 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011077{
11078 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011079 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011080 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011081
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011082 /* trying to cancel vmlaunch/vmresume is a bug */
11083 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11084
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011085 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011086 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11087 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011088
Wincy Vanff651cb2014-12-11 08:52:58 +030011089 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11090 vmcs12->vm_exit_msr_store_count))
11091 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11092
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011093 if (unlikely(vmx->fail))
11094 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11095
Wanpeng Lif3380ca52014-08-05 12:42:23 +080011096 vmx_load_vmcs01(vcpu);
11097
Bandan Das77b0f5d2014-04-19 18:17:45 -040011098 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
11099 && nested_exit_intr_ack_set(vcpu)) {
11100 int irq = kvm_cpu_get_interrupt(vcpu);
11101 WARN_ON(irq < 0);
11102 vmcs12->vm_exit_intr_info = irq |
11103 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11104 }
11105
Jan Kiszka542060e2014-01-04 18:47:21 +010011106 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11107 vmcs12->exit_qualification,
11108 vmcs12->idt_vectoring_info_field,
11109 vmcs12->vm_exit_intr_info,
11110 vmcs12->vm_exit_intr_error_code,
11111 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011112
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011113 vm_entry_controls_reset_shadow(vmx);
11114 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011115 vmx_segment_cache_clear(vmx);
11116
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011117 /* if no vmcs02 cache requested, remove the one we used */
11118 if (VMCS02_POOL_SIZE == 0)
11119 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11120
11121 load_vmcs12_host_state(vcpu, vmcs12);
11122
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011123 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011124 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11125 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011126 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011127 if (vmx->hv_deadline_tsc == -1)
11128 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11129 PIN_BASED_VMX_PREEMPTION_TIMER);
11130 else
11131 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11132 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011133 if (kvm_has_tsc_control)
11134 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011135
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011136 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11137 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11138 vmx_set_virtual_x2apic_mode(vcpu,
11139 vcpu->arch.apic_base & X2APIC_ENABLE);
11140 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011141
11142 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11143 vmx->host_rsp = 0;
11144
11145 /* Unpin physical memory we referred to in vmcs02 */
11146 if (vmx->nested.apic_access_page) {
11147 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011148 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011149 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011150 if (vmx->nested.virtual_apic_page) {
11151 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011152 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011153 }
Wincy Van705699a2015-02-03 23:58:17 +080011154 if (vmx->nested.pi_desc_page) {
11155 kunmap(vmx->nested.pi_desc_page);
11156 nested_release_page(vmx->nested.pi_desc_page);
11157 vmx->nested.pi_desc_page = NULL;
11158 vmx->nested.pi_desc = NULL;
11159 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011160
11161 /*
Tang Chen38b99172014-09-24 15:57:54 +080011162 * We are now running in L2, mmu_notifier will force to reload the
11163 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11164 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011165 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011166
11167 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011168 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11169 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11170 * success or failure flag accordingly.
11171 */
11172 if (unlikely(vmx->fail)) {
11173 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011174 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011175 } else
11176 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011177 if (enable_shadow_vmcs)
11178 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011179
11180 /* in case we halted in L2 */
11181 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011182}
11183
Nadav Har'El7c177932011-05-25 23:12:04 +030011184/*
Jan Kiszka42124922014-01-04 18:47:19 +010011185 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11186 */
11187static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11188{
11189 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010011190 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010011191 free_nested(to_vmx(vcpu));
11192}
11193
11194/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011195 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11196 * 23.7 "VM-entry failures during or after loading guest state" (this also
11197 * lists the acceptable exit-reason and exit-qualification parameters).
11198 * It should only be called before L2 actually succeeded to run, and when
11199 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11200 */
11201static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11202 struct vmcs12 *vmcs12,
11203 u32 reason, unsigned long qualification)
11204{
11205 load_vmcs12_host_state(vcpu, vmcs12);
11206 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11207 vmcs12->exit_qualification = qualification;
11208 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011209 if (enable_shadow_vmcs)
11210 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011211}
11212
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011213static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11214 struct x86_instruction_info *info,
11215 enum x86_intercept_stage stage)
11216{
11217 return X86EMUL_CONTINUE;
11218}
11219
Yunhong Jiang64672c92016-06-13 14:19:59 -070011220#ifdef CONFIG_X86_64
11221/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11222static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11223 u64 divisor, u64 *result)
11224{
11225 u64 low = a << shift, high = a >> (64 - shift);
11226
11227 /* To avoid the overflow on divq */
11228 if (high >= divisor)
11229 return 1;
11230
11231 /* Low hold the result, high hold rem which is discarded */
11232 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11233 "rm" (divisor), "0" (low), "1" (high));
11234 *result = low;
11235
11236 return 0;
11237}
11238
11239static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11240{
11241 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011242 u64 tscl = rdtsc();
11243 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11244 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011245
11246 /* Convert to host delta tsc if tsc scaling is enabled */
11247 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11248 u64_shl_div_u64(delta_tsc,
11249 kvm_tsc_scaling_ratio_frac_bits,
11250 vcpu->arch.tsc_scaling_ratio,
11251 &delta_tsc))
11252 return -ERANGE;
11253
11254 /*
11255 * If the delta tsc can't fit in the 32 bit after the multi shift,
11256 * we can't use the preemption timer.
11257 * It's possible that it fits on later vmentries, but checking
11258 * on every vmentry is costly so we just use an hrtimer.
11259 */
11260 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11261 return -ERANGE;
11262
11263 vmx->hv_deadline_tsc = tscl + delta_tsc;
11264 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11265 PIN_BASED_VMX_PREEMPTION_TIMER);
11266 return 0;
11267}
11268
11269static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11270{
11271 struct vcpu_vmx *vmx = to_vmx(vcpu);
11272 vmx->hv_deadline_tsc = -1;
11273 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11274 PIN_BASED_VMX_PREEMPTION_TIMER);
11275}
11276#endif
11277
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011278static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011279{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011280 if (ple_gap)
11281 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011282}
11283
Kai Huang843e4332015-01-28 10:54:28 +080011284static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11285 struct kvm_memory_slot *slot)
11286{
11287 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11288 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11289}
11290
11291static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11292 struct kvm_memory_slot *slot)
11293{
11294 kvm_mmu_slot_set_dirty(kvm, slot);
11295}
11296
11297static void vmx_flush_log_dirty(struct kvm *kvm)
11298{
11299 kvm_flush_pml_buffers(kvm);
11300}
11301
11302static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11303 struct kvm_memory_slot *memslot,
11304 gfn_t offset, unsigned long mask)
11305{
11306 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11307}
11308
Feng Wuefc64402015-09-18 22:29:51 +080011309/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011310 * This routine does the following things for vCPU which is going
11311 * to be blocked if VT-d PI is enabled.
11312 * - Store the vCPU to the wakeup list, so when interrupts happen
11313 * we can find the right vCPU to wake up.
11314 * - Change the Posted-interrupt descriptor as below:
11315 * 'NDST' <-- vcpu->pre_pcpu
11316 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11317 * - If 'ON' is set during this process, which means at least one
11318 * interrupt is posted for this vCPU, we cannot block it, in
11319 * this case, return 1, otherwise, return 0.
11320 *
11321 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011322static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011323{
11324 unsigned long flags;
11325 unsigned int dest;
11326 struct pi_desc old, new;
11327 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11328
11329 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011330 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11331 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011332 return 0;
11333
11334 vcpu->pre_pcpu = vcpu->cpu;
11335 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11336 vcpu->pre_pcpu), flags);
11337 list_add_tail(&vcpu->blocked_vcpu_list,
11338 &per_cpu(blocked_vcpu_on_cpu,
11339 vcpu->pre_pcpu));
11340 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11341 vcpu->pre_pcpu), flags);
11342
11343 do {
11344 old.control = new.control = pi_desc->control;
11345
11346 /*
11347 * We should not block the vCPU if
11348 * an interrupt is posted for it.
11349 */
11350 if (pi_test_on(pi_desc) == 1) {
11351 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11352 vcpu->pre_pcpu), flags);
11353 list_del(&vcpu->blocked_vcpu_list);
11354 spin_unlock_irqrestore(
11355 &per_cpu(blocked_vcpu_on_cpu_lock,
11356 vcpu->pre_pcpu), flags);
11357 vcpu->pre_pcpu = -1;
11358
11359 return 1;
11360 }
11361
11362 WARN((pi_desc->sn == 1),
11363 "Warning: SN field of posted-interrupts "
11364 "is set before blocking\n");
11365
11366 /*
11367 * Since vCPU can be preempted during this process,
11368 * vcpu->cpu could be different with pre_pcpu, we
11369 * need to set pre_pcpu as the destination of wakeup
11370 * notification event, then we can find the right vCPU
11371 * to wakeup in wakeup handler if interrupts happen
11372 * when the vCPU is in blocked state.
11373 */
11374 dest = cpu_physical_id(vcpu->pre_pcpu);
11375
11376 if (x2apic_enabled())
11377 new.ndst = dest;
11378 else
11379 new.ndst = (dest << 8) & 0xFF00;
11380
11381 /* set 'NV' to 'wakeup vector' */
11382 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11383 } while (cmpxchg(&pi_desc->control, old.control,
11384 new.control) != old.control);
11385
11386 return 0;
11387}
11388
Yunhong Jiangbc225122016-06-13 14:19:58 -070011389static int vmx_pre_block(struct kvm_vcpu *vcpu)
11390{
11391 if (pi_pre_block(vcpu))
11392 return 1;
11393
Yunhong Jiang64672c92016-06-13 14:19:59 -070011394 if (kvm_lapic_hv_timer_in_use(vcpu))
11395 kvm_lapic_switch_to_sw_timer(vcpu);
11396
Yunhong Jiangbc225122016-06-13 14:19:58 -070011397 return 0;
11398}
11399
11400static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011401{
11402 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11403 struct pi_desc old, new;
11404 unsigned int dest;
11405 unsigned long flags;
11406
11407 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011408 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11409 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011410 return;
11411
11412 do {
11413 old.control = new.control = pi_desc->control;
11414
11415 dest = cpu_physical_id(vcpu->cpu);
11416
11417 if (x2apic_enabled())
11418 new.ndst = dest;
11419 else
11420 new.ndst = (dest << 8) & 0xFF00;
11421
11422 /* Allow posting non-urgent interrupts */
11423 new.sn = 0;
11424
11425 /* set 'NV' to 'notification vector' */
11426 new.nv = POSTED_INTR_VECTOR;
11427 } while (cmpxchg(&pi_desc->control, old.control,
11428 new.control) != old.control);
11429
11430 if(vcpu->pre_pcpu != -1) {
11431 spin_lock_irqsave(
11432 &per_cpu(blocked_vcpu_on_cpu_lock,
11433 vcpu->pre_pcpu), flags);
11434 list_del(&vcpu->blocked_vcpu_list);
11435 spin_unlock_irqrestore(
11436 &per_cpu(blocked_vcpu_on_cpu_lock,
11437 vcpu->pre_pcpu), flags);
11438 vcpu->pre_pcpu = -1;
11439 }
11440}
11441
Yunhong Jiangbc225122016-06-13 14:19:58 -070011442static void vmx_post_block(struct kvm_vcpu *vcpu)
11443{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011444 if (kvm_x86_ops->set_hv_timer)
11445 kvm_lapic_switch_to_hv_timer(vcpu);
11446
Yunhong Jiangbc225122016-06-13 14:19:58 -070011447 pi_post_block(vcpu);
11448}
11449
Feng Wubf9f6ac2015-09-18 22:29:55 +080011450/*
Feng Wuefc64402015-09-18 22:29:51 +080011451 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11452 *
11453 * @kvm: kvm
11454 * @host_irq: host irq of the interrupt
11455 * @guest_irq: gsi of the interrupt
11456 * @set: set or unset PI
11457 * returns 0 on success, < 0 on failure
11458 */
11459static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11460 uint32_t guest_irq, bool set)
11461{
11462 struct kvm_kernel_irq_routing_entry *e;
11463 struct kvm_irq_routing_table *irq_rt;
11464 struct kvm_lapic_irq irq;
11465 struct kvm_vcpu *vcpu;
11466 struct vcpu_data vcpu_info;
11467 int idx, ret = -EINVAL;
11468
11469 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011470 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11471 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011472 return 0;
11473
11474 idx = srcu_read_lock(&kvm->irq_srcu);
11475 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11476 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11477
11478 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11479 if (e->type != KVM_IRQ_ROUTING_MSI)
11480 continue;
11481 /*
11482 * VT-d PI cannot support posting multicast/broadcast
11483 * interrupts to a vCPU, we still use interrupt remapping
11484 * for these kind of interrupts.
11485 *
11486 * For lowest-priority interrupts, we only support
11487 * those with single CPU as the destination, e.g. user
11488 * configures the interrupts via /proc/irq or uses
11489 * irqbalance to make the interrupts single-CPU.
11490 *
11491 * We will support full lowest-priority interrupt later.
11492 */
11493
Radim Krčmář371313132016-07-12 22:09:27 +020011494 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011495 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11496 /*
11497 * Make sure the IRTE is in remapped mode if
11498 * we don't handle it in posted mode.
11499 */
11500 ret = irq_set_vcpu_affinity(host_irq, NULL);
11501 if (ret < 0) {
11502 printk(KERN_INFO
11503 "failed to back to remapped mode, irq: %u\n",
11504 host_irq);
11505 goto out;
11506 }
11507
Feng Wuefc64402015-09-18 22:29:51 +080011508 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011509 }
Feng Wuefc64402015-09-18 22:29:51 +080011510
11511 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11512 vcpu_info.vector = irq.vector;
11513
Feng Wub6ce9782016-01-25 16:53:35 +080011514 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011515 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11516
11517 if (set)
11518 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11519 else {
11520 /* suppress notification event before unposting */
11521 pi_set_sn(vcpu_to_pi_desc(vcpu));
11522 ret = irq_set_vcpu_affinity(host_irq, NULL);
11523 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11524 }
11525
11526 if (ret < 0) {
11527 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11528 __func__);
11529 goto out;
11530 }
11531 }
11532
11533 ret = 0;
11534out:
11535 srcu_read_unlock(&kvm->irq_srcu, idx);
11536 return ret;
11537}
11538
Ashok Rajc45dcc72016-06-22 14:59:56 +080011539static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11540{
11541 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11542 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11543 FEATURE_CONTROL_LMCE;
11544 else
11545 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11546 ~FEATURE_CONTROL_LMCE;
11547}
11548
Kees Cook404f6aa2016-08-08 16:29:06 -070011549static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011550 .cpu_has_kvm_support = cpu_has_kvm_support,
11551 .disabled_by_bios = vmx_disabled_by_bios,
11552 .hardware_setup = hardware_setup,
11553 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011554 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011555 .hardware_enable = hardware_enable,
11556 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011557 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011558 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011559
11560 .vcpu_create = vmx_create_vcpu,
11561 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011562 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011563
Avi Kivity04d2cc72007-09-10 18:10:54 +030011564 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011565 .vcpu_load = vmx_vcpu_load,
11566 .vcpu_put = vmx_vcpu_put,
11567
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011568 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011569 .get_msr = vmx_get_msr,
11570 .set_msr = vmx_set_msr,
11571 .get_segment_base = vmx_get_segment_base,
11572 .get_segment = vmx_get_segment,
11573 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011574 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011575 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011576 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011577 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011578 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011579 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011580 .set_cr3 = vmx_set_cr3,
11581 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011582 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011583 .get_idt = vmx_get_idt,
11584 .set_idt = vmx_set_idt,
11585 .get_gdt = vmx_get_gdt,
11586 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011587 .get_dr6 = vmx_get_dr6,
11588 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011589 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011590 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011591 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011592 .get_rflags = vmx_get_rflags,
11593 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011594
11595 .get_pkru = vmx_get_pkru,
11596
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020011597 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020011598 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011599
11600 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011601
Avi Kivity6aa8b732006-12-10 02:21:36 -080011602 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011603 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011604 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011605 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11606 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011607 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011608 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011609 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011610 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011611 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011612 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011613 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011614 .get_nmi_mask = vmx_get_nmi_mask,
11615 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011616 .enable_nmi_window = enable_nmi_window,
11617 .enable_irq_window = enable_irq_window,
11618 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011619 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011620 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011621 .get_enable_apicv = vmx_get_enable_apicv,
11622 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011623 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011624 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011625 .hwapic_irr_update = vmx_hwapic_irr_update,
11626 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011627 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11628 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011629
Izik Eiduscbc94022007-10-25 00:29:55 +020011630 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011631 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011632 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011633
Avi Kivity586f9602010-11-18 13:09:54 +020011634 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011635
Sheng Yang17cc3932010-01-05 19:02:27 +080011636 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011637
11638 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011639
11640 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011641 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011642
11643 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011644
11645 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011646
11647 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011648
11649 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011650
11651 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011652 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011653 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011654 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011655
11656 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011657
11658 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011659
11660 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11661 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11662 .flush_log_dirty = vmx_flush_log_dirty,
11663 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020011664
Feng Wubf9f6ac2015-09-18 22:29:55 +080011665 .pre_block = vmx_pre_block,
11666 .post_block = vmx_post_block,
11667
Wei Huang25462f72015-06-19 15:45:05 +020011668 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011669
11670 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011671
11672#ifdef CONFIG_X86_64
11673 .set_hv_timer = vmx_set_hv_timer,
11674 .cancel_hv_timer = vmx_cancel_hv_timer,
11675#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011676
11677 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011678};
11679
11680static int __init vmx_init(void)
11681{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011682 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11683 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011684 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011685 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011686
Dave Young2965faa2015-09-09 15:38:55 -070011687#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011688 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11689 crash_vmclear_local_loaded_vmcss);
11690#endif
11691
He, Qingfdef3ad2007-04-30 09:45:24 +030011692 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011693}
11694
11695static void __exit vmx_exit(void)
11696{
Dave Young2965faa2015-09-09 15:38:55 -070011697#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011698 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011699 synchronize_rcu();
11700#endif
11701
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011702 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011703}
11704
11705module_init(vmx_init)
11706module_exit(vmx_exit)