blob: c1d655c10fd24559fe6cddc6d4128004db80781b [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/*
136 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
137 * ple_gap: upper bound on the amount of time between two successive
138 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500139 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800140 * ple_window: upper bound on the amount of time a guest is allowed to execute
141 * in a PAUSE loop. Tests indicate that most spinlocks are held for
142 * less than 2^12 cycles
143 * Time is measured based on a counter that runs at the same rate as the TSC,
144 * refer SDM volume 3b section 21.6.13 & 22.1.3.
145 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200146#define KVM_VMX_DEFAULT_PLE_GAP 128
147#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
148#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
149#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
150#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
151 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
152
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800153static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
154module_param(ple_gap, int, S_IRUGO);
155
156static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
157module_param(ple_window, int, S_IRUGO);
158
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200159/* Default doubles per-vcpu window every exit. */
160static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
161module_param(ple_window_grow, int, S_IRUGO);
162
163/* Default resets per-vcpu window every exit to ple_window. */
164static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
165module_param(ple_window_shrink, int, S_IRUGO);
166
167/* Default is to compute the maximum so we can never overflow. */
168static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
169static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
170module_param(ple_window_max, int, S_IRUGO);
171
Avi Kivity83287ea422012-09-16 15:10:57 +0300172extern const ulong vmx_return;
173
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200174#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300175#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300176
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400177struct vmcs {
178 u32 revision_id;
179 u32 abort;
180 char data[0];
181};
182
Nadav Har'Eld462b812011-05-24 15:26:10 +0300183/*
184 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
185 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
186 * loaded on this CPU (so we can clear them if the CPU goes down).
187 */
188struct loaded_vmcs {
189 struct vmcs *vmcs;
190 int cpu;
191 int launched;
192 struct list_head loaded_vmcss_on_cpu_link;
193};
194
Avi Kivity26bb0982009-09-07 11:14:12 +0300195struct shared_msr_entry {
196 unsigned index;
197 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200198 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300199};
200
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300201/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300202 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
203 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
204 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
205 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
206 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
207 * More than one of these structures may exist, if L1 runs multiple L2 guests.
208 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
209 * underlying hardware which will be used to run L2.
210 * This structure is packed to ensure that its layout is identical across
211 * machines (necessary for live migration).
212 * If there are changes in this struct, VMCS12_REVISION must be changed.
213 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300214typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300215struct __packed vmcs12 {
216 /* According to the Intel spec, a VMCS region must start with the
217 * following two fields. Then follow implementation-specific data.
218 */
219 u32 revision_id;
220 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300221
Nadav Har'El27d6c862011-05-25 23:06:59 +0300222 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
223 u32 padding[7]; /* room for future expansion */
224
Nadav Har'El22bd0352011-05-25 23:05:57 +0300225 u64 io_bitmap_a;
226 u64 io_bitmap_b;
227 u64 msr_bitmap;
228 u64 vm_exit_msr_store_addr;
229 u64 vm_exit_msr_load_addr;
230 u64 vm_entry_msr_load_addr;
231 u64 tsc_offset;
232 u64 virtual_apic_page_addr;
233 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800234 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300235 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800236 u64 eoi_exit_bitmap0;
237 u64 eoi_exit_bitmap1;
238 u64 eoi_exit_bitmap2;
239 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800240 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300241 u64 guest_physical_address;
242 u64 vmcs_link_pointer;
243 u64 guest_ia32_debugctl;
244 u64 guest_ia32_pat;
245 u64 guest_ia32_efer;
246 u64 guest_ia32_perf_global_ctrl;
247 u64 guest_pdptr0;
248 u64 guest_pdptr1;
249 u64 guest_pdptr2;
250 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100251 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300252 u64 host_ia32_pat;
253 u64 host_ia32_efer;
254 u64 host_ia32_perf_global_ctrl;
255 u64 padding64[8]; /* room for future expansion */
256 /*
257 * To allow migration of L1 (complete with its L2 guests) between
258 * machines of different natural widths (32 or 64 bit), we cannot have
259 * unsigned long fields with no explict size. We use u64 (aliased
260 * natural_width) instead. Luckily, x86 is little-endian.
261 */
262 natural_width cr0_guest_host_mask;
263 natural_width cr4_guest_host_mask;
264 natural_width cr0_read_shadow;
265 natural_width cr4_read_shadow;
266 natural_width cr3_target_value0;
267 natural_width cr3_target_value1;
268 natural_width cr3_target_value2;
269 natural_width cr3_target_value3;
270 natural_width exit_qualification;
271 natural_width guest_linear_address;
272 natural_width guest_cr0;
273 natural_width guest_cr3;
274 natural_width guest_cr4;
275 natural_width guest_es_base;
276 natural_width guest_cs_base;
277 natural_width guest_ss_base;
278 natural_width guest_ds_base;
279 natural_width guest_fs_base;
280 natural_width guest_gs_base;
281 natural_width guest_ldtr_base;
282 natural_width guest_tr_base;
283 natural_width guest_gdtr_base;
284 natural_width guest_idtr_base;
285 natural_width guest_dr7;
286 natural_width guest_rsp;
287 natural_width guest_rip;
288 natural_width guest_rflags;
289 natural_width guest_pending_dbg_exceptions;
290 natural_width guest_sysenter_esp;
291 natural_width guest_sysenter_eip;
292 natural_width host_cr0;
293 natural_width host_cr3;
294 natural_width host_cr4;
295 natural_width host_fs_base;
296 natural_width host_gs_base;
297 natural_width host_tr_base;
298 natural_width host_gdtr_base;
299 natural_width host_idtr_base;
300 natural_width host_ia32_sysenter_esp;
301 natural_width host_ia32_sysenter_eip;
302 natural_width host_rsp;
303 natural_width host_rip;
304 natural_width paddingl[8]; /* room for future expansion */
305 u32 pin_based_vm_exec_control;
306 u32 cpu_based_vm_exec_control;
307 u32 exception_bitmap;
308 u32 page_fault_error_code_mask;
309 u32 page_fault_error_code_match;
310 u32 cr3_target_count;
311 u32 vm_exit_controls;
312 u32 vm_exit_msr_store_count;
313 u32 vm_exit_msr_load_count;
314 u32 vm_entry_controls;
315 u32 vm_entry_msr_load_count;
316 u32 vm_entry_intr_info_field;
317 u32 vm_entry_exception_error_code;
318 u32 vm_entry_instruction_len;
319 u32 tpr_threshold;
320 u32 secondary_vm_exec_control;
321 u32 vm_instruction_error;
322 u32 vm_exit_reason;
323 u32 vm_exit_intr_info;
324 u32 vm_exit_intr_error_code;
325 u32 idt_vectoring_info_field;
326 u32 idt_vectoring_error_code;
327 u32 vm_exit_instruction_len;
328 u32 vmx_instruction_info;
329 u32 guest_es_limit;
330 u32 guest_cs_limit;
331 u32 guest_ss_limit;
332 u32 guest_ds_limit;
333 u32 guest_fs_limit;
334 u32 guest_gs_limit;
335 u32 guest_ldtr_limit;
336 u32 guest_tr_limit;
337 u32 guest_gdtr_limit;
338 u32 guest_idtr_limit;
339 u32 guest_es_ar_bytes;
340 u32 guest_cs_ar_bytes;
341 u32 guest_ss_ar_bytes;
342 u32 guest_ds_ar_bytes;
343 u32 guest_fs_ar_bytes;
344 u32 guest_gs_ar_bytes;
345 u32 guest_ldtr_ar_bytes;
346 u32 guest_tr_ar_bytes;
347 u32 guest_interruptibility_info;
348 u32 guest_activity_state;
349 u32 guest_sysenter_cs;
350 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100351 u32 vmx_preemption_timer_value;
352 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300353 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800354 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300355 u16 guest_es_selector;
356 u16 guest_cs_selector;
357 u16 guest_ss_selector;
358 u16 guest_ds_selector;
359 u16 guest_fs_selector;
360 u16 guest_gs_selector;
361 u16 guest_ldtr_selector;
362 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800363 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300364 u16 host_es_selector;
365 u16 host_cs_selector;
366 u16 host_ss_selector;
367 u16 host_ds_selector;
368 u16 host_fs_selector;
369 u16 host_gs_selector;
370 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300371};
372
373/*
374 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
375 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
376 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
377 */
378#define VMCS12_REVISION 0x11e57ed0
379
380/*
381 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
382 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
383 * current implementation, 4K are reserved to avoid future complications.
384 */
385#define VMCS12_SIZE 0x1000
386
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300387/* Used to remember the last vmcs02 used for some recently used vmcs12s */
388struct vmcs02_list {
389 struct list_head list;
390 gpa_t vmptr;
391 struct loaded_vmcs vmcs02;
392};
393
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300394/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300395 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
396 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
397 */
398struct nested_vmx {
399 /* Has the level1 guest done vmxon? */
400 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400401 gpa_t vmxon_ptr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300402
403 /* The guest-physical address of the current VMCS L1 keeps for L2 */
404 gpa_t current_vmptr;
405 /* The host-usable pointer to the above */
406 struct page *current_vmcs12_page;
407 struct vmcs12 *current_vmcs12;
Abel Gordon8de48832013-04-18 14:37:25 +0300408 struct vmcs *current_shadow_vmcs;
Abel Gordon012f83c2013-04-18 14:39:25 +0300409 /*
410 * Indicates if the shadow vmcs must be updated with the
411 * data hold by vmcs12
412 */
413 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300414
415 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
416 struct list_head vmcs02_pool;
417 int vmcs02_num;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300418 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300419 /* L2 must run next, and mustn't decide to exit to L1. */
420 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300421 /*
422 * Guest pages referred to in vmcs02 with host-physical pointers, so
423 * we must keep them pinned while L2 runs.
424 */
425 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800426 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800427 struct page *pi_desc_page;
428 struct pi_desc *pi_desc;
429 bool pi_pending;
430 u16 posted_intr_nv;
Jan Kiszkaf41245002014-03-07 20:03:13 +0100431
432 struct hrtimer preemption_timer;
433 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200434
435 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
436 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800437
Wanpeng Li5c614b32015-10-13 09:18:36 -0700438 u16 vpid02;
439 u16 last_vpid;
440
Wincy Vanb9c237b2015-02-03 23:56:30 +0800441 u32 nested_vmx_procbased_ctls_low;
442 u32 nested_vmx_procbased_ctls_high;
443 u32 nested_vmx_true_procbased_ctls_low;
444 u32 nested_vmx_secondary_ctls_low;
445 u32 nested_vmx_secondary_ctls_high;
446 u32 nested_vmx_pinbased_ctls_low;
447 u32 nested_vmx_pinbased_ctls_high;
448 u32 nested_vmx_exit_ctls_low;
449 u32 nested_vmx_exit_ctls_high;
450 u32 nested_vmx_true_exit_ctls_low;
451 u32 nested_vmx_entry_ctls_low;
452 u32 nested_vmx_entry_ctls_high;
453 u32 nested_vmx_true_entry_ctls_low;
454 u32 nested_vmx_misc_low;
455 u32 nested_vmx_misc_high;
456 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700457 u32 nested_vmx_vpid_caps;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300458};
459
Yang Zhang01e439b2013-04-11 19:25:12 +0800460#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800461#define POSTED_INTR_SN 1
462
Yang Zhang01e439b2013-04-11 19:25:12 +0800463/* Posted-Interrupt Descriptor */
464struct pi_desc {
465 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800466 union {
467 struct {
468 /* bit 256 - Outstanding Notification */
469 u16 on : 1,
470 /* bit 257 - Suppress Notification */
471 sn : 1,
472 /* bit 271:258 - Reserved */
473 rsvd_1 : 14;
474 /* bit 279:272 - Notification Vector */
475 u8 nv;
476 /* bit 287:280 - Reserved */
477 u8 rsvd_2;
478 /* bit 319:288 - Notification Destination */
479 u32 ndst;
480 };
481 u64 control;
482 };
483 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800484} __aligned(64);
485
Yang Zhanga20ed542013-04-11 19:25:15 +0800486static bool pi_test_and_set_on(struct pi_desc *pi_desc)
487{
488 return test_and_set_bit(POSTED_INTR_ON,
489 (unsigned long *)&pi_desc->control);
490}
491
492static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
493{
494 return test_and_clear_bit(POSTED_INTR_ON,
495 (unsigned long *)&pi_desc->control);
496}
497
498static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
499{
500 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
501}
502
Feng Wuebbfc762015-09-18 22:29:46 +0800503static inline void pi_clear_sn(struct pi_desc *pi_desc)
504{
505 return clear_bit(POSTED_INTR_SN,
506 (unsigned long *)&pi_desc->control);
507}
508
509static inline void pi_set_sn(struct pi_desc *pi_desc)
510{
511 return set_bit(POSTED_INTR_SN,
512 (unsigned long *)&pi_desc->control);
513}
514
515static inline int pi_test_on(struct pi_desc *pi_desc)
516{
517 return test_bit(POSTED_INTR_ON,
518 (unsigned long *)&pi_desc->control);
519}
520
521static inline int pi_test_sn(struct pi_desc *pi_desc)
522{
523 return test_bit(POSTED_INTR_SN,
524 (unsigned long *)&pi_desc->control);
525}
526
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400527struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000528 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300529 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300530 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200531 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300532 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200533 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200534 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300535 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536 int nmsrs;
537 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800538 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400539#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300540 u64 msr_host_kernel_gs_base;
541 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400542#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200543 u32 vm_entry_controls_shadow;
544 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300545 /*
546 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
547 * non-nested (L1) guest, it always points to vmcs01. For a nested
548 * guest (L2), it points to a different VMCS.
549 */
550 struct loaded_vmcs vmcs01;
551 struct loaded_vmcs *loaded_vmcs;
552 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300553 struct msr_autoload {
554 unsigned nr;
555 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
556 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
557 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400558 struct {
559 int loaded;
560 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300561#ifdef CONFIG_X86_64
562 u16 ds_sel, es_sel;
563#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200564 int gs_ldt_reload_needed;
565 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000566 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700567 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400568 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200569 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300570 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300571 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300572 struct kvm_segment segs[8];
573 } rmode;
574 struct {
575 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300576 struct kvm_save_segment {
577 u16 selector;
578 unsigned long base;
579 u32 limit;
580 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300581 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300582 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800583 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300584 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200585
586 /* Support for vnmi-less CPUs */
587 int soft_vnmi_blocked;
588 ktime_t entry_time;
589 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800590 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800591
Yang Zhang01e439b2013-04-11 19:25:12 +0800592 /* Posted interrupt descriptor */
593 struct pi_desc pi_desc;
594
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300595 /* Support for a guest hypervisor (nested VMX) */
596 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200597
598 /* Dynamic PLE window. */
599 int ple_window;
600 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800601
602 /* Support for PML */
603#define PML_ENTITY_NUM 512
604 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800605
Yunhong Jiang64672c92016-06-13 14:19:59 -0700606 /* apic deadline value in host tsc */
607 u64 hv_deadline_tsc;
608
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800609 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800610
611 bool guest_pkru_valid;
612 u32 guest_pkru;
613 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800614
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800615 /*
616 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
617 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
618 * in msr_ia32_feature_control_valid_bits.
619 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800620 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800621 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400622};
623
Avi Kivity2fb92db2011-04-27 19:42:18 +0300624enum segment_cache_field {
625 SEG_FIELD_SEL = 0,
626 SEG_FIELD_BASE = 1,
627 SEG_FIELD_LIMIT = 2,
628 SEG_FIELD_AR = 3,
629
630 SEG_FIELD_NR = 4
631};
632
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400633static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
634{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000635 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400636}
637
Feng Wuefc64402015-09-18 22:29:51 +0800638static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
639{
640 return &(to_vmx(vcpu)->pi_desc);
641}
642
Nadav Har'El22bd0352011-05-25 23:05:57 +0300643#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
644#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
645#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
646 [number##_HIGH] = VMCS12_OFFSET(name)+4
647
Abel Gordon4607c2d2013-04-18 14:35:55 +0300648
Bandan Dasfe2b2012014-04-21 15:20:14 -0400649static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300650 /*
651 * We do NOT shadow fields that are modified when L0
652 * traps and emulates any vmx instruction (e.g. VMPTRLD,
653 * VMXON...) executed by L1.
654 * For example, VM_INSTRUCTION_ERROR is read
655 * by L1 if a vmx instruction fails (part of the error path).
656 * Note the code assumes this logic. If for some reason
657 * we start shadowing these fields then we need to
658 * force a shadow sync when L0 emulates vmx instructions
659 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
660 * by nested_vmx_failValid)
661 */
662 VM_EXIT_REASON,
663 VM_EXIT_INTR_INFO,
664 VM_EXIT_INSTRUCTION_LEN,
665 IDT_VECTORING_INFO_FIELD,
666 IDT_VECTORING_ERROR_CODE,
667 VM_EXIT_INTR_ERROR_CODE,
668 EXIT_QUALIFICATION,
669 GUEST_LINEAR_ADDRESS,
670 GUEST_PHYSICAL_ADDRESS
671};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400672static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300673 ARRAY_SIZE(shadow_read_only_fields);
674
Bandan Dasfe2b2012014-04-21 15:20:14 -0400675static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800676 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300677 GUEST_RIP,
678 GUEST_RSP,
679 GUEST_CR0,
680 GUEST_CR3,
681 GUEST_CR4,
682 GUEST_INTERRUPTIBILITY_INFO,
683 GUEST_RFLAGS,
684 GUEST_CS_SELECTOR,
685 GUEST_CS_AR_BYTES,
686 GUEST_CS_LIMIT,
687 GUEST_CS_BASE,
688 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100689 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300690 CR0_GUEST_HOST_MASK,
691 CR0_READ_SHADOW,
692 CR4_READ_SHADOW,
693 TSC_OFFSET,
694 EXCEPTION_BITMAP,
695 CPU_BASED_VM_EXEC_CONTROL,
696 VM_ENTRY_EXCEPTION_ERROR_CODE,
697 VM_ENTRY_INTR_INFO_FIELD,
698 VM_ENTRY_INSTRUCTION_LEN,
699 VM_ENTRY_EXCEPTION_ERROR_CODE,
700 HOST_FS_BASE,
701 HOST_GS_BASE,
702 HOST_FS_SELECTOR,
703 HOST_GS_SELECTOR
704};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400705static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300706 ARRAY_SIZE(shadow_read_write_fields);
707
Mathias Krause772e0312012-08-30 01:30:19 +0200708static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300709 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800710 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300711 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
712 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
713 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
714 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
715 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
716 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
717 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
718 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800719 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300720 FIELD(HOST_ES_SELECTOR, host_es_selector),
721 FIELD(HOST_CS_SELECTOR, host_cs_selector),
722 FIELD(HOST_SS_SELECTOR, host_ss_selector),
723 FIELD(HOST_DS_SELECTOR, host_ds_selector),
724 FIELD(HOST_FS_SELECTOR, host_fs_selector),
725 FIELD(HOST_GS_SELECTOR, host_gs_selector),
726 FIELD(HOST_TR_SELECTOR, host_tr_selector),
727 FIELD64(IO_BITMAP_A, io_bitmap_a),
728 FIELD64(IO_BITMAP_B, io_bitmap_b),
729 FIELD64(MSR_BITMAP, msr_bitmap),
730 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
731 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
732 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
733 FIELD64(TSC_OFFSET, tsc_offset),
734 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
735 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800736 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300737 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800738 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
739 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
740 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
741 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800742 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300743 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
744 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
745 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
746 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
747 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
748 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
749 FIELD64(GUEST_PDPTR0, guest_pdptr0),
750 FIELD64(GUEST_PDPTR1, guest_pdptr1),
751 FIELD64(GUEST_PDPTR2, guest_pdptr2),
752 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100753 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300754 FIELD64(HOST_IA32_PAT, host_ia32_pat),
755 FIELD64(HOST_IA32_EFER, host_ia32_efer),
756 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
757 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
758 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
759 FIELD(EXCEPTION_BITMAP, exception_bitmap),
760 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
761 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
762 FIELD(CR3_TARGET_COUNT, cr3_target_count),
763 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
764 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
765 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
766 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
767 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
768 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
769 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
770 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
771 FIELD(TPR_THRESHOLD, tpr_threshold),
772 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
773 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
774 FIELD(VM_EXIT_REASON, vm_exit_reason),
775 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
776 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
777 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
778 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
779 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
780 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
781 FIELD(GUEST_ES_LIMIT, guest_es_limit),
782 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
783 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
784 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
785 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
786 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
787 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
788 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
789 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
790 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
791 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
792 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
793 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
794 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
795 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
796 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
797 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
798 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
799 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
800 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
801 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
802 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100803 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300804 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
805 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
806 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
807 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
808 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
809 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
810 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
811 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
812 FIELD(EXIT_QUALIFICATION, exit_qualification),
813 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
814 FIELD(GUEST_CR0, guest_cr0),
815 FIELD(GUEST_CR3, guest_cr3),
816 FIELD(GUEST_CR4, guest_cr4),
817 FIELD(GUEST_ES_BASE, guest_es_base),
818 FIELD(GUEST_CS_BASE, guest_cs_base),
819 FIELD(GUEST_SS_BASE, guest_ss_base),
820 FIELD(GUEST_DS_BASE, guest_ds_base),
821 FIELD(GUEST_FS_BASE, guest_fs_base),
822 FIELD(GUEST_GS_BASE, guest_gs_base),
823 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
824 FIELD(GUEST_TR_BASE, guest_tr_base),
825 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
826 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
827 FIELD(GUEST_DR7, guest_dr7),
828 FIELD(GUEST_RSP, guest_rsp),
829 FIELD(GUEST_RIP, guest_rip),
830 FIELD(GUEST_RFLAGS, guest_rflags),
831 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
832 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
833 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
834 FIELD(HOST_CR0, host_cr0),
835 FIELD(HOST_CR3, host_cr3),
836 FIELD(HOST_CR4, host_cr4),
837 FIELD(HOST_FS_BASE, host_fs_base),
838 FIELD(HOST_GS_BASE, host_gs_base),
839 FIELD(HOST_TR_BASE, host_tr_base),
840 FIELD(HOST_GDTR_BASE, host_gdtr_base),
841 FIELD(HOST_IDTR_BASE, host_idtr_base),
842 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
843 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
844 FIELD(HOST_RSP, host_rsp),
845 FIELD(HOST_RIP, host_rip),
846};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300847
848static inline short vmcs_field_to_offset(unsigned long field)
849{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100850 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
851
852 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
853 vmcs_field_to_offset_table[field] == 0)
854 return -ENOENT;
855
Nadav Har'El22bd0352011-05-25 23:05:57 +0300856 return vmcs_field_to_offset_table[field];
857}
858
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300859static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
860{
861 return to_vmx(vcpu)->nested.current_vmcs12;
862}
863
864static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
865{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200866 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800867 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300868 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800869
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300870 return page;
871}
872
873static void nested_release_page(struct page *page)
874{
875 kvm_release_page_dirty(page);
876}
877
878static void nested_release_page_clean(struct page *page)
879{
880 kvm_release_page_clean(page);
881}
882
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300883static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800884static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800885static void kvm_cpu_vmxon(u64 addr);
886static void kvm_cpu_vmxoff(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800887static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200888static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300889static void vmx_set_segment(struct kvm_vcpu *vcpu,
890 struct kvm_segment *var, int seg);
891static void vmx_get_segment(struct kvm_vcpu *vcpu,
892 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200893static bool guest_state_valid(struct kvm_vcpu *vcpu);
894static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300895static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300896static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800897static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300898
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899static DEFINE_PER_CPU(struct vmcs *, vmxarea);
900static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300901/*
902 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
903 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
904 */
905static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300906static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907
Feng Wubf9f6ac2015-09-18 22:29:55 +0800908/*
909 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
910 * can find which vCPU should be waken up.
911 */
912static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
913static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
914
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200915static unsigned long *vmx_io_bitmap_a;
916static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200917static unsigned long *vmx_msr_bitmap_legacy;
918static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800919static unsigned long *vmx_msr_bitmap_legacy_x2apic;
920static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800921static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300922static unsigned long *vmx_vmread_bitmap;
923static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300924
Avi Kivity110312c2010-12-21 12:54:20 +0200925static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200926static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200927
Sheng Yang2384d2b2008-01-17 15:14:33 +0800928static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
929static DEFINE_SPINLOCK(vmx_vpid_lock);
930
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300931static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932 int size;
933 int order;
934 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300935 u32 pin_based_exec_ctrl;
936 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800937 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300938 u32 vmexit_ctrl;
939 u32 vmentry_ctrl;
940} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941
Hannes Ederefff9e52008-11-28 17:02:06 +0100942static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800943 u32 ept;
944 u32 vpid;
945} vmx_capability;
946
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947#define VMX_SEGMENT_FIELD(seg) \
948 [VCPU_SREG_##seg] = { \
949 .selector = GUEST_##seg##_SELECTOR, \
950 .base = GUEST_##seg##_BASE, \
951 .limit = GUEST_##seg##_LIMIT, \
952 .ar_bytes = GUEST_##seg##_AR_BYTES, \
953 }
954
Mathias Krause772e0312012-08-30 01:30:19 +0200955static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956 unsigned selector;
957 unsigned base;
958 unsigned limit;
959 unsigned ar_bytes;
960} kvm_vmx_segment_fields[] = {
961 VMX_SEGMENT_FIELD(CS),
962 VMX_SEGMENT_FIELD(DS),
963 VMX_SEGMENT_FIELD(ES),
964 VMX_SEGMENT_FIELD(FS),
965 VMX_SEGMENT_FIELD(GS),
966 VMX_SEGMENT_FIELD(SS),
967 VMX_SEGMENT_FIELD(TR),
968 VMX_SEGMENT_FIELD(LDTR),
969};
970
Avi Kivity26bb0982009-09-07 11:14:12 +0300971static u64 host_efer;
972
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300973static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
974
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300975/*
Brian Gerst8c065852010-07-17 09:03:26 -0400976 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300977 * away by decrementing the array size.
978 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800980#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300981 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400983 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985
Jan Kiszka5bb16012016-02-09 20:14:21 +0100986static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987{
988 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
989 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +0100990 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
991}
992
Jan Kiszka6f054852016-02-09 20:15:18 +0100993static inline bool is_debug(u32 intr_info)
994{
995 return is_exception_n(intr_info, DB_VECTOR);
996}
997
998static inline bool is_breakpoint(u32 intr_info)
999{
1000 return is_exception_n(intr_info, BP_VECTOR);
1001}
1002
Jan Kiszka5bb16012016-02-09 20:14:21 +01001003static inline bool is_page_fault(u32 intr_info)
1004{
1005 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006}
1007
Gui Jianfeng31299942010-03-15 17:29:09 +08001008static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001009{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001010 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001011}
1012
Gui Jianfeng31299942010-03-15 17:29:09 +08001013static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001014{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001015 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001016}
1017
Gui Jianfeng31299942010-03-15 17:29:09 +08001018static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019{
1020 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1021 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1022}
1023
Gui Jianfeng31299942010-03-15 17:29:09 +08001024static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001025{
1026 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1027 INTR_INFO_VALID_MASK)) ==
1028 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1029}
1030
Gui Jianfeng31299942010-03-15 17:29:09 +08001031static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001032{
Sheng Yang04547152009-04-01 15:52:31 +08001033 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001034}
1035
Gui Jianfeng31299942010-03-15 17:29:09 +08001036static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001037{
Sheng Yang04547152009-04-01 15:52:31 +08001038 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001039}
1040
Paolo Bonzini35754c92015-07-29 12:05:37 +02001041static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001042{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001043 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001044}
1045
Gui Jianfeng31299942010-03-15 17:29:09 +08001046static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001047{
Sheng Yang04547152009-04-01 15:52:31 +08001048 return vmcs_config.cpu_based_exec_ctrl &
1049 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001050}
1051
Avi Kivity774ead32007-12-26 13:57:04 +02001052static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001053{
Sheng Yang04547152009-04-01 15:52:31 +08001054 return vmcs_config.cpu_based_2nd_exec_ctrl &
1055 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1056}
1057
Yang Zhang8d146952013-01-25 10:18:50 +08001058static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1059{
1060 return vmcs_config.cpu_based_2nd_exec_ctrl &
1061 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1062}
1063
Yang Zhang83d4c282013-01-25 10:18:49 +08001064static inline bool cpu_has_vmx_apic_register_virt(void)
1065{
1066 return vmcs_config.cpu_based_2nd_exec_ctrl &
1067 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1068}
1069
Yang Zhangc7c9c562013-01-25 10:18:51 +08001070static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1071{
1072 return vmcs_config.cpu_based_2nd_exec_ctrl &
1073 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1074}
1075
Yunhong Jiang64672c92016-06-13 14:19:59 -07001076/*
1077 * Comment's format: document - errata name - stepping - processor name.
1078 * Refer from
1079 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1080 */
1081static u32 vmx_preemption_cpu_tfms[] = {
1082/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
10830x000206E6,
1084/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1085/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1086/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
10870x00020652,
1088/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
10890x00020655,
1090/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1091/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1092/*
1093 * 320767.pdf - AAP86 - B1 -
1094 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1095 */
10960x000106E5,
1097/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
10980x000106A0,
1099/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11000x000106A1,
1101/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11020x000106A4,
1103 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1104 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1105 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11060x000106A5,
1107};
1108
1109static inline bool cpu_has_broken_vmx_preemption_timer(void)
1110{
1111 u32 eax = cpuid_eax(0x00000001), i;
1112
1113 /* Clear the reserved bits */
1114 eax &= ~(0x3U << 14 | 0xfU << 28);
1115 for (i = 0; i < sizeof(vmx_preemption_cpu_tfms)/sizeof(u32); i++)
1116 if (eax == vmx_preemption_cpu_tfms[i])
1117 return true;
1118
1119 return false;
1120}
1121
1122static inline bool cpu_has_vmx_preemption_timer(void)
1123{
1124 if (cpu_has_broken_vmx_preemption_timer())
1125 return false;
1126
1127 return vmcs_config.pin_based_exec_ctrl &
1128 PIN_BASED_VMX_PREEMPTION_TIMER;
1129}
1130
Yang Zhang01e439b2013-04-11 19:25:12 +08001131static inline bool cpu_has_vmx_posted_intr(void)
1132{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001133 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1134 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001135}
1136
1137static inline bool cpu_has_vmx_apicv(void)
1138{
1139 return cpu_has_vmx_apic_register_virt() &&
1140 cpu_has_vmx_virtual_intr_delivery() &&
1141 cpu_has_vmx_posted_intr();
1142}
1143
Sheng Yang04547152009-04-01 15:52:31 +08001144static inline bool cpu_has_vmx_flexpriority(void)
1145{
1146 return cpu_has_vmx_tpr_shadow() &&
1147 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001148}
1149
Marcelo Tosattie7997942009-06-11 12:07:40 -03001150static inline bool cpu_has_vmx_ept_execute_only(void)
1151{
Gui Jianfeng31299942010-03-15 17:29:09 +08001152 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001153}
1154
Marcelo Tosattie7997942009-06-11 12:07:40 -03001155static inline bool cpu_has_vmx_ept_2m_page(void)
1156{
Gui Jianfeng31299942010-03-15 17:29:09 +08001157 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001158}
1159
Sheng Yang878403b2010-01-05 19:02:29 +08001160static inline bool cpu_has_vmx_ept_1g_page(void)
1161{
Gui Jianfeng31299942010-03-15 17:29:09 +08001162 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001163}
1164
Sheng Yang4bc9b982010-06-02 14:05:24 +08001165static inline bool cpu_has_vmx_ept_4levels(void)
1166{
1167 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1168}
1169
Xudong Hao83c3a332012-05-28 19:33:35 +08001170static inline bool cpu_has_vmx_ept_ad_bits(void)
1171{
1172 return vmx_capability.ept & VMX_EPT_AD_BIT;
1173}
1174
Gui Jianfeng31299942010-03-15 17:29:09 +08001175static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001176{
Gui Jianfeng31299942010-03-15 17:29:09 +08001177 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001178}
1179
Gui Jianfeng31299942010-03-15 17:29:09 +08001180static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001181{
Gui Jianfeng31299942010-03-15 17:29:09 +08001182 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001183}
1184
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001185static inline bool cpu_has_vmx_invvpid_single(void)
1186{
1187 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1188}
1189
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001190static inline bool cpu_has_vmx_invvpid_global(void)
1191{
1192 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1193}
1194
Gui Jianfeng31299942010-03-15 17:29:09 +08001195static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001196{
Sheng Yang04547152009-04-01 15:52:31 +08001197 return vmcs_config.cpu_based_2nd_exec_ctrl &
1198 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001199}
1200
Gui Jianfeng31299942010-03-15 17:29:09 +08001201static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001202{
1203 return vmcs_config.cpu_based_2nd_exec_ctrl &
1204 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1205}
1206
Gui Jianfeng31299942010-03-15 17:29:09 +08001207static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001208{
1209 return vmcs_config.cpu_based_2nd_exec_ctrl &
1210 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1211}
1212
Paolo Bonzini35754c92015-07-29 12:05:37 +02001213static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001214{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001215 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001216}
1217
Gui Jianfeng31299942010-03-15 17:29:09 +08001218static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001219{
Sheng Yang04547152009-04-01 15:52:31 +08001220 return vmcs_config.cpu_based_2nd_exec_ctrl &
1221 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001222}
1223
Gui Jianfeng31299942010-03-15 17:29:09 +08001224static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001225{
1226 return vmcs_config.cpu_based_2nd_exec_ctrl &
1227 SECONDARY_EXEC_RDTSCP;
1228}
1229
Mao, Junjiead756a12012-07-02 01:18:48 +00001230static inline bool cpu_has_vmx_invpcid(void)
1231{
1232 return vmcs_config.cpu_based_2nd_exec_ctrl &
1233 SECONDARY_EXEC_ENABLE_INVPCID;
1234}
1235
Gui Jianfeng31299942010-03-15 17:29:09 +08001236static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001237{
1238 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1239}
1240
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001241static inline bool cpu_has_vmx_wbinvd_exit(void)
1242{
1243 return vmcs_config.cpu_based_2nd_exec_ctrl &
1244 SECONDARY_EXEC_WBINVD_EXITING;
1245}
1246
Abel Gordonabc4fc52013-04-18 14:35:25 +03001247static inline bool cpu_has_vmx_shadow_vmcs(void)
1248{
1249 u64 vmx_msr;
1250 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1251 /* check if the cpu supports writing r/o exit information fields */
1252 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1253 return false;
1254
1255 return vmcs_config.cpu_based_2nd_exec_ctrl &
1256 SECONDARY_EXEC_SHADOW_VMCS;
1257}
1258
Kai Huang843e4332015-01-28 10:54:28 +08001259static inline bool cpu_has_vmx_pml(void)
1260{
1261 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1262}
1263
Haozhong Zhang64903d62015-10-20 15:39:09 +08001264static inline bool cpu_has_vmx_tsc_scaling(void)
1265{
1266 return vmcs_config.cpu_based_2nd_exec_ctrl &
1267 SECONDARY_EXEC_TSC_SCALING;
1268}
1269
Sheng Yang04547152009-04-01 15:52:31 +08001270static inline bool report_flexpriority(void)
1271{
1272 return flexpriority_enabled;
1273}
1274
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001275static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1276{
1277 return vmcs12->cpu_based_vm_exec_control & bit;
1278}
1279
1280static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1281{
1282 return (vmcs12->cpu_based_vm_exec_control &
1283 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1284 (vmcs12->secondary_vm_exec_control & bit);
1285}
1286
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001287static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001288{
1289 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1290}
1291
Jan Kiszkaf41245002014-03-07 20:03:13 +01001292static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1293{
1294 return vmcs12->pin_based_vm_exec_control &
1295 PIN_BASED_VMX_PREEMPTION_TIMER;
1296}
1297
Nadav Har'El155a97a2013-08-05 11:07:16 +03001298static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1299{
1300 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1301}
1302
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001303static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1304{
1305 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1306 vmx_xsaves_supported();
1307}
1308
Wincy Vanf2b93282015-02-03 23:56:03 +08001309static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1310{
1311 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1312}
1313
Wanpeng Li5c614b32015-10-13 09:18:36 -07001314static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1315{
1316 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1317}
1318
Wincy Van82f0dd42015-02-03 23:57:18 +08001319static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1320{
1321 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1322}
1323
Wincy Van608406e2015-02-03 23:57:51 +08001324static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1325{
1326 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1327}
1328
Wincy Van705699a2015-02-03 23:58:17 +08001329static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1330{
1331 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1332}
1333
Nadav Har'El644d7112011-05-25 23:12:35 +03001334static inline bool is_exception(u32 intr_info)
1335{
1336 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1337 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1338}
1339
Jan Kiszka533558b2014-01-04 18:47:20 +01001340static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1341 u32 exit_intr_info,
1342 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001343static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1344 struct vmcs12 *vmcs12,
1345 u32 reason, unsigned long qualification);
1346
Rusty Russell8b9cf982007-07-30 16:31:43 +10001347static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001348{
1349 int i;
1350
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001351 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001352 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001353 return i;
1354 return -1;
1355}
1356
Sheng Yang2384d2b2008-01-17 15:14:33 +08001357static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1358{
1359 struct {
1360 u64 vpid : 16;
1361 u64 rsvd : 48;
1362 u64 gva;
1363 } operand = { vpid, 0, gva };
1364
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001365 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001366 /* CF==1 or ZF==1 --> rc = -1 */
1367 "; ja 1f ; ud2 ; 1:"
1368 : : "a"(&operand), "c"(ext) : "cc", "memory");
1369}
1370
Sheng Yang14394422008-04-28 12:24:45 +08001371static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1372{
1373 struct {
1374 u64 eptp, gpa;
1375 } operand = {eptp, gpa};
1376
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001377 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001378 /* CF==1 or ZF==1 --> rc = -1 */
1379 "; ja 1f ; ud2 ; 1:\n"
1380 : : "a" (&operand), "c" (ext) : "cc", "memory");
1381}
1382
Avi Kivity26bb0982009-09-07 11:14:12 +03001383static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001384{
1385 int i;
1386
Rusty Russell8b9cf982007-07-30 16:31:43 +10001387 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001388 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001389 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001390 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001391}
1392
Avi Kivity6aa8b732006-12-10 02:21:36 -08001393static void vmcs_clear(struct vmcs *vmcs)
1394{
1395 u64 phys_addr = __pa(vmcs);
1396 u8 error;
1397
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001398 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001399 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001400 : "cc", "memory");
1401 if (error)
1402 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1403 vmcs, phys_addr);
1404}
1405
Nadav Har'Eld462b812011-05-24 15:26:10 +03001406static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1407{
1408 vmcs_clear(loaded_vmcs->vmcs);
1409 loaded_vmcs->cpu = -1;
1410 loaded_vmcs->launched = 0;
1411}
1412
Dongxiao Xu7725b892010-05-11 18:29:38 +08001413static void vmcs_load(struct vmcs *vmcs)
1414{
1415 u64 phys_addr = __pa(vmcs);
1416 u8 error;
1417
1418 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001419 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001420 : "cc", "memory");
1421 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001422 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001423 vmcs, phys_addr);
1424}
1425
Dave Young2965faa2015-09-09 15:38:55 -07001426#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001427/*
1428 * This bitmap is used to indicate whether the vmclear
1429 * operation is enabled on all cpus. All disabled by
1430 * default.
1431 */
1432static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1433
1434static inline void crash_enable_local_vmclear(int cpu)
1435{
1436 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1437}
1438
1439static inline void crash_disable_local_vmclear(int cpu)
1440{
1441 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1442}
1443
1444static inline int crash_local_vmclear_enabled(int cpu)
1445{
1446 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1447}
1448
1449static void crash_vmclear_local_loaded_vmcss(void)
1450{
1451 int cpu = raw_smp_processor_id();
1452 struct loaded_vmcs *v;
1453
1454 if (!crash_local_vmclear_enabled(cpu))
1455 return;
1456
1457 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1458 loaded_vmcss_on_cpu_link)
1459 vmcs_clear(v->vmcs);
1460}
1461#else
1462static inline void crash_enable_local_vmclear(int cpu) { }
1463static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001464#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001465
Nadav Har'Eld462b812011-05-24 15:26:10 +03001466static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001468 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001469 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470
Nadav Har'Eld462b812011-05-24 15:26:10 +03001471 if (loaded_vmcs->cpu != cpu)
1472 return; /* vcpu migration can race with cpu offline */
1473 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001474 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001475 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001476 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001477
1478 /*
1479 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1480 * is before setting loaded_vmcs->vcpu to -1 which is done in
1481 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1482 * then adds the vmcs into percpu list before it is deleted.
1483 */
1484 smp_wmb();
1485
Nadav Har'Eld462b812011-05-24 15:26:10 +03001486 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001487 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488}
1489
Nadav Har'Eld462b812011-05-24 15:26:10 +03001490static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001491{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001492 int cpu = loaded_vmcs->cpu;
1493
1494 if (cpu != -1)
1495 smp_call_function_single(cpu,
1496 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001497}
1498
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001499static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001500{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001501 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001502 return;
1503
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001504 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001505 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001506}
1507
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001508static inline void vpid_sync_vcpu_global(void)
1509{
1510 if (cpu_has_vmx_invvpid_global())
1511 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1512}
1513
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001514static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001515{
1516 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001517 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001518 else
1519 vpid_sync_vcpu_global();
1520}
1521
Sheng Yang14394422008-04-28 12:24:45 +08001522static inline void ept_sync_global(void)
1523{
1524 if (cpu_has_vmx_invept_global())
1525 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1526}
1527
1528static inline void ept_sync_context(u64 eptp)
1529{
Avi Kivity089d0342009-03-23 18:26:32 +02001530 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001531 if (cpu_has_vmx_invept_context())
1532 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1533 else
1534 ept_sync_global();
1535 }
1536}
1537
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001538static __always_inline void vmcs_check16(unsigned long field)
1539{
1540 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1541 "16-bit accessor invalid for 64-bit field");
1542 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1543 "16-bit accessor invalid for 64-bit high field");
1544 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1545 "16-bit accessor invalid for 32-bit high field");
1546 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1547 "16-bit accessor invalid for natural width field");
1548}
1549
1550static __always_inline void vmcs_check32(unsigned long field)
1551{
1552 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1553 "32-bit accessor invalid for 16-bit field");
1554 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1555 "32-bit accessor invalid for natural width field");
1556}
1557
1558static __always_inline void vmcs_check64(unsigned long field)
1559{
1560 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1561 "64-bit accessor invalid for 16-bit field");
1562 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1563 "64-bit accessor invalid for 64-bit high field");
1564 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1565 "64-bit accessor invalid for 32-bit field");
1566 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1567 "64-bit accessor invalid for natural width field");
1568}
1569
1570static __always_inline void vmcs_checkl(unsigned long field)
1571{
1572 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1573 "Natural width accessor invalid for 16-bit field");
1574 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1575 "Natural width accessor invalid for 64-bit field");
1576 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1577 "Natural width accessor invalid for 64-bit high field");
1578 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1579 "Natural width accessor invalid for 32-bit field");
1580}
1581
1582static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583{
Avi Kivity5e520e62011-05-15 10:13:12 -04001584 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585
Avi Kivity5e520e62011-05-15 10:13:12 -04001586 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1587 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001588 return value;
1589}
1590
Avi Kivity96304212011-05-15 10:13:13 -04001591static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001592{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001593 vmcs_check16(field);
1594 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595}
1596
Avi Kivity96304212011-05-15 10:13:13 -04001597static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001599 vmcs_check32(field);
1600 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001601}
1602
Avi Kivity96304212011-05-15 10:13:13 -04001603static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001604{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001605 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001606#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001607 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001608#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001609 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001610#endif
1611}
1612
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001613static __always_inline unsigned long vmcs_readl(unsigned long field)
1614{
1615 vmcs_checkl(field);
1616 return __vmcs_readl(field);
1617}
1618
Avi Kivitye52de1b2007-01-05 16:36:56 -08001619static noinline void vmwrite_error(unsigned long field, unsigned long value)
1620{
1621 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1622 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1623 dump_stack();
1624}
1625
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001626static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627{
1628 u8 error;
1629
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001630 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001631 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001632 if (unlikely(error))
1633 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001634}
1635
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001636static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001638 vmcs_check16(field);
1639 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001640}
1641
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001642static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001643{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001644 vmcs_check32(field);
1645 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646}
1647
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001648static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001650 vmcs_check64(field);
1651 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001652#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001654 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655#endif
1656}
1657
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001658static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001659{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001660 vmcs_checkl(field);
1661 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001662}
1663
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001664static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001665{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001666 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1667 "vmcs_clear_bits does not support 64-bit fields");
1668 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1669}
1670
1671static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1672{
1673 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1674 "vmcs_set_bits does not support 64-bit fields");
1675 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001676}
1677
Gleb Natapov2961e8762013-11-25 15:37:13 +02001678static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1679{
1680 vmcs_write32(VM_ENTRY_CONTROLS, val);
1681 vmx->vm_entry_controls_shadow = val;
1682}
1683
1684static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1685{
1686 if (vmx->vm_entry_controls_shadow != val)
1687 vm_entry_controls_init(vmx, val);
1688}
1689
1690static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1691{
1692 return vmx->vm_entry_controls_shadow;
1693}
1694
1695
1696static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1697{
1698 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1699}
1700
1701static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1702{
1703 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1704}
1705
1706static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1707{
1708 vmcs_write32(VM_EXIT_CONTROLS, val);
1709 vmx->vm_exit_controls_shadow = val;
1710}
1711
1712static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1713{
1714 if (vmx->vm_exit_controls_shadow != val)
1715 vm_exit_controls_init(vmx, val);
1716}
1717
1718static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1719{
1720 return vmx->vm_exit_controls_shadow;
1721}
1722
1723
1724static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1725{
1726 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1727}
1728
1729static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1730{
1731 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1732}
1733
Avi Kivity2fb92db2011-04-27 19:42:18 +03001734static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1735{
1736 vmx->segment_cache.bitmask = 0;
1737}
1738
1739static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1740 unsigned field)
1741{
1742 bool ret;
1743 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1744
1745 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1746 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1747 vmx->segment_cache.bitmask = 0;
1748 }
1749 ret = vmx->segment_cache.bitmask & mask;
1750 vmx->segment_cache.bitmask |= mask;
1751 return ret;
1752}
1753
1754static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1755{
1756 u16 *p = &vmx->segment_cache.seg[seg].selector;
1757
1758 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1759 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1760 return *p;
1761}
1762
1763static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1764{
1765 ulong *p = &vmx->segment_cache.seg[seg].base;
1766
1767 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1768 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1769 return *p;
1770}
1771
1772static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1773{
1774 u32 *p = &vmx->segment_cache.seg[seg].limit;
1775
1776 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1777 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1778 return *p;
1779}
1780
1781static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1782{
1783 u32 *p = &vmx->segment_cache.seg[seg].ar;
1784
1785 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1786 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1787 return *p;
1788}
1789
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001790static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1791{
1792 u32 eb;
1793
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001794 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001795 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001796 if ((vcpu->guest_debug &
1797 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1798 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1799 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001800 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001801 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001802 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001803 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001804 if (vcpu->fpu_active)
1805 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001806
1807 /* When we are running a nested L2 guest and L1 specified for it a
1808 * certain exception bitmap, we must trap the same exceptions and pass
1809 * them to L1. When running L2, we will only handle the exceptions
1810 * specified above if L1 did not want them.
1811 */
1812 if (is_guest_mode(vcpu))
1813 eb |= get_vmcs12(vcpu)->exception_bitmap;
1814
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001815 vmcs_write32(EXCEPTION_BITMAP, eb);
1816}
1817
Gleb Natapov2961e8762013-11-25 15:37:13 +02001818static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1819 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001820{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001821 vm_entry_controls_clearbit(vmx, entry);
1822 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001823}
1824
Avi Kivity61d2ef22010-04-28 16:40:38 +03001825static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1826{
1827 unsigned i;
1828 struct msr_autoload *m = &vmx->msr_autoload;
1829
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001830 switch (msr) {
1831 case MSR_EFER:
1832 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001833 clear_atomic_switch_msr_special(vmx,
1834 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001835 VM_EXIT_LOAD_IA32_EFER);
1836 return;
1837 }
1838 break;
1839 case MSR_CORE_PERF_GLOBAL_CTRL:
1840 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001841 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001842 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1843 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1844 return;
1845 }
1846 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001847 }
1848
Avi Kivity61d2ef22010-04-28 16:40:38 +03001849 for (i = 0; i < m->nr; ++i)
1850 if (m->guest[i].index == msr)
1851 break;
1852
1853 if (i == m->nr)
1854 return;
1855 --m->nr;
1856 m->guest[i] = m->guest[m->nr];
1857 m->host[i] = m->host[m->nr];
1858 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1859 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1860}
1861
Gleb Natapov2961e8762013-11-25 15:37:13 +02001862static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1863 unsigned long entry, unsigned long exit,
1864 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1865 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001866{
1867 vmcs_write64(guest_val_vmcs, guest_val);
1868 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001869 vm_entry_controls_setbit(vmx, entry);
1870 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001871}
1872
Avi Kivity61d2ef22010-04-28 16:40:38 +03001873static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1874 u64 guest_val, u64 host_val)
1875{
1876 unsigned i;
1877 struct msr_autoload *m = &vmx->msr_autoload;
1878
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001879 switch (msr) {
1880 case MSR_EFER:
1881 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001882 add_atomic_switch_msr_special(vmx,
1883 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001884 VM_EXIT_LOAD_IA32_EFER,
1885 GUEST_IA32_EFER,
1886 HOST_IA32_EFER,
1887 guest_val, host_val);
1888 return;
1889 }
1890 break;
1891 case MSR_CORE_PERF_GLOBAL_CTRL:
1892 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001893 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001894 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1895 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1896 GUEST_IA32_PERF_GLOBAL_CTRL,
1897 HOST_IA32_PERF_GLOBAL_CTRL,
1898 guest_val, host_val);
1899 return;
1900 }
1901 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001902 case MSR_IA32_PEBS_ENABLE:
1903 /* PEBS needs a quiescent period after being disabled (to write
1904 * a record). Disabling PEBS through VMX MSR swapping doesn't
1905 * provide that period, so a CPU could write host's record into
1906 * guest's memory.
1907 */
1908 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001909 }
1910
Avi Kivity61d2ef22010-04-28 16:40:38 +03001911 for (i = 0; i < m->nr; ++i)
1912 if (m->guest[i].index == msr)
1913 break;
1914
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001915 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001916 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001917 "Can't add msr %x\n", msr);
1918 return;
1919 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001920 ++m->nr;
1921 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1922 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1923 }
1924
1925 m->guest[i].index = msr;
1926 m->guest[i].value = guest_val;
1927 m->host[i].index = msr;
1928 m->host[i].value = host_val;
1929}
1930
Avi Kivity33ed6322007-05-02 16:54:03 +03001931static void reload_tss(void)
1932{
Avi Kivity33ed6322007-05-02 16:54:03 +03001933 /*
1934 * VT restores TR but not its size. Useless.
1935 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001936 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001937 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001938
Avi Kivityd3591922010-07-26 18:32:39 +03001939 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001940 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1941 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001942}
1943
Avi Kivity92c0d902009-10-29 11:00:16 +02001944static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001945{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001946 u64 guest_efer = vmx->vcpu.arch.efer;
1947 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03001948
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001949 if (!enable_ept) {
1950 /*
1951 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
1952 * host CPUID is more efficient than testing guest CPUID
1953 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
1954 */
1955 if (boot_cpu_has(X86_FEATURE_SMEP))
1956 guest_efer |= EFER_NX;
1957 else if (!(guest_efer & EFER_NX))
1958 ignore_bits |= EFER_NX;
1959 }
Roel Kluin3a34a882009-08-04 02:08:45 -07001960
Avi Kivity51c6cf62007-08-29 03:48:05 +03001961 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001962 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001963 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001964 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001965#ifdef CONFIG_X86_64
1966 ignore_bits |= EFER_LMA | EFER_LME;
1967 /* SCE is meaningful only in long mode on Intel */
1968 if (guest_efer & EFER_LMA)
1969 ignore_bits &= ~(u64)EFER_SCE;
1970#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001971
1972 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001973
1974 /*
1975 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1976 * On CPUs that support "load IA32_EFER", always switch EFER
1977 * atomically, since it's faster than switching it manually.
1978 */
1979 if (cpu_has_load_ia32_efer ||
1980 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001981 if (!(guest_efer & EFER_LMA))
1982 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001983 if (guest_efer != host_efer)
1984 add_atomic_switch_msr(vmx, MSR_EFER,
1985 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001986 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001987 } else {
1988 guest_efer &= ~ignore_bits;
1989 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001990
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001991 vmx->guest_msrs[efer_offset].data = guest_efer;
1992 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
1993
1994 return true;
1995 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03001996}
1997
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001998static unsigned long segment_base(u16 selector)
1999{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002000 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002001 struct desc_struct *d;
2002 unsigned long table_base;
2003 unsigned long v;
2004
2005 if (!(selector & ~3))
2006 return 0;
2007
Avi Kivityd3591922010-07-26 18:32:39 +03002008 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002009
2010 if (selector & 4) { /* from ldt */
2011 u16 ldt_selector = kvm_read_ldt();
2012
2013 if (!(ldt_selector & ~3))
2014 return 0;
2015
2016 table_base = segment_base(ldt_selector);
2017 }
2018 d = (struct desc_struct *)(table_base + (selector & ~7));
2019 v = get_desc_base(d);
2020#ifdef CONFIG_X86_64
2021 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
2022 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
2023#endif
2024 return v;
2025}
2026
2027static inline unsigned long kvm_read_tr_base(void)
2028{
2029 u16 tr;
2030 asm("str %0" : "=g"(tr));
2031 return segment_base(tr);
2032}
2033
Avi Kivity04d2cc72007-09-10 18:10:54 +03002034static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002035{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002036 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002037 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002038
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002039 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002040 return;
2041
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002042 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002043 /*
2044 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2045 * allow segment selectors with cpl > 0 or ti == 1.
2046 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002047 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002048 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002049 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002050 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002051 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002052 vmx->host_state.fs_reload_needed = 0;
2053 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002054 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002055 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002056 }
Avi Kivity9581d442010-10-19 16:46:55 +02002057 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002058 if (!(vmx->host_state.gs_sel & 7))
2059 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002060 else {
2061 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002062 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002063 }
2064
2065#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002066 savesegment(ds, vmx->host_state.ds_sel);
2067 savesegment(es, vmx->host_state.es_sel);
2068#endif
2069
2070#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002071 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2072 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2073#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002074 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2075 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002076#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002077
2078#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002079 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2080 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002081 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002082#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002083 if (boot_cpu_has(X86_FEATURE_MPX))
2084 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002085 for (i = 0; i < vmx->save_nmsrs; ++i)
2086 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002087 vmx->guest_msrs[i].data,
2088 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002089}
2090
Avi Kivitya9b21b62008-06-24 11:48:49 +03002091static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002092{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002093 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002094 return;
2095
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002096 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002097 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002098#ifdef CONFIG_X86_64
2099 if (is_long_mode(&vmx->vcpu))
2100 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2101#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002102 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002103 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002104#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002105 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002106#else
2107 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002108#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002109 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002110 if (vmx->host_state.fs_reload_needed)
2111 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002112#ifdef CONFIG_X86_64
2113 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2114 loadsegment(ds, vmx->host_state.ds_sel);
2115 loadsegment(es, vmx->host_state.es_sel);
2116 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002117#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002118 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002119#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002120 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002121#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002122 if (vmx->host_state.msr_host_bndcfgs)
2123 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002124 /*
2125 * If the FPU is not active (through the host task or
2126 * the guest vcpu), then restore the cr0.TS bit.
2127 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002128 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002129 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002130 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002131}
2132
Avi Kivitya9b21b62008-06-24 11:48:49 +03002133static void vmx_load_host_state(struct vcpu_vmx *vmx)
2134{
2135 preempt_disable();
2136 __vmx_load_host_state(vmx);
2137 preempt_enable();
2138}
2139
Feng Wu28b835d2015-09-18 22:29:54 +08002140static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2141{
2142 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2143 struct pi_desc old, new;
2144 unsigned int dest;
2145
2146 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2147 !irq_remapping_cap(IRQ_POSTING_CAP))
2148 return;
2149
2150 do {
2151 old.control = new.control = pi_desc->control;
2152
2153 /*
2154 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2155 * are two possible cases:
2156 * 1. After running 'pre_block', context switch
2157 * happened. For this case, 'sn' was set in
2158 * vmx_vcpu_put(), so we need to clear it here.
2159 * 2. After running 'pre_block', we were blocked,
2160 * and woken up by some other guy. For this case,
2161 * we don't need to do anything, 'pi_post_block'
2162 * will do everything for us. However, we cannot
2163 * check whether it is case #1 or case #2 here
2164 * (maybe, not needed), so we also clear sn here,
2165 * I think it is not a big deal.
2166 */
2167 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2168 if (vcpu->cpu != cpu) {
2169 dest = cpu_physical_id(cpu);
2170
2171 if (x2apic_enabled())
2172 new.ndst = dest;
2173 else
2174 new.ndst = (dest << 8) & 0xFF00;
2175 }
2176
2177 /* set 'NV' to 'notification vector' */
2178 new.nv = POSTED_INTR_VECTOR;
2179 }
2180
2181 /* Allow posting non-urgent interrupts */
2182 new.sn = 0;
2183 } while (cmpxchg(&pi_desc->control, old.control,
2184 new.control) != old.control);
2185}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002186
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187/*
2188 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2189 * vcpu mutex is already taken.
2190 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002191static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002192{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002193 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002194 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002195
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002196 if (!vmm_exclusive)
2197 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002198 else if (vmx->loaded_vmcs->cpu != cpu)
2199 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002200
Nadav Har'Eld462b812011-05-24 15:26:10 +03002201 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2202 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2203 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002204 }
2205
Nadav Har'Eld462b812011-05-24 15:26:10 +03002206 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002207 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208 unsigned long sysenter_esp;
2209
Avi Kivitya8eeb042010-05-10 12:34:53 +03002210 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002211 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002212 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002213
2214 /*
2215 * Read loaded_vmcs->cpu should be before fetching
2216 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2217 * See the comments in __loaded_vmcs_clear().
2218 */
2219 smp_rmb();
2220
Nadav Har'Eld462b812011-05-24 15:26:10 +03002221 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2222 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002223 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002224 local_irq_enable();
2225
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226 /*
2227 * Linux uses per-cpu TSS and GDT, so set these when switching
2228 * processors.
2229 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002230 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002231 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002232
2233 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2234 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002235
Nadav Har'Eld462b812011-05-24 15:26:10 +03002236 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002237 }
Feng Wu28b835d2015-09-18 22:29:54 +08002238
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002239 /* Setup TSC multiplier */
2240 if (kvm_has_tsc_control &&
2241 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) {
2242 vmx->current_tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2243 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2244 }
2245
Feng Wu28b835d2015-09-18 22:29:54 +08002246 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002247 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002248}
2249
2250static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2251{
2252 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2253
2254 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2255 !irq_remapping_cap(IRQ_POSTING_CAP))
2256 return;
2257
2258 /* Set SN when the vCPU is preempted */
2259 if (vcpu->preempted)
2260 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261}
2262
2263static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2264{
Feng Wu28b835d2015-09-18 22:29:54 +08002265 vmx_vcpu_pi_put(vcpu);
2266
Avi Kivitya9b21b62008-06-24 11:48:49 +03002267 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002268 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002269 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2270 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002271 kvm_cpu_vmxoff();
2272 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002273}
2274
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002275static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2276{
Avi Kivity81231c62010-01-24 16:26:40 +02002277 ulong cr0;
2278
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002279 if (vcpu->fpu_active)
2280 return;
2281 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002282 cr0 = vmcs_readl(GUEST_CR0);
2283 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2284 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2285 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002286 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002287 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002288 if (is_guest_mode(vcpu))
2289 vcpu->arch.cr0_guest_owned_bits &=
2290 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002291 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002292}
2293
Avi Kivityedcafe32009-12-30 18:07:40 +02002294static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2295
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002296/*
2297 * Return the cr0 value that a nested guest would read. This is a combination
2298 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2299 * its hypervisor (cr0_read_shadow).
2300 */
2301static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2302{
2303 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2304 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2305}
2306static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2307{
2308 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2309 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2310}
2311
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002312static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2313{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002314 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2315 * set this *before* calling this function.
2316 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002317 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002318 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002319 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002320 vcpu->arch.cr0_guest_owned_bits = 0;
2321 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002322 if (is_guest_mode(vcpu)) {
2323 /*
2324 * L1's specified read shadow might not contain the TS bit,
2325 * so now that we turned on shadowing of this bit, we need to
2326 * set this bit of the shadow. Like in nested_vmx_run we need
2327 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2328 * up-to-date here because we just decached cr0.TS (and we'll
2329 * only update vmcs12->guest_cr0 on nested exit).
2330 */
2331 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2332 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2333 (vcpu->arch.cr0 & X86_CR0_TS);
2334 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2335 } else
2336 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002337}
2338
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2340{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002341 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002342
Avi Kivity6de12732011-03-07 12:51:22 +02002343 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2344 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2345 rflags = vmcs_readl(GUEST_RFLAGS);
2346 if (to_vmx(vcpu)->rmode.vm86_active) {
2347 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2348 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2349 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2350 }
2351 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002352 }
Avi Kivity6de12732011-03-07 12:51:22 +02002353 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002354}
2355
2356static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2357{
Avi Kivity6de12732011-03-07 12:51:22 +02002358 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2359 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002360 if (to_vmx(vcpu)->rmode.vm86_active) {
2361 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002362 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002363 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364 vmcs_writel(GUEST_RFLAGS, rflags);
2365}
2366
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002367static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2368{
2369 return to_vmx(vcpu)->guest_pkru;
2370}
2371
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002372static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002373{
2374 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2375 int ret = 0;
2376
2377 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002378 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002379 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002380 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002381
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002382 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002383}
2384
2385static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2386{
2387 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2388 u32 interruptibility = interruptibility_old;
2389
2390 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2391
Jan Kiszka48005f62010-02-19 19:38:07 +01002392 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002393 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002394 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002395 interruptibility |= GUEST_INTR_STATE_STI;
2396
2397 if ((interruptibility != interruptibility_old))
2398 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2399}
2400
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2402{
2403 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002404
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002405 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002407 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408
Glauber Costa2809f5d2009-05-12 16:21:05 -04002409 /* skipping an emulated instruction also counts */
2410 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002411}
2412
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002413/*
2414 * KVM wants to inject page-faults which it got to the guest. This function
2415 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002416 */
Gleb Natapove011c662013-09-25 12:51:35 +03002417static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002418{
2419 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2420
Gleb Natapove011c662013-09-25 12:51:35 +03002421 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002422 return 0;
2423
Jan Kiszka533558b2014-01-04 18:47:20 +01002424 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2425 vmcs_read32(VM_EXIT_INTR_INFO),
2426 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002427 return 1;
2428}
2429
Avi Kivity298101d2007-11-25 13:41:11 +02002430static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002431 bool has_error_code, u32 error_code,
2432 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002433{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002434 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002435 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002436
Gleb Natapove011c662013-09-25 12:51:35 +03002437 if (!reinject && is_guest_mode(vcpu) &&
2438 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002439 return;
2440
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002441 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002442 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002443 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2444 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002445
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002446 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002447 int inc_eip = 0;
2448 if (kvm_exception_is_soft(nr))
2449 inc_eip = vcpu->arch.event_exit_inst_len;
2450 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002451 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002452 return;
2453 }
2454
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002455 if (kvm_exception_is_soft(nr)) {
2456 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2457 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002458 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2459 } else
2460 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2461
2462 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002463}
2464
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002465static bool vmx_rdtscp_supported(void)
2466{
2467 return cpu_has_vmx_rdtscp();
2468}
2469
Mao, Junjiead756a12012-07-02 01:18:48 +00002470static bool vmx_invpcid_supported(void)
2471{
2472 return cpu_has_vmx_invpcid() && enable_ept;
2473}
2474
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475/*
Eddie Donga75beee2007-05-17 18:55:15 +03002476 * Swap MSR entry in host/guest MSR entry array.
2477 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002478static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002479{
Avi Kivity26bb0982009-09-07 11:14:12 +03002480 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002481
2482 tmp = vmx->guest_msrs[to];
2483 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2484 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002485}
2486
Yang Zhang8d146952013-01-25 10:18:50 +08002487static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2488{
2489 unsigned long *msr_bitmap;
2490
Wincy Van670125b2015-03-04 14:31:56 +08002491 if (is_guest_mode(vcpu))
2492 msr_bitmap = vmx_msr_bitmap_nested;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002493 else if (cpu_has_secondary_exec_ctrls() &&
2494 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2495 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Yang Zhang8d146952013-01-25 10:18:50 +08002496 if (is_long_mode(vcpu))
2497 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2498 else
2499 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2500 } else {
2501 if (is_long_mode(vcpu))
2502 msr_bitmap = vmx_msr_bitmap_longmode;
2503 else
2504 msr_bitmap = vmx_msr_bitmap_legacy;
2505 }
2506
2507 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2508}
2509
Eddie Donga75beee2007-05-17 18:55:15 +03002510/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002511 * Set up the vmcs to automatically save and restore system
2512 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2513 * mode, as fiddling with msrs is very expensive.
2514 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002515static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002516{
Avi Kivity26bb0982009-09-07 11:14:12 +03002517 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002518
Eddie Donga75beee2007-05-17 18:55:15 +03002519 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002520#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002521 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002522 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002523 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002524 move_msr_up(vmx, index, save_nmsrs++);
2525 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002526 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002527 move_msr_up(vmx, index, save_nmsrs++);
2528 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002529 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002530 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002531 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002532 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002533 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002534 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002535 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002536 * if efer.sce is enabled.
2537 */
Brian Gerst8c065852010-07-17 09:03:26 -04002538 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002539 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002540 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002541 }
Eddie Donga75beee2007-05-17 18:55:15 +03002542#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002543 index = __find_msr_index(vmx, MSR_EFER);
2544 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002545 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002546
Avi Kivity26bb0982009-09-07 11:14:12 +03002547 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002548
Yang Zhang8d146952013-01-25 10:18:50 +08002549 if (cpu_has_vmx_msr_bitmap())
2550 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002551}
2552
2553/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002555 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2556 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002558static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002559{
2560 u64 host_tsc, tsc_offset;
2561
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002562 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002564 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002565}
2566
2567/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002568 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2569 * counter, even if a nested guest (L2) is currently running.
2570 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002571static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002572{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002573 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002574
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002575 tsc_offset = is_guest_mode(vcpu) ?
2576 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2577 vmcs_read64(TSC_OFFSET);
2578 return host_tsc + tsc_offset;
2579}
2580
Will Auldba904632012-11-29 12:42:50 -08002581static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2582{
2583 return vmcs_read64(TSC_OFFSET);
2584}
2585
Joerg Roedel4051b182011-03-25 09:44:49 +01002586/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002587 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002589static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002591 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002592 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002593 * We're here if L1 chose not to trap WRMSR to TSC. According
2594 * to the spec, this should set L1's TSC; The offset that L1
2595 * set for L2 remains unchanged, and still needs to be added
2596 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002597 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002598 struct vmcs12 *vmcs12;
2599 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2600 /* recalculate vmcs02.TSC_OFFSET: */
2601 vmcs12 = get_vmcs12(vcpu);
2602 vmcs_write64(TSC_OFFSET, offset +
2603 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2604 vmcs12->tsc_offset : 0));
2605 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002606 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2607 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002608 vmcs_write64(TSC_OFFSET, offset);
2609 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610}
2611
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002612static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002613{
2614 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002615
Zachary Amsdene48672f2010-08-19 22:07:23 -10002616 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002617 if (is_guest_mode(vcpu)) {
2618 /* Even when running L2, the adjustment needs to apply to L1 */
2619 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002620 } else
2621 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2622 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002623}
2624
Nadav Har'El801d3422011-05-25 23:02:23 +03002625static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2626{
2627 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2628 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2629}
2630
2631/*
2632 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2633 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2634 * all guests if the "nested" module option is off, and can also be disabled
2635 * for a single guest by disabling its VMX cpuid bit.
2636 */
2637static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2638{
2639 return nested && guest_cpuid_has_vmx(vcpu);
2640}
2641
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002643 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2644 * returned for the various VMX controls MSRs when nested VMX is enabled.
2645 * The same values should also be used to verify that vmcs12 control fields are
2646 * valid during nested entry from L1 to L2.
2647 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2648 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2649 * bit in the high half is on if the corresponding bit in the control field
2650 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002651 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002652static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002653{
2654 /*
2655 * Note that as a general rule, the high half of the MSRs (bits in
2656 * the control fields which may be 1) should be initialized by the
2657 * intersection of the underlying hardware's MSR (i.e., features which
2658 * can be supported) and the list of features we want to expose -
2659 * because they are known to be properly supported in our code.
2660 * Also, usually, the low half of the MSRs (bits which must be 1) can
2661 * be set to 0, meaning that L1 may turn off any of these bits. The
2662 * reason is that if one of these bits is necessary, it will appear
2663 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2664 * fields of vmcs01 and vmcs02, will turn these bits off - and
2665 * nested_vmx_exit_handled() will not pass related exits to L1.
2666 * These rules have exceptions below.
2667 */
2668
2669 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002670 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002671 vmx->nested.nested_vmx_pinbased_ctls_low,
2672 vmx->nested.nested_vmx_pinbased_ctls_high);
2673 vmx->nested.nested_vmx_pinbased_ctls_low |=
2674 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2675 vmx->nested.nested_vmx_pinbased_ctls_high &=
2676 PIN_BASED_EXT_INTR_MASK |
2677 PIN_BASED_NMI_EXITING |
2678 PIN_BASED_VIRTUAL_NMIS;
2679 vmx->nested.nested_vmx_pinbased_ctls_high |=
2680 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002681 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002682 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002683 vmx->nested.nested_vmx_pinbased_ctls_high |=
2684 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002685
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002686 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002687 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002688 vmx->nested.nested_vmx_exit_ctls_low,
2689 vmx->nested.nested_vmx_exit_ctls_high);
2690 vmx->nested.nested_vmx_exit_ctls_low =
2691 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002692
Wincy Vanb9c237b2015-02-03 23:56:30 +08002693 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002694#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002695 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002696#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002697 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002698 vmx->nested.nested_vmx_exit_ctls_high |=
2699 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002700 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002701 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2702
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002703 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002704 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002705
Jan Kiszka2996fca2014-06-16 13:59:43 +02002706 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002707 vmx->nested.nested_vmx_true_exit_ctls_low =
2708 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002709 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2710
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002711 /* entry controls */
2712 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002713 vmx->nested.nested_vmx_entry_ctls_low,
2714 vmx->nested.nested_vmx_entry_ctls_high);
2715 vmx->nested.nested_vmx_entry_ctls_low =
2716 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2717 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002718#ifdef CONFIG_X86_64
2719 VM_ENTRY_IA32E_MODE |
2720#endif
2721 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002722 vmx->nested.nested_vmx_entry_ctls_high |=
2723 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002724 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002725 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002726
Jan Kiszka2996fca2014-06-16 13:59:43 +02002727 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002728 vmx->nested.nested_vmx_true_entry_ctls_low =
2729 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002730 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2731
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002732 /* cpu-based controls */
2733 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002734 vmx->nested.nested_vmx_procbased_ctls_low,
2735 vmx->nested.nested_vmx_procbased_ctls_high);
2736 vmx->nested.nested_vmx_procbased_ctls_low =
2737 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2738 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002739 CPU_BASED_VIRTUAL_INTR_PENDING |
2740 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002741 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2742 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2743 CPU_BASED_CR3_STORE_EXITING |
2744#ifdef CONFIG_X86_64
2745 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2746#endif
2747 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002748 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2749 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2750 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2751 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002752 /*
2753 * We can allow some features even when not supported by the
2754 * hardware. For example, L1 can specify an MSR bitmap - and we
2755 * can use it to avoid exits to L1 - even when L0 runs L2
2756 * without MSR bitmaps.
2757 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 vmx->nested.nested_vmx_procbased_ctls_high |=
2759 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002760 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002761
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002762 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002763 vmx->nested.nested_vmx_true_procbased_ctls_low =
2764 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002765 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2766
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002767 /* secondary cpu-based controls */
2768 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002769 vmx->nested.nested_vmx_secondary_ctls_low,
2770 vmx->nested.nested_vmx_secondary_ctls_high);
2771 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2772 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002773 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002774 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002775 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002776 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002777 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002778 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002779 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002780 SECONDARY_EXEC_XSAVES |
2781 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002782
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002783 if (enable_ept) {
2784 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002785 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002786 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002787 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002788 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2789 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002790 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002791 /*
Bandan Das4b855072014-04-19 18:17:44 -04002792 * For nested guests, we don't do anything specific
2793 * for single context invalidation. Hence, only advertise
2794 * support for global context invalidation.
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002795 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002796 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002797 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002798 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002799
Paolo Bonzinief697a72016-03-18 16:58:38 +01002800 /*
2801 * Old versions of KVM use the single-context version without
2802 * checking for support, so declare that it is supported even
2803 * though it is treated as global context. The alternative is
2804 * not failing the single-context invvpid, and it is worse.
2805 */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002806 if (enable_vpid)
2807 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Paolo Bonzinief697a72016-03-18 16:58:38 +01002808 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT |
Wanpeng Li089d7b62015-10-13 09:18:37 -07002809 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2810 else
2811 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002812
Radim Krčmář0790ec12015-03-17 14:02:32 +01002813 if (enable_unrestricted_guest)
2814 vmx->nested.nested_vmx_secondary_ctls_high |=
2815 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2816
Jan Kiszkac18911a2013-03-13 16:06:41 +01002817 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002818 rdmsr(MSR_IA32_VMX_MISC,
2819 vmx->nested.nested_vmx_misc_low,
2820 vmx->nested.nested_vmx_misc_high);
2821 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2822 vmx->nested.nested_vmx_misc_low |=
2823 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002824 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002825 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002826}
2827
2828static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2829{
2830 /*
2831 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2832 */
2833 return ((control & high) | low) == control;
2834}
2835
2836static inline u64 vmx_control_msr(u32 low, u32 high)
2837{
2838 return low | ((u64)high << 32);
2839}
2840
Jan Kiszkacae50132014-01-04 18:47:22 +01002841/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002842static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2843{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002844 struct vcpu_vmx *vmx = to_vmx(vcpu);
2845
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002846 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002847 case MSR_IA32_VMX_BASIC:
2848 /*
2849 * This MSR reports some information about VMX support. We
2850 * should return information about the VMX we emulate for the
2851 * guest, and the VMCS structure we give it - not about the
2852 * VMX support of the underlying hardware.
2853 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002854 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002855 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2856 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2857 break;
2858 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2859 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002860 *pdata = vmx_control_msr(
2861 vmx->nested.nested_vmx_pinbased_ctls_low,
2862 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002863 break;
2864 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002865 *pdata = vmx_control_msr(
2866 vmx->nested.nested_vmx_true_procbased_ctls_low,
2867 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002868 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002869 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002870 *pdata = vmx_control_msr(
2871 vmx->nested.nested_vmx_procbased_ctls_low,
2872 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002873 break;
2874 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002875 *pdata = vmx_control_msr(
2876 vmx->nested.nested_vmx_true_exit_ctls_low,
2877 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002878 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002879 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002880 *pdata = vmx_control_msr(
2881 vmx->nested.nested_vmx_exit_ctls_low,
2882 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002883 break;
2884 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002885 *pdata = vmx_control_msr(
2886 vmx->nested.nested_vmx_true_entry_ctls_low,
2887 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002888 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002889 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002890 *pdata = vmx_control_msr(
2891 vmx->nested.nested_vmx_entry_ctls_low,
2892 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002893 break;
2894 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002895 *pdata = vmx_control_msr(
2896 vmx->nested.nested_vmx_misc_low,
2897 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002898 break;
2899 /*
2900 * These MSRs specify bits which the guest must keep fixed (on or off)
2901 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2902 * We picked the standard core2 setting.
2903 */
2904#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2905#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2906 case MSR_IA32_VMX_CR0_FIXED0:
2907 *pdata = VMXON_CR0_ALWAYSON;
2908 break;
2909 case MSR_IA32_VMX_CR0_FIXED1:
2910 *pdata = -1ULL;
2911 break;
2912 case MSR_IA32_VMX_CR4_FIXED0:
2913 *pdata = VMXON_CR4_ALWAYSON;
2914 break;
2915 case MSR_IA32_VMX_CR4_FIXED1:
2916 *pdata = -1ULL;
2917 break;
2918 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002919 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002920 break;
2921 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002922 *pdata = vmx_control_msr(
2923 vmx->nested.nested_vmx_secondary_ctls_low,
2924 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002925 break;
2926 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002927 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002928 *pdata = vmx->nested.nested_vmx_ept_caps |
2929 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002930 break;
2931 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002932 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002933 }
2934
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002935 return 0;
2936}
2937
Haozhong Zhang37e4c992016-06-22 14:59:55 +08002938static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
2939 uint64_t val)
2940{
2941 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
2942
2943 return !(val & ~valid_bits);
2944}
2945
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002946/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002947 * Reads an msr value (of 'msr_index') into 'pdata'.
2948 * Returns 0 on success, non-0 otherwise.
2949 * Assumes vcpu_load() was already called.
2950 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002951static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002952{
Avi Kivity26bb0982009-09-07 11:14:12 +03002953 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002954
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002955 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002956#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002957 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002958 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002959 break;
2960 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002961 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002963 case MSR_KERNEL_GS_BASE:
2964 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002965 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002966 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002967#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002969 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302970 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002971 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 break;
2973 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002974 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975 break;
2976 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002977 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978 break;
2979 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002980 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002982 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002983 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002984 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002985 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002986 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08002987 case MSR_IA32_MCG_EXT_CTL:
2988 if (!msr_info->host_initiated &&
2989 !(to_vmx(vcpu)->msr_ia32_feature_control &
2990 FEATURE_CONTROL_LMCE))
2991 return 1;
2992 msr_info->data = vcpu->arch.mcg_ext_ctl;
2993 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002994 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08002995 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002996 break;
2997 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2998 if (!nested_vmx_allowed(vcpu))
2999 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003000 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003001 case MSR_IA32_XSS:
3002 if (!vmx_xsaves_supported())
3003 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003004 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003005 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003006 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003007 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003008 return 1;
3009 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003010 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003011 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003012 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003013 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003014 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003016 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017 }
3018
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019 return 0;
3020}
3021
Jan Kiszkacae50132014-01-04 18:47:22 +01003022static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3023
Avi Kivity6aa8b732006-12-10 02:21:36 -08003024/*
3025 * Writes msr value into into the appropriate "register".
3026 * Returns 0 on success, non-0 otherwise.
3027 * Assumes vcpu_load() was already called.
3028 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003029static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003031 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003032 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003033 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003034 u32 msr_index = msr_info->index;
3035 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003036
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003038 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003039 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003040 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003041#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003042 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003043 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003044 vmcs_writel(GUEST_FS_BASE, data);
3045 break;
3046 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003047 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003048 vmcs_writel(GUEST_GS_BASE, data);
3049 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003050 case MSR_KERNEL_GS_BASE:
3051 vmx_load_host_state(vmx);
3052 vmx->msr_guest_kernel_gs_base = data;
3053 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003054#endif
3055 case MSR_IA32_SYSENTER_CS:
3056 vmcs_write32(GUEST_SYSENTER_CS, data);
3057 break;
3058 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003059 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003060 break;
3061 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003062 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003063 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003064 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003065 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003066 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003067 vmcs_write64(GUEST_BNDCFGS, data);
3068 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303069 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08003070 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003071 break;
Sheng Yang468d4722008-10-09 16:01:55 +08003072 case MSR_IA32_CR_PAT:
3073 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003074 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3075 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003076 vmcs_write64(GUEST_IA32_PAT, data);
3077 vcpu->arch.pat = data;
3078 break;
3079 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003080 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003081 break;
Will Auldba904632012-11-29 12:42:50 -08003082 case MSR_IA32_TSC_ADJUST:
3083 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003084 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003085 case MSR_IA32_MCG_EXT_CTL:
3086 if ((!msr_info->host_initiated &&
3087 !(to_vmx(vcpu)->msr_ia32_feature_control &
3088 FEATURE_CONTROL_LMCE)) ||
3089 (data & ~MCG_EXT_CTL_LMCE_EN))
3090 return 1;
3091 vcpu->arch.mcg_ext_ctl = data;
3092 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003093 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003094 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003095 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003096 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3097 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003098 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003099 if (msr_info->host_initiated && data == 0)
3100 vmx_leave_nested(vcpu);
3101 break;
3102 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3103 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08003104 case MSR_IA32_XSS:
3105 if (!vmx_xsaves_supported())
3106 return 1;
3107 /*
3108 * The only supported bit as of Skylake is bit 8, but
3109 * it is not supported on KVM.
3110 */
3111 if (data != 0)
3112 return 1;
3113 vcpu->arch.ia32_xss = data;
3114 if (vcpu->arch.ia32_xss != host_xss)
3115 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3116 vcpu->arch.ia32_xss, host_xss);
3117 else
3118 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3119 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003120 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003121 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003122 return 1;
3123 /* Check reserved bit, higher 32 bits should be zero */
3124 if ((data >> 32) != 0)
3125 return 1;
3126 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003127 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003128 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003129 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003130 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003131 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003132 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3133 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003134 ret = kvm_set_shared_msr(msr->index, msr->data,
3135 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003136 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003137 if (ret)
3138 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003139 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003140 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003142 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143 }
3144
Eddie Dong2cc51562007-05-21 07:28:09 +03003145 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003146}
3147
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003148static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003149{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003150 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3151 switch (reg) {
3152 case VCPU_REGS_RSP:
3153 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3154 break;
3155 case VCPU_REGS_RIP:
3156 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3157 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003158 case VCPU_EXREG_PDPTR:
3159 if (enable_ept)
3160 ept_save_pdptrs(vcpu);
3161 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003162 default:
3163 break;
3164 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003165}
3166
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167static __init int cpu_has_kvm_support(void)
3168{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003169 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003170}
3171
3172static __init int vmx_disabled_by_bios(void)
3173{
3174 u64 msr;
3175
3176 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003177 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003178 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003179 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3180 && tboot_enabled())
3181 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003182 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003183 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003184 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003185 && !tboot_enabled()) {
3186 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003187 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003188 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003189 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003190 /* launched w/o TXT and VMX disabled */
3191 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3192 && !tboot_enabled())
3193 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003194 }
3195
3196 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003197}
3198
Dongxiao Xu7725b892010-05-11 18:29:38 +08003199static void kvm_cpu_vmxon(u64 addr)
3200{
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003201 intel_pt_handle_vmx(1);
3202
Dongxiao Xu7725b892010-05-11 18:29:38 +08003203 asm volatile (ASM_VMX_VMXON_RAX
3204 : : "a"(&addr), "m"(addr)
3205 : "memory", "cc");
3206}
3207
Radim Krčmář13a34e02014-08-28 15:13:03 +02003208static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003209{
3210 int cpu = raw_smp_processor_id();
3211 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003212 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003213
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003214 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003215 return -EBUSY;
3216
Nadav Har'Eld462b812011-05-24 15:26:10 +03003217 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003218 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3219 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003220
3221 /*
3222 * Now we can enable the vmclear operation in kdump
3223 * since the loaded_vmcss_on_cpu list on this cpu
3224 * has been initialized.
3225 *
3226 * Though the cpu is not in VMX operation now, there
3227 * is no problem to enable the vmclear operation
3228 * for the loaded_vmcss_on_cpu list is empty!
3229 */
3230 crash_enable_local_vmclear(cpu);
3231
Avi Kivity6aa8b732006-12-10 02:21:36 -08003232 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003233
3234 test_bits = FEATURE_CONTROL_LOCKED;
3235 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3236 if (tboot_enabled())
3237 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3238
3239 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003241 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3242 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003243 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003244
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003245 if (vmm_exclusive) {
3246 kvm_cpu_vmxon(phys_addr);
3247 ept_sync_global();
3248 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003249
Christoph Lameter89cbc762014-08-17 12:30:40 -05003250 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003251
Alexander Graf10474ae2009-09-15 11:37:46 +02003252 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253}
3254
Nadav Har'Eld462b812011-05-24 15:26:10 +03003255static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003256{
3257 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003258 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003259
Nadav Har'Eld462b812011-05-24 15:26:10 +03003260 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3261 loaded_vmcss_on_cpu_link)
3262 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003263}
3264
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003265
3266/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3267 * tricks.
3268 */
3269static void kvm_cpu_vmxoff(void)
3270{
3271 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003272
3273 intel_pt_handle_vmx(0);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003274}
3275
Radim Krčmář13a34e02014-08-28 15:13:03 +02003276static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003277{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003278 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003279 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003280 kvm_cpu_vmxoff();
3281 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003282 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003283}
3284
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003285static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003286 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003287{
3288 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003289 u32 ctl = ctl_min | ctl_opt;
3290
3291 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3292
3293 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3294 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3295
3296 /* Ensure minimum (required) set of control bits are supported. */
3297 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003298 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003299
3300 *result = ctl;
3301 return 0;
3302}
3303
Avi Kivity110312c2010-12-21 12:54:20 +02003304static __init bool allow_1_setting(u32 msr, u32 ctl)
3305{
3306 u32 vmx_msr_low, vmx_msr_high;
3307
3308 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3309 return vmx_msr_high & ctl;
3310}
3311
Yang, Sheng002c7f72007-07-31 14:23:01 +03003312static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003313{
3314 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003315 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003316 u32 _pin_based_exec_control = 0;
3317 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003318 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003319 u32 _vmexit_control = 0;
3320 u32 _vmentry_control = 0;
3321
Raghavendra K T10166742012-02-07 23:19:20 +05303322 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003323#ifdef CONFIG_X86_64
3324 CPU_BASED_CR8_LOAD_EXITING |
3325 CPU_BASED_CR8_STORE_EXITING |
3326#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003327 CPU_BASED_CR3_LOAD_EXITING |
3328 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003329 CPU_BASED_USE_IO_BITMAPS |
3330 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003331 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003332 CPU_BASED_MWAIT_EXITING |
3333 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003334 CPU_BASED_INVLPG_EXITING |
3335 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003336
Sheng Yangf78e0e22007-10-29 09:40:42 +08003337 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003338 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003339 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003340 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3341 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003342 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003343#ifdef CONFIG_X86_64
3344 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3345 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3346 ~CPU_BASED_CR8_STORE_EXITING;
3347#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003348 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003349 min2 = 0;
3350 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003351 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003352 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003353 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003354 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003355 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003356 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003357 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003358 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003359 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003360 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003361 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003362 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003363 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003364 SECONDARY_EXEC_PCOMMIT |
3365 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003366 if (adjust_vmx_controls(min2, opt2,
3367 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003368 &_cpu_based_2nd_exec_control) < 0)
3369 return -EIO;
3370 }
3371#ifndef CONFIG_X86_64
3372 if (!(_cpu_based_2nd_exec_control &
3373 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3374 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3375#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003376
3377 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3378 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003379 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003380 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3381 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003382
Sheng Yangd56f5462008-04-25 10:13:16 +08003383 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003384 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3385 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003386 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3387 CPU_BASED_CR3_STORE_EXITING |
3388 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003389 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3390 vmx_capability.ept, vmx_capability.vpid);
3391 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003392
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003393 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003394#ifdef CONFIG_X86_64
3395 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3396#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003397 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003398 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003399 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3400 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003401 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003402
Yang Zhang01e439b2013-04-11 19:25:12 +08003403 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Yunhong Jiang64672c92016-06-13 14:19:59 -07003404 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
3405 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003406 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3407 &_pin_based_exec_control) < 0)
3408 return -EIO;
3409
3410 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003411 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003412 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3413
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003414 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003415 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003416 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3417 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003418 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003419
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003420 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003421
3422 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3423 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003424 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003425
3426#ifdef CONFIG_X86_64
3427 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3428 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003429 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003430#endif
3431
3432 /* Require Write-Back (WB) memory type for VMCS accesses. */
3433 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003434 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003435
Yang, Sheng002c7f72007-07-31 14:23:01 +03003436 vmcs_conf->size = vmx_msr_high & 0x1fff;
3437 vmcs_conf->order = get_order(vmcs_config.size);
3438 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003439
Yang, Sheng002c7f72007-07-31 14:23:01 +03003440 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3441 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003442 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003443 vmcs_conf->vmexit_ctrl = _vmexit_control;
3444 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003445
Avi Kivity110312c2010-12-21 12:54:20 +02003446 cpu_has_load_ia32_efer =
3447 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3448 VM_ENTRY_LOAD_IA32_EFER)
3449 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3450 VM_EXIT_LOAD_IA32_EFER);
3451
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003452 cpu_has_load_perf_global_ctrl =
3453 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3454 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3455 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3456 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3457
3458 /*
3459 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003460 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003461 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3462 *
3463 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3464 *
3465 * AAK155 (model 26)
3466 * AAP115 (model 30)
3467 * AAT100 (model 37)
3468 * BC86,AAY89,BD102 (model 44)
3469 * BA97 (model 46)
3470 *
3471 */
3472 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3473 switch (boot_cpu_data.x86_model) {
3474 case 26:
3475 case 30:
3476 case 37:
3477 case 44:
3478 case 46:
3479 cpu_has_load_perf_global_ctrl = false;
3480 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3481 "does not work properly. Using workaround\n");
3482 break;
3483 default:
3484 break;
3485 }
3486 }
3487
Borislav Petkov782511b2016-04-04 22:25:03 +02003488 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003489 rdmsrl(MSR_IA32_XSS, host_xss);
3490
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003491 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003492}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003493
3494static struct vmcs *alloc_vmcs_cpu(int cpu)
3495{
3496 int node = cpu_to_node(cpu);
3497 struct page *pages;
3498 struct vmcs *vmcs;
3499
Vlastimil Babka96db8002015-09-08 15:03:50 -07003500 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003501 if (!pages)
3502 return NULL;
3503 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003504 memset(vmcs, 0, vmcs_config.size);
3505 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506 return vmcs;
3507}
3508
3509static struct vmcs *alloc_vmcs(void)
3510{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003511 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512}
3513
3514static void free_vmcs(struct vmcs *vmcs)
3515{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003516 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003517}
3518
Nadav Har'Eld462b812011-05-24 15:26:10 +03003519/*
3520 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3521 */
3522static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3523{
3524 if (!loaded_vmcs->vmcs)
3525 return;
3526 loaded_vmcs_clear(loaded_vmcs);
3527 free_vmcs(loaded_vmcs->vmcs);
3528 loaded_vmcs->vmcs = NULL;
3529}
3530
Sam Ravnborg39959582007-06-01 00:47:13 -07003531static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003532{
3533 int cpu;
3534
Zachary Amsden3230bb42009-09-29 11:38:37 -10003535 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003536 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003537 per_cpu(vmxarea, cpu) = NULL;
3538 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003539}
3540
Bandan Dasfe2b2012014-04-21 15:20:14 -04003541static void init_vmcs_shadow_fields(void)
3542{
3543 int i, j;
3544
3545 /* No checks for read only fields yet */
3546
3547 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3548 switch (shadow_read_write_fields[i]) {
3549 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003550 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003551 continue;
3552 break;
3553 default:
3554 break;
3555 }
3556
3557 if (j < i)
3558 shadow_read_write_fields[j] =
3559 shadow_read_write_fields[i];
3560 j++;
3561 }
3562 max_shadow_read_write_fields = j;
3563
3564 /* shadowed fields guest access without vmexit */
3565 for (i = 0; i < max_shadow_read_write_fields; i++) {
3566 clear_bit(shadow_read_write_fields[i],
3567 vmx_vmwrite_bitmap);
3568 clear_bit(shadow_read_write_fields[i],
3569 vmx_vmread_bitmap);
3570 }
3571 for (i = 0; i < max_shadow_read_only_fields; i++)
3572 clear_bit(shadow_read_only_fields[i],
3573 vmx_vmread_bitmap);
3574}
3575
Avi Kivity6aa8b732006-12-10 02:21:36 -08003576static __init int alloc_kvm_area(void)
3577{
3578 int cpu;
3579
Zachary Amsden3230bb42009-09-29 11:38:37 -10003580 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003581 struct vmcs *vmcs;
3582
3583 vmcs = alloc_vmcs_cpu(cpu);
3584 if (!vmcs) {
3585 free_kvm_area();
3586 return -ENOMEM;
3587 }
3588
3589 per_cpu(vmxarea, cpu) = vmcs;
3590 }
3591 return 0;
3592}
3593
Gleb Natapov14168782013-01-21 15:36:49 +02003594static bool emulation_required(struct kvm_vcpu *vcpu)
3595{
3596 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3597}
3598
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003599static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003600 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003601{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003602 if (!emulate_invalid_guest_state) {
3603 /*
3604 * CS and SS RPL should be equal during guest entry according
3605 * to VMX spec, but in reality it is not always so. Since vcpu
3606 * is in the middle of the transition from real mode to
3607 * protected mode it is safe to assume that RPL 0 is a good
3608 * default value.
3609 */
3610 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003611 save->selector &= ~SEGMENT_RPL_MASK;
3612 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003613 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003614 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003615 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003616}
3617
3618static void enter_pmode(struct kvm_vcpu *vcpu)
3619{
3620 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003621 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003622
Gleb Natapovd99e4152012-12-20 16:57:45 +02003623 /*
3624 * Update real mode segment cache. It may be not up-to-date if sement
3625 * register was written while vcpu was in a guest mode.
3626 */
3627 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3628 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3629 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3630 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3631 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3632 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3633
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003634 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635
Avi Kivity2fb92db2011-04-27 19:42:18 +03003636 vmx_segment_cache_clear(vmx);
3637
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003638 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003639
3640 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003641 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3642 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003643 vmcs_writel(GUEST_RFLAGS, flags);
3644
Rusty Russell66aee912007-07-17 23:34:16 +10003645 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3646 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003647
3648 update_exception_bitmap(vcpu);
3649
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003650 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3651 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3652 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3653 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3654 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3655 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003656}
3657
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003658static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003659{
Mathias Krause772e0312012-08-30 01:30:19 +02003660 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003661 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003662
Gleb Natapovd99e4152012-12-20 16:57:45 +02003663 var.dpl = 0x3;
3664 if (seg == VCPU_SREG_CS)
3665 var.type = 0x3;
3666
3667 if (!emulate_invalid_guest_state) {
3668 var.selector = var.base >> 4;
3669 var.base = var.base & 0xffff0;
3670 var.limit = 0xffff;
3671 var.g = 0;
3672 var.db = 0;
3673 var.present = 1;
3674 var.s = 1;
3675 var.l = 0;
3676 var.unusable = 0;
3677 var.type = 0x3;
3678 var.avl = 0;
3679 if (save->base & 0xf)
3680 printk_once(KERN_WARNING "kvm: segment base is not "
3681 "paragraph aligned when entering "
3682 "protected mode (seg=%d)", seg);
3683 }
3684
3685 vmcs_write16(sf->selector, var.selector);
3686 vmcs_write32(sf->base, var.base);
3687 vmcs_write32(sf->limit, var.limit);
3688 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003689}
3690
3691static void enter_rmode(struct kvm_vcpu *vcpu)
3692{
3693 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003694 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003696 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3697 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3698 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3699 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3700 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003701 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3702 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003703
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003704 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003705
Gleb Natapov776e58e2011-03-13 12:34:27 +02003706 /*
3707 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003708 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003709 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003710 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003711 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3712 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003713
Avi Kivity2fb92db2011-04-27 19:42:18 +03003714 vmx_segment_cache_clear(vmx);
3715
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003716 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003717 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003718 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3719
3720 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003721 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003722
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003723 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003724
3725 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003726 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003727 update_exception_bitmap(vcpu);
3728
Gleb Natapovd99e4152012-12-20 16:57:45 +02003729 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3730 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3731 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3732 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3733 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3734 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003735
Eddie Dong8668a3c2007-10-10 14:26:45 +08003736 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003737}
3738
Amit Shah401d10d2009-02-20 22:53:37 +05303739static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3740{
3741 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003742 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3743
3744 if (!msr)
3745 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303746
Avi Kivity44ea2b12009-09-06 15:55:37 +03003747 /*
3748 * Force kernel_gs_base reloading before EFER changes, as control
3749 * of this msr depends on is_long_mode().
3750 */
3751 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003752 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303753 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003754 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303755 msr->data = efer;
3756 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003757 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303758
3759 msr->data = efer & ~EFER_LME;
3760 }
3761 setup_msrs(vmx);
3762}
3763
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003764#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003765
3766static void enter_lmode(struct kvm_vcpu *vcpu)
3767{
3768 u32 guest_tr_ar;
3769
Avi Kivity2fb92db2011-04-27 19:42:18 +03003770 vmx_segment_cache_clear(to_vmx(vcpu));
3771
Avi Kivity6aa8b732006-12-10 02:21:36 -08003772 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003773 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003774 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3775 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003776 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003777 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3778 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003779 }
Avi Kivityda38f432010-07-06 11:30:49 +03003780 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003781}
3782
3783static void exit_lmode(struct kvm_vcpu *vcpu)
3784{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003785 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003786 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787}
3788
3789#endif
3790
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003791static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003792{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003793 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003794 if (enable_ept) {
3795 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3796 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003797 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003798 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003799}
3800
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003801static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3802{
3803 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3804}
3805
Avi Kivitye8467fd2009-12-29 18:43:06 +02003806static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3807{
3808 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3809
3810 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3811 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3812}
3813
Avi Kivityaff48ba2010-12-05 18:56:11 +02003814static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3815{
3816 if (enable_ept && is_paging(vcpu))
3817 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3818 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3819}
3820
Anthony Liguori25c4c272007-04-27 09:29:21 +03003821static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003822{
Avi Kivityfc78f512009-12-07 12:16:48 +02003823 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3824
3825 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3826 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003827}
3828
Sheng Yang14394422008-04-28 12:24:45 +08003829static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3830{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003831 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3832
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003833 if (!test_bit(VCPU_EXREG_PDPTR,
3834 (unsigned long *)&vcpu->arch.regs_dirty))
3835 return;
3836
Sheng Yang14394422008-04-28 12:24:45 +08003837 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003838 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3839 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3840 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3841 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003842 }
3843}
3844
Avi Kivity8f5d5492009-05-31 18:41:29 +03003845static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3846{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003847 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3848
Avi Kivity8f5d5492009-05-31 18:41:29 +03003849 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003850 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3851 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3852 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3853 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003854 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003855
3856 __set_bit(VCPU_EXREG_PDPTR,
3857 (unsigned long *)&vcpu->arch.regs_avail);
3858 __set_bit(VCPU_EXREG_PDPTR,
3859 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003860}
3861
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003862static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003863
3864static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3865 unsigned long cr0,
3866 struct kvm_vcpu *vcpu)
3867{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003868 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3869 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003870 if (!(cr0 & X86_CR0_PG)) {
3871 /* From paging/starting to nonpaging */
3872 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003873 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003874 (CPU_BASED_CR3_LOAD_EXITING |
3875 CPU_BASED_CR3_STORE_EXITING));
3876 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003877 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003878 } else if (!is_paging(vcpu)) {
3879 /* From nonpaging to paging */
3880 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003881 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003882 ~(CPU_BASED_CR3_LOAD_EXITING |
3883 CPU_BASED_CR3_STORE_EXITING));
3884 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003885 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003886 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003887
3888 if (!(cr0 & X86_CR0_WP))
3889 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003890}
3891
Avi Kivity6aa8b732006-12-10 02:21:36 -08003892static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3893{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003894 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003895 unsigned long hw_cr0;
3896
Gleb Natapov50378782013-02-04 16:00:28 +02003897 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003898 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003899 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003900 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003901 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003902
Gleb Natapov218e7632013-01-21 15:36:45 +02003903 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3904 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003905
Gleb Natapov218e7632013-01-21 15:36:45 +02003906 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3907 enter_rmode(vcpu);
3908 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003910#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003911 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003912 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003914 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915 exit_lmode(vcpu);
3916 }
3917#endif
3918
Avi Kivity089d0342009-03-23 18:26:32 +02003919 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003920 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3921
Avi Kivity02daab22009-12-30 12:40:26 +02003922 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003923 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003924
Avi Kivity6aa8b732006-12-10 02:21:36 -08003925 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003926 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003927 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003928
3929 /* depends on vcpu->arch.cr0 to be set to a new value */
3930 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003931}
3932
Sheng Yang14394422008-04-28 12:24:45 +08003933static u64 construct_eptp(unsigned long root_hpa)
3934{
3935 u64 eptp;
3936
3937 /* TODO write the value reading from MSR */
3938 eptp = VMX_EPT_DEFAULT_MT |
3939 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003940 if (enable_ept_ad_bits)
3941 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003942 eptp |= (root_hpa & PAGE_MASK);
3943
3944 return eptp;
3945}
3946
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3948{
Sheng Yang14394422008-04-28 12:24:45 +08003949 unsigned long guest_cr3;
3950 u64 eptp;
3951
3952 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003953 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003954 eptp = construct_eptp(cr3);
3955 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003956 if (is_paging(vcpu) || is_guest_mode(vcpu))
3957 guest_cr3 = kvm_read_cr3(vcpu);
3958 else
3959 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02003960 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003961 }
3962
Sheng Yang2384d2b2008-01-17 15:14:33 +08003963 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003964 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003965}
3966
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003967static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003968{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003969 /*
3970 * Pass through host's Machine Check Enable value to hw_cr4, which
3971 * is in force while we are in guest mode. Do not let guests control
3972 * this bit, even if host CR4.MCE == 0.
3973 */
3974 unsigned long hw_cr4 =
3975 (cr4_read_shadow() & X86_CR4_MCE) |
3976 (cr4 & ~X86_CR4_MCE) |
3977 (to_vmx(vcpu)->rmode.vm86_active ?
3978 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003979
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003980 if (cr4 & X86_CR4_VMXE) {
3981 /*
3982 * To use VMXON (and later other VMX instructions), a guest
3983 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3984 * So basically the check on whether to allow nested VMX
3985 * is here.
3986 */
3987 if (!nested_vmx_allowed(vcpu))
3988 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003989 }
3990 if (to_vmx(vcpu)->nested.vmxon &&
3991 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003992 return 1;
3993
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003994 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003995 if (enable_ept) {
3996 if (!is_paging(vcpu)) {
3997 hw_cr4 &= ~X86_CR4_PAE;
3998 hw_cr4 |= X86_CR4_PSE;
3999 } else if (!(cr4 & X86_CR4_PAE)) {
4000 hw_cr4 &= ~X86_CR4_PAE;
4001 }
4002 }
Sheng Yang14394422008-04-28 12:24:45 +08004003
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004004 if (!enable_unrestricted_guest && !is_paging(vcpu))
4005 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004006 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4007 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4008 * to be manually disabled when guest switches to non-paging
4009 * mode.
4010 *
4011 * If !enable_unrestricted_guest, the CPU is always running
4012 * with CR0.PG=1 and CR4 needs to be modified.
4013 * If enable_unrestricted_guest, the CPU automatically
4014 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004015 */
Huaitong Handdba2622016-03-22 16:51:15 +08004016 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004017
Sheng Yang14394422008-04-28 12:24:45 +08004018 vmcs_writel(CR4_READ_SHADOW, cr4);
4019 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004020 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021}
4022
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023static void vmx_get_segment(struct kvm_vcpu *vcpu,
4024 struct kvm_segment *var, int seg)
4025{
Avi Kivitya9179492011-01-03 14:28:52 +02004026 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004027 u32 ar;
4028
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004029 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004030 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004031 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004032 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004033 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004034 var->base = vmx_read_guest_seg_base(vmx, seg);
4035 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4036 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004037 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004038 var->base = vmx_read_guest_seg_base(vmx, seg);
4039 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4040 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4041 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004042 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004043 var->type = ar & 15;
4044 var->s = (ar >> 4) & 1;
4045 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004046 /*
4047 * Some userspaces do not preserve unusable property. Since usable
4048 * segment has to be present according to VMX spec we can use present
4049 * property to amend userspace bug by making unusable segment always
4050 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4051 * segment as unusable.
4052 */
4053 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054 var->avl = (ar >> 12) & 1;
4055 var->l = (ar >> 13) & 1;
4056 var->db = (ar >> 14) & 1;
4057 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058}
4059
Avi Kivitya9179492011-01-03 14:28:52 +02004060static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4061{
Avi Kivitya9179492011-01-03 14:28:52 +02004062 struct kvm_segment s;
4063
4064 if (to_vmx(vcpu)->rmode.vm86_active) {
4065 vmx_get_segment(vcpu, &s, seg);
4066 return s.base;
4067 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004068 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004069}
4070
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004071static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004072{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004073 struct vcpu_vmx *vmx = to_vmx(vcpu);
4074
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004075 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004076 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004077 else {
4078 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004079 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004080 }
Avi Kivity69c73022011-03-07 15:26:44 +02004081}
4082
Avi Kivity653e3102007-05-07 10:55:37 +03004083static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004085 u32 ar;
4086
Avi Kivityf0495f92012-06-07 17:06:10 +03004087 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004088 ar = 1 << 16;
4089 else {
4090 ar = var->type & 15;
4091 ar |= (var->s & 1) << 4;
4092 ar |= (var->dpl & 3) << 5;
4093 ar |= (var->present & 1) << 7;
4094 ar |= (var->avl & 1) << 12;
4095 ar |= (var->l & 1) << 13;
4096 ar |= (var->db & 1) << 14;
4097 ar |= (var->g & 1) << 15;
4098 }
Avi Kivity653e3102007-05-07 10:55:37 +03004099
4100 return ar;
4101}
4102
4103static void vmx_set_segment(struct kvm_vcpu *vcpu,
4104 struct kvm_segment *var, int seg)
4105{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004106 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004107 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004108
Avi Kivity2fb92db2011-04-27 19:42:18 +03004109 vmx_segment_cache_clear(vmx);
4110
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004111 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4112 vmx->rmode.segs[seg] = *var;
4113 if (seg == VCPU_SREG_TR)
4114 vmcs_write16(sf->selector, var->selector);
4115 else if (var->s)
4116 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004117 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004118 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004119
Avi Kivity653e3102007-05-07 10:55:37 +03004120 vmcs_writel(sf->base, var->base);
4121 vmcs_write32(sf->limit, var->limit);
4122 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004123
4124 /*
4125 * Fix the "Accessed" bit in AR field of segment registers for older
4126 * qemu binaries.
4127 * IA32 arch specifies that at the time of processor reset the
4128 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004129 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004130 * state vmexit when "unrestricted guest" mode is turned on.
4131 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4132 * tree. Newer qemu binaries with that qemu fix would not need this
4133 * kvm hack.
4134 */
4135 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004136 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004137
Gleb Natapovf924d662012-12-12 19:10:55 +02004138 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004139
4140out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004141 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142}
4143
Avi Kivity6aa8b732006-12-10 02:21:36 -08004144static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4145{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004146 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004147
4148 *db = (ar >> 14) & 1;
4149 *l = (ar >> 13) & 1;
4150}
4151
Gleb Natapov89a27f42010-02-16 10:51:48 +02004152static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004153{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004154 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4155 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004156}
4157
Gleb Natapov89a27f42010-02-16 10:51:48 +02004158static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004159{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004160 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4161 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162}
4163
Gleb Natapov89a27f42010-02-16 10:51:48 +02004164static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004165{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004166 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4167 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004168}
4169
Gleb Natapov89a27f42010-02-16 10:51:48 +02004170static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004171{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004172 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4173 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174}
4175
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004176static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4177{
4178 struct kvm_segment var;
4179 u32 ar;
4180
4181 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004182 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004183 if (seg == VCPU_SREG_CS)
4184 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004185 ar = vmx_segment_access_rights(&var);
4186
4187 if (var.base != (var.selector << 4))
4188 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004189 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004190 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004191 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004192 return false;
4193
4194 return true;
4195}
4196
4197static bool code_segment_valid(struct kvm_vcpu *vcpu)
4198{
4199 struct kvm_segment cs;
4200 unsigned int cs_rpl;
4201
4202 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004203 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004204
Avi Kivity1872a3f2009-01-04 23:26:52 +02004205 if (cs.unusable)
4206 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004207 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004208 return false;
4209 if (!cs.s)
4210 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004211 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004212 if (cs.dpl > cs_rpl)
4213 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004214 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004215 if (cs.dpl != cs_rpl)
4216 return false;
4217 }
4218 if (!cs.present)
4219 return false;
4220
4221 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4222 return true;
4223}
4224
4225static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4226{
4227 struct kvm_segment ss;
4228 unsigned int ss_rpl;
4229
4230 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004231 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004232
Avi Kivity1872a3f2009-01-04 23:26:52 +02004233 if (ss.unusable)
4234 return true;
4235 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004236 return false;
4237 if (!ss.s)
4238 return false;
4239 if (ss.dpl != ss_rpl) /* DPL != RPL */
4240 return false;
4241 if (!ss.present)
4242 return false;
4243
4244 return true;
4245}
4246
4247static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4248{
4249 struct kvm_segment var;
4250 unsigned int rpl;
4251
4252 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004253 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004254
Avi Kivity1872a3f2009-01-04 23:26:52 +02004255 if (var.unusable)
4256 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004257 if (!var.s)
4258 return false;
4259 if (!var.present)
4260 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004261 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004262 if (var.dpl < rpl) /* DPL < RPL */
4263 return false;
4264 }
4265
4266 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4267 * rights flags
4268 */
4269 return true;
4270}
4271
4272static bool tr_valid(struct kvm_vcpu *vcpu)
4273{
4274 struct kvm_segment tr;
4275
4276 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4277
Avi Kivity1872a3f2009-01-04 23:26:52 +02004278 if (tr.unusable)
4279 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004280 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004281 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004282 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004283 return false;
4284 if (!tr.present)
4285 return false;
4286
4287 return true;
4288}
4289
4290static bool ldtr_valid(struct kvm_vcpu *vcpu)
4291{
4292 struct kvm_segment ldtr;
4293
4294 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4295
Avi Kivity1872a3f2009-01-04 23:26:52 +02004296 if (ldtr.unusable)
4297 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004298 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004299 return false;
4300 if (ldtr.type != 2)
4301 return false;
4302 if (!ldtr.present)
4303 return false;
4304
4305 return true;
4306}
4307
4308static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4309{
4310 struct kvm_segment cs, ss;
4311
4312 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4313 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4314
Nadav Amitb32a9912015-03-29 16:33:04 +03004315 return ((cs.selector & SEGMENT_RPL_MASK) ==
4316 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004317}
4318
4319/*
4320 * Check if guest state is valid. Returns true if valid, false if
4321 * not.
4322 * We assume that registers are always usable
4323 */
4324static bool guest_state_valid(struct kvm_vcpu *vcpu)
4325{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004326 if (enable_unrestricted_guest)
4327 return true;
4328
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004329 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004330 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004331 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4332 return false;
4333 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4334 return false;
4335 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4336 return false;
4337 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4338 return false;
4339 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4340 return false;
4341 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4342 return false;
4343 } else {
4344 /* protected mode guest state checks */
4345 if (!cs_ss_rpl_check(vcpu))
4346 return false;
4347 if (!code_segment_valid(vcpu))
4348 return false;
4349 if (!stack_segment_valid(vcpu))
4350 return false;
4351 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4352 return false;
4353 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4354 return false;
4355 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4356 return false;
4357 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4358 return false;
4359 if (!tr_valid(vcpu))
4360 return false;
4361 if (!ldtr_valid(vcpu))
4362 return false;
4363 }
4364 /* TODO:
4365 * - Add checks on RIP
4366 * - Add checks on RFLAGS
4367 */
4368
4369 return true;
4370}
4371
Mike Dayd77c26f2007-10-08 09:02:08 -04004372static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004373{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004374 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004375 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004376 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004377
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004378 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004379 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004380 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4381 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004382 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004383 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004384 r = kvm_write_guest_page(kvm, fn++, &data,
4385 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004386 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004387 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004388 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4389 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004390 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004391 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4392 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004393 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004394 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004395 r = kvm_write_guest_page(kvm, fn, &data,
4396 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4397 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004398out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004399 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004400 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004401}
4402
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004403static int init_rmode_identity_map(struct kvm *kvm)
4404{
Tang Chenf51770e2014-09-16 18:41:59 +08004405 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004406 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004407 u32 tmp;
4408
Avi Kivity089d0342009-03-23 18:26:32 +02004409 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004410 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004411
4412 /* Protect kvm->arch.ept_identity_pagetable_done. */
4413 mutex_lock(&kvm->slots_lock);
4414
Tang Chenf51770e2014-09-16 18:41:59 +08004415 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004416 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004417
Sheng Yangb927a3c2009-07-21 10:42:48 +08004418 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004419
4420 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004421 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004422 goto out2;
4423
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004424 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004425 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4426 if (r < 0)
4427 goto out;
4428 /* Set up identity-mapping pagetable for EPT in real mode */
4429 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4430 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4431 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4432 r = kvm_write_guest_page(kvm, identity_map_pfn,
4433 &tmp, i * sizeof(tmp), sizeof(tmp));
4434 if (r < 0)
4435 goto out;
4436 }
4437 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004438
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004439out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004440 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004441
4442out2:
4443 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004444 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004445}
4446
Avi Kivity6aa8b732006-12-10 02:21:36 -08004447static void seg_setup(int seg)
4448{
Mathias Krause772e0312012-08-30 01:30:19 +02004449 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004450 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004451
4452 vmcs_write16(sf->selector, 0);
4453 vmcs_writel(sf->base, 0);
4454 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004455 ar = 0x93;
4456 if (seg == VCPU_SREG_CS)
4457 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004458
4459 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004460}
4461
Sheng Yangf78e0e22007-10-29 09:40:42 +08004462static int alloc_apic_access_page(struct kvm *kvm)
4463{
Xiao Guangrong44841412012-09-07 14:14:20 +08004464 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004465 int r = 0;
4466
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004467 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004468 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004469 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004470 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4471 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004472 if (r)
4473 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004474
Tang Chen73a6d942014-09-11 13:38:00 +08004475 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004476 if (is_error_page(page)) {
4477 r = -EFAULT;
4478 goto out;
4479 }
4480
Tang Chenc24ae0d2014-09-24 15:57:58 +08004481 /*
4482 * Do not pin the page in memory, so that memory hot-unplug
4483 * is able to migrate it.
4484 */
4485 put_page(page);
4486 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004487out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004488 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004489 return r;
4490}
4491
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004492static int alloc_identity_pagetable(struct kvm *kvm)
4493{
Tang Chena255d472014-09-16 18:41:58 +08004494 /* Called with kvm->slots_lock held. */
4495
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004496 int r = 0;
4497
Tang Chena255d472014-09-16 18:41:58 +08004498 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4499
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004500 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4501 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004502
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004503 return r;
4504}
4505
Wanpeng Li991e7a02015-09-16 17:30:05 +08004506static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004507{
4508 int vpid;
4509
Avi Kivity919818a2009-03-23 18:01:29 +02004510 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004511 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004512 spin_lock(&vmx_vpid_lock);
4513 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004514 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004515 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004516 else
4517 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004518 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004519 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004520}
4521
Wanpeng Li991e7a02015-09-16 17:30:05 +08004522static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004523{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004524 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004525 return;
4526 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004527 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004528 spin_unlock(&vmx_vpid_lock);
4529}
4530
Yang Zhang8d146952013-01-25 10:18:50 +08004531#define MSR_TYPE_R 1
4532#define MSR_TYPE_W 2
4533static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4534 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004535{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004536 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004537
4538 if (!cpu_has_vmx_msr_bitmap())
4539 return;
4540
4541 /*
4542 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4543 * have the write-low and read-high bitmap offsets the wrong way round.
4544 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4545 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004546 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004547 if (type & MSR_TYPE_R)
4548 /* read-low */
4549 __clear_bit(msr, msr_bitmap + 0x000 / f);
4550
4551 if (type & MSR_TYPE_W)
4552 /* write-low */
4553 __clear_bit(msr, msr_bitmap + 0x800 / f);
4554
Sheng Yang25c5f222008-03-28 13:18:56 +08004555 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4556 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004557 if (type & MSR_TYPE_R)
4558 /* read-high */
4559 __clear_bit(msr, msr_bitmap + 0x400 / f);
4560
4561 if (type & MSR_TYPE_W)
4562 /* write-high */
4563 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4564
4565 }
4566}
4567
4568static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4569 u32 msr, int type)
4570{
4571 int f = sizeof(unsigned long);
4572
4573 if (!cpu_has_vmx_msr_bitmap())
4574 return;
4575
4576 /*
4577 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4578 * have the write-low and read-high bitmap offsets the wrong way round.
4579 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4580 */
4581 if (msr <= 0x1fff) {
4582 if (type & MSR_TYPE_R)
4583 /* read-low */
4584 __set_bit(msr, msr_bitmap + 0x000 / f);
4585
4586 if (type & MSR_TYPE_W)
4587 /* write-low */
4588 __set_bit(msr, msr_bitmap + 0x800 / f);
4589
4590 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4591 msr &= 0x1fff;
4592 if (type & MSR_TYPE_R)
4593 /* read-high */
4594 __set_bit(msr, msr_bitmap + 0x400 / f);
4595
4596 if (type & MSR_TYPE_W)
4597 /* write-high */
4598 __set_bit(msr, msr_bitmap + 0xc00 / f);
4599
Sheng Yang25c5f222008-03-28 13:18:56 +08004600 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004601}
4602
Wincy Vanf2b93282015-02-03 23:56:03 +08004603/*
4604 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4605 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4606 */
4607static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4608 unsigned long *msr_bitmap_nested,
4609 u32 msr, int type)
4610{
4611 int f = sizeof(unsigned long);
4612
4613 if (!cpu_has_vmx_msr_bitmap()) {
4614 WARN_ON(1);
4615 return;
4616 }
4617
4618 /*
4619 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4620 * have the write-low and read-high bitmap offsets the wrong way round.
4621 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4622 */
4623 if (msr <= 0x1fff) {
4624 if (type & MSR_TYPE_R &&
4625 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4626 /* read-low */
4627 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4628
4629 if (type & MSR_TYPE_W &&
4630 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4631 /* write-low */
4632 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4633
4634 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4635 msr &= 0x1fff;
4636 if (type & MSR_TYPE_R &&
4637 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4638 /* read-high */
4639 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4640
4641 if (type & MSR_TYPE_W &&
4642 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4643 /* write-high */
4644 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4645
4646 }
4647}
4648
Avi Kivity58972972009-02-24 22:26:47 +02004649static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4650{
4651 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004652 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4653 msr, MSR_TYPE_R | MSR_TYPE_W);
4654 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4655 msr, MSR_TYPE_R | MSR_TYPE_W);
4656}
4657
4658static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4659{
4660 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4661 msr, MSR_TYPE_R);
4662 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4663 msr, MSR_TYPE_R);
4664}
4665
4666static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4667{
4668 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4669 msr, MSR_TYPE_R);
4670 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4671 msr, MSR_TYPE_R);
4672}
4673
4674static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4675{
4676 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4677 msr, MSR_TYPE_W);
4678 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4679 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004680}
4681
Andrey Smetanind62caab2015-11-10 15:36:33 +03004682static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004683{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004684 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004685}
4686
Wincy Van705699a2015-02-03 23:58:17 +08004687static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4688{
4689 struct vcpu_vmx *vmx = to_vmx(vcpu);
4690 int max_irr;
4691 void *vapic_page;
4692 u16 status;
4693
4694 if (vmx->nested.pi_desc &&
4695 vmx->nested.pi_pending) {
4696 vmx->nested.pi_pending = false;
4697 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4698 return 0;
4699
4700 max_irr = find_last_bit(
4701 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4702
4703 if (max_irr == 256)
4704 return 0;
4705
4706 vapic_page = kmap(vmx->nested.virtual_apic_page);
4707 if (!vapic_page) {
4708 WARN_ON(1);
4709 return -ENOMEM;
4710 }
4711 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4712 kunmap(vmx->nested.virtual_apic_page);
4713
4714 status = vmcs_read16(GUEST_INTR_STATUS);
4715 if ((u8)max_irr > ((u8)status & 0xff)) {
4716 status &= ~0xff;
4717 status |= (u8)max_irr;
4718 vmcs_write16(GUEST_INTR_STATUS, status);
4719 }
4720 }
4721 return 0;
4722}
4723
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004724static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4725{
4726#ifdef CONFIG_SMP
4727 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004728 struct vcpu_vmx *vmx = to_vmx(vcpu);
4729
4730 /*
4731 * Currently, we don't support urgent interrupt,
4732 * all interrupts are recognized as non-urgent
4733 * interrupt, so we cannot post interrupts when
4734 * 'SN' is set.
4735 *
4736 * If the vcpu is in guest mode, it means it is
4737 * running instead of being scheduled out and
4738 * waiting in the run queue, and that's the only
4739 * case when 'SN' is set currently, warning if
4740 * 'SN' is set.
4741 */
4742 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4743
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004744 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4745 POSTED_INTR_VECTOR);
4746 return true;
4747 }
4748#endif
4749 return false;
4750}
4751
Wincy Van705699a2015-02-03 23:58:17 +08004752static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4753 int vector)
4754{
4755 struct vcpu_vmx *vmx = to_vmx(vcpu);
4756
4757 if (is_guest_mode(vcpu) &&
4758 vector == vmx->nested.posted_intr_nv) {
4759 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004760 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004761 /*
4762 * If a posted intr is not recognized by hardware,
4763 * we will accomplish it in the next vmentry.
4764 */
4765 vmx->nested.pi_pending = true;
4766 kvm_make_request(KVM_REQ_EVENT, vcpu);
4767 return 0;
4768 }
4769 return -1;
4770}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004771/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004772 * Send interrupt to vcpu via posted interrupt way.
4773 * 1. If target vcpu is running(non-root mode), send posted interrupt
4774 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4775 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4776 * interrupt from PIR in next vmentry.
4777 */
4778static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4779{
4780 struct vcpu_vmx *vmx = to_vmx(vcpu);
4781 int r;
4782
Wincy Van705699a2015-02-03 23:58:17 +08004783 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4784 if (!r)
4785 return;
4786
Yang Zhanga20ed542013-04-11 19:25:15 +08004787 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4788 return;
4789
4790 r = pi_test_and_set_on(&vmx->pi_desc);
4791 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004792 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004793 kvm_vcpu_kick(vcpu);
4794}
4795
4796static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4797{
4798 struct vcpu_vmx *vmx = to_vmx(vcpu);
4799
4800 if (!pi_test_and_clear_on(&vmx->pi_desc))
4801 return;
4802
4803 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4804}
4805
Avi Kivity6aa8b732006-12-10 02:21:36 -08004806/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004807 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4808 * will not change in the lifetime of the guest.
4809 * Note that host-state that does change is set elsewhere. E.g., host-state
4810 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4811 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004812static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004813{
4814 u32 low32, high32;
4815 unsigned long tmpl;
4816 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004817 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004818
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004819 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004820 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4821
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004822 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004823 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004824 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4825 vmx->host_state.vmcs_host_cr4 = cr4;
4826
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004827 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004828#ifdef CONFIG_X86_64
4829 /*
4830 * Load null selectors, so we can avoid reloading them in
4831 * __vmx_load_host_state(), in case userspace uses the null selectors
4832 * too (the expected case).
4833 */
4834 vmcs_write16(HOST_DS_SELECTOR, 0);
4835 vmcs_write16(HOST_ES_SELECTOR, 0);
4836#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004837 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4838 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004839#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004840 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4841 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4842
4843 native_store_idt(&dt);
4844 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004845 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004846
Avi Kivity83287ea422012-09-16 15:10:57 +03004847 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004848
4849 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4850 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4851 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4852 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4853
4854 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4855 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4856 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4857 }
4858}
4859
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004860static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4861{
4862 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4863 if (enable_ept)
4864 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004865 if (is_guest_mode(&vmx->vcpu))
4866 vmx->vcpu.arch.cr4_guest_owned_bits &=
4867 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004868 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4869}
4870
Yang Zhang01e439b2013-04-11 19:25:12 +08004871static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4872{
4873 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4874
Andrey Smetanind62caab2015-11-10 15:36:33 +03004875 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004876 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07004877 /* Enable the preemption timer dynamically */
4878 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004879 return pin_based_exec_ctrl;
4880}
4881
Andrey Smetanind62caab2015-11-10 15:36:33 +03004882static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4883{
4884 struct vcpu_vmx *vmx = to_vmx(vcpu);
4885
4886 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03004887 if (cpu_has_secondary_exec_ctrls()) {
4888 if (kvm_vcpu_apicv_active(vcpu))
4889 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
4890 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4891 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4892 else
4893 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
4894 SECONDARY_EXEC_APIC_REGISTER_VIRT |
4895 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
4896 }
4897
4898 if (cpu_has_vmx_msr_bitmap())
4899 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004900}
4901
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004902static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4903{
4904 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004905
4906 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4907 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4908
Paolo Bonzini35754c92015-07-29 12:05:37 +02004909 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004910 exec_control &= ~CPU_BASED_TPR_SHADOW;
4911#ifdef CONFIG_X86_64
4912 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4913 CPU_BASED_CR8_LOAD_EXITING;
4914#endif
4915 }
4916 if (!enable_ept)
4917 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4918 CPU_BASED_CR3_LOAD_EXITING |
4919 CPU_BASED_INVLPG_EXITING;
4920 return exec_control;
4921}
4922
4923static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4924{
4925 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004926 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004927 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4928 if (vmx->vpid == 0)
4929 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4930 if (!enable_ept) {
4931 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4932 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004933 /* Enable INVPCID for non-ept guests may cause performance regression. */
4934 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004935 }
4936 if (!enable_unrestricted_guest)
4937 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4938 if (!ple_gap)
4939 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004940 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004941 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4942 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004943 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004944 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4945 (handle_vmptrld).
4946 We can NOT enable shadow_vmcs here because we don't have yet
4947 a current VMCS12
4948 */
4949 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004950
4951 if (!enable_pml)
4952 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004953
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004954 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4955 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4956
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004957 return exec_control;
4958}
4959
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004960static void ept_set_mmio_spte_mask(void)
4961{
4962 /*
4963 * EPT Misconfigurations can be generated if the value of bits 2:0
4964 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004965 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004966 * spte.
4967 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004968 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004969}
4970
Wanpeng Lif53cd632014-12-02 19:14:58 +08004971#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004972/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004973 * Sets up the vmcs for emulated real mode.
4974 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004975static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004976{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004977#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004978 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004979#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004980 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004981
Avi Kivity6aa8b732006-12-10 02:21:36 -08004982 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004983 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4984 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004985
Abel Gordon4607c2d2013-04-18 14:35:55 +03004986 if (enable_shadow_vmcs) {
4987 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4988 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4989 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004990 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004991 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004992
Avi Kivity6aa8b732006-12-10 02:21:36 -08004993 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4994
Avi Kivity6aa8b732006-12-10 02:21:36 -08004995 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004996 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07004997 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004998
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004999 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005000
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08005001 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005002 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5003 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005004
Andrey Smetanind62caab2015-11-10 15:36:33 +03005005 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005006 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5007 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5008 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5009 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5010
5011 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005012
Li RongQing0bcf2612015-12-03 13:29:34 +08005013 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005014 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005015 }
5016
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005017 if (ple_gap) {
5018 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005019 vmx->ple_window = ple_window;
5020 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005021 }
5022
Xiao Guangrongc3707952011-07-12 03:28:04 +08005023 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5024 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005025 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5026
Avi Kivity9581d442010-10-19 16:46:55 +02005027 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5028 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005029 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005030#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005031 rdmsrl(MSR_FS_BASE, a);
5032 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5033 rdmsrl(MSR_GS_BASE, a);
5034 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5035#else
5036 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5037 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5038#endif
5039
Eddie Dong2cc51562007-05-21 07:28:09 +03005040 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5041 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005042 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005043 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005044 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005045
Radim Krčmář74545702015-04-27 15:11:25 +02005046 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5047 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005048
Paolo Bonzini03916db2014-07-24 14:21:57 +02005049 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005050 u32 index = vmx_msr_index[i];
5051 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005052 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005053
5054 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5055 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005056 if (wrmsr_safe(index, data_low, data_high) < 0)
5057 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005058 vmx->guest_msrs[j].index = i;
5059 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005060 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005061 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005062 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005063
Gleb Natapov2961e8762013-11-25 15:37:13 +02005064
5065 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005066
5067 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005068 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005069
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005070 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005071 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005072
Wanpeng Lif53cd632014-12-02 19:14:58 +08005073 if (vmx_xsaves_supported())
5074 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5075
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005076 return 0;
5077}
5078
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005079static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005080{
5081 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005082 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005083 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005084
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005085 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005086
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005087 vmx->soft_vnmi_blocked = 0;
5088
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005089 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005090 kvm_set_cr8(vcpu, 0);
5091
5092 if (!init_event) {
5093 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5094 MSR_IA32_APICBASE_ENABLE;
5095 if (kvm_vcpu_is_reset_bsp(vcpu))
5096 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5097 apic_base_msr.host_initiated = true;
5098 kvm_set_apic_base(vcpu, &apic_base_msr);
5099 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005100
Avi Kivity2fb92db2011-04-27 19:42:18 +03005101 vmx_segment_cache_clear(vmx);
5102
Avi Kivity5706be02008-08-20 15:07:31 +03005103 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005104 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005105 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005106
5107 seg_setup(VCPU_SREG_DS);
5108 seg_setup(VCPU_SREG_ES);
5109 seg_setup(VCPU_SREG_FS);
5110 seg_setup(VCPU_SREG_GS);
5111 seg_setup(VCPU_SREG_SS);
5112
5113 vmcs_write16(GUEST_TR_SELECTOR, 0);
5114 vmcs_writel(GUEST_TR_BASE, 0);
5115 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5116 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5117
5118 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5119 vmcs_writel(GUEST_LDTR_BASE, 0);
5120 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5121 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5122
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005123 if (!init_event) {
5124 vmcs_write32(GUEST_SYSENTER_CS, 0);
5125 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5126 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5127 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5128 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005129
5130 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005131 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005132
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005133 vmcs_writel(GUEST_GDTR_BASE, 0);
5134 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5135
5136 vmcs_writel(GUEST_IDTR_BASE, 0);
5137 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5138
Anthony Liguori443381a2010-12-06 10:53:38 -06005139 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005140 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005141 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005142
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005143 setup_msrs(vmx);
5144
Avi Kivity6aa8b732006-12-10 02:21:36 -08005145 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5146
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005147 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005148 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005149 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005150 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005151 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005152 vmcs_write32(TPR_THRESHOLD, 0);
5153 }
5154
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005155 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005156
Andrey Smetanind62caab2015-11-10 15:36:33 +03005157 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005158 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5159
Sheng Yang2384d2b2008-01-17 15:14:33 +08005160 if (vmx->vpid != 0)
5161 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5162
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005163 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005164 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005165 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005166 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005167 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005168 vmx_fpu_activate(vcpu);
5169 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005170
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005171 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005172}
5173
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005174/*
5175 * In nested virtualization, check if L1 asked to exit on external interrupts.
5176 * For most existing hypervisors, this will always return true.
5177 */
5178static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5179{
5180 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5181 PIN_BASED_EXT_INTR_MASK;
5182}
5183
Bandan Das77b0f5d2014-04-19 18:17:45 -04005184/*
5185 * In nested virtualization, check if L1 has set
5186 * VM_EXIT_ACK_INTR_ON_EXIT
5187 */
5188static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5189{
5190 return get_vmcs12(vcpu)->vm_exit_controls &
5191 VM_EXIT_ACK_INTR_ON_EXIT;
5192}
5193
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005194static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5195{
5196 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5197 PIN_BASED_NMI_EXITING;
5198}
5199
Jan Kiszkac9a79532014-03-07 20:03:15 +01005200static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005201{
5202 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005203
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005204 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5205 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5206 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5207}
5208
Jan Kiszkac9a79532014-03-07 20:03:15 +01005209static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005210{
5211 u32 cpu_based_vm_exec_control;
5212
Jan Kiszkac9a79532014-03-07 20:03:15 +01005213 if (!cpu_has_virtual_nmis() ||
5214 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5215 enable_irq_window(vcpu);
5216 return;
5217 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005218
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005219 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5220 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5221 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5222}
5223
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005224static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005225{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005226 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005227 uint32_t intr;
5228 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005229
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005230 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005231
Avi Kivityfa89a812008-09-01 15:57:51 +03005232 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005233 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005234 int inc_eip = 0;
5235 if (vcpu->arch.interrupt.soft)
5236 inc_eip = vcpu->arch.event_exit_inst_len;
5237 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005238 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005239 return;
5240 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005241 intr = irq | INTR_INFO_VALID_MASK;
5242 if (vcpu->arch.interrupt.soft) {
5243 intr |= INTR_TYPE_SOFT_INTR;
5244 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5245 vmx->vcpu.arch.event_exit_inst_len);
5246 } else
5247 intr |= INTR_TYPE_EXT_INTR;
5248 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005249}
5250
Sheng Yangf08864b2008-05-15 18:23:25 +08005251static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5252{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005253 struct vcpu_vmx *vmx = to_vmx(vcpu);
5254
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005255 if (is_guest_mode(vcpu))
5256 return;
5257
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005258 if (!cpu_has_virtual_nmis()) {
5259 /*
5260 * Tracking the NMI-blocked state in software is built upon
5261 * finding the next open IRQ window. This, in turn, depends on
5262 * well-behaving guests: They have to keep IRQs disabled at
5263 * least as long as the NMI handler runs. Otherwise we may
5264 * cause NMI nesting, maybe breaking the guest. But as this is
5265 * highly unlikely, we can live with the residual risk.
5266 */
5267 vmx->soft_vnmi_blocked = 1;
5268 vmx->vnmi_blocked_time = 0;
5269 }
5270
Jan Kiszka487b3912008-09-26 09:30:56 +02005271 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005272 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005273 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005274 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005275 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005276 return;
5277 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005278 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5279 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005280}
5281
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005282static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5283{
5284 if (!cpu_has_virtual_nmis())
5285 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005286 if (to_vmx(vcpu)->nmi_known_unmasked)
5287 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005288 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005289}
5290
5291static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5292{
5293 struct vcpu_vmx *vmx = to_vmx(vcpu);
5294
5295 if (!cpu_has_virtual_nmis()) {
5296 if (vmx->soft_vnmi_blocked != masked) {
5297 vmx->soft_vnmi_blocked = masked;
5298 vmx->vnmi_blocked_time = 0;
5299 }
5300 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005301 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005302 if (masked)
5303 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5304 GUEST_INTR_STATE_NMI);
5305 else
5306 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5307 GUEST_INTR_STATE_NMI);
5308 }
5309}
5310
Jan Kiszka2505dc92013-04-14 12:12:47 +02005311static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5312{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005313 if (to_vmx(vcpu)->nested.nested_run_pending)
5314 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005315
Jan Kiszka2505dc92013-04-14 12:12:47 +02005316 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5317 return 0;
5318
5319 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5320 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5321 | GUEST_INTR_STATE_NMI));
5322}
5323
Gleb Natapov78646122009-03-23 12:12:11 +02005324static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5325{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005326 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5327 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005328 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5329 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005330}
5331
Izik Eiduscbc94022007-10-25 00:29:55 +02005332static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5333{
5334 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005335
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005336 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5337 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005338 if (ret)
5339 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005340 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005341 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005342}
5343
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005344static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005345{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005346 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005347 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005348 /*
5349 * Update instruction length as we may reinject the exception
5350 * from user space while in guest debugging mode.
5351 */
5352 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5353 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005354 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005355 return false;
5356 /* fall through */
5357 case DB_VECTOR:
5358 if (vcpu->guest_debug &
5359 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5360 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005361 /* fall through */
5362 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005363 case OF_VECTOR:
5364 case BR_VECTOR:
5365 case UD_VECTOR:
5366 case DF_VECTOR:
5367 case SS_VECTOR:
5368 case GP_VECTOR:
5369 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005370 return true;
5371 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005372 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005373 return false;
5374}
5375
5376static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5377 int vec, u32 err_code)
5378{
5379 /*
5380 * Instruction with address size override prefix opcode 0x67
5381 * Cause the #SS fault with 0 error code in VM86 mode.
5382 */
5383 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5384 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5385 if (vcpu->arch.halt_request) {
5386 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005387 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005388 }
5389 return 1;
5390 }
5391 return 0;
5392 }
5393
5394 /*
5395 * Forward all other exceptions that are valid in real mode.
5396 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5397 * the required debugging infrastructure rework.
5398 */
5399 kvm_queue_exception(vcpu, vec);
5400 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005401}
5402
Andi Kleena0861c02009-06-08 17:37:09 +08005403/*
5404 * Trigger machine check on the host. We assume all the MSRs are already set up
5405 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5406 * We pass a fake environment to the machine check handler because we want
5407 * the guest to be always treated like user space, no matter what context
5408 * it used internally.
5409 */
5410static void kvm_machine_check(void)
5411{
5412#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5413 struct pt_regs regs = {
5414 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5415 .flags = X86_EFLAGS_IF,
5416 };
5417
5418 do_machine_check(&regs, 0);
5419#endif
5420}
5421
Avi Kivity851ba692009-08-24 11:10:17 +03005422static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005423{
5424 /* already handled by vcpu_run */
5425 return 1;
5426}
5427
Avi Kivity851ba692009-08-24 11:10:17 +03005428static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005429{
Avi Kivity1155f762007-11-22 11:30:47 +02005430 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005431 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005432 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005433 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005434 u32 vect_info;
5435 enum emulation_result er;
5436
Avi Kivity1155f762007-11-22 11:30:47 +02005437 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005438 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005439
Andi Kleena0861c02009-06-08 17:37:09 +08005440 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005441 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005442
Jan Kiszkae4a41882008-09-26 09:30:46 +02005443 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005444 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005445
5446 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005447 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005448 return 1;
5449 }
5450
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005451 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005452 if (is_guest_mode(vcpu)) {
5453 kvm_queue_exception(vcpu, UD_VECTOR);
5454 return 1;
5455 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005456 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005457 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005458 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005459 return 1;
5460 }
5461
Avi Kivity6aa8b732006-12-10 02:21:36 -08005462 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005463 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005464 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005465
5466 /*
5467 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5468 * MMIO, it is better to report an internal error.
5469 * See the comments in vmx_handle_exit.
5470 */
5471 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5472 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5473 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5474 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005475 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005476 vcpu->run->internal.data[0] = vect_info;
5477 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005478 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005479 return 0;
5480 }
5481
Avi Kivity6aa8b732006-12-10 02:21:36 -08005482 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005483 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005484 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005485 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005486 trace_kvm_page_fault(cr2, error_code);
5487
Gleb Natapov3298b752009-05-11 13:35:46 +03005488 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005489 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005490 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005491 }
5492
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005493 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005494
5495 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5496 return handle_rmode_exception(vcpu, ex_no, error_code);
5497
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005498 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005499 case AC_VECTOR:
5500 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5501 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005502 case DB_VECTOR:
5503 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5504 if (!(vcpu->guest_debug &
5505 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005506 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005507 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005508 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5509 skip_emulated_instruction(vcpu);
5510
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005511 kvm_queue_exception(vcpu, DB_VECTOR);
5512 return 1;
5513 }
5514 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5515 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5516 /* fall through */
5517 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005518 /*
5519 * Update instruction length as we may reinject #BP from
5520 * user space while in guest debugging mode. Reading it for
5521 * #DB as well causes no harm, it is not used in that case.
5522 */
5523 vmx->vcpu.arch.event_exit_inst_len =
5524 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005525 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005526 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005527 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5528 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005529 break;
5530 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005531 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5532 kvm_run->ex.exception = ex_no;
5533 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005534 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005535 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005536 return 0;
5537}
5538
Avi Kivity851ba692009-08-24 11:10:17 +03005539static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005540{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005541 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542 return 1;
5543}
5544
Avi Kivity851ba692009-08-24 11:10:17 +03005545static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005546{
Avi Kivity851ba692009-08-24 11:10:17 +03005547 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005548 return 0;
5549}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005550
Avi Kivity851ba692009-08-24 11:10:17 +03005551static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005552{
He, Qingbfdaab02007-09-12 14:18:28 +08005553 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005554 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005555 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005556
He, Qingbfdaab02007-09-12 14:18:28 +08005557 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005558 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005559 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005560
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005561 ++vcpu->stat.io_exits;
5562
5563 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005564 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005565
5566 port = exit_qualification >> 16;
5567 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005568 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005569
5570 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005571}
5572
Ingo Molnar102d8322007-02-19 14:37:47 +02005573static void
5574vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5575{
5576 /*
5577 * Patch in the VMCALL instruction:
5578 */
5579 hypercall[0] = 0x0f;
5580 hypercall[1] = 0x01;
5581 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005582}
5583
Wincy Vanb9c237b2015-02-03 23:56:30 +08005584static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005585{
5586 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005587 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005588
Wincy Vanb9c237b2015-02-03 23:56:30 +08005589 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005590 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5591 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5592 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5593 return (val & always_on) == always_on;
5594}
5595
Guo Chao0fa06072012-06-28 15:16:19 +08005596/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005597static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5598{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005599 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005600 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5601 unsigned long orig_val = val;
5602
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005603 /*
5604 * We get here when L2 changed cr0 in a way that did not change
5605 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005606 * but did change L0 shadowed bits. So we first calculate the
5607 * effective cr0 value that L1 would like to write into the
5608 * hardware. It consists of the L2-owned bits from the new
5609 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005610 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005611 val = (val & ~vmcs12->cr0_guest_host_mask) |
5612 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5613
Wincy Vanb9c237b2015-02-03 23:56:30 +08005614 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005615 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005616
5617 if (kvm_set_cr0(vcpu, val))
5618 return 1;
5619 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005620 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005621 } else {
5622 if (to_vmx(vcpu)->nested.vmxon &&
5623 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5624 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005625 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005626 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005627}
5628
5629static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5630{
5631 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005632 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5633 unsigned long orig_val = val;
5634
5635 /* analogously to handle_set_cr0 */
5636 val = (val & ~vmcs12->cr4_guest_host_mask) |
5637 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5638 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005639 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005640 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005641 return 0;
5642 } else
5643 return kvm_set_cr4(vcpu, val);
5644}
5645
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08005646/* called to set cr0 as appropriate for clts instruction exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005647static void handle_clts(struct kvm_vcpu *vcpu)
5648{
5649 if (is_guest_mode(vcpu)) {
5650 /*
5651 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5652 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5653 * just pretend it's off (also in arch.cr0 for fpu_activate).
5654 */
5655 vmcs_writel(CR0_READ_SHADOW,
5656 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5657 vcpu->arch.cr0 &= ~X86_CR0_TS;
5658 } else
5659 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5660}
5661
Avi Kivity851ba692009-08-24 11:10:17 +03005662static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005663{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005664 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005665 int cr;
5666 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005667 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005668
He, Qingbfdaab02007-09-12 14:18:28 +08005669 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005670 cr = exit_qualification & 15;
5671 reg = (exit_qualification >> 8) & 15;
5672 switch ((exit_qualification >> 4) & 3) {
5673 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005674 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005675 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005676 switch (cr) {
5677 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005678 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005679 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005680 return 1;
5681 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005682 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005683 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005684 return 1;
5685 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005686 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005687 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005688 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005689 case 8: {
5690 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005691 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005692 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005693 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005694 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005695 return 1;
5696 if (cr8_prev <= cr8)
5697 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005698 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005699 return 0;
5700 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005701 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005702 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005703 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005704 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005705 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005706 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005707 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005708 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005709 case 1: /*mov from cr*/
5710 switch (cr) {
5711 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005712 val = kvm_read_cr3(vcpu);
5713 kvm_register_write(vcpu, reg, val);
5714 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005715 skip_emulated_instruction(vcpu);
5716 return 1;
5717 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005718 val = kvm_get_cr8(vcpu);
5719 kvm_register_write(vcpu, reg, val);
5720 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005721 skip_emulated_instruction(vcpu);
5722 return 1;
5723 }
5724 break;
5725 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005726 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005727 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005728 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005729
5730 skip_emulated_instruction(vcpu);
5731 return 1;
5732 default:
5733 break;
5734 }
Avi Kivity851ba692009-08-24 11:10:17 +03005735 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005736 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005737 (int)(exit_qualification >> 4) & 3, cr);
5738 return 0;
5739}
5740
Avi Kivity851ba692009-08-24 11:10:17 +03005741static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005742{
He, Qingbfdaab02007-09-12 14:18:28 +08005743 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005744 int dr, dr7, reg;
5745
5746 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5747 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5748
5749 /* First, if DR does not exist, trigger UD */
5750 if (!kvm_require_dr(vcpu, dr))
5751 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752
Jan Kiszkaf2483412010-01-20 18:20:20 +01005753 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005754 if (!kvm_require_cpl(vcpu, 0))
5755 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005756 dr7 = vmcs_readl(GUEST_DR7);
5757 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005758 /*
5759 * As the vm-exit takes precedence over the debug trap, we
5760 * need to emulate the latter, either for the host or the
5761 * guest debugging itself.
5762 */
5763 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005764 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005765 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005766 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005767 vcpu->run->debug.arch.exception = DB_VECTOR;
5768 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005769 return 0;
5770 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005771 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005772 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005773 kvm_queue_exception(vcpu, DB_VECTOR);
5774 return 1;
5775 }
5776 }
5777
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005778 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01005779 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5780 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005781
5782 /*
5783 * No more DR vmexits; force a reload of the debug registers
5784 * and reenter on this instruction. The next vmexit will
5785 * retrieve the full state of the debug registers.
5786 */
5787 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5788 return 1;
5789 }
5790
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005791 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5792 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005793 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005794
5795 if (kvm_get_dr(vcpu, dr, &val))
5796 return 1;
5797 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005798 } else
Nadav Amit57773922014-06-18 17:19:23 +03005799 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005800 return 1;
5801
Avi Kivity6aa8b732006-12-10 02:21:36 -08005802 skip_emulated_instruction(vcpu);
5803 return 1;
5804}
5805
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005806static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5807{
5808 return vcpu->arch.dr6;
5809}
5810
5811static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5812{
5813}
5814
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005815static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5816{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005817 get_debugreg(vcpu->arch.db[0], 0);
5818 get_debugreg(vcpu->arch.db[1], 1);
5819 get_debugreg(vcpu->arch.db[2], 2);
5820 get_debugreg(vcpu->arch.db[3], 3);
5821 get_debugreg(vcpu->arch.dr6, 6);
5822 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5823
5824 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01005825 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005826}
5827
Gleb Natapov020df072010-04-13 10:05:23 +03005828static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5829{
5830 vmcs_writel(GUEST_DR7, val);
5831}
5832
Avi Kivity851ba692009-08-24 11:10:17 +03005833static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005834{
Avi Kivity06465c52007-02-28 20:46:53 +02005835 kvm_emulate_cpuid(vcpu);
5836 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005837}
5838
Avi Kivity851ba692009-08-24 11:10:17 +03005839static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005840{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005841 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005842 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005843
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005844 msr_info.index = ecx;
5845 msr_info.host_initiated = false;
5846 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005847 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005848 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005849 return 1;
5850 }
5851
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005852 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005853
Avi Kivity6aa8b732006-12-10 02:21:36 -08005854 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005855 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5856 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857 skip_emulated_instruction(vcpu);
5858 return 1;
5859}
5860
Avi Kivity851ba692009-08-24 11:10:17 +03005861static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005862{
Will Auld8fe8ab42012-11-29 12:42:12 -08005863 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005864 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5865 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5866 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005867
Will Auld8fe8ab42012-11-29 12:42:12 -08005868 msr.data = data;
5869 msr.index = ecx;
5870 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005871 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005872 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005873 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005874 return 1;
5875 }
5876
Avi Kivity59200272010-01-25 19:47:02 +02005877 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005878 skip_emulated_instruction(vcpu);
5879 return 1;
5880}
5881
Avi Kivity851ba692009-08-24 11:10:17 +03005882static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005883{
Avi Kivity3842d132010-07-27 12:30:24 +03005884 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005885 return 1;
5886}
5887
Avi Kivity851ba692009-08-24 11:10:17 +03005888static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005889{
Eddie Dong85f455f2007-07-06 12:20:49 +03005890 u32 cpu_based_vm_exec_control;
5891
5892 /* clear pending irq */
5893 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5894 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5895 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005896
Avi Kivity3842d132010-07-27 12:30:24 +03005897 kvm_make_request(KVM_REQ_EVENT, vcpu);
5898
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005899 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005900 return 1;
5901}
5902
Avi Kivity851ba692009-08-24 11:10:17 +03005903static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005904{
Avi Kivityd3bef152007-06-05 15:53:05 +03005905 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005906}
5907
Avi Kivity851ba692009-08-24 11:10:17 +03005908static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005909{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005910 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005911}
5912
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005913static int handle_invd(struct kvm_vcpu *vcpu)
5914{
Andre Przywara51d8b662010-12-21 11:12:02 +01005915 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005916}
5917
Avi Kivity851ba692009-08-24 11:10:17 +03005918static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005919{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005920 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005921
5922 kvm_mmu_invlpg(vcpu, exit_qualification);
5923 skip_emulated_instruction(vcpu);
5924 return 1;
5925}
5926
Avi Kivityfee84b02011-11-10 14:57:25 +02005927static int handle_rdpmc(struct kvm_vcpu *vcpu)
5928{
5929 int err;
5930
5931 err = kvm_rdpmc(vcpu);
5932 kvm_complete_insn_gp(vcpu, err);
5933
5934 return 1;
5935}
5936
Avi Kivity851ba692009-08-24 11:10:17 +03005937static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005938{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005939 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005940 return 1;
5941}
5942
Dexuan Cui2acf9232010-06-10 11:27:12 +08005943static int handle_xsetbv(struct kvm_vcpu *vcpu)
5944{
5945 u64 new_bv = kvm_read_edx_eax(vcpu);
5946 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5947
5948 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5949 skip_emulated_instruction(vcpu);
5950 return 1;
5951}
5952
Wanpeng Lif53cd632014-12-02 19:14:58 +08005953static int handle_xsaves(struct kvm_vcpu *vcpu)
5954{
5955 skip_emulated_instruction(vcpu);
5956 WARN(1, "this should never happen\n");
5957 return 1;
5958}
5959
5960static int handle_xrstors(struct kvm_vcpu *vcpu)
5961{
5962 skip_emulated_instruction(vcpu);
5963 WARN(1, "this should never happen\n");
5964 return 1;
5965}
5966
Avi Kivity851ba692009-08-24 11:10:17 +03005967static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005968{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005969 if (likely(fasteoi)) {
5970 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5971 int access_type, offset;
5972
5973 access_type = exit_qualification & APIC_ACCESS_TYPE;
5974 offset = exit_qualification & APIC_ACCESS_OFFSET;
5975 /*
5976 * Sane guest uses MOV to write EOI, with written value
5977 * not cared. So make a short-circuit here by avoiding
5978 * heavy instruction emulation.
5979 */
5980 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5981 (offset == APIC_EOI)) {
5982 kvm_lapic_set_eoi(vcpu);
5983 skip_emulated_instruction(vcpu);
5984 return 1;
5985 }
5986 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005987 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005988}
5989
Yang Zhangc7c9c562013-01-25 10:18:51 +08005990static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5991{
5992 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5993 int vector = exit_qualification & 0xff;
5994
5995 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5996 kvm_apic_set_eoi_accelerated(vcpu, vector);
5997 return 1;
5998}
5999
Yang Zhang83d4c282013-01-25 10:18:49 +08006000static int handle_apic_write(struct kvm_vcpu *vcpu)
6001{
6002 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6003 u32 offset = exit_qualification & 0xfff;
6004
6005 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6006 kvm_apic_write_nodecode(vcpu, offset);
6007 return 1;
6008}
6009
Avi Kivity851ba692009-08-24 11:10:17 +03006010static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006011{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006012 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006013 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006014 bool has_error_code = false;
6015 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006016 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006017 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006018
6019 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006020 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006021 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006022
6023 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6024
6025 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006026 if (reason == TASK_SWITCH_GATE && idt_v) {
6027 switch (type) {
6028 case INTR_TYPE_NMI_INTR:
6029 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006030 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006031 break;
6032 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006033 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006034 kvm_clear_interrupt_queue(vcpu);
6035 break;
6036 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006037 if (vmx->idt_vectoring_info &
6038 VECTORING_INFO_DELIVER_CODE_MASK) {
6039 has_error_code = true;
6040 error_code =
6041 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6042 }
6043 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006044 case INTR_TYPE_SOFT_EXCEPTION:
6045 kvm_clear_exception_queue(vcpu);
6046 break;
6047 default:
6048 break;
6049 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006050 }
Izik Eidus37817f22008-03-24 23:14:53 +02006051 tss_selector = exit_qualification;
6052
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006053 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6054 type != INTR_TYPE_EXT_INTR &&
6055 type != INTR_TYPE_NMI_INTR))
6056 skip_emulated_instruction(vcpu);
6057
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006058 if (kvm_task_switch(vcpu, tss_selector,
6059 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6060 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006061 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6062 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6063 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006064 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006065 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006066
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006067 /*
6068 * TODO: What about debug traps on tss switch?
6069 * Are we supposed to inject them and update dr6?
6070 */
6071
6072 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006073}
6074
Avi Kivity851ba692009-08-24 11:10:17 +03006075static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006076{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006077 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006078 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006079 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006080 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08006081
Sheng Yangf9c617f2009-03-25 10:08:52 +08006082 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006083
Sheng Yang14394422008-04-28 12:24:45 +08006084 gla_validity = (exit_qualification >> 7) & 0x3;
6085 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
6086 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
6087 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
6088 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08006089 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08006090 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
6091 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03006092 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6093 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03006094 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08006095 }
6096
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006097 /*
6098 * EPT violation happened while executing iret from NMI,
6099 * "blocked by NMI" bit has to be set before next VM entry.
6100 * There are errata that may cause this bit to not be set:
6101 * AAK134, BY25.
6102 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006103 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
6104 cpu_has_virtual_nmis() &&
6105 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006106 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6107
Sheng Yang14394422008-04-28 12:24:45 +08006108 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006109 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006110
6111 /* It is a write fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08006112 error_code = exit_qualification & PFERR_WRITE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03006113 /* It is a fetch fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08006114 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006115 /* ept page table is present? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08006116 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006117
Yang Zhang25d92082013-08-06 12:00:32 +03006118 vcpu->arch.exit_qualification = exit_qualification;
6119
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006120 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006121}
6122
Avi Kivity851ba692009-08-24 11:10:17 +03006123static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006124{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006125 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006126 gpa_t gpa;
6127
6128 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006129 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006130 skip_emulated_instruction(vcpu);
Jason Wang931c33b2015-09-15 14:41:58 +08006131 trace_kvm_fast_mmio(gpa);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006132 return 1;
6133 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006134
Paolo Bonzini450869d2015-11-04 13:41:21 +01006135 ret = handle_mmio_page_fault(vcpu, gpa, true);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006136 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006137 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
6138 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08006139
6140 if (unlikely(ret == RET_MMIO_PF_INVALID))
6141 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
6142
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006143 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006144 return 1;
6145
6146 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006147 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006148
Avi Kivity851ba692009-08-24 11:10:17 +03006149 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6150 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006151
6152 return 0;
6153}
6154
Avi Kivity851ba692009-08-24 11:10:17 +03006155static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006156{
6157 u32 cpu_based_vm_exec_control;
6158
6159 /* clear pending NMI */
6160 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6161 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6162 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6163 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006164 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006165
6166 return 1;
6167}
6168
Mohammed Gamal80ced182009-09-01 12:48:18 +02006169static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006170{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006171 struct vcpu_vmx *vmx = to_vmx(vcpu);
6172 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006173 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006174 u32 cpu_exec_ctrl;
6175 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006176 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006177
6178 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6179 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006180
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006181 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006182 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006183 return handle_interrupt_window(&vmx->vcpu);
6184
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006185 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6186 return 1;
6187
Gleb Natapov991eebf2013-04-11 12:10:51 +03006188 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006189
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006190 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006191 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006192 ret = 0;
6193 goto out;
6194 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006195
Avi Kivityde5f70e2012-06-12 20:22:28 +03006196 if (err != EMULATE_DONE) {
6197 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6198 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6199 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006200 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006201 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006202
Gleb Natapov8d76c492013-05-08 18:38:44 +03006203 if (vcpu->arch.halt_request) {
6204 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006205 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006206 goto out;
6207 }
6208
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006209 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006210 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006211 if (need_resched())
6212 schedule();
6213 }
6214
Mohammed Gamal80ced182009-09-01 12:48:18 +02006215out:
6216 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006217}
6218
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006219static int __grow_ple_window(int val)
6220{
6221 if (ple_window_grow < 1)
6222 return ple_window;
6223
6224 val = min(val, ple_window_actual_max);
6225
6226 if (ple_window_grow < ple_window)
6227 val *= ple_window_grow;
6228 else
6229 val += ple_window_grow;
6230
6231 return val;
6232}
6233
6234static int __shrink_ple_window(int val, int modifier, int minimum)
6235{
6236 if (modifier < 1)
6237 return ple_window;
6238
6239 if (modifier < ple_window)
6240 val /= modifier;
6241 else
6242 val -= modifier;
6243
6244 return max(val, minimum);
6245}
6246
6247static void grow_ple_window(struct kvm_vcpu *vcpu)
6248{
6249 struct vcpu_vmx *vmx = to_vmx(vcpu);
6250 int old = vmx->ple_window;
6251
6252 vmx->ple_window = __grow_ple_window(old);
6253
6254 if (vmx->ple_window != old)
6255 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006256
6257 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006258}
6259
6260static void shrink_ple_window(struct kvm_vcpu *vcpu)
6261{
6262 struct vcpu_vmx *vmx = to_vmx(vcpu);
6263 int old = vmx->ple_window;
6264
6265 vmx->ple_window = __shrink_ple_window(old,
6266 ple_window_shrink, ple_window);
6267
6268 if (vmx->ple_window != old)
6269 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006270
6271 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006272}
6273
6274/*
6275 * ple_window_actual_max is computed to be one grow_ple_window() below
6276 * ple_window_max. (See __grow_ple_window for the reason.)
6277 * This prevents overflows, because ple_window_max is int.
6278 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6279 * this process.
6280 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6281 */
6282static void update_ple_window_actual_max(void)
6283{
6284 ple_window_actual_max =
6285 __shrink_ple_window(max(ple_window_max, ple_window),
6286 ple_window_grow, INT_MIN);
6287}
6288
Feng Wubf9f6ac2015-09-18 22:29:55 +08006289/*
6290 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6291 */
6292static void wakeup_handler(void)
6293{
6294 struct kvm_vcpu *vcpu;
6295 int cpu = smp_processor_id();
6296
6297 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6298 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6299 blocked_vcpu_list) {
6300 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6301
6302 if (pi_test_on(pi_desc) == 1)
6303 kvm_vcpu_kick(vcpu);
6304 }
6305 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6306}
6307
Tiejun Chenf2c76482014-10-28 10:14:47 +08006308static __init int hardware_setup(void)
6309{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006310 int r = -ENOMEM, i, msr;
6311
6312 rdmsrl_safe(MSR_EFER, &host_efer);
6313
6314 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6315 kvm_define_shared_msr(i, vmx_msr_index[i]);
6316
6317 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
6318 if (!vmx_io_bitmap_a)
6319 return r;
6320
6321 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
6322 if (!vmx_io_bitmap_b)
6323 goto out;
6324
6325 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6326 if (!vmx_msr_bitmap_legacy)
6327 goto out1;
6328
6329 vmx_msr_bitmap_legacy_x2apic =
6330 (unsigned long *)__get_free_page(GFP_KERNEL);
6331 if (!vmx_msr_bitmap_legacy_x2apic)
6332 goto out2;
6333
6334 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6335 if (!vmx_msr_bitmap_longmode)
6336 goto out3;
6337
6338 vmx_msr_bitmap_longmode_x2apic =
6339 (unsigned long *)__get_free_page(GFP_KERNEL);
6340 if (!vmx_msr_bitmap_longmode_x2apic)
6341 goto out4;
Wincy Van3af18d92015-02-03 23:49:31 +08006342
6343 if (nested) {
6344 vmx_msr_bitmap_nested =
6345 (unsigned long *)__get_free_page(GFP_KERNEL);
6346 if (!vmx_msr_bitmap_nested)
6347 goto out5;
6348 }
6349
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006350 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6351 if (!vmx_vmread_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006352 goto out6;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006353
6354 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6355 if (!vmx_vmwrite_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006356 goto out7;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006357
6358 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6359 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6360
6361 /*
6362 * Allow direct access to the PC debug port (it is often used for I/O
6363 * delays, but the vmexits simply slow things down).
6364 */
6365 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6366 clear_bit(0x80, vmx_io_bitmap_a);
6367
6368 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6369
6370 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6371 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Wincy Van3af18d92015-02-03 23:49:31 +08006372 if (nested)
6373 memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006374
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006375 if (setup_vmcs_config(&vmcs_config) < 0) {
6376 r = -EIO;
Wincy Van3af18d92015-02-03 23:49:31 +08006377 goto out8;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006378 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006379
6380 if (boot_cpu_has(X86_FEATURE_NX))
6381 kvm_enable_efer_bits(EFER_NX);
6382
6383 if (!cpu_has_vmx_vpid())
6384 enable_vpid = 0;
6385 if (!cpu_has_vmx_shadow_vmcs())
6386 enable_shadow_vmcs = 0;
6387 if (enable_shadow_vmcs)
6388 init_vmcs_shadow_fields();
6389
6390 if (!cpu_has_vmx_ept() ||
6391 !cpu_has_vmx_ept_4levels()) {
6392 enable_ept = 0;
6393 enable_unrestricted_guest = 0;
6394 enable_ept_ad_bits = 0;
6395 }
6396
6397 if (!cpu_has_vmx_ept_ad_bits())
6398 enable_ept_ad_bits = 0;
6399
6400 if (!cpu_has_vmx_unrestricted_guest())
6401 enable_unrestricted_guest = 0;
6402
Paolo Bonziniad15a292015-01-30 16:18:49 +01006403 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006404 flexpriority_enabled = 0;
6405
Paolo Bonziniad15a292015-01-30 16:18:49 +01006406 /*
6407 * set_apic_access_page_addr() is used to reload apic access
6408 * page upon invalidation. No need to do anything if not
6409 * using the APIC_ACCESS_ADDR VMCS field.
6410 */
6411 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006412 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006413
6414 if (!cpu_has_vmx_tpr_shadow())
6415 kvm_x86_ops->update_cr8_intercept = NULL;
6416
6417 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6418 kvm_disable_largepages();
6419
6420 if (!cpu_has_vmx_ple())
6421 ple_gap = 0;
6422
6423 if (!cpu_has_vmx_apicv())
6424 enable_apicv = 0;
6425
Haozhong Zhang64903d62015-10-20 15:39:09 +08006426 if (cpu_has_vmx_tsc_scaling()) {
6427 kvm_has_tsc_control = true;
6428 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6429 kvm_tsc_scaling_ratio_frac_bits = 48;
6430 }
6431
Tiejun Chenbaa03522014-12-23 16:21:11 +08006432 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6433 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6434 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6435 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6436 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6437 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6438 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6439
6440 memcpy(vmx_msr_bitmap_legacy_x2apic,
6441 vmx_msr_bitmap_legacy, PAGE_SIZE);
6442 memcpy(vmx_msr_bitmap_longmode_x2apic,
6443 vmx_msr_bitmap_longmode, PAGE_SIZE);
6444
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006445 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6446
Roman Kagan3ce424e2016-05-18 17:48:20 +03006447 for (msr = 0x800; msr <= 0x8ff; msr++)
6448 vmx_disable_intercept_msr_read_x2apic(msr);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006449
Roman Kagan3ce424e2016-05-18 17:48:20 +03006450 /* According SDM, in x2apic mode, the whole id reg is used. But in
6451 * KVM, it only use the highest eight bits. Need to intercept it */
6452 vmx_enable_intercept_msr_read_x2apic(0x802);
6453 /* TMCCT */
6454 vmx_enable_intercept_msr_read_x2apic(0x839);
6455 /* TPR */
6456 vmx_disable_intercept_msr_write_x2apic(0x808);
6457 /* EOI */
6458 vmx_disable_intercept_msr_write_x2apic(0x80b);
6459 /* SELF-IPI */
6460 vmx_disable_intercept_msr_write_x2apic(0x83f);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006461
6462 if (enable_ept) {
6463 kvm_mmu_set_mask_ptes(0ull,
6464 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
6465 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
6466 0ull, VMX_EPT_EXECUTABLE_MASK);
6467 ept_set_mmio_spte_mask();
6468 kvm_enable_tdp();
6469 } else
6470 kvm_disable_tdp();
6471
6472 update_ple_window_actual_max();
6473
Kai Huang843e4332015-01-28 10:54:28 +08006474 /*
6475 * Only enable PML when hardware supports PML feature, and both EPT
6476 * and EPT A/D bit features are enabled -- PML depends on them to work.
6477 */
6478 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6479 enable_pml = 0;
6480
6481 if (!enable_pml) {
6482 kvm_x86_ops->slot_enable_log_dirty = NULL;
6483 kvm_x86_ops->slot_disable_log_dirty = NULL;
6484 kvm_x86_ops->flush_log_dirty = NULL;
6485 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6486 }
6487
Yunhong Jiang64672c92016-06-13 14:19:59 -07006488 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6489 u64 vmx_msr;
6490
6491 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6492 cpu_preemption_timer_multi =
6493 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6494 } else {
6495 kvm_x86_ops->set_hv_timer = NULL;
6496 kvm_x86_ops->cancel_hv_timer = NULL;
6497 }
6498
Feng Wubf9f6ac2015-09-18 22:29:55 +08006499 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6500
Ashok Rajc45dcc72016-06-22 14:59:56 +08006501 kvm_mce_cap_supported |= MCG_LMCE_P;
6502
Tiejun Chenf2c76482014-10-28 10:14:47 +08006503 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006504
Wincy Van3af18d92015-02-03 23:49:31 +08006505out8:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006506 free_page((unsigned long)vmx_vmwrite_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006507out7:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006508 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006509out6:
6510 if (nested)
6511 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006512out5:
6513 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6514out4:
6515 free_page((unsigned long)vmx_msr_bitmap_longmode);
6516out3:
6517 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6518out2:
6519 free_page((unsigned long)vmx_msr_bitmap_legacy);
6520out1:
6521 free_page((unsigned long)vmx_io_bitmap_b);
6522out:
6523 free_page((unsigned long)vmx_io_bitmap_a);
6524
6525 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006526}
6527
6528static __exit void hardware_unsetup(void)
6529{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006530 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6531 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6532 free_page((unsigned long)vmx_msr_bitmap_legacy);
6533 free_page((unsigned long)vmx_msr_bitmap_longmode);
6534 free_page((unsigned long)vmx_io_bitmap_b);
6535 free_page((unsigned long)vmx_io_bitmap_a);
6536 free_page((unsigned long)vmx_vmwrite_bitmap);
6537 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006538 if (nested)
6539 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006540
Tiejun Chenf2c76482014-10-28 10:14:47 +08006541 free_kvm_area();
6542}
6543
Avi Kivity6aa8b732006-12-10 02:21:36 -08006544/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006545 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6546 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6547 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006548static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006549{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006550 if (ple_gap)
6551 grow_ple_window(vcpu);
6552
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006553 skip_emulated_instruction(vcpu);
6554 kvm_vcpu_on_spin(vcpu);
6555
6556 return 1;
6557}
6558
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006559static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006560{
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006561 skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006562 return 1;
6563}
6564
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006565static int handle_mwait(struct kvm_vcpu *vcpu)
6566{
6567 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6568 return handle_nop(vcpu);
6569}
6570
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006571static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6572{
6573 return 1;
6574}
6575
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006576static int handle_monitor(struct kvm_vcpu *vcpu)
6577{
6578 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6579 return handle_nop(vcpu);
6580}
6581
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006582/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006583 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6584 * We could reuse a single VMCS for all the L2 guests, but we also want the
6585 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6586 * allows keeping them loaded on the processor, and in the future will allow
6587 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6588 * every entry if they never change.
6589 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6590 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6591 *
6592 * The following functions allocate and free a vmcs02 in this pool.
6593 */
6594
6595/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6596static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6597{
6598 struct vmcs02_list *item;
6599 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6600 if (item->vmptr == vmx->nested.current_vmptr) {
6601 list_move(&item->list, &vmx->nested.vmcs02_pool);
6602 return &item->vmcs02;
6603 }
6604
6605 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6606 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006607 item = list_last_entry(&vmx->nested.vmcs02_pool,
6608 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006609 item->vmptr = vmx->nested.current_vmptr;
6610 list_move(&item->list, &vmx->nested.vmcs02_pool);
6611 return &item->vmcs02;
6612 }
6613
6614 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006615 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006616 if (!item)
6617 return NULL;
6618 item->vmcs02.vmcs = alloc_vmcs();
6619 if (!item->vmcs02.vmcs) {
6620 kfree(item);
6621 return NULL;
6622 }
6623 loaded_vmcs_init(&item->vmcs02);
6624 item->vmptr = vmx->nested.current_vmptr;
6625 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6626 vmx->nested.vmcs02_num++;
6627 return &item->vmcs02;
6628}
6629
6630/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6631static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6632{
6633 struct vmcs02_list *item;
6634 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6635 if (item->vmptr == vmptr) {
6636 free_loaded_vmcs(&item->vmcs02);
6637 list_del(&item->list);
6638 kfree(item);
6639 vmx->nested.vmcs02_num--;
6640 return;
6641 }
6642}
6643
6644/*
6645 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006646 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6647 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006648 */
6649static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6650{
6651 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006652
6653 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006654 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006655 /*
6656 * Something will leak if the above WARN triggers. Better than
6657 * a use-after-free.
6658 */
6659 if (vmx->loaded_vmcs == &item->vmcs02)
6660 continue;
6661
6662 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006663 list_del(&item->list);
6664 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006665 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006666 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006667}
6668
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006669/*
6670 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6671 * set the success or error code of an emulated VMX instruction, as specified
6672 * by Vol 2B, VMX Instruction Reference, "Conventions".
6673 */
6674static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6675{
6676 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6677 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6678 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6679}
6680
6681static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6682{
6683 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6684 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6685 X86_EFLAGS_SF | X86_EFLAGS_OF))
6686 | X86_EFLAGS_CF);
6687}
6688
Abel Gordon145c28d2013-04-18 14:36:55 +03006689static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006690 u32 vm_instruction_error)
6691{
6692 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6693 /*
6694 * failValid writes the error number to the current VMCS, which
6695 * can't be done there isn't a current VMCS.
6696 */
6697 nested_vmx_failInvalid(vcpu);
6698 return;
6699 }
6700 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6701 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6702 X86_EFLAGS_SF | X86_EFLAGS_OF))
6703 | X86_EFLAGS_ZF);
6704 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6705 /*
6706 * We don't need to force a shadow sync because
6707 * VM_INSTRUCTION_ERROR is not shadowed
6708 */
6709}
Abel Gordon145c28d2013-04-18 14:36:55 +03006710
Wincy Vanff651cb2014-12-11 08:52:58 +03006711static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6712{
6713 /* TODO: not to reset guest simply here. */
6714 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6715 pr_warn("kvm: nested vmx abort, indicator %d\n", indicator);
6716}
6717
Jan Kiszkaf41245002014-03-07 20:03:13 +01006718static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6719{
6720 struct vcpu_vmx *vmx =
6721 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6722
6723 vmx->nested.preemption_timer_expired = true;
6724 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6725 kvm_vcpu_kick(&vmx->vcpu);
6726
6727 return HRTIMER_NORESTART;
6728}
6729
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006730/*
Bandan Das19677e32014-05-06 02:19:15 -04006731 * Decode the memory-address operand of a vmx instruction, as recorded on an
6732 * exit caused by such an instruction (run by a guest hypervisor).
6733 * On success, returns 0. When the operand is invalid, returns 1 and throws
6734 * #UD or #GP.
6735 */
6736static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6737 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006738 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006739{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006740 gva_t off;
6741 bool exn;
6742 struct kvm_segment s;
6743
Bandan Das19677e32014-05-06 02:19:15 -04006744 /*
6745 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6746 * Execution", on an exit, vmx_instruction_info holds most of the
6747 * addressing components of the operand. Only the displacement part
6748 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6749 * For how an actual address is calculated from all these components,
6750 * refer to Vol. 1, "Operand Addressing".
6751 */
6752 int scaling = vmx_instruction_info & 3;
6753 int addr_size = (vmx_instruction_info >> 7) & 7;
6754 bool is_reg = vmx_instruction_info & (1u << 10);
6755 int seg_reg = (vmx_instruction_info >> 15) & 7;
6756 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6757 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6758 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6759 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6760
6761 if (is_reg) {
6762 kvm_queue_exception(vcpu, UD_VECTOR);
6763 return 1;
6764 }
6765
6766 /* Addr = segment_base + offset */
6767 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006768 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006769 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006770 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006771 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006772 off += kvm_register_read(vcpu, index_reg)<<scaling;
6773 vmx_get_segment(vcpu, &s, seg_reg);
6774 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006775
6776 if (addr_size == 1) /* 32 bit */
6777 *ret &= 0xffffffff;
6778
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006779 /* Checks for #GP/#SS exceptions. */
6780 exn = false;
6781 if (is_protmode(vcpu)) {
6782 /* Protected mode: apply checks for segment validity in the
6783 * following order:
6784 * - segment type check (#GP(0) may be thrown)
6785 * - usability check (#GP(0)/#SS(0))
6786 * - limit check (#GP(0)/#SS(0))
6787 */
6788 if (wr)
6789 /* #GP(0) if the destination operand is located in a
6790 * read-only data segment or any code segment.
6791 */
6792 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6793 else
6794 /* #GP(0) if the source operand is located in an
6795 * execute-only code segment
6796 */
6797 exn = ((s.type & 0xa) == 8);
6798 }
6799 if (exn) {
6800 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6801 return 1;
6802 }
6803 if (is_long_mode(vcpu)) {
6804 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6805 * non-canonical form. This is an only check for long mode.
6806 */
6807 exn = is_noncanonical_address(*ret);
6808 } else if (is_protmode(vcpu)) {
6809 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6810 */
6811 exn = (s.unusable != 0);
6812 /* Protected mode: #GP(0)/#SS(0) if the memory
6813 * operand is outside the segment limit.
6814 */
6815 exn = exn || (off + sizeof(u64) > s.limit);
6816 }
6817 if (exn) {
6818 kvm_queue_exception_e(vcpu,
6819 seg_reg == VCPU_SREG_SS ?
6820 SS_VECTOR : GP_VECTOR,
6821 0);
6822 return 1;
6823 }
6824
Bandan Das19677e32014-05-06 02:19:15 -04006825 return 0;
6826}
6827
6828/*
Bandan Das3573e222014-05-06 02:19:16 -04006829 * This function performs the various checks including
6830 * - if it's 4KB aligned
6831 * - No bits beyond the physical address width are set
6832 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006833 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006834 */
Bandan Das4291b582014-05-06 02:19:18 -04006835static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6836 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006837{
6838 gva_t gva;
6839 gpa_t vmptr;
6840 struct x86_exception e;
6841 struct page *page;
6842 struct vcpu_vmx *vmx = to_vmx(vcpu);
6843 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6844
6845 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006846 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006847 return 1;
6848
6849 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6850 sizeof(vmptr), &e)) {
6851 kvm_inject_page_fault(vcpu, &e);
6852 return 1;
6853 }
6854
6855 switch (exit_reason) {
6856 case EXIT_REASON_VMON:
6857 /*
6858 * SDM 3: 24.11.5
6859 * The first 4 bytes of VMXON region contain the supported
6860 * VMCS revision identifier
6861 *
6862 * Note - IA32_VMX_BASIC[48] will never be 1
6863 * for the nested case;
6864 * which replaces physical address width with 32
6865 *
6866 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006867 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006868 nested_vmx_failInvalid(vcpu);
6869 skip_emulated_instruction(vcpu);
6870 return 1;
6871 }
6872
6873 page = nested_get_page(vcpu, vmptr);
6874 if (page == NULL ||
6875 *(u32 *)kmap(page) != VMCS12_REVISION) {
6876 nested_vmx_failInvalid(vcpu);
6877 kunmap(page);
6878 skip_emulated_instruction(vcpu);
6879 return 1;
6880 }
6881 kunmap(page);
6882 vmx->nested.vmxon_ptr = vmptr;
6883 break;
Bandan Das4291b582014-05-06 02:19:18 -04006884 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006885 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006886 nested_vmx_failValid(vcpu,
6887 VMXERR_VMCLEAR_INVALID_ADDRESS);
6888 skip_emulated_instruction(vcpu);
6889 return 1;
6890 }
Bandan Das3573e222014-05-06 02:19:16 -04006891
Bandan Das4291b582014-05-06 02:19:18 -04006892 if (vmptr == vmx->nested.vmxon_ptr) {
6893 nested_vmx_failValid(vcpu,
6894 VMXERR_VMCLEAR_VMXON_POINTER);
6895 skip_emulated_instruction(vcpu);
6896 return 1;
6897 }
6898 break;
6899 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006900 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006901 nested_vmx_failValid(vcpu,
6902 VMXERR_VMPTRLD_INVALID_ADDRESS);
6903 skip_emulated_instruction(vcpu);
6904 return 1;
6905 }
6906
6907 if (vmptr == vmx->nested.vmxon_ptr) {
6908 nested_vmx_failValid(vcpu,
6909 VMXERR_VMCLEAR_VMXON_POINTER);
6910 skip_emulated_instruction(vcpu);
6911 return 1;
6912 }
6913 break;
Bandan Das3573e222014-05-06 02:19:16 -04006914 default:
6915 return 1; /* shouldn't happen */
6916 }
6917
Bandan Das4291b582014-05-06 02:19:18 -04006918 if (vmpointer)
6919 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04006920 return 0;
6921}
6922
6923/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006924 * Emulate the VMXON instruction.
6925 * Currently, we just remember that VMX is active, and do not save or even
6926 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6927 * do not currently need to store anything in that guest-allocated memory
6928 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6929 * argument is different from the VMXON pointer (which the spec says they do).
6930 */
6931static int handle_vmon(struct kvm_vcpu *vcpu)
6932{
6933 struct kvm_segment cs;
6934 struct vcpu_vmx *vmx = to_vmx(vcpu);
Abel Gordon8de48832013-04-18 14:37:25 +03006935 struct vmcs *shadow_vmcs;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006936 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6937 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006938
6939 /* The Intel VMX Instruction Reference lists a bunch of bits that
6940 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6941 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6942 * Otherwise, we should fail with #UD. We test these now:
6943 */
6944 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6945 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6946 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6947 kvm_queue_exception(vcpu, UD_VECTOR);
6948 return 1;
6949 }
6950
6951 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6952 if (is_long_mode(vcpu) && !cs.l) {
6953 kvm_queue_exception(vcpu, UD_VECTOR);
6954 return 1;
6955 }
6956
6957 if (vmx_get_cpl(vcpu)) {
6958 kvm_inject_gp(vcpu, 0);
6959 return 1;
6960 }
Bandan Das3573e222014-05-06 02:19:16 -04006961
Bandan Das4291b582014-05-06 02:19:18 -04006962 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
Bandan Das3573e222014-05-06 02:19:16 -04006963 return 1;
6964
Abel Gordon145c28d2013-04-18 14:36:55 +03006965 if (vmx->nested.vmxon) {
6966 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6967 skip_emulated_instruction(vcpu);
6968 return 1;
6969 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006970
Haozhong Zhang3b840802016-06-22 14:59:54 +08006971 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006972 != VMXON_NEEDED_FEATURES) {
6973 kvm_inject_gp(vcpu, 0);
6974 return 1;
6975 }
6976
Abel Gordon8de48832013-04-18 14:37:25 +03006977 if (enable_shadow_vmcs) {
6978 shadow_vmcs = alloc_vmcs();
6979 if (!shadow_vmcs)
6980 return -ENOMEM;
6981 /* mark vmcs as shadow */
6982 shadow_vmcs->revision_id |= (1u << 31);
6983 /* init shadow vmcs */
6984 vmcs_clear(shadow_vmcs);
6985 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6986 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006987
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006988 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6989 vmx->nested.vmcs02_num = 0;
6990
Jan Kiszkaf41245002014-03-07 20:03:13 +01006991 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6992 HRTIMER_MODE_REL);
6993 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6994
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006995 vmx->nested.vmxon = true;
6996
6997 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006998 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006999 return 1;
7000}
7001
7002/*
7003 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7004 * for running VMX instructions (except VMXON, whose prerequisites are
7005 * slightly different). It also specifies what exception to inject otherwise.
7006 */
7007static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7008{
7009 struct kvm_segment cs;
7010 struct vcpu_vmx *vmx = to_vmx(vcpu);
7011
7012 if (!vmx->nested.vmxon) {
7013 kvm_queue_exception(vcpu, UD_VECTOR);
7014 return 0;
7015 }
7016
7017 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
7018 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
7019 (is_long_mode(vcpu) && !cs.l)) {
7020 kvm_queue_exception(vcpu, UD_VECTOR);
7021 return 0;
7022 }
7023
7024 if (vmx_get_cpl(vcpu)) {
7025 kvm_inject_gp(vcpu, 0);
7026 return 0;
7027 }
7028
7029 return 1;
7030}
7031
Abel Gordone7953d72013-04-18 14:37:55 +03007032static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7033{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007034 if (vmx->nested.current_vmptr == -1ull)
7035 return;
7036
7037 /* current_vmptr and current_vmcs12 are always set/reset together */
7038 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
7039 return;
7040
Abel Gordon012f83c2013-04-18 14:39:25 +03007041 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007042 /* copy to memory all shadowed fields in case
7043 they were modified */
7044 copy_shadow_to_vmcs12(vmx);
7045 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007046 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
7047 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007048 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03007049 }
Wincy Van705699a2015-02-03 23:58:17 +08007050 vmx->nested.posted_intr_nv = -1;
Abel Gordone7953d72013-04-18 14:37:55 +03007051 kunmap(vmx->nested.current_vmcs12_page);
7052 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007053 vmx->nested.current_vmptr = -1ull;
7054 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03007055}
7056
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007057/*
7058 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7059 * just stops using VMX.
7060 */
7061static void free_nested(struct vcpu_vmx *vmx)
7062{
7063 if (!vmx->nested.vmxon)
7064 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007065
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007066 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007067 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007068 nested_release_vmcs12(vmx);
Abel Gordone7953d72013-04-18 14:37:55 +03007069 if (enable_shadow_vmcs)
7070 free_vmcs(vmx->nested.current_shadow_vmcs);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007071 /* Unpin physical memory we referred to in current vmcs02 */
7072 if (vmx->nested.apic_access_page) {
7073 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007074 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007075 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007076 if (vmx->nested.virtual_apic_page) {
7077 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007078 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007079 }
Wincy Van705699a2015-02-03 23:58:17 +08007080 if (vmx->nested.pi_desc_page) {
7081 kunmap(vmx->nested.pi_desc_page);
7082 nested_release_page(vmx->nested.pi_desc_page);
7083 vmx->nested.pi_desc_page = NULL;
7084 vmx->nested.pi_desc = NULL;
7085 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007086
7087 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007088}
7089
7090/* Emulate the VMXOFF instruction */
7091static int handle_vmoff(struct kvm_vcpu *vcpu)
7092{
7093 if (!nested_vmx_check_permission(vcpu))
7094 return 1;
7095 free_nested(to_vmx(vcpu));
7096 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007097 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007098 return 1;
7099}
7100
Nadav Har'El27d6c862011-05-25 23:06:59 +03007101/* Emulate the VMCLEAR instruction */
7102static int handle_vmclear(struct kvm_vcpu *vcpu)
7103{
7104 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007105 gpa_t vmptr;
7106 struct vmcs12 *vmcs12;
7107 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007108
7109 if (!nested_vmx_check_permission(vcpu))
7110 return 1;
7111
Bandan Das4291b582014-05-06 02:19:18 -04007112 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007113 return 1;
7114
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007115 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007116 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007117
7118 page = nested_get_page(vcpu, vmptr);
7119 if (page == NULL) {
7120 /*
7121 * For accurate processor emulation, VMCLEAR beyond available
7122 * physical memory should do nothing at all. However, it is
7123 * possible that a nested vmx bug, not a guest hypervisor bug,
7124 * resulted in this case, so let's shut down before doing any
7125 * more damage:
7126 */
7127 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7128 return 1;
7129 }
7130 vmcs12 = kmap(page);
7131 vmcs12->launch_state = 0;
7132 kunmap(page);
7133 nested_release_page(page);
7134
7135 nested_free_vmcs02(vmx, vmptr);
7136
7137 skip_emulated_instruction(vcpu);
7138 nested_vmx_succeed(vcpu);
7139 return 1;
7140}
7141
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007142static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7143
7144/* Emulate the VMLAUNCH instruction */
7145static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7146{
7147 return nested_vmx_run(vcpu, true);
7148}
7149
7150/* Emulate the VMRESUME instruction */
7151static int handle_vmresume(struct kvm_vcpu *vcpu)
7152{
7153
7154 return nested_vmx_run(vcpu, false);
7155}
7156
Nadav Har'El49f705c2011-05-25 23:08:30 +03007157enum vmcs_field_type {
7158 VMCS_FIELD_TYPE_U16 = 0,
7159 VMCS_FIELD_TYPE_U64 = 1,
7160 VMCS_FIELD_TYPE_U32 = 2,
7161 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
7162};
7163
7164static inline int vmcs_field_type(unsigned long field)
7165{
7166 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7167 return VMCS_FIELD_TYPE_U32;
7168 return (field >> 13) & 0x3 ;
7169}
7170
7171static inline int vmcs_field_readonly(unsigned long field)
7172{
7173 return (((field >> 10) & 0x3) == 1);
7174}
7175
7176/*
7177 * Read a vmcs12 field. Since these can have varying lengths and we return
7178 * one type, we chose the biggest type (u64) and zero-extend the return value
7179 * to that size. Note that the caller, handle_vmread, might need to use only
7180 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7181 * 64-bit fields are to be returned).
7182 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007183static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7184 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007185{
7186 short offset = vmcs_field_to_offset(field);
7187 char *p;
7188
7189 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007190 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007191
7192 p = ((char *)(get_vmcs12(vcpu))) + offset;
7193
7194 switch (vmcs_field_type(field)) {
7195 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7196 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007197 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007198 case VMCS_FIELD_TYPE_U16:
7199 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007200 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007201 case VMCS_FIELD_TYPE_U32:
7202 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007203 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007204 case VMCS_FIELD_TYPE_U64:
7205 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007206 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007207 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007208 WARN_ON(1);
7209 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007210 }
7211}
7212
Abel Gordon20b97fe2013-04-18 14:36:25 +03007213
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007214static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7215 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007216 short offset = vmcs_field_to_offset(field);
7217 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7218 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007219 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007220
7221 switch (vmcs_field_type(field)) {
7222 case VMCS_FIELD_TYPE_U16:
7223 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007224 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007225 case VMCS_FIELD_TYPE_U32:
7226 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007227 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007228 case VMCS_FIELD_TYPE_U64:
7229 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007230 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007231 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7232 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007233 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007234 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007235 WARN_ON(1);
7236 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007237 }
7238
7239}
7240
Abel Gordon16f5b902013-04-18 14:38:25 +03007241static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7242{
7243 int i;
7244 unsigned long field;
7245 u64 field_value;
7246 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007247 const unsigned long *fields = shadow_read_write_fields;
7248 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007249
Jan Kiszka282da872014-10-08 18:05:39 +02007250 preempt_disable();
7251
Abel Gordon16f5b902013-04-18 14:38:25 +03007252 vmcs_load(shadow_vmcs);
7253
7254 for (i = 0; i < num_fields; i++) {
7255 field = fields[i];
7256 switch (vmcs_field_type(field)) {
7257 case VMCS_FIELD_TYPE_U16:
7258 field_value = vmcs_read16(field);
7259 break;
7260 case VMCS_FIELD_TYPE_U32:
7261 field_value = vmcs_read32(field);
7262 break;
7263 case VMCS_FIELD_TYPE_U64:
7264 field_value = vmcs_read64(field);
7265 break;
7266 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7267 field_value = vmcs_readl(field);
7268 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007269 default:
7270 WARN_ON(1);
7271 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007272 }
7273 vmcs12_write_any(&vmx->vcpu, field, field_value);
7274 }
7275
7276 vmcs_clear(shadow_vmcs);
7277 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007278
7279 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007280}
7281
Abel Gordonc3114422013-04-18 14:38:55 +03007282static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7283{
Mathias Krausec2bae892013-06-26 20:36:21 +02007284 const unsigned long *fields[] = {
7285 shadow_read_write_fields,
7286 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007287 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007288 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007289 max_shadow_read_write_fields,
7290 max_shadow_read_only_fields
7291 };
7292 int i, q;
7293 unsigned long field;
7294 u64 field_value = 0;
7295 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
7296
7297 vmcs_load(shadow_vmcs);
7298
Mathias Krausec2bae892013-06-26 20:36:21 +02007299 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007300 for (i = 0; i < max_fields[q]; i++) {
7301 field = fields[q][i];
7302 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7303
7304 switch (vmcs_field_type(field)) {
7305 case VMCS_FIELD_TYPE_U16:
7306 vmcs_write16(field, (u16)field_value);
7307 break;
7308 case VMCS_FIELD_TYPE_U32:
7309 vmcs_write32(field, (u32)field_value);
7310 break;
7311 case VMCS_FIELD_TYPE_U64:
7312 vmcs_write64(field, (u64)field_value);
7313 break;
7314 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7315 vmcs_writel(field, (long)field_value);
7316 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007317 default:
7318 WARN_ON(1);
7319 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007320 }
7321 }
7322 }
7323
7324 vmcs_clear(shadow_vmcs);
7325 vmcs_load(vmx->loaded_vmcs->vmcs);
7326}
7327
Nadav Har'El49f705c2011-05-25 23:08:30 +03007328/*
7329 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7330 * used before) all generate the same failure when it is missing.
7331 */
7332static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7333{
7334 struct vcpu_vmx *vmx = to_vmx(vcpu);
7335 if (vmx->nested.current_vmptr == -1ull) {
7336 nested_vmx_failInvalid(vcpu);
7337 skip_emulated_instruction(vcpu);
7338 return 0;
7339 }
7340 return 1;
7341}
7342
7343static int handle_vmread(struct kvm_vcpu *vcpu)
7344{
7345 unsigned long field;
7346 u64 field_value;
7347 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7348 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7349 gva_t gva = 0;
7350
7351 if (!nested_vmx_check_permission(vcpu) ||
7352 !nested_vmx_check_vmcs12(vcpu))
7353 return 1;
7354
7355 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007356 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007357 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007358 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007359 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7360 skip_emulated_instruction(vcpu);
7361 return 1;
7362 }
7363 /*
7364 * Now copy part of this value to register or memory, as requested.
7365 * Note that the number of bits actually copied is 32 or 64 depending
7366 * on the guest's mode (32 or 64 bit), not on the given field's length.
7367 */
7368 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007369 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007370 field_value);
7371 } else {
7372 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007373 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007374 return 1;
7375 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7376 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7377 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7378 }
7379
7380 nested_vmx_succeed(vcpu);
7381 skip_emulated_instruction(vcpu);
7382 return 1;
7383}
7384
7385
7386static int handle_vmwrite(struct kvm_vcpu *vcpu)
7387{
7388 unsigned long field;
7389 gva_t gva;
7390 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7391 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007392 /* The value to write might be 32 or 64 bits, depending on L1's long
7393 * mode, and eventually we need to write that into a field of several
7394 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007395 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007396 * bits into the vmcs12 field.
7397 */
7398 u64 field_value = 0;
7399 struct x86_exception e;
7400
7401 if (!nested_vmx_check_permission(vcpu) ||
7402 !nested_vmx_check_vmcs12(vcpu))
7403 return 1;
7404
7405 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007406 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007407 (((vmx_instruction_info) >> 3) & 0xf));
7408 else {
7409 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007410 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007411 return 1;
7412 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007413 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007414 kvm_inject_page_fault(vcpu, &e);
7415 return 1;
7416 }
7417 }
7418
7419
Nadav Amit27e6fb52014-06-18 17:19:26 +03007420 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007421 if (vmcs_field_readonly(field)) {
7422 nested_vmx_failValid(vcpu,
7423 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
7424 skip_emulated_instruction(vcpu);
7425 return 1;
7426 }
7427
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007428 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007429 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7430 skip_emulated_instruction(vcpu);
7431 return 1;
7432 }
7433
7434 nested_vmx_succeed(vcpu);
7435 skip_emulated_instruction(vcpu);
7436 return 1;
7437}
7438
Nadav Har'El63846662011-05-25 23:07:29 +03007439/* Emulate the VMPTRLD instruction */
7440static int handle_vmptrld(struct kvm_vcpu *vcpu)
7441{
7442 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007443 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007444
7445 if (!nested_vmx_check_permission(vcpu))
7446 return 1;
7447
Bandan Das4291b582014-05-06 02:19:18 -04007448 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007449 return 1;
7450
Nadav Har'El63846662011-05-25 23:07:29 +03007451 if (vmx->nested.current_vmptr != vmptr) {
7452 struct vmcs12 *new_vmcs12;
7453 struct page *page;
7454 page = nested_get_page(vcpu, vmptr);
7455 if (page == NULL) {
7456 nested_vmx_failInvalid(vcpu);
7457 skip_emulated_instruction(vcpu);
7458 return 1;
7459 }
7460 new_vmcs12 = kmap(page);
7461 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7462 kunmap(page);
7463 nested_release_page_clean(page);
7464 nested_vmx_failValid(vcpu,
7465 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
7466 skip_emulated_instruction(vcpu);
7467 return 1;
7468 }
Nadav Har'El63846662011-05-25 23:07:29 +03007469
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007470 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007471 vmx->nested.current_vmptr = vmptr;
7472 vmx->nested.current_vmcs12 = new_vmcs12;
7473 vmx->nested.current_vmcs12_page = page;
Abel Gordon012f83c2013-04-18 14:39:25 +03007474 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007475 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7476 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007477 vmcs_write64(VMCS_LINK_POINTER,
7478 __pa(vmx->nested.current_shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007479 vmx->nested.sync_shadow_vmcs = true;
7480 }
Nadav Har'El63846662011-05-25 23:07:29 +03007481 }
7482
7483 nested_vmx_succeed(vcpu);
7484 skip_emulated_instruction(vcpu);
7485 return 1;
7486}
7487
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007488/* Emulate the VMPTRST instruction */
7489static int handle_vmptrst(struct kvm_vcpu *vcpu)
7490{
7491 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7492 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7493 gva_t vmcs_gva;
7494 struct x86_exception e;
7495
7496 if (!nested_vmx_check_permission(vcpu))
7497 return 1;
7498
7499 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007500 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007501 return 1;
7502 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7503 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7504 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7505 sizeof(u64), &e)) {
7506 kvm_inject_page_fault(vcpu, &e);
7507 return 1;
7508 }
7509 nested_vmx_succeed(vcpu);
7510 skip_emulated_instruction(vcpu);
7511 return 1;
7512}
7513
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007514/* Emulate the INVEPT instruction */
7515static int handle_invept(struct kvm_vcpu *vcpu)
7516{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007517 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007518 u32 vmx_instruction_info, types;
7519 unsigned long type;
7520 gva_t gva;
7521 struct x86_exception e;
7522 struct {
7523 u64 eptp, gpa;
7524 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007525
Wincy Vanb9c237b2015-02-03 23:56:30 +08007526 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7527 SECONDARY_EXEC_ENABLE_EPT) ||
7528 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007529 kvm_queue_exception(vcpu, UD_VECTOR);
7530 return 1;
7531 }
7532
7533 if (!nested_vmx_check_permission(vcpu))
7534 return 1;
7535
7536 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7537 kvm_queue_exception(vcpu, UD_VECTOR);
7538 return 1;
7539 }
7540
7541 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007542 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007543
Wincy Vanb9c237b2015-02-03 23:56:30 +08007544 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007545
7546 if (!(types & (1UL << type))) {
7547 nested_vmx_failValid(vcpu,
7548 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Paolo Bonzini2849eb42016-03-18 16:53:29 +01007549 skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007550 return 1;
7551 }
7552
7553 /* According to the Intel VMX instruction reference, the memory
7554 * operand is read even if it isn't needed (e.g., for type==global)
7555 */
7556 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007557 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007558 return 1;
7559 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7560 sizeof(operand), &e)) {
7561 kvm_inject_page_fault(vcpu, &e);
7562 return 1;
7563 }
7564
7565 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007566 case VMX_EPT_EXTENT_GLOBAL:
7567 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007568 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007569 nested_vmx_succeed(vcpu);
7570 break;
7571 default:
Bandan Das4b855072014-04-19 18:17:44 -04007572 /* Trap single context invalidation invept calls */
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007573 BUG_ON(1);
7574 break;
7575 }
7576
7577 skip_emulated_instruction(vcpu);
7578 return 1;
7579}
7580
Petr Matouseka642fc32014-09-23 20:22:30 +02007581static int handle_invvpid(struct kvm_vcpu *vcpu)
7582{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007583 struct vcpu_vmx *vmx = to_vmx(vcpu);
7584 u32 vmx_instruction_info;
7585 unsigned long type, types;
7586 gva_t gva;
7587 struct x86_exception e;
7588 int vpid;
7589
7590 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7591 SECONDARY_EXEC_ENABLE_VPID) ||
7592 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7593 kvm_queue_exception(vcpu, UD_VECTOR);
7594 return 1;
7595 }
7596
7597 if (!nested_vmx_check_permission(vcpu))
7598 return 1;
7599
7600 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7601 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7602
7603 types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7;
7604
7605 if (!(types & (1UL << type))) {
7606 nested_vmx_failValid(vcpu,
7607 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Paolo Bonzinif6870ee2016-03-18 16:53:42 +01007608 skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007609 return 1;
7610 }
7611
7612 /* according to the intel vmx instruction reference, the memory
7613 * operand is read even if it isn't needed (e.g., for type==global)
7614 */
7615 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7616 vmx_instruction_info, false, &gva))
7617 return 1;
7618 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7619 sizeof(u32), &e)) {
7620 kvm_inject_page_fault(vcpu, &e);
7621 return 1;
7622 }
7623
7624 switch (type) {
Paolo Bonzinief697a72016-03-18 16:58:38 +01007625 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
7626 /*
7627 * Old versions of KVM use the single-context version so we
7628 * have to support it; just treat it the same as all-context.
7629 */
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007630 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li5c614b32015-10-13 09:18:36 -07007631 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007632 nested_vmx_succeed(vcpu);
7633 break;
7634 default:
Paolo Bonzinief697a72016-03-18 16:58:38 +01007635 /* Trap individual address invalidation invvpid calls */
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007636 BUG_ON(1);
7637 break;
7638 }
7639
7640 skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007641 return 1;
7642}
7643
Kai Huang843e4332015-01-28 10:54:28 +08007644static int handle_pml_full(struct kvm_vcpu *vcpu)
7645{
7646 unsigned long exit_qualification;
7647
7648 trace_kvm_pml_full(vcpu->vcpu_id);
7649
7650 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7651
7652 /*
7653 * PML buffer FULL happened while executing iret from NMI,
7654 * "blocked by NMI" bit has to be set before next VM entry.
7655 */
7656 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7657 cpu_has_virtual_nmis() &&
7658 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7659 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7660 GUEST_INTR_STATE_NMI);
7661
7662 /*
7663 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7664 * here.., and there's no userspace involvement needed for PML.
7665 */
7666 return 1;
7667}
7668
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007669static int handle_pcommit(struct kvm_vcpu *vcpu)
7670{
7671 /* we never catch pcommit instruct for L1 guest. */
7672 WARN_ON(1);
7673 return 1;
7674}
7675
Yunhong Jiang64672c92016-06-13 14:19:59 -07007676static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7677{
7678 kvm_lapic_expired_hv_timer(vcpu);
7679 return 1;
7680}
7681
Nadav Har'El0140cae2011-05-25 23:06:28 +03007682/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007683 * The exit handlers return 1 if the exit was handled fully and guest execution
7684 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7685 * to be done to userspace and return 0.
7686 */
Mathias Krause772e0312012-08-30 01:30:19 +02007687static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007688 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7689 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007690 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007691 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007692 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007693 [EXIT_REASON_CR_ACCESS] = handle_cr,
7694 [EXIT_REASON_DR_ACCESS] = handle_dr,
7695 [EXIT_REASON_CPUID] = handle_cpuid,
7696 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7697 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7698 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7699 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007700 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007701 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007702 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007703 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007704 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007705 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007706 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007707 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007708 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007709 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007710 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007711 [EXIT_REASON_VMOFF] = handle_vmoff,
7712 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007713 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7714 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007715 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007716 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007717 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007718 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007719 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007720 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007721 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7722 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007723 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007724 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007725 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007726 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007727 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007728 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007729 [EXIT_REASON_XSAVES] = handle_xsaves,
7730 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007731 [EXIT_REASON_PML_FULL] = handle_pml_full,
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007732 [EXIT_REASON_PCOMMIT] = handle_pcommit,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007733 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007734};
7735
7736static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007737 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007738
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007739static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7740 struct vmcs12 *vmcs12)
7741{
7742 unsigned long exit_qualification;
7743 gpa_t bitmap, last_bitmap;
7744 unsigned int port;
7745 int size;
7746 u8 b;
7747
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007748 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007749 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007750
7751 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7752
7753 port = exit_qualification >> 16;
7754 size = (exit_qualification & 7) + 1;
7755
7756 last_bitmap = (gpa_t)-1;
7757 b = -1;
7758
7759 while (size > 0) {
7760 if (port < 0x8000)
7761 bitmap = vmcs12->io_bitmap_a;
7762 else if (port < 0x10000)
7763 bitmap = vmcs12->io_bitmap_b;
7764 else
Joe Perches1d804d02015-03-30 16:46:09 -07007765 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007766 bitmap += (port & 0x7fff) / 8;
7767
7768 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007769 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007770 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007771 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007772 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007773
7774 port++;
7775 size--;
7776 last_bitmap = bitmap;
7777 }
7778
Joe Perches1d804d02015-03-30 16:46:09 -07007779 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007780}
7781
Nadav Har'El644d7112011-05-25 23:12:35 +03007782/*
7783 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7784 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7785 * disinterest in the current event (read or write a specific MSR) by using an
7786 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7787 */
7788static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7789 struct vmcs12 *vmcs12, u32 exit_reason)
7790{
7791 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7792 gpa_t bitmap;
7793
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007794 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007795 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007796
7797 /*
7798 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7799 * for the four combinations of read/write and low/high MSR numbers.
7800 * First we need to figure out which of the four to use:
7801 */
7802 bitmap = vmcs12->msr_bitmap;
7803 if (exit_reason == EXIT_REASON_MSR_WRITE)
7804 bitmap += 2048;
7805 if (msr_index >= 0xc0000000) {
7806 msr_index -= 0xc0000000;
7807 bitmap += 1024;
7808 }
7809
7810 /* Then read the msr_index'th bit from this bitmap: */
7811 if (msr_index < 1024*8) {
7812 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007813 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007814 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007815 return 1 & (b >> (msr_index & 7));
7816 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007817 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007818}
7819
7820/*
7821 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7822 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7823 * intercept (via guest_host_mask etc.) the current event.
7824 */
7825static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7826 struct vmcs12 *vmcs12)
7827{
7828 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7829 int cr = exit_qualification & 15;
7830 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007831 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007832
7833 switch ((exit_qualification >> 4) & 3) {
7834 case 0: /* mov to cr */
7835 switch (cr) {
7836 case 0:
7837 if (vmcs12->cr0_guest_host_mask &
7838 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007839 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007840 break;
7841 case 3:
7842 if ((vmcs12->cr3_target_count >= 1 &&
7843 vmcs12->cr3_target_value0 == val) ||
7844 (vmcs12->cr3_target_count >= 2 &&
7845 vmcs12->cr3_target_value1 == val) ||
7846 (vmcs12->cr3_target_count >= 3 &&
7847 vmcs12->cr3_target_value2 == val) ||
7848 (vmcs12->cr3_target_count >= 4 &&
7849 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07007850 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007851 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007852 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007853 break;
7854 case 4:
7855 if (vmcs12->cr4_guest_host_mask &
7856 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07007857 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007858 break;
7859 case 8:
7860 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007861 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007862 break;
7863 }
7864 break;
7865 case 2: /* clts */
7866 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
7867 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007868 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007869 break;
7870 case 1: /* mov from cr */
7871 switch (cr) {
7872 case 3:
7873 if (vmcs12->cpu_based_vm_exec_control &
7874 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007875 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007876 break;
7877 case 8:
7878 if (vmcs12->cpu_based_vm_exec_control &
7879 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007880 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007881 break;
7882 }
7883 break;
7884 case 3: /* lmsw */
7885 /*
7886 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
7887 * cr0. Other attempted changes are ignored, with no exit.
7888 */
7889 if (vmcs12->cr0_guest_host_mask & 0xe &
7890 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007891 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007892 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
7893 !(vmcs12->cr0_read_shadow & 0x1) &&
7894 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07007895 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007896 break;
7897 }
Joe Perches1d804d02015-03-30 16:46:09 -07007898 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007899}
7900
7901/*
7902 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
7903 * should handle it ourselves in L0 (and then continue L2). Only call this
7904 * when in is_guest_mode (L2).
7905 */
7906static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
7907{
Nadav Har'El644d7112011-05-25 23:12:35 +03007908 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7909 struct vcpu_vmx *vmx = to_vmx(vcpu);
7910 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01007911 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03007912
Jan Kiszka542060e2014-01-04 18:47:21 +01007913 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
7914 vmcs_readl(EXIT_QUALIFICATION),
7915 vmx->idt_vectoring_info,
7916 intr_info,
7917 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
7918 KVM_ISA_VMX);
7919
Nadav Har'El644d7112011-05-25 23:12:35 +03007920 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07007921 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007922
7923 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02007924 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
7925 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07007926 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007927 }
7928
7929 switch (exit_reason) {
7930 case EXIT_REASON_EXCEPTION_NMI:
7931 if (!is_exception(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07007932 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007933 else if (is_page_fault(intr_info))
7934 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01007935 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01007936 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007937 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01007938 else if (is_debug(intr_info) &&
7939 vcpu->guest_debug &
7940 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
7941 return false;
7942 else if (is_breakpoint(intr_info) &&
7943 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
7944 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007945 return vmcs12->exception_bitmap &
7946 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7947 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007948 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007949 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007950 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007951 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007952 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007953 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007954 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007955 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007956 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007957 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007958 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007959 return false;
7960 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007961 case EXIT_REASON_HLT:
7962 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7963 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007964 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007965 case EXIT_REASON_INVLPG:
7966 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7967 case EXIT_REASON_RDPMC:
7968 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007969 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007970 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7971 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7972 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7973 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7974 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7975 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007976 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007977 /*
7978 * VMX instructions trap unconditionally. This allows L1 to
7979 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7980 */
Joe Perches1d804d02015-03-30 16:46:09 -07007981 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007982 case EXIT_REASON_CR_ACCESS:
7983 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7984 case EXIT_REASON_DR_ACCESS:
7985 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7986 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007987 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007988 case EXIT_REASON_MSR_READ:
7989 case EXIT_REASON_MSR_WRITE:
7990 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7991 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007992 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007993 case EXIT_REASON_MWAIT_INSTRUCTION:
7994 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007995 case EXIT_REASON_MONITOR_TRAP_FLAG:
7996 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007997 case EXIT_REASON_MONITOR_INSTRUCTION:
7998 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7999 case EXIT_REASON_PAUSE_INSTRUCTION:
8000 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8001 nested_cpu_has2(vmcs12,
8002 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8003 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008004 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008005 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008006 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008007 case EXIT_REASON_APIC_ACCESS:
8008 return nested_cpu_has2(vmcs12,
8009 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008010 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008011 case EXIT_REASON_EOI_INDUCED:
8012 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008013 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008014 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008015 /*
8016 * L0 always deals with the EPT violation. If nested EPT is
8017 * used, and the nested mmu code discovers that the address is
8018 * missing in the guest EPT table (EPT12), the EPT violation
8019 * will be injected with nested_ept_inject_page_fault()
8020 */
Joe Perches1d804d02015-03-30 16:46:09 -07008021 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008022 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008023 /*
8024 * L2 never uses directly L1's EPT, but rather L0's own EPT
8025 * table (shadow on EPT) or a merged EPT table that L0 built
8026 * (EPT on EPT). So any problems with the structure of the
8027 * table is L0's fault.
8028 */
Joe Perches1d804d02015-03-30 16:46:09 -07008029 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008030 case EXIT_REASON_WBINVD:
8031 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8032 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008033 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008034 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8035 /*
8036 * This should never happen, since it is not possible to
8037 * set XSS to a non-zero value---neither in L1 nor in L2.
8038 * If if it were, XSS would have to be checked against
8039 * the XSS exit bitmap in vmcs12.
8040 */
8041 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08008042 case EXIT_REASON_PCOMMIT:
8043 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03008044 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008045 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008046 }
8047}
8048
Avi Kivity586f9602010-11-18 13:09:54 +02008049static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8050{
8051 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8052 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8053}
8054
Kai Huanga3eaa862015-11-04 13:46:05 +08008055static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008056{
8057 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08008058
8059 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
8060 if (!pml_pg)
8061 return -ENOMEM;
8062
8063 vmx->pml_pg = pml_pg;
8064
8065 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
8066 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8067
Kai Huang843e4332015-01-28 10:54:28 +08008068 return 0;
8069}
8070
Kai Huanga3eaa862015-11-04 13:46:05 +08008071static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008072{
Kai Huanga3eaa862015-11-04 13:46:05 +08008073 if (vmx->pml_pg) {
8074 __free_page(vmx->pml_pg);
8075 vmx->pml_pg = NULL;
8076 }
Kai Huang843e4332015-01-28 10:54:28 +08008077}
8078
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008079static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008080{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008081 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008082 u64 *pml_buf;
8083 u16 pml_idx;
8084
8085 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8086
8087 /* Do nothing if PML buffer is empty */
8088 if (pml_idx == (PML_ENTITY_NUM - 1))
8089 return;
8090
8091 /* PML index always points to next available PML buffer entity */
8092 if (pml_idx >= PML_ENTITY_NUM)
8093 pml_idx = 0;
8094 else
8095 pml_idx++;
8096
8097 pml_buf = page_address(vmx->pml_pg);
8098 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8099 u64 gpa;
8100
8101 gpa = pml_buf[pml_idx];
8102 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008103 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008104 }
8105
8106 /* reset PML index */
8107 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8108}
8109
8110/*
8111 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8112 * Called before reporting dirty_bitmap to userspace.
8113 */
8114static void kvm_flush_pml_buffers(struct kvm *kvm)
8115{
8116 int i;
8117 struct kvm_vcpu *vcpu;
8118 /*
8119 * We only need to kick vcpu out of guest mode here, as PML buffer
8120 * is flushed at beginning of all VMEXITs, and it's obvious that only
8121 * vcpus running in guest are possible to have unflushed GPAs in PML
8122 * buffer.
8123 */
8124 kvm_for_each_vcpu(i, vcpu, kvm)
8125 kvm_vcpu_kick(vcpu);
8126}
8127
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008128static void vmx_dump_sel(char *name, uint32_t sel)
8129{
8130 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
8131 name, vmcs_read32(sel),
8132 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8133 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8134 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8135}
8136
8137static void vmx_dump_dtsel(char *name, uint32_t limit)
8138{
8139 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8140 name, vmcs_read32(limit),
8141 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8142}
8143
8144static void dump_vmcs(void)
8145{
8146 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8147 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8148 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8149 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8150 u32 secondary_exec_control = 0;
8151 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008152 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008153 int i, n;
8154
8155 if (cpu_has_secondary_exec_ctrls())
8156 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8157
8158 pr_err("*** Guest State ***\n");
8159 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8160 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8161 vmcs_readl(CR0_GUEST_HOST_MASK));
8162 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8163 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8164 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8165 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8166 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8167 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008168 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8169 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8170 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8171 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008172 }
8173 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8174 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8175 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8176 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8177 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8178 vmcs_readl(GUEST_SYSENTER_ESP),
8179 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8180 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8181 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8182 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8183 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8184 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8185 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8186 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8187 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8188 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8189 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8190 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8191 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008192 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8193 efer, vmcs_read64(GUEST_IA32_PAT));
8194 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8195 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008196 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8197 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008198 pr_err("PerfGlobCtl = 0x%016llx\n",
8199 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008200 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008201 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008202 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8203 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8204 vmcs_read32(GUEST_ACTIVITY_STATE));
8205 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8206 pr_err("InterruptStatus = %04x\n",
8207 vmcs_read16(GUEST_INTR_STATUS));
8208
8209 pr_err("*** Host State ***\n");
8210 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8211 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8212 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8213 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8214 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8215 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8216 vmcs_read16(HOST_TR_SELECTOR));
8217 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8218 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8219 vmcs_readl(HOST_TR_BASE));
8220 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8221 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8222 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8223 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8224 vmcs_readl(HOST_CR4));
8225 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8226 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8227 vmcs_read32(HOST_IA32_SYSENTER_CS),
8228 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8229 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008230 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8231 vmcs_read64(HOST_IA32_EFER),
8232 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008233 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008234 pr_err("PerfGlobCtl = 0x%016llx\n",
8235 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008236
8237 pr_err("*** Control State ***\n");
8238 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8239 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8240 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8241 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8242 vmcs_read32(EXCEPTION_BITMAP),
8243 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8244 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8245 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8246 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8247 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8248 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8249 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8250 vmcs_read32(VM_EXIT_INTR_INFO),
8251 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8252 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8253 pr_err(" reason=%08x qualification=%016lx\n",
8254 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8255 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8256 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8257 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008258 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008259 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008260 pr_err("TSC Multiplier = 0x%016llx\n",
8261 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008262 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8263 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8264 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8265 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8266 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008267 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008268 n = vmcs_read32(CR3_TARGET_COUNT);
8269 for (i = 0; i + 1 < n; i += 4)
8270 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8271 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8272 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8273 if (i < n)
8274 pr_err("CR3 target%u=%016lx\n",
8275 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8276 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8277 pr_err("PLE Gap=%08x Window=%08x\n",
8278 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8279 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8280 pr_err("Virtual processor ID = 0x%04x\n",
8281 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8282}
8283
Avi Kivity6aa8b732006-12-10 02:21:36 -08008284/*
8285 * The guest has exited. See if we can fix it or if we need userspace
8286 * assistance.
8287 */
Avi Kivity851ba692009-08-24 11:10:17 +03008288static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008289{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008290 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008291 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008292 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008293
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008294 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8295
Kai Huang843e4332015-01-28 10:54:28 +08008296 /*
8297 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8298 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8299 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8300 * mode as if vcpus is in root mode, the PML buffer must has been
8301 * flushed already.
8302 */
8303 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008304 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008305
Mohammed Gamal80ced182009-09-01 12:48:18 +02008306 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008307 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008308 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008309
Nadav Har'El644d7112011-05-25 23:12:35 +03008310 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008311 nested_vmx_vmexit(vcpu, exit_reason,
8312 vmcs_read32(VM_EXIT_INTR_INFO),
8313 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008314 return 1;
8315 }
8316
Mohammed Gamal51207022010-05-31 22:40:54 +03008317 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008318 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008319 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8320 vcpu->run->fail_entry.hardware_entry_failure_reason
8321 = exit_reason;
8322 return 0;
8323 }
8324
Avi Kivity29bd8a72007-09-10 17:27:03 +03008325 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008326 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8327 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008328 = vmcs_read32(VM_INSTRUCTION_ERROR);
8329 return 0;
8330 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008331
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008332 /*
8333 * Note:
8334 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8335 * delivery event since it indicates guest is accessing MMIO.
8336 * The vm-exit can be triggered again after return to guest that
8337 * will cause infinite loop.
8338 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008339 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008340 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008341 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008342 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8343 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8344 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8345 vcpu->run->internal.ndata = 2;
8346 vcpu->run->internal.data[0] = vectoring_info;
8347 vcpu->run->internal.data[1] = exit_reason;
8348 return 0;
8349 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008350
Nadav Har'El644d7112011-05-25 23:12:35 +03008351 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8352 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008353 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008354 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008355 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008356 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008357 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008358 /*
8359 * This CPU don't support us in finding the end of an
8360 * NMI-blocked window if the guest runs with IRQs
8361 * disabled. So we pull the trigger after 1 s of
8362 * futile waiting, but inform the user about this.
8363 */
8364 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8365 "state on VCPU %d after 1 s timeout\n",
8366 __func__, vcpu->vcpu_id);
8367 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008368 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008369 }
8370
Avi Kivity6aa8b732006-12-10 02:21:36 -08008371 if (exit_reason < kvm_vmx_max_exit_handlers
8372 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008373 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008374 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008375 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8376 kvm_queue_exception(vcpu, UD_VECTOR);
8377 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008378 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008379}
8380
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008381static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008382{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008383 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8384
8385 if (is_guest_mode(vcpu) &&
8386 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8387 return;
8388
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008389 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008390 vmcs_write32(TPR_THRESHOLD, 0);
8391 return;
8392 }
8393
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008394 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008395}
8396
Yang Zhang8d146952013-01-25 10:18:50 +08008397static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8398{
8399 u32 sec_exec_control;
8400
8401 /*
8402 * There is not point to enable virtualize x2apic without enable
8403 * apicv
8404 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008405 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008406 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008407 return;
8408
Paolo Bonzini35754c92015-07-29 12:05:37 +02008409 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008410 return;
8411
8412 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8413
8414 if (set) {
8415 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8416 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8417 } else {
8418 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8419 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8420 }
8421 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8422
8423 vmx_set_msr_bitmap(vcpu);
8424}
8425
Tang Chen38b99172014-09-24 15:57:54 +08008426static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8427{
8428 struct vcpu_vmx *vmx = to_vmx(vcpu);
8429
8430 /*
8431 * Currently we do not handle the nested case where L2 has an
8432 * APIC access page of its own; that page is still pinned.
8433 * Hence, we skip the case where the VCPU is in guest mode _and_
8434 * L1 prepared an APIC access page for L2.
8435 *
8436 * For the case where L1 and L2 share the same APIC access page
8437 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8438 * in the vmcs12), this function will only update either the vmcs01
8439 * or the vmcs02. If the former, the vmcs02 will be updated by
8440 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8441 * the next L2->L1 exit.
8442 */
8443 if (!is_guest_mode(vcpu) ||
8444 !nested_cpu_has2(vmx->nested.current_vmcs12,
8445 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8446 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8447}
8448
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008449static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008450{
8451 u16 status;
8452 u8 old;
8453
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008454 if (max_isr == -1)
8455 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008456
8457 status = vmcs_read16(GUEST_INTR_STATUS);
8458 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008459 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008460 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008461 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008462 vmcs_write16(GUEST_INTR_STATUS, status);
8463 }
8464}
8465
8466static void vmx_set_rvi(int vector)
8467{
8468 u16 status;
8469 u8 old;
8470
Wei Wang4114c272014-11-05 10:53:43 +08008471 if (vector == -1)
8472 vector = 0;
8473
Yang Zhangc7c9c562013-01-25 10:18:51 +08008474 status = vmcs_read16(GUEST_INTR_STATUS);
8475 old = (u8)status & 0xff;
8476 if ((u8)vector != old) {
8477 status &= ~0xff;
8478 status |= (u8)vector;
8479 vmcs_write16(GUEST_INTR_STATUS, status);
8480 }
8481}
8482
8483static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8484{
Wanpeng Li963fee12014-07-17 19:03:00 +08008485 if (!is_guest_mode(vcpu)) {
8486 vmx_set_rvi(max_irr);
8487 return;
8488 }
8489
Wei Wang4114c272014-11-05 10:53:43 +08008490 if (max_irr == -1)
8491 return;
8492
Wanpeng Li963fee12014-07-17 19:03:00 +08008493 /*
Wei Wang4114c272014-11-05 10:53:43 +08008494 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8495 * handles it.
8496 */
8497 if (nested_exit_on_intr(vcpu))
8498 return;
8499
8500 /*
8501 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008502 * is run without virtual interrupt delivery.
8503 */
8504 if (!kvm_event_needs_reinjection(vcpu) &&
8505 vmx_interrupt_allowed(vcpu)) {
8506 kvm_queue_interrupt(vcpu, max_irr, false);
8507 vmx_inject_irq(vcpu);
8508 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008509}
8510
Andrey Smetanin63086302015-11-10 15:36:32 +03008511static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008512{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008513 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008514 return;
8515
Yang Zhangc7c9c562013-01-25 10:18:51 +08008516 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8517 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8518 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8519 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8520}
8521
Avi Kivity51aa01d2010-07-20 14:31:20 +03008522static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008523{
Avi Kivity00eba012011-03-07 17:24:54 +02008524 u32 exit_intr_info;
8525
8526 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8527 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8528 return;
8529
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008530 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008531 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008532
8533 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008534 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008535 kvm_machine_check();
8536
Gleb Natapov20f65982009-05-11 13:35:55 +03008537 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008538 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008539 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8540 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008541 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008542 kvm_after_handle_nmi(&vmx->vcpu);
8543 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008544}
Gleb Natapov20f65982009-05-11 13:35:55 +03008545
Yang Zhanga547c6d2013-04-11 19:25:10 +08008546static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8547{
8548 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008549 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008550
8551 /*
8552 * If external interrupt exists, IF bit is set in rflags/eflags on the
8553 * interrupt stack frame, and interrupt will be enabled on a return
8554 * from interrupt handler.
8555 */
8556 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8557 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8558 unsigned int vector;
8559 unsigned long entry;
8560 gate_desc *desc;
8561 struct vcpu_vmx *vmx = to_vmx(vcpu);
8562#ifdef CONFIG_X86_64
8563 unsigned long tmp;
8564#endif
8565
8566 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8567 desc = (gate_desc *)vmx->host_idt_base + vector;
8568 entry = gate_offset(*desc);
8569 asm volatile(
8570#ifdef CONFIG_X86_64
8571 "mov %%" _ASM_SP ", %[sp]\n\t"
8572 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8573 "push $%c[ss]\n\t"
8574 "push %[sp]\n\t"
8575#endif
8576 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008577 __ASM_SIZE(push) " $%c[cs]\n\t"
8578 "call *%[entry]\n\t"
8579 :
8580#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008581 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008582#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008583 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008584 :
8585 [entry]"r"(entry),
8586 [ss]"i"(__KERNEL_DS),
8587 [cs]"i"(__KERNEL_CS)
8588 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008589 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08008590}
8591
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008592static bool vmx_has_high_real_mode_segbase(void)
8593{
8594 return enable_unrestricted_guest || emulate_invalid_guest_state;
8595}
8596
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008597static bool vmx_mpx_supported(void)
8598{
8599 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8600 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8601}
8602
Wanpeng Li55412b22014-12-02 19:21:30 +08008603static bool vmx_xsaves_supported(void)
8604{
8605 return vmcs_config.cpu_based_2nd_exec_ctrl &
8606 SECONDARY_EXEC_XSAVES;
8607}
8608
Avi Kivity51aa01d2010-07-20 14:31:20 +03008609static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8610{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008611 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008612 bool unblock_nmi;
8613 u8 vector;
8614 bool idtv_info_valid;
8615
8616 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008617
Avi Kivitycf393f72008-07-01 16:20:21 +03008618 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008619 if (vmx->nmi_known_unmasked)
8620 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008621 /*
8622 * Can't use vmx->exit_intr_info since we're not sure what
8623 * the exit reason is.
8624 */
8625 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008626 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8627 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8628 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008629 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008630 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8631 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008632 * SDM 3: 23.2.2 (September 2008)
8633 * Bit 12 is undefined in any of the following cases:
8634 * If the VM exit sets the valid bit in the IDT-vectoring
8635 * information field.
8636 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008637 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008638 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8639 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008640 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8641 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008642 else
8643 vmx->nmi_known_unmasked =
8644 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8645 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008646 } else if (unlikely(vmx->soft_vnmi_blocked))
8647 vmx->vnmi_blocked_time +=
8648 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008649}
8650
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008651static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008652 u32 idt_vectoring_info,
8653 int instr_len_field,
8654 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008655{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008656 u8 vector;
8657 int type;
8658 bool idtv_info_valid;
8659
8660 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008661
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008662 vcpu->arch.nmi_injected = false;
8663 kvm_clear_exception_queue(vcpu);
8664 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008665
8666 if (!idtv_info_valid)
8667 return;
8668
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008669 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008670
Avi Kivity668f6122008-07-02 09:28:55 +03008671 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8672 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008673
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008674 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008675 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008676 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008677 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008678 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008679 * Clear bit "block by NMI" before VM entry if a NMI
8680 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008681 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008682 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008683 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008684 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008685 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008686 /* fall through */
8687 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008688 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008689 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008690 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008691 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008692 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008693 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008694 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008695 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008696 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008697 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008698 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008699 break;
8700 default:
8701 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008702 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008703}
8704
Avi Kivity83422e12010-07-20 14:43:23 +03008705static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8706{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008707 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008708 VM_EXIT_INSTRUCTION_LEN,
8709 IDT_VECTORING_ERROR_CODE);
8710}
8711
Avi Kivityb463a6f2010-07-20 15:06:17 +03008712static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8713{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008714 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008715 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8716 VM_ENTRY_INSTRUCTION_LEN,
8717 VM_ENTRY_EXCEPTION_ERROR_CODE);
8718
8719 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8720}
8721
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008722static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8723{
8724 int i, nr_msrs;
8725 struct perf_guest_switch_msr *msrs;
8726
8727 msrs = perf_guest_get_msrs(&nr_msrs);
8728
8729 if (!msrs)
8730 return;
8731
8732 for (i = 0; i < nr_msrs; i++)
8733 if (msrs[i].host == msrs[i].guest)
8734 clear_atomic_switch_msr(vmx, msrs[i].msr);
8735 else
8736 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8737 msrs[i].host);
8738}
8739
Yunhong Jiang64672c92016-06-13 14:19:59 -07008740void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
8741{
8742 struct vcpu_vmx *vmx = to_vmx(vcpu);
8743 u64 tscl;
8744 u32 delta_tsc;
8745
8746 if (vmx->hv_deadline_tsc == -1)
8747 return;
8748
8749 tscl = rdtsc();
8750 if (vmx->hv_deadline_tsc > tscl)
8751 /* sure to be 32 bit only because checked on set_hv_timer */
8752 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
8753 cpu_preemption_timer_multi);
8754 else
8755 delta_tsc = 0;
8756
8757 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
8758}
8759
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008760static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008761{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008762 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008763 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008764
8765 /* Record the guest's net vcpu time for enforced NMI injections. */
8766 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8767 vmx->entry_time = ktime_get();
8768
8769 /* Don't enter VMX if guest state is invalid, let the exit handler
8770 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008771 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008772 return;
8773
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008774 if (vmx->ple_window_dirty) {
8775 vmx->ple_window_dirty = false;
8776 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8777 }
8778
Abel Gordon012f83c2013-04-18 14:39:25 +03008779 if (vmx->nested.sync_shadow_vmcs) {
8780 copy_vmcs12_to_shadow(vmx);
8781 vmx->nested.sync_shadow_vmcs = false;
8782 }
8783
Avi Kivity104f2262010-11-18 13:12:52 +02008784 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8785 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8786 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8787 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8788
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008789 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008790 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8791 vmcs_writel(HOST_CR4, cr4);
8792 vmx->host_state.vmcs_host_cr4 = cr4;
8793 }
8794
Avi Kivity104f2262010-11-18 13:12:52 +02008795 /* When single-stepping over STI and MOV SS, we must clear the
8796 * corresponding interruptibility bits in the guest state. Otherwise
8797 * vmentry fails as it then expects bit 14 (BS) in pending debug
8798 * exceptions being set, but that's not correct for the guest debugging
8799 * case. */
8800 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8801 vmx_set_interrupt_shadow(vcpu, 0);
8802
Xiao Guangrong1be0e612016-03-22 16:51:18 +08008803 if (vmx->guest_pkru_valid)
8804 __write_pkru(vmx->guest_pkru);
8805
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008806 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008807 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008808
Yunhong Jiang64672c92016-06-13 14:19:59 -07008809 vmx_arm_hv_timer(vcpu);
8810
Nadav Har'Eld462b812011-05-24 15:26:10 +03008811 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008812 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008813 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008814 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8815 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8816 "push %%" _ASM_CX " \n\t"
8817 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008818 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008819 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008820 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008821 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008822 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008823 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8824 "mov %%cr2, %%" _ASM_DX " \n\t"
8825 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008826 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008827 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008828 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008829 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008830 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008831 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008832 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8833 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8834 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8835 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8836 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8837 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008838#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008839 "mov %c[r8](%0), %%r8 \n\t"
8840 "mov %c[r9](%0), %%r9 \n\t"
8841 "mov %c[r10](%0), %%r10 \n\t"
8842 "mov %c[r11](%0), %%r11 \n\t"
8843 "mov %c[r12](%0), %%r12 \n\t"
8844 "mov %c[r13](%0), %%r13 \n\t"
8845 "mov %c[r14](%0), %%r14 \n\t"
8846 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008847#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008848 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008849
Avi Kivity6aa8b732006-12-10 02:21:36 -08008850 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008851 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008852 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008853 "jmp 2f \n\t"
8854 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8855 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008856 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008857 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008858 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008859 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8860 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8861 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8862 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8863 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8864 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8865 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008866#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008867 "mov %%r8, %c[r8](%0) \n\t"
8868 "mov %%r9, %c[r9](%0) \n\t"
8869 "mov %%r10, %c[r10](%0) \n\t"
8870 "mov %%r11, %c[r11](%0) \n\t"
8871 "mov %%r12, %c[r12](%0) \n\t"
8872 "mov %%r13, %c[r13](%0) \n\t"
8873 "mov %%r14, %c[r14](%0) \n\t"
8874 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008875#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008876 "mov %%cr2, %%" _ASM_AX " \n\t"
8877 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008878
Avi Kivityb188c81f2012-09-16 15:10:58 +03008879 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008880 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008881 ".pushsection .rodata \n\t"
8882 ".global vmx_return \n\t"
8883 "vmx_return: " _ASM_PTR " 2b \n\t"
8884 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008885 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008886 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008887 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03008888 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008889 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8890 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8891 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8892 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8893 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8894 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8895 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008896#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008897 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8898 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8899 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8900 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8901 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8902 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8903 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8904 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008905#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008906 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8907 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008908 : "cc", "memory"
8909#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008910 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008911 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008912#else
8913 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008914#endif
8915 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008916
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008917 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8918 if (debugctlmsr)
8919 update_debugctlmsr(debugctlmsr);
8920
Avi Kivityaa67f602012-08-01 16:48:03 +03008921#ifndef CONFIG_X86_64
8922 /*
8923 * The sysexit path does not restore ds/es, so we must set them to
8924 * a reasonable value ourselves.
8925 *
8926 * We can't defer this to vmx_load_host_state() since that function
8927 * may be executed in interrupt context, which saves and restore segments
8928 * around it, nullifying its effect.
8929 */
8930 loadsegment(ds, __USER_DS);
8931 loadsegment(es, __USER_DS);
8932#endif
8933
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008934 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008935 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008936 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008937 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008938 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008939 vcpu->arch.regs_dirty = 0;
8940
Avi Kivity1155f762007-11-22 11:30:47 +02008941 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8942
Nadav Har'Eld462b812011-05-24 15:26:10 +03008943 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008944
Avi Kivity51aa01d2010-07-20 14:31:20 +03008945 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008946
Gleb Natapove0b890d2013-09-25 12:51:33 +03008947 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08008948 * eager fpu is enabled if PKEY is supported and CR4 is switched
8949 * back on host, so it is safe to read guest PKRU from current
8950 * XSAVE.
8951 */
8952 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
8953 vmx->guest_pkru = __read_pkru();
8954 if (vmx->guest_pkru != vmx->host_pkru) {
8955 vmx->guest_pkru_valid = true;
8956 __write_pkru(vmx->host_pkru);
8957 } else
8958 vmx->guest_pkru_valid = false;
8959 }
8960
8961 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03008962 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8963 * we did not inject a still-pending event to L1 now because of
8964 * nested_run_pending, we need to re-enable this bit.
8965 */
8966 if (vmx->nested.nested_run_pending)
8967 kvm_make_request(KVM_REQ_EVENT, vcpu);
8968
8969 vmx->nested.nested_run_pending = 0;
8970
Avi Kivity51aa01d2010-07-20 14:31:20 +03008971 vmx_complete_atomic_exit(vmx);
8972 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008973 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008974}
8975
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008976static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8977{
8978 struct vcpu_vmx *vmx = to_vmx(vcpu);
8979 int cpu;
8980
8981 if (vmx->loaded_vmcs == &vmx->vmcs01)
8982 return;
8983
8984 cpu = get_cpu();
8985 vmx->loaded_vmcs = &vmx->vmcs01;
8986 vmx_vcpu_put(vcpu);
8987 vmx_vcpu_load(vcpu, cpu);
8988 vcpu->cpu = cpu;
8989 put_cpu();
8990}
8991
Avi Kivity6aa8b732006-12-10 02:21:36 -08008992static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8993{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008994 struct vcpu_vmx *vmx = to_vmx(vcpu);
8995
Kai Huang843e4332015-01-28 10:54:28 +08008996 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008997 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008998 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008999 leave_guest_mode(vcpu);
9000 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02009001 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009002 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009003 kfree(vmx->guest_msrs);
9004 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009005 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009006}
9007
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009008static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009009{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009010 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009011 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009012 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009013
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009014 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009015 return ERR_PTR(-ENOMEM);
9016
Wanpeng Li991e7a02015-09-16 17:30:05 +08009017 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009018
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009019 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9020 if (err)
9021 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009022
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009023 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009024 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9025 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009026
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009027 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009028 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009029 goto uninit_vcpu;
9030 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009031
Nadav Har'Eld462b812011-05-24 15:26:10 +03009032 vmx->loaded_vmcs = &vmx->vmcs01;
9033 vmx->loaded_vmcs->vmcs = alloc_vmcs();
9034 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009035 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009036 if (!vmm_exclusive)
9037 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
9038 loaded_vmcs_init(vmx->loaded_vmcs);
9039 if (!vmm_exclusive)
9040 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009041
Avi Kivity15ad7142007-07-11 18:17:21 +03009042 cpu = get_cpu();
9043 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009044 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009045 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009046 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009047 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009048 if (err)
9049 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009050 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009051 err = alloc_apic_access_page(kvm);
9052 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009053 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009054 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009055
Sheng Yangb927a3c2009-07-21 10:42:48 +08009056 if (enable_ept) {
9057 if (!kvm->arch.ept_identity_map_addr)
9058 kvm->arch.ept_identity_map_addr =
9059 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009060 err = init_rmode_identity_map(kvm);
9061 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009062 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009063 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009064
Wanpeng Li5c614b32015-10-13 09:18:36 -07009065 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009066 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009067 vmx->nested.vpid02 = allocate_vpid();
9068 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009069
Wincy Van705699a2015-02-03 23:58:17 +08009070 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009071 vmx->nested.current_vmptr = -1ull;
9072 vmx->nested.current_vmcs12 = NULL;
9073
Kai Huang843e4332015-01-28 10:54:28 +08009074 /*
9075 * If PML is turned on, failure on enabling PML just results in failure
9076 * of creating the vcpu, therefore we can simplify PML logic (by
9077 * avoiding dealing with cases, such as enabling PML partially on vcpus
9078 * for the guest, etc.
9079 */
9080 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08009081 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08009082 if (err)
9083 goto free_vmcs;
9084 }
9085
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009086 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9087
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009088 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009089
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009090free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009091 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009092 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009093free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009094 kfree(vmx->guest_msrs);
9095uninit_vcpu:
9096 kvm_vcpu_uninit(&vmx->vcpu);
9097free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009098 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009099 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009100 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009101}
9102
Yang, Sheng002c7f72007-07-31 14:23:01 +03009103static void __init vmx_check_processor_compat(void *rtn)
9104{
9105 struct vmcs_config vmcs_conf;
9106
9107 *(int *)rtn = 0;
9108 if (setup_vmcs_config(&vmcs_conf) < 0)
9109 *(int *)rtn = -EIO;
9110 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9111 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9112 smp_processor_id());
9113 *(int *)rtn = -EIO;
9114 }
9115}
9116
Sheng Yang67253af2008-04-25 10:20:22 +08009117static int get_ept_level(void)
9118{
9119 return VMX_EPT_DEFAULT_GAW + 1;
9120}
9121
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009122static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009123{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009124 u8 cache;
9125 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009126
Sheng Yang522c68c2009-04-27 20:35:43 +08009127 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009128 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009129 * 2. EPT with VT-d:
9130 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009131 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009132 * b. VT-d with snooping control feature: snooping control feature of
9133 * VT-d engine can guarantee the cache correctness. Just set it
9134 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009135 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009136 * consistent with host MTRR
9137 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009138 if (is_mmio) {
9139 cache = MTRR_TYPE_UNCACHABLE;
9140 goto exit;
9141 }
9142
9143 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009144 ipat = VMX_EPT_IPAT_BIT;
9145 cache = MTRR_TYPE_WRBACK;
9146 goto exit;
9147 }
9148
9149 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9150 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009151 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009152 cache = MTRR_TYPE_WRBACK;
9153 else
9154 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009155 goto exit;
9156 }
9157
Xiao Guangrongff536042015-06-15 16:55:22 +08009158 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009159
9160exit:
9161 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009162}
9163
Sheng Yang17cc3932010-01-05 19:02:27 +08009164static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009165{
Sheng Yang878403b2010-01-05 19:02:29 +08009166 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9167 return PT_DIRECTORY_LEVEL;
9168 else
9169 /* For shadow and EPT supported 1GB page */
9170 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009171}
9172
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009173static void vmcs_set_secondary_exec_control(u32 new_ctl)
9174{
9175 /*
9176 * These bits in the secondary execution controls field
9177 * are dynamic, the others are mostly based on the hypervisor
9178 * architecture and the guest's CPUID. Do not touch the
9179 * dynamic bits.
9180 */
9181 u32 mask =
9182 SECONDARY_EXEC_SHADOW_VMCS |
9183 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9184 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9185
9186 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9187
9188 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9189 (new_ctl & ~mask) | (cur_ctl & mask));
9190}
9191
Sheng Yang0e851882009-12-18 16:48:46 +08009192static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9193{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009194 struct kvm_cpuid_entry2 *best;
9195 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009196 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009197
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009198 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009199 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
9200 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009201 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009202
Paolo Bonzini8b972652015-09-15 17:34:42 +02009203 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009204 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009205 vmx->nested.nested_vmx_secondary_ctls_high |=
9206 SECONDARY_EXEC_RDTSCP;
9207 else
9208 vmx->nested.nested_vmx_secondary_ctls_high &=
9209 ~SECONDARY_EXEC_RDTSCP;
9210 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009211 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009212
Mao, Junjiead756a12012-07-02 01:18:48 +00009213 /* Exposing INVPCID only when PCID is exposed */
9214 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9215 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009216 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
9217 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009218 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009219
Mao, Junjiead756a12012-07-02 01:18:48 +00009220 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00009221 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00009222 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009223
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009224 if (cpu_has_secondary_exec_ctrls())
9225 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009226
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009227 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
9228 if (guest_cpuid_has_pcommit(vcpu))
9229 vmx->nested.nested_vmx_secondary_ctls_high |=
9230 SECONDARY_EXEC_PCOMMIT;
9231 else
9232 vmx->nested.nested_vmx_secondary_ctls_high &=
9233 ~SECONDARY_EXEC_PCOMMIT;
9234 }
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009235
9236 if (nested_vmx_allowed(vcpu))
9237 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9238 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9239 else
9240 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9241 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Sheng Yang0e851882009-12-18 16:48:46 +08009242}
9243
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009244static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9245{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009246 if (func == 1 && nested)
9247 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009248}
9249
Yang Zhang25d92082013-08-06 12:00:32 +03009250static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9251 struct x86_exception *fault)
9252{
Jan Kiszka533558b2014-01-04 18:47:20 +01009253 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9254 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009255
9256 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009257 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009258 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009259 exit_reason = EXIT_REASON_EPT_VIOLATION;
9260 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009261 vmcs12->guest_physical_address = fault->address;
9262}
9263
Nadav Har'El155a97a2013-08-05 11:07:16 +03009264/* Callbacks for nested_ept_init_mmu_context: */
9265
9266static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9267{
9268 /* return the page table to be shadowed - in our case, EPT12 */
9269 return get_vmcs12(vcpu)->ept_pointer;
9270}
9271
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009272static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009273{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009274 WARN_ON(mmu_is_nested(vcpu));
9275 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009276 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9277 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009278 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9279 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9280 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9281
9282 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009283}
9284
9285static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9286{
9287 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9288}
9289
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009290static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9291 u16 error_code)
9292{
9293 bool inequality, bit;
9294
9295 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9296 inequality =
9297 (error_code & vmcs12->page_fault_error_code_mask) !=
9298 vmcs12->page_fault_error_code_match;
9299 return inequality ^ bit;
9300}
9301
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009302static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9303 struct x86_exception *fault)
9304{
9305 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9306
9307 WARN_ON(!is_guest_mode(vcpu));
9308
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009309 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009310 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9311 vmcs_read32(VM_EXIT_INTR_INFO),
9312 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009313 else
9314 kvm_inject_page_fault(vcpu, fault);
9315}
9316
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009317static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9318 struct vmcs12 *vmcs12)
9319{
9320 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009321 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009322
9323 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009324 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9325 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009326 return false;
9327
9328 /*
9329 * Translate L1 physical address to host physical
9330 * address for vmcs02. Keep the page pinned, so this
9331 * physical address remains valid. We keep a reference
9332 * to it so we can release it later.
9333 */
9334 if (vmx->nested.apic_access_page) /* shouldn't happen */
9335 nested_release_page(vmx->nested.apic_access_page);
9336 vmx->nested.apic_access_page =
9337 nested_get_page(vcpu, vmcs12->apic_access_addr);
9338 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009339
9340 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009341 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9342 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009343 return false;
9344
9345 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9346 nested_release_page(vmx->nested.virtual_apic_page);
9347 vmx->nested.virtual_apic_page =
9348 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9349
9350 /*
9351 * Failing the vm entry is _not_ what the processor does
9352 * but it's basically the only possibility we have.
9353 * We could still enter the guest if CR8 load exits are
9354 * enabled, CR8 store exits are enabled, and virtualize APIC
9355 * access is disabled; in this case the processor would never
9356 * use the TPR shadow and we could simply clear the bit from
9357 * the execution control. But such a configuration is useless,
9358 * so let's keep the code simple.
9359 */
9360 if (!vmx->nested.virtual_apic_page)
9361 return false;
9362 }
9363
Wincy Van705699a2015-02-03 23:58:17 +08009364 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009365 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9366 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009367 return false;
9368
9369 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9370 kunmap(vmx->nested.pi_desc_page);
9371 nested_release_page(vmx->nested.pi_desc_page);
9372 }
9373 vmx->nested.pi_desc_page =
9374 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9375 if (!vmx->nested.pi_desc_page)
9376 return false;
9377
9378 vmx->nested.pi_desc =
9379 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9380 if (!vmx->nested.pi_desc) {
9381 nested_release_page_clean(vmx->nested.pi_desc_page);
9382 return false;
9383 }
9384 vmx->nested.pi_desc =
9385 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9386 (unsigned long)(vmcs12->posted_intr_desc_addr &
9387 (PAGE_SIZE - 1)));
9388 }
9389
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009390 return true;
9391}
9392
Jan Kiszkaf41245002014-03-07 20:03:13 +01009393static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9394{
9395 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9396 struct vcpu_vmx *vmx = to_vmx(vcpu);
9397
9398 if (vcpu->arch.virtual_tsc_khz == 0)
9399 return;
9400
9401 /* Make sure short timeouts reliably trigger an immediate vmexit.
9402 * hrtimer_start does not guarantee this. */
9403 if (preemption_timeout <= 1) {
9404 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9405 return;
9406 }
9407
9408 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9409 preemption_timeout *= 1000000;
9410 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9411 hrtimer_start(&vmx->nested.preemption_timer,
9412 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9413}
9414
Wincy Van3af18d92015-02-03 23:49:31 +08009415static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9416 struct vmcs12 *vmcs12)
9417{
9418 int maxphyaddr;
9419 u64 addr;
9420
9421 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9422 return 0;
9423
9424 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9425 WARN_ON(1);
9426 return -EINVAL;
9427 }
9428 maxphyaddr = cpuid_maxphyaddr(vcpu);
9429
9430 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9431 ((addr + PAGE_SIZE) >> maxphyaddr))
9432 return -EINVAL;
9433
9434 return 0;
9435}
9436
9437/*
9438 * Merge L0's and L1's MSR bitmap, return false to indicate that
9439 * we do not use the hardware.
9440 */
9441static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9442 struct vmcs12 *vmcs12)
9443{
Wincy Van82f0dd42015-02-03 23:57:18 +08009444 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009445 struct page *page;
9446 unsigned long *msr_bitmap;
9447
9448 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9449 return false;
9450
9451 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9452 if (!page) {
9453 WARN_ON(1);
9454 return false;
9455 }
9456 msr_bitmap = (unsigned long *)kmap(page);
9457 if (!msr_bitmap) {
9458 nested_release_page_clean(page);
9459 WARN_ON(1);
9460 return false;
9461 }
9462
9463 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009464 if (nested_cpu_has_apic_reg_virt(vmcs12))
9465 for (msr = 0x800; msr <= 0x8ff; msr++)
9466 nested_vmx_disable_intercept_for_msr(
9467 msr_bitmap,
9468 vmx_msr_bitmap_nested,
9469 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009470 /* TPR is allowed */
9471 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9472 vmx_msr_bitmap_nested,
9473 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9474 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009475 if (nested_cpu_has_vid(vmcs12)) {
9476 /* EOI and self-IPI are allowed */
9477 nested_vmx_disable_intercept_for_msr(
9478 msr_bitmap,
9479 vmx_msr_bitmap_nested,
9480 APIC_BASE_MSR + (APIC_EOI >> 4),
9481 MSR_TYPE_W);
9482 nested_vmx_disable_intercept_for_msr(
9483 msr_bitmap,
9484 vmx_msr_bitmap_nested,
9485 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9486 MSR_TYPE_W);
9487 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009488 } else {
9489 /*
9490 * Enable reading intercept of all the x2apic
9491 * MSRs. We should not rely on vmcs12 to do any
9492 * optimizations here, it may have been modified
9493 * by L1.
9494 */
9495 for (msr = 0x800; msr <= 0x8ff; msr++)
9496 __vmx_enable_intercept_for_msr(
9497 vmx_msr_bitmap_nested,
9498 msr,
9499 MSR_TYPE_R);
9500
Wincy Vanf2b93282015-02-03 23:56:03 +08009501 __vmx_enable_intercept_for_msr(
9502 vmx_msr_bitmap_nested,
9503 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009504 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009505 __vmx_enable_intercept_for_msr(
9506 vmx_msr_bitmap_nested,
9507 APIC_BASE_MSR + (APIC_EOI >> 4),
9508 MSR_TYPE_W);
9509 __vmx_enable_intercept_for_msr(
9510 vmx_msr_bitmap_nested,
9511 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9512 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009513 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009514 kunmap(page);
9515 nested_release_page_clean(page);
9516
9517 return true;
9518}
9519
9520static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9521 struct vmcs12 *vmcs12)
9522{
Wincy Van82f0dd42015-02-03 23:57:18 +08009523 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009524 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009525 !nested_cpu_has_vid(vmcs12) &&
9526 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009527 return 0;
9528
9529 /*
9530 * If virtualize x2apic mode is enabled,
9531 * virtualize apic access must be disabled.
9532 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009533 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9534 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009535 return -EINVAL;
9536
Wincy Van608406e2015-02-03 23:57:51 +08009537 /*
9538 * If virtual interrupt delivery is enabled,
9539 * we must exit on external interrupts.
9540 */
9541 if (nested_cpu_has_vid(vmcs12) &&
9542 !nested_exit_on_intr(vcpu))
9543 return -EINVAL;
9544
Wincy Van705699a2015-02-03 23:58:17 +08009545 /*
9546 * bits 15:8 should be zero in posted_intr_nv,
9547 * the descriptor address has been already checked
9548 * in nested_get_vmcs12_pages.
9549 */
9550 if (nested_cpu_has_posted_intr(vmcs12) &&
9551 (!nested_cpu_has_vid(vmcs12) ||
9552 !nested_exit_intr_ack_set(vcpu) ||
9553 vmcs12->posted_intr_nv & 0xff00))
9554 return -EINVAL;
9555
Wincy Vanf2b93282015-02-03 23:56:03 +08009556 /* tpr shadow is needed by all apicv features. */
9557 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9558 return -EINVAL;
9559
9560 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009561}
9562
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009563static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9564 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009565 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009566{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009567 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009568 u64 count, addr;
9569
9570 if (vmcs12_read_any(vcpu, count_field, &count) ||
9571 vmcs12_read_any(vcpu, addr_field, &addr)) {
9572 WARN_ON(1);
9573 return -EINVAL;
9574 }
9575 if (count == 0)
9576 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009577 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009578 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9579 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9580 pr_warn_ratelimited(
9581 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9582 addr_field, maxphyaddr, count, addr);
9583 return -EINVAL;
9584 }
9585 return 0;
9586}
9587
9588static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9589 struct vmcs12 *vmcs12)
9590{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009591 if (vmcs12->vm_exit_msr_load_count == 0 &&
9592 vmcs12->vm_exit_msr_store_count == 0 &&
9593 vmcs12->vm_entry_msr_load_count == 0)
9594 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009595 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009596 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009597 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009598 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009599 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009600 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009601 return -EINVAL;
9602 return 0;
9603}
9604
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009605static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9606 struct vmx_msr_entry *e)
9607{
9608 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009609 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009610 return -EINVAL;
9611 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9612 e->index == MSR_IA32_UCODE_REV)
9613 return -EINVAL;
9614 if (e->reserved != 0)
9615 return -EINVAL;
9616 return 0;
9617}
9618
9619static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9620 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009621{
9622 if (e->index == MSR_FS_BASE ||
9623 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009624 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9625 nested_vmx_msr_check_common(vcpu, e))
9626 return -EINVAL;
9627 return 0;
9628}
9629
9630static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9631 struct vmx_msr_entry *e)
9632{
9633 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9634 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009635 return -EINVAL;
9636 return 0;
9637}
9638
9639/*
9640 * Load guest's/host's msr at nested entry/exit.
9641 * return 0 for success, entry index for failure.
9642 */
9643static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9644{
9645 u32 i;
9646 struct vmx_msr_entry e;
9647 struct msr_data msr;
9648
9649 msr.host_initiated = false;
9650 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009651 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9652 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009653 pr_warn_ratelimited(
9654 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9655 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009656 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009657 }
9658 if (nested_vmx_load_msr_check(vcpu, &e)) {
9659 pr_warn_ratelimited(
9660 "%s check failed (%u, 0x%x, 0x%x)\n",
9661 __func__, i, e.index, e.reserved);
9662 goto fail;
9663 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009664 msr.index = e.index;
9665 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009666 if (kvm_set_msr(vcpu, &msr)) {
9667 pr_warn_ratelimited(
9668 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9669 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009670 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009671 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009672 }
9673 return 0;
9674fail:
9675 return i + 1;
9676}
9677
9678static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9679{
9680 u32 i;
9681 struct vmx_msr_entry e;
9682
9683 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009684 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009685 if (kvm_vcpu_read_guest(vcpu,
9686 gpa + i * sizeof(e),
9687 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009688 pr_warn_ratelimited(
9689 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9690 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009691 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009692 }
9693 if (nested_vmx_store_msr_check(vcpu, &e)) {
9694 pr_warn_ratelimited(
9695 "%s check failed (%u, 0x%x, 0x%x)\n",
9696 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009697 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009698 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009699 msr_info.host_initiated = false;
9700 msr_info.index = e.index;
9701 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009702 pr_warn_ratelimited(
9703 "%s cannot read MSR (%u, 0x%x)\n",
9704 __func__, i, e.index);
9705 return -EINVAL;
9706 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009707 if (kvm_vcpu_write_guest(vcpu,
9708 gpa + i * sizeof(e) +
9709 offsetof(struct vmx_msr_entry, value),
9710 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009711 pr_warn_ratelimited(
9712 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009713 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009714 return -EINVAL;
9715 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009716 }
9717 return 0;
9718}
9719
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009720/*
9721 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9722 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009723 * 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 +03009724 * guest in a way that will both be appropriate to L1's requests, and our
9725 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9726 * function also has additional necessary side-effects, like setting various
9727 * vcpu->arch fields.
9728 */
9729static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9730{
9731 struct vcpu_vmx *vmx = to_vmx(vcpu);
9732 u32 exec_control;
9733
9734 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9735 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9736 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9737 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9738 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9739 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9740 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9741 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9742 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9743 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9744 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9745 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9746 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9747 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9748 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9749 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9750 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9751 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9752 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9753 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9754 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9755 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9756 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9757 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9758 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9759 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9760 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9761 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9762 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9763 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9764 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9765 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9766 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9767 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9768 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9769 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9770
Jan Kiszka2996fca2014-06-16 13:59:43 +02009771 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9772 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9773 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9774 } else {
9775 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9776 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9777 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009778 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9779 vmcs12->vm_entry_intr_info_field);
9780 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9781 vmcs12->vm_entry_exception_error_code);
9782 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9783 vmcs12->vm_entry_instruction_len);
9784 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9785 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009786 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009787 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009788 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9789 vmcs12->guest_pending_dbg_exceptions);
9790 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9791 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9792
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009793 if (nested_cpu_has_xsaves(vmcs12))
9794 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009795 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9796
Jan Kiszkaf41245002014-03-07 20:03:13 +01009797 exec_control = vmcs12->pin_based_vm_exec_control;
9798 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009799 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9800
9801 if (nested_cpu_has_posted_intr(vmcs12)) {
9802 /*
9803 * Note that we use L0's vector here and in
9804 * vmx_deliver_nested_posted_interrupt.
9805 */
9806 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9807 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009808 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009809 vmcs_write64(POSTED_INTR_DESC_ADDR,
9810 page_to_phys(vmx->nested.pi_desc_page) +
9811 (unsigned long)(vmcs12->posted_intr_desc_addr &
9812 (PAGE_SIZE - 1)));
9813 } else
9814 exec_control &= ~PIN_BASED_POSTED_INTR;
9815
Jan Kiszkaf41245002014-03-07 20:03:13 +01009816 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009817
Jan Kiszkaf41245002014-03-07 20:03:13 +01009818 vmx->nested.preemption_timer_expired = false;
9819 if (nested_cpu_has_preemption_timer(vmcs12))
9820 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009821
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009822 /*
9823 * Whether page-faults are trapped is determined by a combination of
9824 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9825 * If enable_ept, L0 doesn't care about page faults and we should
9826 * set all of these to L1's desires. However, if !enable_ept, L0 does
9827 * care about (at least some) page faults, and because it is not easy
9828 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9829 * to exit on each and every L2 page fault. This is done by setting
9830 * MASK=MATCH=0 and (see below) EB.PF=1.
9831 * Note that below we don't need special code to set EB.PF beyond the
9832 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9833 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9834 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9835 *
9836 * A problem with this approach (when !enable_ept) is that L1 may be
9837 * injected with more page faults than it asked for. This could have
9838 * caused problems, but in practice existing hypervisors don't care.
9839 * To fix this, we will need to emulate the PFEC checking (on the L1
9840 * page tables), using walk_addr(), when injecting PFs to L1.
9841 */
9842 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9843 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9844 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9845 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9846
9847 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf41245002014-03-07 20:03:13 +01009848 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009849
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009850 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009851 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009852 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009853 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009854 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9855 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009856 if (nested_cpu_has(vmcs12,
9857 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9858 exec_control |= vmcs12->secondary_vm_exec_control;
9859
9860 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9861 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009862 * If translation failed, no matter: This feature asks
9863 * to exit when accessing the given address, and if it
9864 * can never be accessed, this feature won't do
9865 * anything anyway.
9866 */
9867 if (!vmx->nested.apic_access_page)
9868 exec_control &=
9869 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9870 else
9871 vmcs_write64(APIC_ACCESS_ADDR,
9872 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009873 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009874 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009875 exec_control |=
9876 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009877 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009878 }
9879
Wincy Van608406e2015-02-03 23:57:51 +08009880 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9881 vmcs_write64(EOI_EXIT_BITMAP0,
9882 vmcs12->eoi_exit_bitmap0);
9883 vmcs_write64(EOI_EXIT_BITMAP1,
9884 vmcs12->eoi_exit_bitmap1);
9885 vmcs_write64(EOI_EXIT_BITMAP2,
9886 vmcs12->eoi_exit_bitmap2);
9887 vmcs_write64(EOI_EXIT_BITMAP3,
9888 vmcs12->eoi_exit_bitmap3);
9889 vmcs_write16(GUEST_INTR_STATUS,
9890 vmcs12->guest_intr_status);
9891 }
9892
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009893 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9894 }
9895
9896
9897 /*
9898 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9899 * Some constant fields are set here by vmx_set_constant_host_state().
9900 * Other fields are different per CPU, and will be set later when
9901 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9902 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009903 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009904
9905 /*
9906 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9907 * entry, but only if the current (host) sp changed from the value
9908 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9909 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9910 * here we just force the write to happen on entry.
9911 */
9912 vmx->host_rsp = 0;
9913
9914 exec_control = vmx_exec_control(vmx); /* L0's desires */
9915 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9916 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9917 exec_control &= ~CPU_BASED_TPR_SHADOW;
9918 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009919
9920 if (exec_control & CPU_BASED_TPR_SHADOW) {
9921 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9922 page_to_phys(vmx->nested.virtual_apic_page));
9923 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9924 }
9925
Wincy Van3af18d92015-02-03 23:49:31 +08009926 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009927 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9928 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9929 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009930 } else
9931 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9932
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009933 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009934 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009935 * Rather, exit every time.
9936 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009937 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9938 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9939
9940 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9941
9942 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9943 * bitwise-or of what L1 wants to trap for L2, and what we want to
9944 * trap. Note that CR0.TS also needs updating - we do this later.
9945 */
9946 update_exception_bitmap(vcpu);
9947 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9948 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9949
Nadav Har'El8049d652013-08-05 11:07:06 +03009950 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9951 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9952 * bits are further modified by vmx_set_efer() below.
9953 */
Jan Kiszkaf41245002014-03-07 20:03:13 +01009954 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009955
9956 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9957 * emulated by vmx_set_efer(), below.
9958 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009959 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009960 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9961 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009962 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9963
Jan Kiszka44811c02013-08-04 17:17:27 +02009964 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009965 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009966 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9967 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009968 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9969
9970
9971 set_cr4_guest_host_mask(vmx);
9972
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009973 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9974 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9975
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009976 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9977 vmcs_write64(TSC_OFFSET,
9978 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9979 else
9980 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009981
9982 if (enable_vpid) {
9983 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009984 * There is no direct mapping between vpid02 and vpid12, the
9985 * vpid02 is per-vCPU for L0 and reused while the value of
9986 * vpid12 is changed w/ one invvpid during nested vmentry.
9987 * The vpid12 is allocated by L1 for L2, so it will not
9988 * influence global bitmap(for vpid01 and vpid02 allocation)
9989 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009990 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009991 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9992 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9993 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9994 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9995 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9996 }
9997 } else {
9998 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9999 vmx_flush_tlb(vcpu);
10000 }
10001
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010002 }
10003
Nadav Har'El155a97a2013-08-05 11:07:16 +030010004 if (nested_cpu_has_ept(vmcs12)) {
10005 kvm_mmu_unload(vcpu);
10006 nested_ept_init_mmu_context(vcpu);
10007 }
10008
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010009 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
10010 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010011 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010012 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10013 else
10014 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10015 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10016 vmx_set_efer(vcpu, vcpu->arch.efer);
10017
10018 /*
10019 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
10020 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
10021 * The CR0_READ_SHADOW is what L2 should have expected to read given
10022 * the specifications by L1; It's not enough to take
10023 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10024 * have more bits than L1 expected.
10025 */
10026 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10027 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10028
10029 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10030 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10031
10032 /* shadow page tables on either EPT or shadow page tables */
10033 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
10034 kvm_mmu_reset_context(vcpu);
10035
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010036 if (!enable_ept)
10037 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10038
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010039 /*
10040 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10041 */
10042 if (enable_ept) {
10043 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10044 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10045 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10046 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10047 }
10048
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010049 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10050 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
10051}
10052
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010053/*
10054 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10055 * for running an L2 nested guest.
10056 */
10057static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10058{
10059 struct vmcs12 *vmcs12;
10060 struct vcpu_vmx *vmx = to_vmx(vcpu);
10061 int cpu;
10062 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +020010063 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +030010064 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010065
10066 if (!nested_vmx_check_permission(vcpu) ||
10067 !nested_vmx_check_vmcs12(vcpu))
10068 return 1;
10069
10070 skip_emulated_instruction(vcpu);
10071 vmcs12 = get_vmcs12(vcpu);
10072
Abel Gordon012f83c2013-04-18 14:39:25 +030010073 if (enable_shadow_vmcs)
10074 copy_shadow_to_vmcs12(vmx);
10075
Nadav Har'El7c177932011-05-25 23:12:04 +030010076 /*
10077 * The nested entry process starts with enforcing various prerequisites
10078 * on vmcs12 as required by the Intel SDM, and act appropriately when
10079 * they fail: As the SDM explains, some conditions should cause the
10080 * instruction to fail, while others will cause the instruction to seem
10081 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10082 * To speed up the normal (success) code path, we should avoid checking
10083 * for misconfigurations which will anyway be caught by the processor
10084 * when using the merged vmcs02.
10085 */
10086 if (vmcs12->launch_state == launch) {
10087 nested_vmx_failValid(vcpu,
10088 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10089 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
10090 return 1;
10091 }
10092
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010093 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10094 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010095 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10096 return 1;
10097 }
10098
Wincy Van3af18d92015-02-03 23:49:31 +080010099 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010100 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10101 return 1;
10102 }
10103
Wincy Van3af18d92015-02-03 23:49:31 +080010104 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +030010105 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10106 return 1;
10107 }
10108
Wincy Vanf2b93282015-02-03 23:56:03 +080010109 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
10110 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10111 return 1;
10112 }
10113
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010114 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
10115 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10116 return 1;
10117 }
10118
Nadav Har'El7c177932011-05-25 23:12:04 +030010119 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010120 vmx->nested.nested_vmx_true_procbased_ctls_low,
10121 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010122 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010123 vmx->nested.nested_vmx_secondary_ctls_low,
10124 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010125 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010126 vmx->nested.nested_vmx_pinbased_ctls_low,
10127 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010128 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010129 vmx->nested.nested_vmx_true_exit_ctls_low,
10130 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010131 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +080010132 vmx->nested.nested_vmx_true_entry_ctls_low,
10133 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +030010134 {
10135 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
10136 return 1;
10137 }
10138
10139 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
10140 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
10141 nested_vmx_failValid(vcpu,
10142 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
10143 return 1;
10144 }
10145
Wincy Vanb9c237b2015-02-03 23:56:30 +080010146 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +030010147 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
10148 nested_vmx_entry_failure(vcpu, vmcs12,
10149 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
10150 return 1;
10151 }
10152 if (vmcs12->vmcs_link_pointer != -1ull) {
10153 nested_vmx_entry_failure(vcpu, vmcs12,
10154 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
10155 return 1;
10156 }
10157
10158 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +020010159 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +020010160 * are performed on the field for the IA32_EFER MSR:
10161 * - Bits reserved in the IA32_EFER MSR must be 0.
10162 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10163 * the IA-32e mode guest VM-exit control. It must also be identical
10164 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10165 * CR0.PG) is 1.
10166 */
10167 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
10168 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10169 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10170 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10171 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10172 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
10173 nested_vmx_entry_failure(vcpu, vmcs12,
10174 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
10175 return 1;
10176 }
10177 }
10178
10179 /*
10180 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10181 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10182 * the values of the LMA and LME bits in the field must each be that of
10183 * the host address-space size VM-exit control.
10184 */
10185 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10186 ia32e = (vmcs12->vm_exit_controls &
10187 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10188 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10189 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10190 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
10191 nested_vmx_entry_failure(vcpu, vmcs12,
10192 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
10193 return 1;
10194 }
10195 }
10196
10197 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010198 * We're finally done with prerequisite checking, and can start with
10199 * the nested entry.
10200 */
10201
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010202 vmcs02 = nested_get_current_vmcs02(vmx);
10203 if (!vmcs02)
10204 return -ENOMEM;
10205
10206 enter_guest_mode(vcpu);
10207
10208 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
10209
Jan Kiszka2996fca2014-06-16 13:59:43 +020010210 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10211 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10212
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010213 cpu = get_cpu();
10214 vmx->loaded_vmcs = vmcs02;
10215 vmx_vcpu_put(vcpu);
10216 vmx_vcpu_load(vcpu, cpu);
10217 vcpu->cpu = cpu;
10218 put_cpu();
10219
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010220 vmx_segment_cache_clear(vmx);
10221
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010222 prepare_vmcs02(vcpu, vmcs12);
10223
Wincy Vanff651cb2014-12-11 08:52:58 +030010224 msr_entry_idx = nested_vmx_load_msr(vcpu,
10225 vmcs12->vm_entry_msr_load_addr,
10226 vmcs12->vm_entry_msr_load_count);
10227 if (msr_entry_idx) {
10228 leave_guest_mode(vcpu);
10229 vmx_load_vmcs01(vcpu);
10230 nested_vmx_entry_failure(vcpu, vmcs12,
10231 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10232 return 1;
10233 }
10234
10235 vmcs12->launch_state = 1;
10236
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010237 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010238 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010239
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010240 vmx->nested.nested_run_pending = 1;
10241
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010242 /*
10243 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10244 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10245 * returned as far as L1 is concerned. It will only return (and set
10246 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10247 */
10248 return 1;
10249}
10250
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010251/*
10252 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10253 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10254 * This function returns the new value we should put in vmcs12.guest_cr0.
10255 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10256 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10257 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10258 * didn't trap the bit, because if L1 did, so would L0).
10259 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10260 * been modified by L2, and L1 knows it. So just leave the old value of
10261 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10262 * isn't relevant, because if L0 traps this bit it can set it to anything.
10263 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10264 * changed these bits, and therefore they need to be updated, but L0
10265 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10266 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10267 */
10268static inline unsigned long
10269vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10270{
10271 return
10272 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10273 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10274 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10275 vcpu->arch.cr0_guest_owned_bits));
10276}
10277
10278static inline unsigned long
10279vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10280{
10281 return
10282 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10283 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10284 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10285 vcpu->arch.cr4_guest_owned_bits));
10286}
10287
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010288static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10289 struct vmcs12 *vmcs12)
10290{
10291 u32 idt_vectoring;
10292 unsigned int nr;
10293
Gleb Natapov851eb6672013-09-25 12:51:34 +030010294 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010295 nr = vcpu->arch.exception.nr;
10296 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10297
10298 if (kvm_exception_is_soft(nr)) {
10299 vmcs12->vm_exit_instruction_len =
10300 vcpu->arch.event_exit_inst_len;
10301 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10302 } else
10303 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10304
10305 if (vcpu->arch.exception.has_error_code) {
10306 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10307 vmcs12->idt_vectoring_error_code =
10308 vcpu->arch.exception.error_code;
10309 }
10310
10311 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010312 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010313 vmcs12->idt_vectoring_info_field =
10314 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10315 } else if (vcpu->arch.interrupt.pending) {
10316 nr = vcpu->arch.interrupt.nr;
10317 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10318
10319 if (vcpu->arch.interrupt.soft) {
10320 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10321 vmcs12->vm_entry_instruction_len =
10322 vcpu->arch.event_exit_inst_len;
10323 } else
10324 idt_vectoring |= INTR_TYPE_EXT_INTR;
10325
10326 vmcs12->idt_vectoring_info_field = idt_vectoring;
10327 }
10328}
10329
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010330static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10331{
10332 struct vcpu_vmx *vmx = to_vmx(vcpu);
10333
Jan Kiszkaf41245002014-03-07 20:03:13 +010010334 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10335 vmx->nested.preemption_timer_expired) {
10336 if (vmx->nested.nested_run_pending)
10337 return -EBUSY;
10338 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10339 return 0;
10340 }
10341
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010342 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010343 if (vmx->nested.nested_run_pending ||
10344 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010345 return -EBUSY;
10346 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10347 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10348 INTR_INFO_VALID_MASK, 0);
10349 /*
10350 * The NMI-triggered VM exit counts as injection:
10351 * clear this one and block further NMIs.
10352 */
10353 vcpu->arch.nmi_pending = 0;
10354 vmx_set_nmi_mask(vcpu, true);
10355 return 0;
10356 }
10357
10358 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10359 nested_exit_on_intr(vcpu)) {
10360 if (vmx->nested.nested_run_pending)
10361 return -EBUSY;
10362 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010363 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010364 }
10365
Wincy Van705699a2015-02-03 23:58:17 +080010366 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010367}
10368
Jan Kiszkaf41245002014-03-07 20:03:13 +010010369static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10370{
10371 ktime_t remaining =
10372 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10373 u64 value;
10374
10375 if (ktime_to_ns(remaining) <= 0)
10376 return 0;
10377
10378 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10379 do_div(value, 1000000);
10380 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10381}
10382
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010383/*
10384 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10385 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10386 * and this function updates it to reflect the changes to the guest state while
10387 * L2 was running (and perhaps made some exits which were handled directly by L0
10388 * without going back to L1), and to reflect the exit reason.
10389 * Note that we do not have to copy here all VMCS fields, just those that
10390 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10391 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10392 * which already writes to vmcs12 directly.
10393 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010394static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10395 u32 exit_reason, u32 exit_intr_info,
10396 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010397{
10398 /* update guest state fields: */
10399 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10400 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10401
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010402 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10403 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10404 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10405
10406 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10407 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10408 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10409 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10410 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10411 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10412 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10413 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10414 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10415 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10416 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10417 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10418 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10419 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10420 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10421 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10422 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10423 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10424 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10425 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10426 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10427 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10428 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10429 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10430 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10431 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10432 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10433 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10434 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10435 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10436 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10437 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10438 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10439 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10440 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10441 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10442
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010443 vmcs12->guest_interruptibility_info =
10444 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10445 vmcs12->guest_pending_dbg_exceptions =
10446 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010447 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10448 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10449 else
10450 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010451
Jan Kiszkaf41245002014-03-07 20:03:13 +010010452 if (nested_cpu_has_preemption_timer(vmcs12)) {
10453 if (vmcs12->vm_exit_controls &
10454 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10455 vmcs12->vmx_preemption_timer_value =
10456 vmx_get_preemption_timer_value(vcpu);
10457 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10458 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010459
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010460 /*
10461 * In some cases (usually, nested EPT), L2 is allowed to change its
10462 * own CR3 without exiting. If it has changed it, we must keep it.
10463 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10464 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10465 *
10466 * Additionally, restore L2's PDPTR to vmcs12.
10467 */
10468 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010469 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010470 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10471 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10472 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10473 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10474 }
10475
Wincy Van608406e2015-02-03 23:57:51 +080010476 if (nested_cpu_has_vid(vmcs12))
10477 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10478
Jan Kiszkac18911a2013-03-13 16:06:41 +010010479 vmcs12->vm_entry_controls =
10480 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010481 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010482
Jan Kiszka2996fca2014-06-16 13:59:43 +020010483 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10484 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10485 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10486 }
10487
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010488 /* TODO: These cannot have changed unless we have MSR bitmaps and
10489 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010490 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010491 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010492 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10493 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010494 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10495 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10496 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010010497 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010498 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010499 if (nested_cpu_has_xsaves(vmcs12))
10500 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010501
10502 /* update exit information fields: */
10503
Jan Kiszka533558b2014-01-04 18:47:20 +010010504 vmcs12->vm_exit_reason = exit_reason;
10505 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010506
Jan Kiszka533558b2014-01-04 18:47:20 +010010507 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010508 if ((vmcs12->vm_exit_intr_info &
10509 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10510 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10511 vmcs12->vm_exit_intr_error_code =
10512 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010513 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010514 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10515 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10516
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010517 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10518 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10519 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010520 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010521
10522 /*
10523 * Transfer the event that L0 or L1 may wanted to inject into
10524 * L2 to IDT_VECTORING_INFO_FIELD.
10525 */
10526 vmcs12_save_pending_event(vcpu, vmcs12);
10527 }
10528
10529 /*
10530 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10531 * preserved above and would only end up incorrectly in L1.
10532 */
10533 vcpu->arch.nmi_injected = false;
10534 kvm_clear_exception_queue(vcpu);
10535 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010536}
10537
10538/*
10539 * A part of what we need to when the nested L2 guest exits and we want to
10540 * run its L1 parent, is to reset L1's guest state to the host state specified
10541 * in vmcs12.
10542 * This function is to be called not only on normal nested exit, but also on
10543 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10544 * Failures During or After Loading Guest State").
10545 * This function should be called when the active VMCS is L1's (vmcs01).
10546 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010547static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10548 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010549{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010550 struct kvm_segment seg;
10551
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010552 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10553 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010554 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010555 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10556 else
10557 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10558 vmx_set_efer(vcpu, vcpu->arch.efer);
10559
10560 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10561 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010562 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010563 /*
10564 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10565 * actually changed, because it depends on the current state of
10566 * fpu_active (which may have changed).
10567 * Note that vmx_set_cr0 refers to efer set above.
10568 */
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020010569 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010570 /*
10571 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10572 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10573 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10574 */
10575 update_exception_bitmap(vcpu);
10576 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10577 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10578
10579 /*
10580 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10581 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10582 */
10583 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10584 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10585
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010586 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010587
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010588 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10589 kvm_mmu_reset_context(vcpu);
10590
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010591 if (!enable_ept)
10592 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10593
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010594 if (enable_vpid) {
10595 /*
10596 * Trivially support vpid by letting L2s share their parent
10597 * L1's vpid. TODO: move to a more elaborate solution, giving
10598 * each L2 its own vpid and exposing the vpid feature to L1.
10599 */
10600 vmx_flush_tlb(vcpu);
10601 }
10602
10603
10604 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10605 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10606 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10607 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10608 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010609
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010610 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10611 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10612 vmcs_write64(GUEST_BNDCFGS, 0);
10613
Jan Kiszka44811c02013-08-04 17:17:27 +020010614 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010615 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010616 vcpu->arch.pat = vmcs12->host_ia32_pat;
10617 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010618 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10619 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10620 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010621
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010622 /* Set L1 segment info according to Intel SDM
10623 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10624 seg = (struct kvm_segment) {
10625 .base = 0,
10626 .limit = 0xFFFFFFFF,
10627 .selector = vmcs12->host_cs_selector,
10628 .type = 11,
10629 .present = 1,
10630 .s = 1,
10631 .g = 1
10632 };
10633 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10634 seg.l = 1;
10635 else
10636 seg.db = 1;
10637 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10638 seg = (struct kvm_segment) {
10639 .base = 0,
10640 .limit = 0xFFFFFFFF,
10641 .type = 3,
10642 .present = 1,
10643 .s = 1,
10644 .db = 1,
10645 .g = 1
10646 };
10647 seg.selector = vmcs12->host_ds_selector;
10648 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10649 seg.selector = vmcs12->host_es_selector;
10650 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10651 seg.selector = vmcs12->host_ss_selector;
10652 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10653 seg.selector = vmcs12->host_fs_selector;
10654 seg.base = vmcs12->host_fs_base;
10655 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10656 seg.selector = vmcs12->host_gs_selector;
10657 seg.base = vmcs12->host_gs_base;
10658 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10659 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010660 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010661 .limit = 0x67,
10662 .selector = vmcs12->host_tr_selector,
10663 .type = 11,
10664 .present = 1
10665 };
10666 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10667
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010668 kvm_set_dr(vcpu, 7, 0x400);
10669 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010670
Wincy Van3af18d92015-02-03 23:49:31 +080010671 if (cpu_has_vmx_msr_bitmap())
10672 vmx_set_msr_bitmap(vcpu);
10673
Wincy Vanff651cb2014-12-11 08:52:58 +030010674 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10675 vmcs12->vm_exit_msr_load_count))
10676 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010677}
10678
10679/*
10680 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10681 * and modify vmcs12 to make it see what it would expect to see there if
10682 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10683 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010684static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10685 u32 exit_intr_info,
10686 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010687{
10688 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010689 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10690
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010691 /* trying to cancel vmlaunch/vmresume is a bug */
10692 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10693
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010694 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010695 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10696 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010697
Wincy Vanff651cb2014-12-11 08:52:58 +030010698 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10699 vmcs12->vm_exit_msr_store_count))
10700 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10701
Wanpeng Lif3380ca52014-08-05 12:42:23 +080010702 vmx_load_vmcs01(vcpu);
10703
Bandan Das77b0f5d2014-04-19 18:17:45 -040010704 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10705 && nested_exit_intr_ack_set(vcpu)) {
10706 int irq = kvm_cpu_get_interrupt(vcpu);
10707 WARN_ON(irq < 0);
10708 vmcs12->vm_exit_intr_info = irq |
10709 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10710 }
10711
Jan Kiszka542060e2014-01-04 18:47:21 +010010712 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10713 vmcs12->exit_qualification,
10714 vmcs12->idt_vectoring_info_field,
10715 vmcs12->vm_exit_intr_info,
10716 vmcs12->vm_exit_intr_error_code,
10717 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010718
Gleb Natapov2961e8762013-11-25 15:37:13 +020010719 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10720 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010721 vmx_segment_cache_clear(vmx);
10722
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010723 /* if no vmcs02 cache requested, remove the one we used */
10724 if (VMCS02_POOL_SIZE == 0)
10725 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10726
10727 load_vmcs12_host_state(vcpu, vmcs12);
10728
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010729 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010730 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10731
10732 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10733 vmx->host_rsp = 0;
10734
10735 /* Unpin physical memory we referred to in vmcs02 */
10736 if (vmx->nested.apic_access_page) {
10737 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010738 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010739 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010740 if (vmx->nested.virtual_apic_page) {
10741 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010742 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010743 }
Wincy Van705699a2015-02-03 23:58:17 +080010744 if (vmx->nested.pi_desc_page) {
10745 kunmap(vmx->nested.pi_desc_page);
10746 nested_release_page(vmx->nested.pi_desc_page);
10747 vmx->nested.pi_desc_page = NULL;
10748 vmx->nested.pi_desc = NULL;
10749 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010750
10751 /*
Tang Chen38b99172014-09-24 15:57:54 +080010752 * We are now running in L2, mmu_notifier will force to reload the
10753 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10754 */
10755 kvm_vcpu_reload_apic_access_page(vcpu);
10756
10757 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010758 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10759 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10760 * success or failure flag accordingly.
10761 */
10762 if (unlikely(vmx->fail)) {
10763 vmx->fail = 0;
10764 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10765 } else
10766 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010767 if (enable_shadow_vmcs)
10768 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010769
10770 /* in case we halted in L2 */
10771 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010772}
10773
Nadav Har'El7c177932011-05-25 23:12:04 +030010774/*
Jan Kiszka42124922014-01-04 18:47:19 +010010775 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10776 */
10777static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10778{
10779 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010780 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010781 free_nested(to_vmx(vcpu));
10782}
10783
10784/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010785 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10786 * 23.7 "VM-entry failures during or after loading guest state" (this also
10787 * lists the acceptable exit-reason and exit-qualification parameters).
10788 * It should only be called before L2 actually succeeded to run, and when
10789 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10790 */
10791static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10792 struct vmcs12 *vmcs12,
10793 u32 reason, unsigned long qualification)
10794{
10795 load_vmcs12_host_state(vcpu, vmcs12);
10796 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10797 vmcs12->exit_qualification = qualification;
10798 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010799 if (enable_shadow_vmcs)
10800 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010801}
10802
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010803static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10804 struct x86_instruction_info *info,
10805 enum x86_intercept_stage stage)
10806{
10807 return X86EMUL_CONTINUE;
10808}
10809
Yunhong Jiang64672c92016-06-13 14:19:59 -070010810#ifdef CONFIG_X86_64
10811/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
10812static inline int u64_shl_div_u64(u64 a, unsigned int shift,
10813 u64 divisor, u64 *result)
10814{
10815 u64 low = a << shift, high = a >> (64 - shift);
10816
10817 /* To avoid the overflow on divq */
10818 if (high >= divisor)
10819 return 1;
10820
10821 /* Low hold the result, high hold rem which is discarded */
10822 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
10823 "rm" (divisor), "0" (low), "1" (high));
10824 *result = low;
10825
10826 return 0;
10827}
10828
10829static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
10830{
10831 struct vcpu_vmx *vmx = to_vmx(vcpu);
10832 u64 tscl = rdtsc(), delta_tsc;
10833
10834 delta_tsc = guest_deadline_tsc - kvm_read_l1_tsc(vcpu, tscl);
10835
10836 /* Convert to host delta tsc if tsc scaling is enabled */
10837 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
10838 u64_shl_div_u64(delta_tsc,
10839 kvm_tsc_scaling_ratio_frac_bits,
10840 vcpu->arch.tsc_scaling_ratio,
10841 &delta_tsc))
10842 return -ERANGE;
10843
10844 /*
10845 * If the delta tsc can't fit in the 32 bit after the multi shift,
10846 * we can't use the preemption timer.
10847 * It's possible that it fits on later vmentries, but checking
10848 * on every vmentry is costly so we just use an hrtimer.
10849 */
10850 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
10851 return -ERANGE;
10852
10853 vmx->hv_deadline_tsc = tscl + delta_tsc;
10854 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
10855 PIN_BASED_VMX_PREEMPTION_TIMER);
10856 return 0;
10857}
10858
10859static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
10860{
10861 struct vcpu_vmx *vmx = to_vmx(vcpu);
10862 vmx->hv_deadline_tsc = -1;
10863 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
10864 PIN_BASED_VMX_PREEMPTION_TIMER);
10865}
10866#endif
10867
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010868static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010869{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010870 if (ple_gap)
10871 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010872}
10873
Kai Huang843e4332015-01-28 10:54:28 +080010874static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10875 struct kvm_memory_slot *slot)
10876{
10877 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10878 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10879}
10880
10881static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10882 struct kvm_memory_slot *slot)
10883{
10884 kvm_mmu_slot_set_dirty(kvm, slot);
10885}
10886
10887static void vmx_flush_log_dirty(struct kvm *kvm)
10888{
10889 kvm_flush_pml_buffers(kvm);
10890}
10891
10892static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10893 struct kvm_memory_slot *memslot,
10894 gfn_t offset, unsigned long mask)
10895{
10896 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10897}
10898
Feng Wuefc64402015-09-18 22:29:51 +080010899/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010900 * This routine does the following things for vCPU which is going
10901 * to be blocked if VT-d PI is enabled.
10902 * - Store the vCPU to the wakeup list, so when interrupts happen
10903 * we can find the right vCPU to wake up.
10904 * - Change the Posted-interrupt descriptor as below:
10905 * 'NDST' <-- vcpu->pre_pcpu
10906 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10907 * - If 'ON' is set during this process, which means at least one
10908 * interrupt is posted for this vCPU, we cannot block it, in
10909 * this case, return 1, otherwise, return 0.
10910 *
10911 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070010912static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080010913{
10914 unsigned long flags;
10915 unsigned int dest;
10916 struct pi_desc old, new;
10917 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10918
10919 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10920 !irq_remapping_cap(IRQ_POSTING_CAP))
10921 return 0;
10922
10923 vcpu->pre_pcpu = vcpu->cpu;
10924 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10925 vcpu->pre_pcpu), flags);
10926 list_add_tail(&vcpu->blocked_vcpu_list,
10927 &per_cpu(blocked_vcpu_on_cpu,
10928 vcpu->pre_pcpu));
10929 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10930 vcpu->pre_pcpu), flags);
10931
10932 do {
10933 old.control = new.control = pi_desc->control;
10934
10935 /*
10936 * We should not block the vCPU if
10937 * an interrupt is posted for it.
10938 */
10939 if (pi_test_on(pi_desc) == 1) {
10940 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10941 vcpu->pre_pcpu), flags);
10942 list_del(&vcpu->blocked_vcpu_list);
10943 spin_unlock_irqrestore(
10944 &per_cpu(blocked_vcpu_on_cpu_lock,
10945 vcpu->pre_pcpu), flags);
10946 vcpu->pre_pcpu = -1;
10947
10948 return 1;
10949 }
10950
10951 WARN((pi_desc->sn == 1),
10952 "Warning: SN field of posted-interrupts "
10953 "is set before blocking\n");
10954
10955 /*
10956 * Since vCPU can be preempted during this process,
10957 * vcpu->cpu could be different with pre_pcpu, we
10958 * need to set pre_pcpu as the destination of wakeup
10959 * notification event, then we can find the right vCPU
10960 * to wakeup in wakeup handler if interrupts happen
10961 * when the vCPU is in blocked state.
10962 */
10963 dest = cpu_physical_id(vcpu->pre_pcpu);
10964
10965 if (x2apic_enabled())
10966 new.ndst = dest;
10967 else
10968 new.ndst = (dest << 8) & 0xFF00;
10969
10970 /* set 'NV' to 'wakeup vector' */
10971 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10972 } while (cmpxchg(&pi_desc->control, old.control,
10973 new.control) != old.control);
10974
10975 return 0;
10976}
10977
Yunhong Jiangbc225122016-06-13 14:19:58 -070010978static int vmx_pre_block(struct kvm_vcpu *vcpu)
10979{
10980 if (pi_pre_block(vcpu))
10981 return 1;
10982
Yunhong Jiang64672c92016-06-13 14:19:59 -070010983 if (kvm_lapic_hv_timer_in_use(vcpu))
10984 kvm_lapic_switch_to_sw_timer(vcpu);
10985
Yunhong Jiangbc225122016-06-13 14:19:58 -070010986 return 0;
10987}
10988
10989static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080010990{
10991 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10992 struct pi_desc old, new;
10993 unsigned int dest;
10994 unsigned long flags;
10995
10996 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10997 !irq_remapping_cap(IRQ_POSTING_CAP))
10998 return;
10999
11000 do {
11001 old.control = new.control = pi_desc->control;
11002
11003 dest = cpu_physical_id(vcpu->cpu);
11004
11005 if (x2apic_enabled())
11006 new.ndst = dest;
11007 else
11008 new.ndst = (dest << 8) & 0xFF00;
11009
11010 /* Allow posting non-urgent interrupts */
11011 new.sn = 0;
11012
11013 /* set 'NV' to 'notification vector' */
11014 new.nv = POSTED_INTR_VECTOR;
11015 } while (cmpxchg(&pi_desc->control, old.control,
11016 new.control) != old.control);
11017
11018 if(vcpu->pre_pcpu != -1) {
11019 spin_lock_irqsave(
11020 &per_cpu(blocked_vcpu_on_cpu_lock,
11021 vcpu->pre_pcpu), flags);
11022 list_del(&vcpu->blocked_vcpu_list);
11023 spin_unlock_irqrestore(
11024 &per_cpu(blocked_vcpu_on_cpu_lock,
11025 vcpu->pre_pcpu), flags);
11026 vcpu->pre_pcpu = -1;
11027 }
11028}
11029
Yunhong Jiangbc225122016-06-13 14:19:58 -070011030static void vmx_post_block(struct kvm_vcpu *vcpu)
11031{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011032 if (kvm_x86_ops->set_hv_timer)
11033 kvm_lapic_switch_to_hv_timer(vcpu);
11034
Yunhong Jiangbc225122016-06-13 14:19:58 -070011035 pi_post_block(vcpu);
11036}
11037
Feng Wubf9f6ac2015-09-18 22:29:55 +080011038/*
Feng Wuefc64402015-09-18 22:29:51 +080011039 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11040 *
11041 * @kvm: kvm
11042 * @host_irq: host irq of the interrupt
11043 * @guest_irq: gsi of the interrupt
11044 * @set: set or unset PI
11045 * returns 0 on success, < 0 on failure
11046 */
11047static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11048 uint32_t guest_irq, bool set)
11049{
11050 struct kvm_kernel_irq_routing_entry *e;
11051 struct kvm_irq_routing_table *irq_rt;
11052 struct kvm_lapic_irq irq;
11053 struct kvm_vcpu *vcpu;
11054 struct vcpu_data vcpu_info;
11055 int idx, ret = -EINVAL;
11056
11057 if (!kvm_arch_has_assigned_device(kvm) ||
11058 !irq_remapping_cap(IRQ_POSTING_CAP))
11059 return 0;
11060
11061 idx = srcu_read_lock(&kvm->irq_srcu);
11062 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11063 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11064
11065 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11066 if (e->type != KVM_IRQ_ROUTING_MSI)
11067 continue;
11068 /*
11069 * VT-d PI cannot support posting multicast/broadcast
11070 * interrupts to a vCPU, we still use interrupt remapping
11071 * for these kind of interrupts.
11072 *
11073 * For lowest-priority interrupts, we only support
11074 * those with single CPU as the destination, e.g. user
11075 * configures the interrupts via /proc/irq or uses
11076 * irqbalance to make the interrupts single-CPU.
11077 *
11078 * We will support full lowest-priority interrupt later.
11079 */
11080
11081 kvm_set_msi_irq(e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011082 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11083 /*
11084 * Make sure the IRTE is in remapped mode if
11085 * we don't handle it in posted mode.
11086 */
11087 ret = irq_set_vcpu_affinity(host_irq, NULL);
11088 if (ret < 0) {
11089 printk(KERN_INFO
11090 "failed to back to remapped mode, irq: %u\n",
11091 host_irq);
11092 goto out;
11093 }
11094
Feng Wuefc64402015-09-18 22:29:51 +080011095 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011096 }
Feng Wuefc64402015-09-18 22:29:51 +080011097
11098 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11099 vcpu_info.vector = irq.vector;
11100
Feng Wub6ce9782016-01-25 16:53:35 +080011101 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011102 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11103
11104 if (set)
11105 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11106 else {
11107 /* suppress notification event before unposting */
11108 pi_set_sn(vcpu_to_pi_desc(vcpu));
11109 ret = irq_set_vcpu_affinity(host_irq, NULL);
11110 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11111 }
11112
11113 if (ret < 0) {
11114 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11115 __func__);
11116 goto out;
11117 }
11118 }
11119
11120 ret = 0;
11121out:
11122 srcu_read_unlock(&kvm->irq_srcu, idx);
11123 return ret;
11124}
11125
Ashok Rajc45dcc72016-06-22 14:59:56 +080011126static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11127{
11128 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11129 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11130 FEATURE_CONTROL_LMCE;
11131 else
11132 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11133 ~FEATURE_CONTROL_LMCE;
11134}
11135
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030011136static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011137 .cpu_has_kvm_support = cpu_has_kvm_support,
11138 .disabled_by_bios = vmx_disabled_by_bios,
11139 .hardware_setup = hardware_setup,
11140 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011141 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011142 .hardware_enable = hardware_enable,
11143 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011144 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011145 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011146
11147 .vcpu_create = vmx_create_vcpu,
11148 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011149 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011150
Avi Kivity04d2cc72007-09-10 18:10:54 +030011151 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011152 .vcpu_load = vmx_vcpu_load,
11153 .vcpu_put = vmx_vcpu_put,
11154
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011155 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011156 .get_msr = vmx_get_msr,
11157 .set_msr = vmx_set_msr,
11158 .get_segment_base = vmx_get_segment_base,
11159 .get_segment = vmx_get_segment,
11160 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011161 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011162 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011163 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011164 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011165 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011166 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011167 .set_cr3 = vmx_set_cr3,
11168 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011169 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011170 .get_idt = vmx_get_idt,
11171 .set_idt = vmx_set_idt,
11172 .get_gdt = vmx_get_gdt,
11173 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011174 .get_dr6 = vmx_get_dr6,
11175 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011176 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011177 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011178 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011179 .get_rflags = vmx_get_rflags,
11180 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011181
11182 .get_pkru = vmx_get_pkru,
11183
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020011184 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020011185 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011186
11187 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011188
Avi Kivity6aa8b732006-12-10 02:21:36 -080011189 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011190 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011191 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011192 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11193 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011194 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011195 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011196 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011197 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011198 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011199 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011200 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011201 .get_nmi_mask = vmx_get_nmi_mask,
11202 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011203 .enable_nmi_window = enable_nmi_window,
11204 .enable_irq_window = enable_irq_window,
11205 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011206 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011207 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011208 .get_enable_apicv = vmx_get_enable_apicv,
11209 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011210 .load_eoi_exitmap = vmx_load_eoi_exitmap,
11211 .hwapic_irr_update = vmx_hwapic_irr_update,
11212 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011213 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11214 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011215
Izik Eiduscbc94022007-10-25 00:29:55 +020011216 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011217 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011218 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011219
Avi Kivity586f9602010-11-18 13:09:54 +020011220 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011221
Sheng Yang17cc3932010-01-05 19:02:27 +080011222 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011223
11224 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011225
11226 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011227 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011228
11229 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011230
11231 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011232
Will Auldba904632012-11-29 12:42:50 -080011233 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011234 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080011235 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030011236 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011237
11238 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011239
11240 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011241 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011242 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011243 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011244
11245 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011246
11247 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011248
11249 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11250 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11251 .flush_log_dirty = vmx_flush_log_dirty,
11252 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020011253
Feng Wubf9f6ac2015-09-18 22:29:55 +080011254 .pre_block = vmx_pre_block,
11255 .post_block = vmx_post_block,
11256
Wei Huang25462f72015-06-19 15:45:05 +020011257 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011258
11259 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011260
11261#ifdef CONFIG_X86_64
11262 .set_hv_timer = vmx_set_hv_timer,
11263 .cancel_hv_timer = vmx_cancel_hv_timer,
11264#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011265
11266 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011267};
11268
11269static int __init vmx_init(void)
11270{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011271 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11272 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011273 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011274 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011275
Dave Young2965faa2015-09-09 15:38:55 -070011276#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011277 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11278 crash_vmclear_local_loaded_vmcss);
11279#endif
11280
He, Qingfdef3ad2007-04-30 09:45:24 +030011281 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011282}
11283
11284static void __exit vmx_exit(void)
11285{
Dave Young2965faa2015-09-09 15:38:55 -070011286#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011287 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011288 synchronize_rcu();
11289#endif
11290
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011291 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011292}
11293
11294module_init(vmx_init)
11295module_exit(vmx_exit)