blob: 3ddd72303fe4a37afc7f513397de129d66e7fbf3 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf41245002014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030036#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030037#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040038
Feng Wu28b835d2015-09-18 22:29:54 +080039#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080040#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080041#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020042#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020043#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080044#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020045#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020046#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010047#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080048#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010049#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080050#include <asm/irq_remapping.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Marcelo Tosatti229456f2009-06-17 09:22:14 -030052#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020053#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054
Avi Kivity4ecac3f2008-05-13 13:23:38 +030055#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040056#define __ex_clear(x, reg) \
57 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030058
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplette9bda3b2012-03-20 23:33:51 -070062static const struct x86_cpu_id vmx_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_VMX),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
67
Rusty Russell476bc002012-01-13 09:32:18 +103068static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020069module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080070
Rusty Russell476bc002012-01-13 09:32:18 +103071static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020072module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020073
Rusty Russell476bc002012-01-13 09:32:18 +103074static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020075module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080076
Rusty Russell476bc002012-01-13 09:32:18 +103077static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070078module_param_named(unrestricted_guest,
79 enable_unrestricted_guest, bool, S_IRUGO);
80
Xudong Hao83c3a332012-05-28 19:33:35 +080081static bool __read_mostly enable_ept_ad_bits = 1;
82module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
83
Avi Kivitya27685c2012-06-12 20:30:18 +030084static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020085module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly vmm_exclusive = 1;
Dongxiao Xub923e622010-05-11 18:29:45 +080088module_param(vmm_exclusive, bool, S_IRUGO);
89
Rusty Russell476bc002012-01-13 09:32:18 +103090static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030091module_param(fasteoi, bool, S_IRUGO);
92
Yang Zhang5a717852013-04-11 19:25:16 +080093static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080094module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080095
Abel Gordonabc4fc52013-04-18 14:35:25 +030096static bool __read_mostly enable_shadow_vmcs = 1;
97module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030098/*
99 * If nested=1, nested virtualization is supported, i.e., guests may use
100 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
101 * use VMX instructions.
102 */
Rusty Russell476bc002012-01-13 09:32:18 +1030103static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300104module_param(nested, bool, S_IRUGO);
105
Wanpeng Li20300092014-12-02 19:14:59 +0800106static u64 __read_mostly host_xss;
107
Kai Huang843e4332015-01-28 10:54:28 +0800108static bool __read_mostly enable_pml = 1;
109module_param_named(pml, enable_pml, bool, S_IRUGO);
110
Haozhong Zhang64903d62015-10-20 15:39:09 +0800111#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
112
Yunhong Jiang64672c92016-06-13 14:19:59 -0700113/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
114static int __read_mostly cpu_preemption_timer_multi;
115static bool __read_mostly enable_preemption_timer = 1;
116#ifdef CONFIG_X86_64
117module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
118#endif
119
Gleb Natapov50378782013-02-04 16:00:28 +0200120#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
121#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200122#define KVM_VM_CR0_ALWAYS_ON \
123 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200124#define KVM_CR4_GUEST_OWNED_BITS \
125 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700126 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200127
Avi Kivitycdc0e242009-12-06 17:21:14 +0200128#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
129#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
130
Avi Kivity78ac8b42010-04-08 18:19:35 +0300131#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
132
Jan Kiszkaf41245002014-03-07 20:03:13 +0100133#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
134
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800135/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300136 * Hyper-V requires all of these, so mark them as supported even though
137 * they are just treated the same as all-context.
138 */
139#define VMX_VPID_EXTENT_SUPPORTED_MASK \
140 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
141 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
142 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
143 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
144
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800145/*
146 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
147 * ple_gap: upper bound on the amount of time between two successive
148 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500149 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800150 * ple_window: upper bound on the amount of time a guest is allowed to execute
151 * in a PAUSE loop. Tests indicate that most spinlocks are held for
152 * less than 2^12 cycles
153 * Time is measured based on a counter that runs at the same rate as the TSC,
154 * refer SDM volume 3b section 21.6.13 & 22.1.3.
155 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200156#define KVM_VMX_DEFAULT_PLE_GAP 128
157#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
158#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
159#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
160#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
161 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
162
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800163static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
164module_param(ple_gap, int, S_IRUGO);
165
166static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
167module_param(ple_window, int, S_IRUGO);
168
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200169/* Default doubles per-vcpu window every exit. */
170static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
171module_param(ple_window_grow, int, S_IRUGO);
172
173/* Default resets per-vcpu window every exit to ple_window. */
174static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
175module_param(ple_window_shrink, int, S_IRUGO);
176
177/* Default is to compute the maximum so we can never overflow. */
178static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
180module_param(ple_window_max, int, S_IRUGO);
181
Avi Kivity83287ea422012-09-16 15:10:57 +0300182extern const ulong vmx_return;
183
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200184#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300185#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300186
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400187struct vmcs {
188 u32 revision_id;
189 u32 abort;
190 char data[0];
191};
192
Nadav Har'Eld462b812011-05-24 15:26:10 +0300193/*
194 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
195 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
196 * loaded on this CPU (so we can clear them if the CPU goes down).
197 */
198struct loaded_vmcs {
199 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700200 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300201 int cpu;
202 int launched;
203 struct list_head loaded_vmcss_on_cpu_link;
204};
205
Avi Kivity26bb0982009-09-07 11:14:12 +0300206struct shared_msr_entry {
207 unsigned index;
208 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200209 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300210};
211
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300212/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300213 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
214 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
215 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
216 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
217 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
218 * More than one of these structures may exist, if L1 runs multiple L2 guests.
219 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
220 * underlying hardware which will be used to run L2.
221 * This structure is packed to ensure that its layout is identical across
222 * machines (necessary for live migration).
223 * If there are changes in this struct, VMCS12_REVISION must be changed.
224 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300225typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300226struct __packed vmcs12 {
227 /* According to the Intel spec, a VMCS region must start with the
228 * following two fields. Then follow implementation-specific data.
229 */
230 u32 revision_id;
231 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300232
Nadav Har'El27d6c862011-05-25 23:06:59 +0300233 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
234 u32 padding[7]; /* room for future expansion */
235
Nadav Har'El22bd0352011-05-25 23:05:57 +0300236 u64 io_bitmap_a;
237 u64 io_bitmap_b;
238 u64 msr_bitmap;
239 u64 vm_exit_msr_store_addr;
240 u64 vm_exit_msr_load_addr;
241 u64 vm_entry_msr_load_addr;
242 u64 tsc_offset;
243 u64 virtual_apic_page_addr;
244 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800245 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300246 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800247 u64 eoi_exit_bitmap0;
248 u64 eoi_exit_bitmap1;
249 u64 eoi_exit_bitmap2;
250 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800251 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300252 u64 guest_physical_address;
253 u64 vmcs_link_pointer;
254 u64 guest_ia32_debugctl;
255 u64 guest_ia32_pat;
256 u64 guest_ia32_efer;
257 u64 guest_ia32_perf_global_ctrl;
258 u64 guest_pdptr0;
259 u64 guest_pdptr1;
260 u64 guest_pdptr2;
261 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100262 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300263 u64 host_ia32_pat;
264 u64 host_ia32_efer;
265 u64 host_ia32_perf_global_ctrl;
266 u64 padding64[8]; /* room for future expansion */
267 /*
268 * To allow migration of L1 (complete with its L2 guests) between
269 * machines of different natural widths (32 or 64 bit), we cannot have
270 * unsigned long fields with no explict size. We use u64 (aliased
271 * natural_width) instead. Luckily, x86 is little-endian.
272 */
273 natural_width cr0_guest_host_mask;
274 natural_width cr4_guest_host_mask;
275 natural_width cr0_read_shadow;
276 natural_width cr4_read_shadow;
277 natural_width cr3_target_value0;
278 natural_width cr3_target_value1;
279 natural_width cr3_target_value2;
280 natural_width cr3_target_value3;
281 natural_width exit_qualification;
282 natural_width guest_linear_address;
283 natural_width guest_cr0;
284 natural_width guest_cr3;
285 natural_width guest_cr4;
286 natural_width guest_es_base;
287 natural_width guest_cs_base;
288 natural_width guest_ss_base;
289 natural_width guest_ds_base;
290 natural_width guest_fs_base;
291 natural_width guest_gs_base;
292 natural_width guest_ldtr_base;
293 natural_width guest_tr_base;
294 natural_width guest_gdtr_base;
295 natural_width guest_idtr_base;
296 natural_width guest_dr7;
297 natural_width guest_rsp;
298 natural_width guest_rip;
299 natural_width guest_rflags;
300 natural_width guest_pending_dbg_exceptions;
301 natural_width guest_sysenter_esp;
302 natural_width guest_sysenter_eip;
303 natural_width host_cr0;
304 natural_width host_cr3;
305 natural_width host_cr4;
306 natural_width host_fs_base;
307 natural_width host_gs_base;
308 natural_width host_tr_base;
309 natural_width host_gdtr_base;
310 natural_width host_idtr_base;
311 natural_width host_ia32_sysenter_esp;
312 natural_width host_ia32_sysenter_eip;
313 natural_width host_rsp;
314 natural_width host_rip;
315 natural_width paddingl[8]; /* room for future expansion */
316 u32 pin_based_vm_exec_control;
317 u32 cpu_based_vm_exec_control;
318 u32 exception_bitmap;
319 u32 page_fault_error_code_mask;
320 u32 page_fault_error_code_match;
321 u32 cr3_target_count;
322 u32 vm_exit_controls;
323 u32 vm_exit_msr_store_count;
324 u32 vm_exit_msr_load_count;
325 u32 vm_entry_controls;
326 u32 vm_entry_msr_load_count;
327 u32 vm_entry_intr_info_field;
328 u32 vm_entry_exception_error_code;
329 u32 vm_entry_instruction_len;
330 u32 tpr_threshold;
331 u32 secondary_vm_exec_control;
332 u32 vm_instruction_error;
333 u32 vm_exit_reason;
334 u32 vm_exit_intr_info;
335 u32 vm_exit_intr_error_code;
336 u32 idt_vectoring_info_field;
337 u32 idt_vectoring_error_code;
338 u32 vm_exit_instruction_len;
339 u32 vmx_instruction_info;
340 u32 guest_es_limit;
341 u32 guest_cs_limit;
342 u32 guest_ss_limit;
343 u32 guest_ds_limit;
344 u32 guest_fs_limit;
345 u32 guest_gs_limit;
346 u32 guest_ldtr_limit;
347 u32 guest_tr_limit;
348 u32 guest_gdtr_limit;
349 u32 guest_idtr_limit;
350 u32 guest_es_ar_bytes;
351 u32 guest_cs_ar_bytes;
352 u32 guest_ss_ar_bytes;
353 u32 guest_ds_ar_bytes;
354 u32 guest_fs_ar_bytes;
355 u32 guest_gs_ar_bytes;
356 u32 guest_ldtr_ar_bytes;
357 u32 guest_tr_ar_bytes;
358 u32 guest_interruptibility_info;
359 u32 guest_activity_state;
360 u32 guest_sysenter_cs;
361 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100362 u32 vmx_preemption_timer_value;
363 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300364 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800365 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300366 u16 guest_es_selector;
367 u16 guest_cs_selector;
368 u16 guest_ss_selector;
369 u16 guest_ds_selector;
370 u16 guest_fs_selector;
371 u16 guest_gs_selector;
372 u16 guest_ldtr_selector;
373 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800374 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300375 u16 host_es_selector;
376 u16 host_cs_selector;
377 u16 host_ss_selector;
378 u16 host_ds_selector;
379 u16 host_fs_selector;
380 u16 host_gs_selector;
381 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300382};
383
384/*
385 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
386 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
387 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
388 */
389#define VMCS12_REVISION 0x11e57ed0
390
391/*
392 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
393 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
394 * current implementation, 4K are reserved to avoid future complications.
395 */
396#define VMCS12_SIZE 0x1000
397
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300398/* Used to remember the last vmcs02 used for some recently used vmcs12s */
399struct vmcs02_list {
400 struct list_head list;
401 gpa_t vmptr;
402 struct loaded_vmcs vmcs02;
403};
404
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300405/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300406 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
407 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
408 */
409struct nested_vmx {
410 /* Has the level1 guest done vmxon? */
411 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400412 gpa_t vmxon_ptr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300413
414 /* The guest-physical address of the current VMCS L1 keeps for L2 */
415 gpa_t current_vmptr;
416 /* The host-usable pointer to the above */
417 struct page *current_vmcs12_page;
418 struct vmcs12 *current_vmcs12;
David Matlack4f2777b2016-07-13 17:16:37 -0700419 /*
420 * Cache of the guest's VMCS, existing outside of guest memory.
421 * Loaded from guest memory during VMPTRLD. Flushed to guest
422 * memory during VMXOFF, VMCLEAR, VMPTRLD.
423 */
424 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300425 /*
426 * Indicates if the shadow vmcs must be updated with the
427 * data hold by vmcs12
428 */
429 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300430
431 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
432 struct list_head vmcs02_pool;
433 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200434 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300435 /* L2 must run next, and mustn't decide to exit to L1. */
436 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300437 /*
438 * Guest pages referred to in vmcs02 with host-physical pointers, so
439 * we must keep them pinned while L2 runs.
440 */
441 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800442 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800443 struct page *pi_desc_page;
444 struct pi_desc *pi_desc;
445 bool pi_pending;
446 u16 posted_intr_nv;
Jan Kiszkaf41245002014-03-07 20:03:13 +0100447
Radim Krčmářd048c092016-08-08 20:16:22 +0200448 unsigned long *msr_bitmap;
449
Jan Kiszkaf41245002014-03-07 20:03:13 +0100450 struct hrtimer preemption_timer;
451 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200452
453 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
454 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800455
Wanpeng Li5c614b32015-10-13 09:18:36 -0700456 u16 vpid02;
457 u16 last_vpid;
458
David Matlack0115f9c2016-11-29 18:14:06 -0800459 /*
460 * We only store the "true" versions of the VMX capability MSRs. We
461 * generate the "non-true" versions by setting the must-be-1 bits
462 * according to the SDM.
463 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800464 u32 nested_vmx_procbased_ctls_low;
465 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466 u32 nested_vmx_secondary_ctls_low;
467 u32 nested_vmx_secondary_ctls_high;
468 u32 nested_vmx_pinbased_ctls_low;
469 u32 nested_vmx_pinbased_ctls_high;
470 u32 nested_vmx_exit_ctls_low;
471 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800472 u32 nested_vmx_entry_ctls_low;
473 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800474 u32 nested_vmx_misc_low;
475 u32 nested_vmx_misc_high;
476 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700477 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800478 u64 nested_vmx_basic;
479 u64 nested_vmx_cr0_fixed0;
480 u64 nested_vmx_cr0_fixed1;
481 u64 nested_vmx_cr4_fixed0;
482 u64 nested_vmx_cr4_fixed1;
483 u64 nested_vmx_vmcs_enum;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300484};
485
Yang Zhang01e439b2013-04-11 19:25:12 +0800486#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800487#define POSTED_INTR_SN 1
488
Yang Zhang01e439b2013-04-11 19:25:12 +0800489/* Posted-Interrupt Descriptor */
490struct pi_desc {
491 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800492 union {
493 struct {
494 /* bit 256 - Outstanding Notification */
495 u16 on : 1,
496 /* bit 257 - Suppress Notification */
497 sn : 1,
498 /* bit 271:258 - Reserved */
499 rsvd_1 : 14;
500 /* bit 279:272 - Notification Vector */
501 u8 nv;
502 /* bit 287:280 - Reserved */
503 u8 rsvd_2;
504 /* bit 319:288 - Notification Destination */
505 u32 ndst;
506 };
507 u64 control;
508 };
509 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800510} __aligned(64);
511
Yang Zhanga20ed542013-04-11 19:25:15 +0800512static bool pi_test_and_set_on(struct pi_desc *pi_desc)
513{
514 return test_and_set_bit(POSTED_INTR_ON,
515 (unsigned long *)&pi_desc->control);
516}
517
518static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
519{
520 return test_and_clear_bit(POSTED_INTR_ON,
521 (unsigned long *)&pi_desc->control);
522}
523
524static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
525{
526 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
527}
528
Feng Wuebbfc762015-09-18 22:29:46 +0800529static inline void pi_clear_sn(struct pi_desc *pi_desc)
530{
531 return clear_bit(POSTED_INTR_SN,
532 (unsigned long *)&pi_desc->control);
533}
534
535static inline void pi_set_sn(struct pi_desc *pi_desc)
536{
537 return set_bit(POSTED_INTR_SN,
538 (unsigned long *)&pi_desc->control);
539}
540
Paolo Bonziniad361092016-09-20 16:15:05 +0200541static inline void pi_clear_on(struct pi_desc *pi_desc)
542{
543 clear_bit(POSTED_INTR_ON,
544 (unsigned long *)&pi_desc->control);
545}
546
Feng Wuebbfc762015-09-18 22:29:46 +0800547static inline int pi_test_on(struct pi_desc *pi_desc)
548{
549 return test_bit(POSTED_INTR_ON,
550 (unsigned long *)&pi_desc->control);
551}
552
553static inline int pi_test_sn(struct pi_desc *pi_desc)
554{
555 return test_bit(POSTED_INTR_SN,
556 (unsigned long *)&pi_desc->control);
557}
558
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400559struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000560 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300561 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300562 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200563 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300564 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200565 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200566 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300567 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400568 int nmsrs;
569 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800570 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400571#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300572 u64 msr_host_kernel_gs_base;
573 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400574#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200575 u32 vm_entry_controls_shadow;
576 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300577 /*
578 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
579 * non-nested (L1) guest, it always points to vmcs01. For a nested
580 * guest (L2), it points to a different VMCS.
581 */
582 struct loaded_vmcs vmcs01;
583 struct loaded_vmcs *loaded_vmcs;
584 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300585 struct msr_autoload {
586 unsigned nr;
587 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
588 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
589 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400590 struct {
591 int loaded;
592 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300593#ifdef CONFIG_X86_64
594 u16 ds_sel, es_sel;
595#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200596 int gs_ldt_reload_needed;
597 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000598 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700599 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400600 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200601 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300602 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300603 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300604 struct kvm_segment segs[8];
605 } rmode;
606 struct {
607 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300608 struct kvm_save_segment {
609 u16 selector;
610 unsigned long base;
611 u32 limit;
612 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300613 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300614 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800615 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300616 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200617
618 /* Support for vnmi-less CPUs */
619 int soft_vnmi_blocked;
620 ktime_t entry_time;
621 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800622 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800623
Yang Zhang01e439b2013-04-11 19:25:12 +0800624 /* Posted interrupt descriptor */
625 struct pi_desc pi_desc;
626
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300627 /* Support for a guest hypervisor (nested VMX) */
628 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200629
630 /* Dynamic PLE window. */
631 int ple_window;
632 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800633
634 /* Support for PML */
635#define PML_ENTITY_NUM 512
636 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800637
Yunhong Jiang64672c92016-06-13 14:19:59 -0700638 /* apic deadline value in host tsc */
639 u64 hv_deadline_tsc;
640
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800641 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800642
643 bool guest_pkru_valid;
644 u32 guest_pkru;
645 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800646
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800647 /*
648 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
649 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
650 * in msr_ia32_feature_control_valid_bits.
651 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800652 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800653 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400654};
655
Avi Kivity2fb92db2011-04-27 19:42:18 +0300656enum segment_cache_field {
657 SEG_FIELD_SEL = 0,
658 SEG_FIELD_BASE = 1,
659 SEG_FIELD_LIMIT = 2,
660 SEG_FIELD_AR = 3,
661
662 SEG_FIELD_NR = 4
663};
664
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400665static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
666{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000667 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400668}
669
Feng Wuefc64402015-09-18 22:29:51 +0800670static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
671{
672 return &(to_vmx(vcpu)->pi_desc);
673}
674
Nadav Har'El22bd0352011-05-25 23:05:57 +0300675#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
676#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
677#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
678 [number##_HIGH] = VMCS12_OFFSET(name)+4
679
Abel Gordon4607c2d2013-04-18 14:35:55 +0300680
Bandan Dasfe2b2012014-04-21 15:20:14 -0400681static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300682 /*
683 * We do NOT shadow fields that are modified when L0
684 * traps and emulates any vmx instruction (e.g. VMPTRLD,
685 * VMXON...) executed by L1.
686 * For example, VM_INSTRUCTION_ERROR is read
687 * by L1 if a vmx instruction fails (part of the error path).
688 * Note the code assumes this logic. If for some reason
689 * we start shadowing these fields then we need to
690 * force a shadow sync when L0 emulates vmx instructions
691 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
692 * by nested_vmx_failValid)
693 */
694 VM_EXIT_REASON,
695 VM_EXIT_INTR_INFO,
696 VM_EXIT_INSTRUCTION_LEN,
697 IDT_VECTORING_INFO_FIELD,
698 IDT_VECTORING_ERROR_CODE,
699 VM_EXIT_INTR_ERROR_CODE,
700 EXIT_QUALIFICATION,
701 GUEST_LINEAR_ADDRESS,
702 GUEST_PHYSICAL_ADDRESS
703};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400704static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300705 ARRAY_SIZE(shadow_read_only_fields);
706
Bandan Dasfe2b2012014-04-21 15:20:14 -0400707static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800708 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300709 GUEST_RIP,
710 GUEST_RSP,
711 GUEST_CR0,
712 GUEST_CR3,
713 GUEST_CR4,
714 GUEST_INTERRUPTIBILITY_INFO,
715 GUEST_RFLAGS,
716 GUEST_CS_SELECTOR,
717 GUEST_CS_AR_BYTES,
718 GUEST_CS_LIMIT,
719 GUEST_CS_BASE,
720 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100721 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300722 CR0_GUEST_HOST_MASK,
723 CR0_READ_SHADOW,
724 CR4_READ_SHADOW,
725 TSC_OFFSET,
726 EXCEPTION_BITMAP,
727 CPU_BASED_VM_EXEC_CONTROL,
728 VM_ENTRY_EXCEPTION_ERROR_CODE,
729 VM_ENTRY_INTR_INFO_FIELD,
730 VM_ENTRY_INSTRUCTION_LEN,
731 VM_ENTRY_EXCEPTION_ERROR_CODE,
732 HOST_FS_BASE,
733 HOST_GS_BASE,
734 HOST_FS_SELECTOR,
735 HOST_GS_SELECTOR
736};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400737static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300738 ARRAY_SIZE(shadow_read_write_fields);
739
Mathias Krause772e0312012-08-30 01:30:19 +0200740static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300741 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800742 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300743 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
744 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
745 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
746 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
747 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
748 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
749 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
750 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800751 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300752 FIELD(HOST_ES_SELECTOR, host_es_selector),
753 FIELD(HOST_CS_SELECTOR, host_cs_selector),
754 FIELD(HOST_SS_SELECTOR, host_ss_selector),
755 FIELD(HOST_DS_SELECTOR, host_ds_selector),
756 FIELD(HOST_FS_SELECTOR, host_fs_selector),
757 FIELD(HOST_GS_SELECTOR, host_gs_selector),
758 FIELD(HOST_TR_SELECTOR, host_tr_selector),
759 FIELD64(IO_BITMAP_A, io_bitmap_a),
760 FIELD64(IO_BITMAP_B, io_bitmap_b),
761 FIELD64(MSR_BITMAP, msr_bitmap),
762 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
763 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
764 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
765 FIELD64(TSC_OFFSET, tsc_offset),
766 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
767 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800768 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300769 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800770 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
771 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
772 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
773 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800774 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300775 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
776 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
777 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
778 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
779 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
780 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
781 FIELD64(GUEST_PDPTR0, guest_pdptr0),
782 FIELD64(GUEST_PDPTR1, guest_pdptr1),
783 FIELD64(GUEST_PDPTR2, guest_pdptr2),
784 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100785 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300786 FIELD64(HOST_IA32_PAT, host_ia32_pat),
787 FIELD64(HOST_IA32_EFER, host_ia32_efer),
788 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
789 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
790 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
791 FIELD(EXCEPTION_BITMAP, exception_bitmap),
792 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
793 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
794 FIELD(CR3_TARGET_COUNT, cr3_target_count),
795 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
796 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
797 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
798 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
799 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
800 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
801 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
802 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
803 FIELD(TPR_THRESHOLD, tpr_threshold),
804 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
805 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
806 FIELD(VM_EXIT_REASON, vm_exit_reason),
807 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
808 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
809 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
810 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
811 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
812 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
813 FIELD(GUEST_ES_LIMIT, guest_es_limit),
814 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
815 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
816 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
817 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
818 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
819 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
820 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
821 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
822 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
823 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
824 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
825 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
826 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
827 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
828 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
829 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
830 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
831 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
832 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
833 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
834 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100835 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300836 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
837 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
838 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
839 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
840 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
841 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
842 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
843 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
844 FIELD(EXIT_QUALIFICATION, exit_qualification),
845 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
846 FIELD(GUEST_CR0, guest_cr0),
847 FIELD(GUEST_CR3, guest_cr3),
848 FIELD(GUEST_CR4, guest_cr4),
849 FIELD(GUEST_ES_BASE, guest_es_base),
850 FIELD(GUEST_CS_BASE, guest_cs_base),
851 FIELD(GUEST_SS_BASE, guest_ss_base),
852 FIELD(GUEST_DS_BASE, guest_ds_base),
853 FIELD(GUEST_FS_BASE, guest_fs_base),
854 FIELD(GUEST_GS_BASE, guest_gs_base),
855 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
856 FIELD(GUEST_TR_BASE, guest_tr_base),
857 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
858 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
859 FIELD(GUEST_DR7, guest_dr7),
860 FIELD(GUEST_RSP, guest_rsp),
861 FIELD(GUEST_RIP, guest_rip),
862 FIELD(GUEST_RFLAGS, guest_rflags),
863 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
864 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
865 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
866 FIELD(HOST_CR0, host_cr0),
867 FIELD(HOST_CR3, host_cr3),
868 FIELD(HOST_CR4, host_cr4),
869 FIELD(HOST_FS_BASE, host_fs_base),
870 FIELD(HOST_GS_BASE, host_gs_base),
871 FIELD(HOST_TR_BASE, host_tr_base),
872 FIELD(HOST_GDTR_BASE, host_gdtr_base),
873 FIELD(HOST_IDTR_BASE, host_idtr_base),
874 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
875 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
876 FIELD(HOST_RSP, host_rsp),
877 FIELD(HOST_RIP, host_rip),
878};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300879
880static inline short vmcs_field_to_offset(unsigned long field)
881{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100882 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
883
884 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
885 vmcs_field_to_offset_table[field] == 0)
886 return -ENOENT;
887
Nadav Har'El22bd0352011-05-25 23:05:57 +0300888 return vmcs_field_to_offset_table[field];
889}
890
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300891static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
892{
David Matlack4f2777b2016-07-13 17:16:37 -0700893 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300894}
895
896static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
897{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200898 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800899 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300900 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800901
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300902 return page;
903}
904
905static void nested_release_page(struct page *page)
906{
907 kvm_release_page_dirty(page);
908}
909
910static void nested_release_page_clean(struct page *page)
911{
912 kvm_release_page_clean(page);
913}
914
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300915static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800916static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800917static void kvm_cpu_vmxon(u64 addr);
918static void kvm_cpu_vmxoff(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800919static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200920static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300921static void vmx_set_segment(struct kvm_vcpu *vcpu,
922 struct kvm_segment *var, int seg);
923static void vmx_get_segment(struct kvm_vcpu *vcpu,
924 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200925static bool guest_state_valid(struct kvm_vcpu *vcpu);
926static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300927static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300928static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800929static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300930
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931static DEFINE_PER_CPU(struct vmcs *, vmxarea);
932static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300933/*
934 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
935 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
936 */
937static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300938static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939
Feng Wubf9f6ac2015-09-18 22:29:55 +0800940/*
941 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
942 * can find which vCPU should be waken up.
943 */
944static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
945static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
946
Radim Krčmář23611332016-09-29 22:41:33 +0200947enum {
948 VMX_IO_BITMAP_A,
949 VMX_IO_BITMAP_B,
950 VMX_MSR_BITMAP_LEGACY,
951 VMX_MSR_BITMAP_LONGMODE,
952 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
953 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
954 VMX_MSR_BITMAP_LEGACY_X2APIC,
955 VMX_MSR_BITMAP_LONGMODE_X2APIC,
956 VMX_VMREAD_BITMAP,
957 VMX_VMWRITE_BITMAP,
958 VMX_BITMAP_NR
959};
960
961static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
962
963#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
964#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
965#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
966#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
967#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
968#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
969#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
970#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
971#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
972#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300973
Avi Kivity110312c2010-12-21 12:54:20 +0200974static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200975static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200976
Sheng Yang2384d2b2008-01-17 15:14:33 +0800977static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
978static DEFINE_SPINLOCK(vmx_vpid_lock);
979
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300980static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 int size;
982 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300983 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300985 u32 pin_based_exec_ctrl;
986 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800987 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300988 u32 vmexit_ctrl;
989 u32 vmentry_ctrl;
990} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991
Hannes Ederefff9e52008-11-28 17:02:06 +0100992static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800993 u32 ept;
994 u32 vpid;
995} vmx_capability;
996
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997#define VMX_SEGMENT_FIELD(seg) \
998 [VCPU_SREG_##seg] = { \
999 .selector = GUEST_##seg##_SELECTOR, \
1000 .base = GUEST_##seg##_BASE, \
1001 .limit = GUEST_##seg##_LIMIT, \
1002 .ar_bytes = GUEST_##seg##_AR_BYTES, \
1003 }
1004
Mathias Krause772e0312012-08-30 01:30:19 +02001005static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 unsigned selector;
1007 unsigned base;
1008 unsigned limit;
1009 unsigned ar_bytes;
1010} kvm_vmx_segment_fields[] = {
1011 VMX_SEGMENT_FIELD(CS),
1012 VMX_SEGMENT_FIELD(DS),
1013 VMX_SEGMENT_FIELD(ES),
1014 VMX_SEGMENT_FIELD(FS),
1015 VMX_SEGMENT_FIELD(GS),
1016 VMX_SEGMENT_FIELD(SS),
1017 VMX_SEGMENT_FIELD(TR),
1018 VMX_SEGMENT_FIELD(LDTR),
1019};
1020
Avi Kivity26bb0982009-09-07 11:14:12 +03001021static u64 host_efer;
1022
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001023static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1024
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001025/*
Brian Gerst8c065852010-07-17 09:03:26 -04001026 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001027 * away by decrementing the array size.
1028 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001030#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001031 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001033 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035
Jan Kiszka5bb16012016-02-09 20:14:21 +01001036static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037{
1038 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1039 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001040 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1041}
1042
Jan Kiszka6f054852016-02-09 20:15:18 +01001043static inline bool is_debug(u32 intr_info)
1044{
1045 return is_exception_n(intr_info, DB_VECTOR);
1046}
1047
1048static inline bool is_breakpoint(u32 intr_info)
1049{
1050 return is_exception_n(intr_info, BP_VECTOR);
1051}
1052
Jan Kiszka5bb16012016-02-09 20:14:21 +01001053static inline bool is_page_fault(u32 intr_info)
1054{
1055 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056}
1057
Gui Jianfeng31299942010-03-15 17:29:09 +08001058static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001059{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001060 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001061}
1062
Gui Jianfeng31299942010-03-15 17:29:09 +08001063static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001064{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001065 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001066}
1067
Gui Jianfeng31299942010-03-15 17:29:09 +08001068static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069{
1070 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1071 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1072}
1073
Gui Jianfeng31299942010-03-15 17:29:09 +08001074static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001075{
1076 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1077 INTR_INFO_VALID_MASK)) ==
1078 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1079}
1080
Gui Jianfeng31299942010-03-15 17:29:09 +08001081static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001082{
Sheng Yang04547152009-04-01 15:52:31 +08001083 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001084}
1085
Gui Jianfeng31299942010-03-15 17:29:09 +08001086static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001087{
Sheng Yang04547152009-04-01 15:52:31 +08001088 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001089}
1090
Paolo Bonzini35754c92015-07-29 12:05:37 +02001091static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001092{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001093 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001094}
1095
Gui Jianfeng31299942010-03-15 17:29:09 +08001096static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001097{
Sheng Yang04547152009-04-01 15:52:31 +08001098 return vmcs_config.cpu_based_exec_ctrl &
1099 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001100}
1101
Avi Kivity774ead32007-12-26 13:57:04 +02001102static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001103{
Sheng Yang04547152009-04-01 15:52:31 +08001104 return vmcs_config.cpu_based_2nd_exec_ctrl &
1105 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1106}
1107
Yang Zhang8d146952013-01-25 10:18:50 +08001108static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1109{
1110 return vmcs_config.cpu_based_2nd_exec_ctrl &
1111 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1112}
1113
Yang Zhang83d4c282013-01-25 10:18:49 +08001114static inline bool cpu_has_vmx_apic_register_virt(void)
1115{
1116 return vmcs_config.cpu_based_2nd_exec_ctrl &
1117 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1118}
1119
Yang Zhangc7c9c562013-01-25 10:18:51 +08001120static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1121{
1122 return vmcs_config.cpu_based_2nd_exec_ctrl &
1123 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1124}
1125
Yunhong Jiang64672c92016-06-13 14:19:59 -07001126/*
1127 * Comment's format: document - errata name - stepping - processor name.
1128 * Refer from
1129 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1130 */
1131static u32 vmx_preemption_cpu_tfms[] = {
1132/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11330x000206E6,
1134/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1135/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1136/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11370x00020652,
1138/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11390x00020655,
1140/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1141/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1142/*
1143 * 320767.pdf - AAP86 - B1 -
1144 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1145 */
11460x000106E5,
1147/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11480x000106A0,
1149/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11500x000106A1,
1151/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11520x000106A4,
1153 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1154 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1155 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11560x000106A5,
1157};
1158
1159static inline bool cpu_has_broken_vmx_preemption_timer(void)
1160{
1161 u32 eax = cpuid_eax(0x00000001), i;
1162
1163 /* Clear the reserved bits */
1164 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001165 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001166 if (eax == vmx_preemption_cpu_tfms[i])
1167 return true;
1168
1169 return false;
1170}
1171
1172static inline bool cpu_has_vmx_preemption_timer(void)
1173{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001174 return vmcs_config.pin_based_exec_ctrl &
1175 PIN_BASED_VMX_PREEMPTION_TIMER;
1176}
1177
Yang Zhang01e439b2013-04-11 19:25:12 +08001178static inline bool cpu_has_vmx_posted_intr(void)
1179{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001180 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1181 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001182}
1183
1184static inline bool cpu_has_vmx_apicv(void)
1185{
1186 return cpu_has_vmx_apic_register_virt() &&
1187 cpu_has_vmx_virtual_intr_delivery() &&
1188 cpu_has_vmx_posted_intr();
1189}
1190
Sheng Yang04547152009-04-01 15:52:31 +08001191static inline bool cpu_has_vmx_flexpriority(void)
1192{
1193 return cpu_has_vmx_tpr_shadow() &&
1194 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001195}
1196
Marcelo Tosattie7997942009-06-11 12:07:40 -03001197static inline bool cpu_has_vmx_ept_execute_only(void)
1198{
Gui Jianfeng31299942010-03-15 17:29:09 +08001199 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001200}
1201
Marcelo Tosattie7997942009-06-11 12:07:40 -03001202static inline bool cpu_has_vmx_ept_2m_page(void)
1203{
Gui Jianfeng31299942010-03-15 17:29:09 +08001204 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001205}
1206
Sheng Yang878403b2010-01-05 19:02:29 +08001207static inline bool cpu_has_vmx_ept_1g_page(void)
1208{
Gui Jianfeng31299942010-03-15 17:29:09 +08001209 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001210}
1211
Sheng Yang4bc9b982010-06-02 14:05:24 +08001212static inline bool cpu_has_vmx_ept_4levels(void)
1213{
1214 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1215}
1216
Xudong Hao83c3a332012-05-28 19:33:35 +08001217static inline bool cpu_has_vmx_ept_ad_bits(void)
1218{
1219 return vmx_capability.ept & VMX_EPT_AD_BIT;
1220}
1221
Gui Jianfeng31299942010-03-15 17:29:09 +08001222static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001223{
Gui Jianfeng31299942010-03-15 17:29:09 +08001224 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001225}
1226
Gui Jianfeng31299942010-03-15 17:29:09 +08001227static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001228{
Gui Jianfeng31299942010-03-15 17:29:09 +08001229 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001230}
1231
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001232static inline bool cpu_has_vmx_invvpid_single(void)
1233{
1234 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1235}
1236
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001237static inline bool cpu_has_vmx_invvpid_global(void)
1238{
1239 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1240}
1241
Gui Jianfeng31299942010-03-15 17:29:09 +08001242static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001243{
Sheng Yang04547152009-04-01 15:52:31 +08001244 return vmcs_config.cpu_based_2nd_exec_ctrl &
1245 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001246}
1247
Gui Jianfeng31299942010-03-15 17:29:09 +08001248static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001249{
1250 return vmcs_config.cpu_based_2nd_exec_ctrl &
1251 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1252}
1253
Gui Jianfeng31299942010-03-15 17:29:09 +08001254static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001255{
1256 return vmcs_config.cpu_based_2nd_exec_ctrl &
1257 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1258}
1259
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001260static inline bool cpu_has_vmx_basic_inout(void)
1261{
1262 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1263}
1264
Paolo Bonzini35754c92015-07-29 12:05:37 +02001265static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001266{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001267 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001268}
1269
Gui Jianfeng31299942010-03-15 17:29:09 +08001270static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001271{
Sheng Yang04547152009-04-01 15:52:31 +08001272 return vmcs_config.cpu_based_2nd_exec_ctrl &
1273 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001274}
1275
Gui Jianfeng31299942010-03-15 17:29:09 +08001276static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001277{
1278 return vmcs_config.cpu_based_2nd_exec_ctrl &
1279 SECONDARY_EXEC_RDTSCP;
1280}
1281
Mao, Junjiead756a12012-07-02 01:18:48 +00001282static inline bool cpu_has_vmx_invpcid(void)
1283{
1284 return vmcs_config.cpu_based_2nd_exec_ctrl &
1285 SECONDARY_EXEC_ENABLE_INVPCID;
1286}
1287
Gui Jianfeng31299942010-03-15 17:29:09 +08001288static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001289{
1290 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1291}
1292
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001293static inline bool cpu_has_vmx_wbinvd_exit(void)
1294{
1295 return vmcs_config.cpu_based_2nd_exec_ctrl &
1296 SECONDARY_EXEC_WBINVD_EXITING;
1297}
1298
Abel Gordonabc4fc52013-04-18 14:35:25 +03001299static inline bool cpu_has_vmx_shadow_vmcs(void)
1300{
1301 u64 vmx_msr;
1302 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1303 /* check if the cpu supports writing r/o exit information fields */
1304 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1305 return false;
1306
1307 return vmcs_config.cpu_based_2nd_exec_ctrl &
1308 SECONDARY_EXEC_SHADOW_VMCS;
1309}
1310
Kai Huang843e4332015-01-28 10:54:28 +08001311static inline bool cpu_has_vmx_pml(void)
1312{
1313 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1314}
1315
Haozhong Zhang64903d62015-10-20 15:39:09 +08001316static inline bool cpu_has_vmx_tsc_scaling(void)
1317{
1318 return vmcs_config.cpu_based_2nd_exec_ctrl &
1319 SECONDARY_EXEC_TSC_SCALING;
1320}
1321
Sheng Yang04547152009-04-01 15:52:31 +08001322static inline bool report_flexpriority(void)
1323{
1324 return flexpriority_enabled;
1325}
1326
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001327static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1328{
1329 return vmcs12->cpu_based_vm_exec_control & bit;
1330}
1331
1332static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1333{
1334 return (vmcs12->cpu_based_vm_exec_control &
1335 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1336 (vmcs12->secondary_vm_exec_control & bit);
1337}
1338
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001339static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001340{
1341 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1342}
1343
Jan Kiszkaf41245002014-03-07 20:03:13 +01001344static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1345{
1346 return vmcs12->pin_based_vm_exec_control &
1347 PIN_BASED_VMX_PREEMPTION_TIMER;
1348}
1349
Nadav Har'El155a97a2013-08-05 11:07:16 +03001350static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1351{
1352 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1353}
1354
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001355static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1356{
1357 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1358 vmx_xsaves_supported();
1359}
1360
Wincy Vanf2b93282015-02-03 23:56:03 +08001361static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1362{
1363 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1364}
1365
Wanpeng Li5c614b32015-10-13 09:18:36 -07001366static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1367{
1368 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1369}
1370
Wincy Van82f0dd42015-02-03 23:57:18 +08001371static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1372{
1373 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1374}
1375
Wincy Van608406e2015-02-03 23:57:51 +08001376static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1377{
1378 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1379}
1380
Wincy Van705699a2015-02-03 23:58:17 +08001381static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1382{
1383 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1384}
1385
Jim Mattsonef85b672016-12-12 11:01:37 -08001386static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001387{
1388 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001389 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001390}
1391
Jan Kiszka533558b2014-01-04 18:47:20 +01001392static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1393 u32 exit_intr_info,
1394 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001395static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1396 struct vmcs12 *vmcs12,
1397 u32 reason, unsigned long qualification);
1398
Rusty Russell8b9cf982007-07-30 16:31:43 +10001399static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001400{
1401 int i;
1402
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001403 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001404 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001405 return i;
1406 return -1;
1407}
1408
Sheng Yang2384d2b2008-01-17 15:14:33 +08001409static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1410{
1411 struct {
1412 u64 vpid : 16;
1413 u64 rsvd : 48;
1414 u64 gva;
1415 } operand = { vpid, 0, gva };
1416
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001417 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001418 /* CF==1 or ZF==1 --> rc = -1 */
1419 "; ja 1f ; ud2 ; 1:"
1420 : : "a"(&operand), "c"(ext) : "cc", "memory");
1421}
1422
Sheng Yang14394422008-04-28 12:24:45 +08001423static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1424{
1425 struct {
1426 u64 eptp, gpa;
1427 } operand = {eptp, gpa};
1428
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001429 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001430 /* CF==1 or ZF==1 --> rc = -1 */
1431 "; ja 1f ; ud2 ; 1:\n"
1432 : : "a" (&operand), "c" (ext) : "cc", "memory");
1433}
1434
Avi Kivity26bb0982009-09-07 11:14:12 +03001435static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001436{
1437 int i;
1438
Rusty Russell8b9cf982007-07-30 16:31:43 +10001439 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001440 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001441 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001442 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001443}
1444
Avi Kivity6aa8b732006-12-10 02:21:36 -08001445static void vmcs_clear(struct vmcs *vmcs)
1446{
1447 u64 phys_addr = __pa(vmcs);
1448 u8 error;
1449
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001450 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001451 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452 : "cc", "memory");
1453 if (error)
1454 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1455 vmcs, phys_addr);
1456}
1457
Nadav Har'Eld462b812011-05-24 15:26:10 +03001458static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1459{
1460 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001461 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1462 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001463 loaded_vmcs->cpu = -1;
1464 loaded_vmcs->launched = 0;
1465}
1466
Dongxiao Xu7725b892010-05-11 18:29:38 +08001467static void vmcs_load(struct vmcs *vmcs)
1468{
1469 u64 phys_addr = __pa(vmcs);
1470 u8 error;
1471
1472 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001473 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001474 : "cc", "memory");
1475 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001476 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001477 vmcs, phys_addr);
1478}
1479
Dave Young2965faa2015-09-09 15:38:55 -07001480#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001481/*
1482 * This bitmap is used to indicate whether the vmclear
1483 * operation is enabled on all cpus. All disabled by
1484 * default.
1485 */
1486static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1487
1488static inline void crash_enable_local_vmclear(int cpu)
1489{
1490 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1491}
1492
1493static inline void crash_disable_local_vmclear(int cpu)
1494{
1495 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1496}
1497
1498static inline int crash_local_vmclear_enabled(int cpu)
1499{
1500 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1501}
1502
1503static void crash_vmclear_local_loaded_vmcss(void)
1504{
1505 int cpu = raw_smp_processor_id();
1506 struct loaded_vmcs *v;
1507
1508 if (!crash_local_vmclear_enabled(cpu))
1509 return;
1510
1511 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1512 loaded_vmcss_on_cpu_link)
1513 vmcs_clear(v->vmcs);
1514}
1515#else
1516static inline void crash_enable_local_vmclear(int cpu) { }
1517static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001518#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001519
Nadav Har'Eld462b812011-05-24 15:26:10 +03001520static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001522 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001523 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524
Nadav Har'Eld462b812011-05-24 15:26:10 +03001525 if (loaded_vmcs->cpu != cpu)
1526 return; /* vcpu migration can race with cpu offline */
1527 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001528 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001529 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001530 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001531
1532 /*
1533 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1534 * is before setting loaded_vmcs->vcpu to -1 which is done in
1535 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1536 * then adds the vmcs into percpu list before it is deleted.
1537 */
1538 smp_wmb();
1539
Nadav Har'Eld462b812011-05-24 15:26:10 +03001540 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001541 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542}
1543
Nadav Har'Eld462b812011-05-24 15:26:10 +03001544static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001545{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001546 int cpu = loaded_vmcs->cpu;
1547
1548 if (cpu != -1)
1549 smp_call_function_single(cpu,
1550 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001551}
1552
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001553static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001554{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001555 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001556 return;
1557
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001558 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001559 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001560}
1561
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001562static inline void vpid_sync_vcpu_global(void)
1563{
1564 if (cpu_has_vmx_invvpid_global())
1565 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1566}
1567
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001568static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001569{
1570 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001571 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001572 else
1573 vpid_sync_vcpu_global();
1574}
1575
Sheng Yang14394422008-04-28 12:24:45 +08001576static inline void ept_sync_global(void)
1577{
1578 if (cpu_has_vmx_invept_global())
1579 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1580}
1581
1582static inline void ept_sync_context(u64 eptp)
1583{
Avi Kivity089d0342009-03-23 18:26:32 +02001584 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001585 if (cpu_has_vmx_invept_context())
1586 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1587 else
1588 ept_sync_global();
1589 }
1590}
1591
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001592static __always_inline void vmcs_check16(unsigned long field)
1593{
1594 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1595 "16-bit accessor invalid for 64-bit field");
1596 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1597 "16-bit accessor invalid for 64-bit high field");
1598 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1599 "16-bit accessor invalid for 32-bit high field");
1600 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1601 "16-bit accessor invalid for natural width field");
1602}
1603
1604static __always_inline void vmcs_check32(unsigned long field)
1605{
1606 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1607 "32-bit accessor invalid for 16-bit field");
1608 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1609 "32-bit accessor invalid for natural width field");
1610}
1611
1612static __always_inline void vmcs_check64(unsigned long field)
1613{
1614 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1615 "64-bit accessor invalid for 16-bit field");
1616 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1617 "64-bit accessor invalid for 64-bit high field");
1618 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1619 "64-bit accessor invalid for 32-bit field");
1620 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1621 "64-bit accessor invalid for natural width field");
1622}
1623
1624static __always_inline void vmcs_checkl(unsigned long field)
1625{
1626 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1627 "Natural width accessor invalid for 16-bit field");
1628 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1629 "Natural width accessor invalid for 64-bit field");
1630 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1631 "Natural width accessor invalid for 64-bit high field");
1632 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1633 "Natural width accessor invalid for 32-bit field");
1634}
1635
1636static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637{
Avi Kivity5e520e62011-05-15 10:13:12 -04001638 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639
Avi Kivity5e520e62011-05-15 10:13:12 -04001640 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1641 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642 return value;
1643}
1644
Avi Kivity96304212011-05-15 10:13:13 -04001645static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001647 vmcs_check16(field);
1648 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649}
1650
Avi Kivity96304212011-05-15 10:13:13 -04001651static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001653 vmcs_check32(field);
1654 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655}
1656
Avi Kivity96304212011-05-15 10:13:13 -04001657static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001659 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001660#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001661 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001662#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001663 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664#endif
1665}
1666
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001667static __always_inline unsigned long vmcs_readl(unsigned long field)
1668{
1669 vmcs_checkl(field);
1670 return __vmcs_readl(field);
1671}
1672
Avi Kivitye52de1b2007-01-05 16:36:56 -08001673static noinline void vmwrite_error(unsigned long field, unsigned long value)
1674{
1675 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1676 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1677 dump_stack();
1678}
1679
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001680static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681{
1682 u8 error;
1683
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001684 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001685 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001686 if (unlikely(error))
1687 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688}
1689
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001690static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001692 vmcs_check16(field);
1693 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001694}
1695
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001696static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001698 vmcs_check32(field);
1699 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700}
1701
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001702static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001704 vmcs_check64(field);
1705 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001706#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001708 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709#endif
1710}
1711
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001712static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001713{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001714 vmcs_checkl(field);
1715 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001716}
1717
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001718static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001719{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001720 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1721 "vmcs_clear_bits does not support 64-bit fields");
1722 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1723}
1724
1725static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1726{
1727 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1728 "vmcs_set_bits does not support 64-bit fields");
1729 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001730}
1731
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001732static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1733{
1734 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1735}
1736
Gleb Natapov2961e8762013-11-25 15:37:13 +02001737static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1738{
1739 vmcs_write32(VM_ENTRY_CONTROLS, val);
1740 vmx->vm_entry_controls_shadow = val;
1741}
1742
1743static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1744{
1745 if (vmx->vm_entry_controls_shadow != val)
1746 vm_entry_controls_init(vmx, val);
1747}
1748
1749static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1750{
1751 return vmx->vm_entry_controls_shadow;
1752}
1753
1754
1755static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1756{
1757 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1758}
1759
1760static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1761{
1762 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1763}
1764
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001765static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1766{
1767 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1768}
1769
Gleb Natapov2961e8762013-11-25 15:37:13 +02001770static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1771{
1772 vmcs_write32(VM_EXIT_CONTROLS, val);
1773 vmx->vm_exit_controls_shadow = val;
1774}
1775
1776static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1777{
1778 if (vmx->vm_exit_controls_shadow != val)
1779 vm_exit_controls_init(vmx, val);
1780}
1781
1782static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1783{
1784 return vmx->vm_exit_controls_shadow;
1785}
1786
1787
1788static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1789{
1790 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1791}
1792
1793static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1794{
1795 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1796}
1797
Avi Kivity2fb92db2011-04-27 19:42:18 +03001798static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1799{
1800 vmx->segment_cache.bitmask = 0;
1801}
1802
1803static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1804 unsigned field)
1805{
1806 bool ret;
1807 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1808
1809 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1810 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1811 vmx->segment_cache.bitmask = 0;
1812 }
1813 ret = vmx->segment_cache.bitmask & mask;
1814 vmx->segment_cache.bitmask |= mask;
1815 return ret;
1816}
1817
1818static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1819{
1820 u16 *p = &vmx->segment_cache.seg[seg].selector;
1821
1822 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1823 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1824 return *p;
1825}
1826
1827static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1828{
1829 ulong *p = &vmx->segment_cache.seg[seg].base;
1830
1831 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1832 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1833 return *p;
1834}
1835
1836static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1837{
1838 u32 *p = &vmx->segment_cache.seg[seg].limit;
1839
1840 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1841 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1842 return *p;
1843}
1844
1845static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1846{
1847 u32 *p = &vmx->segment_cache.seg[seg].ar;
1848
1849 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1850 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1851 return *p;
1852}
1853
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001854static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1855{
1856 u32 eb;
1857
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001858 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001859 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001860 if ((vcpu->guest_debug &
1861 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1862 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1863 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001864 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001865 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001866 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001867 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001868
1869 /* When we are running a nested L2 guest and L1 specified for it a
1870 * certain exception bitmap, we must trap the same exceptions and pass
1871 * them to L1. When running L2, we will only handle the exceptions
1872 * specified above if L1 did not want them.
1873 */
1874 if (is_guest_mode(vcpu))
1875 eb |= get_vmcs12(vcpu)->exception_bitmap;
1876
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001877 vmcs_write32(EXCEPTION_BITMAP, eb);
1878}
1879
Gleb Natapov2961e8762013-11-25 15:37:13 +02001880static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1881 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001882{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001883 vm_entry_controls_clearbit(vmx, entry);
1884 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001885}
1886
Avi Kivity61d2ef22010-04-28 16:40:38 +03001887static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1888{
1889 unsigned i;
1890 struct msr_autoload *m = &vmx->msr_autoload;
1891
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001892 switch (msr) {
1893 case MSR_EFER:
1894 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001895 clear_atomic_switch_msr_special(vmx,
1896 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001897 VM_EXIT_LOAD_IA32_EFER);
1898 return;
1899 }
1900 break;
1901 case MSR_CORE_PERF_GLOBAL_CTRL:
1902 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001903 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001904 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1905 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1906 return;
1907 }
1908 break;
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
1915 if (i == m->nr)
1916 return;
1917 --m->nr;
1918 m->guest[i] = m->guest[m->nr];
1919 m->host[i] = m->host[m->nr];
1920 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1921 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1922}
1923
Gleb Natapov2961e8762013-11-25 15:37:13 +02001924static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1925 unsigned long entry, unsigned long exit,
1926 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1927 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001928{
1929 vmcs_write64(guest_val_vmcs, guest_val);
1930 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001931 vm_entry_controls_setbit(vmx, entry);
1932 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001933}
1934
Avi Kivity61d2ef22010-04-28 16:40:38 +03001935static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1936 u64 guest_val, u64 host_val)
1937{
1938 unsigned i;
1939 struct msr_autoload *m = &vmx->msr_autoload;
1940
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001941 switch (msr) {
1942 case MSR_EFER:
1943 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001944 add_atomic_switch_msr_special(vmx,
1945 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001946 VM_EXIT_LOAD_IA32_EFER,
1947 GUEST_IA32_EFER,
1948 HOST_IA32_EFER,
1949 guest_val, host_val);
1950 return;
1951 }
1952 break;
1953 case MSR_CORE_PERF_GLOBAL_CTRL:
1954 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001955 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001956 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1957 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1958 GUEST_IA32_PERF_GLOBAL_CTRL,
1959 HOST_IA32_PERF_GLOBAL_CTRL,
1960 guest_val, host_val);
1961 return;
1962 }
1963 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001964 case MSR_IA32_PEBS_ENABLE:
1965 /* PEBS needs a quiescent period after being disabled (to write
1966 * a record). Disabling PEBS through VMX MSR swapping doesn't
1967 * provide that period, so a CPU could write host's record into
1968 * guest's memory.
1969 */
1970 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001971 }
1972
Avi Kivity61d2ef22010-04-28 16:40:38 +03001973 for (i = 0; i < m->nr; ++i)
1974 if (m->guest[i].index == msr)
1975 break;
1976
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001977 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001978 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001979 "Can't add msr %x\n", msr);
1980 return;
1981 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001982 ++m->nr;
1983 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1984 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1985 }
1986
1987 m->guest[i].index = msr;
1988 m->guest[i].value = guest_val;
1989 m->host[i].index = msr;
1990 m->host[i].value = host_val;
1991}
1992
Avi Kivity33ed6322007-05-02 16:54:03 +03001993static void reload_tss(void)
1994{
Avi Kivity33ed6322007-05-02 16:54:03 +03001995 /*
1996 * VT restores TR but not its size. Useless.
1997 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001998 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001999 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03002000
Avi Kivityd3591922010-07-26 18:32:39 +03002001 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03002002 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
2003 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03002004}
2005
Avi Kivity92c0d902009-10-29 11:00:16 +02002006static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002007{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002008 u64 guest_efer = vmx->vcpu.arch.efer;
2009 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002010
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002011 if (!enable_ept) {
2012 /*
2013 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2014 * host CPUID is more efficient than testing guest CPUID
2015 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2016 */
2017 if (boot_cpu_has(X86_FEATURE_SMEP))
2018 guest_efer |= EFER_NX;
2019 else if (!(guest_efer & EFER_NX))
2020 ignore_bits |= EFER_NX;
2021 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002022
Avi Kivity51c6cf62007-08-29 03:48:05 +03002023 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002024 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002025 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002026 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002027#ifdef CONFIG_X86_64
2028 ignore_bits |= EFER_LMA | EFER_LME;
2029 /* SCE is meaningful only in long mode on Intel */
2030 if (guest_efer & EFER_LMA)
2031 ignore_bits &= ~(u64)EFER_SCE;
2032#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002033
2034 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002035
2036 /*
2037 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2038 * On CPUs that support "load IA32_EFER", always switch EFER
2039 * atomically, since it's faster than switching it manually.
2040 */
2041 if (cpu_has_load_ia32_efer ||
2042 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002043 if (!(guest_efer & EFER_LMA))
2044 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002045 if (guest_efer != host_efer)
2046 add_atomic_switch_msr(vmx, MSR_EFER,
2047 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002048 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002049 } else {
2050 guest_efer &= ~ignore_bits;
2051 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002052
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002053 vmx->guest_msrs[efer_offset].data = guest_efer;
2054 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2055
2056 return true;
2057 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002058}
2059
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002060#ifdef CONFIG_X86_32
2061/*
2062 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2063 * VMCS rather than the segment table. KVM uses this helper to figure
2064 * out the current bases to poke them into the VMCS before entry.
2065 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002066static unsigned long segment_base(u16 selector)
2067{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002068 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002069 struct desc_struct *d;
2070 unsigned long table_base;
2071 unsigned long v;
2072
2073 if (!(selector & ~3))
2074 return 0;
2075
Avi Kivityd3591922010-07-26 18:32:39 +03002076 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002077
2078 if (selector & 4) { /* from ldt */
2079 u16 ldt_selector = kvm_read_ldt();
2080
2081 if (!(ldt_selector & ~3))
2082 return 0;
2083
2084 table_base = segment_base(ldt_selector);
2085 }
2086 d = (struct desc_struct *)(table_base + (selector & ~7));
2087 v = get_desc_base(d);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002088 return v;
2089}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002090#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002091
Avi Kivity04d2cc72007-09-10 18:10:54 +03002092static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002093{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002094 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002095 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002096
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002097 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002098 return;
2099
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002100 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002101 /*
2102 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2103 * allow segment selectors with cpl > 0 or ti == 1.
2104 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002105 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002106 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002107 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002108 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002109 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002110 vmx->host_state.fs_reload_needed = 0;
2111 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002112 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002113 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002114 }
Avi Kivity9581d442010-10-19 16:46:55 +02002115 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002116 if (!(vmx->host_state.gs_sel & 7))
2117 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002118 else {
2119 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002120 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002121 }
2122
2123#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002124 savesegment(ds, vmx->host_state.ds_sel);
2125 savesegment(es, vmx->host_state.es_sel);
2126#endif
2127
2128#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002129 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2130 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2131#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002132 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2133 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002134#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002135
2136#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002137 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2138 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002139 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002140#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002141 if (boot_cpu_has(X86_FEATURE_MPX))
2142 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002143 for (i = 0; i < vmx->save_nmsrs; ++i)
2144 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002145 vmx->guest_msrs[i].data,
2146 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002147}
2148
Avi Kivitya9b21b62008-06-24 11:48:49 +03002149static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002150{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002151 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002152 return;
2153
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002154 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002155 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002156#ifdef CONFIG_X86_64
2157 if (is_long_mode(&vmx->vcpu))
2158 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2159#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002160 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002161 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002162#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002163 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002164#else
2165 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002166#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002167 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002168 if (vmx->host_state.fs_reload_needed)
2169 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002170#ifdef CONFIG_X86_64
2171 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2172 loadsegment(ds, vmx->host_state.ds_sel);
2173 loadsegment(es, vmx->host_state.es_sel);
2174 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002175#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002176 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002177#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002178 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002179#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002180 if (vmx->host_state.msr_host_bndcfgs)
2181 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Christoph Lameter89cbc762014-08-17 12:30:40 -05002182 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002183}
2184
Avi Kivitya9b21b62008-06-24 11:48:49 +03002185static void vmx_load_host_state(struct vcpu_vmx *vmx)
2186{
2187 preempt_disable();
2188 __vmx_load_host_state(vmx);
2189 preempt_enable();
2190}
2191
Feng Wu28b835d2015-09-18 22:29:54 +08002192static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2193{
2194 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2195 struct pi_desc old, new;
2196 unsigned int dest;
2197
2198 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002199 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2200 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002201 return;
2202
2203 do {
2204 old.control = new.control = pi_desc->control;
2205
2206 /*
2207 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2208 * are two possible cases:
2209 * 1. After running 'pre_block', context switch
2210 * happened. For this case, 'sn' was set in
2211 * vmx_vcpu_put(), so we need to clear it here.
2212 * 2. After running 'pre_block', we were blocked,
2213 * and woken up by some other guy. For this case,
2214 * we don't need to do anything, 'pi_post_block'
2215 * will do everything for us. However, we cannot
2216 * check whether it is case #1 or case #2 here
2217 * (maybe, not needed), so we also clear sn here,
2218 * I think it is not a big deal.
2219 */
2220 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2221 if (vcpu->cpu != cpu) {
2222 dest = cpu_physical_id(cpu);
2223
2224 if (x2apic_enabled())
2225 new.ndst = dest;
2226 else
2227 new.ndst = (dest << 8) & 0xFF00;
2228 }
2229
2230 /* set 'NV' to 'notification vector' */
2231 new.nv = POSTED_INTR_VECTOR;
2232 }
2233
2234 /* Allow posting non-urgent interrupts */
2235 new.sn = 0;
2236 } while (cmpxchg(&pi_desc->control, old.control,
2237 new.control) != old.control);
2238}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002239
Peter Feinerc95ba922016-08-17 09:36:47 -07002240static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2241{
2242 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2243 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2244}
2245
Avi Kivity6aa8b732006-12-10 02:21:36 -08002246/*
2247 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2248 * vcpu mutex is already taken.
2249 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002250static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002252 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002253 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002254 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002256 if (!vmm_exclusive)
2257 kvm_cpu_vmxon(phys_addr);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002258 else if (!already_loaded)
Nadav Har'Eld462b812011-05-24 15:26:10 +03002259 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002261 if (!already_loaded) {
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002262 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002263 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002264
2265 /*
2266 * Read loaded_vmcs->cpu should be before fetching
2267 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2268 * See the comments in __loaded_vmcs_clear().
2269 */
2270 smp_rmb();
2271
Nadav Har'Eld462b812011-05-24 15:26:10 +03002272 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2273 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002274 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002275 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002276 }
2277
2278 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2279 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2280 vmcs_load(vmx->loaded_vmcs->vmcs);
2281 }
2282
2283 if (!already_loaded) {
2284 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
2285 unsigned long sysenter_esp;
2286
2287 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002288
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 /*
2290 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002291 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002292 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002293 vmcs_writel(HOST_TR_BASE,
2294 (unsigned long)this_cpu_ptr(&cpu_tss));
2295 vmcs_writel(HOST_GDTR_BASE, gdt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296
2297 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2298 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002299
Nadav Har'Eld462b812011-05-24 15:26:10 +03002300 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301 }
Feng Wu28b835d2015-09-18 22:29:54 +08002302
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002303 /* Setup TSC multiplier */
2304 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002305 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2306 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002307
Feng Wu28b835d2015-09-18 22:29:54 +08002308 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002309 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002310}
2311
2312static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2313{
2314 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2315
2316 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002317 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2318 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002319 return;
2320
2321 /* Set SN when the vCPU is preempted */
2322 if (vcpu->preempted)
2323 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324}
2325
2326static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2327{
Feng Wu28b835d2015-09-18 22:29:54 +08002328 vmx_vcpu_pi_put(vcpu);
2329
Avi Kivitya9b21b62008-06-24 11:48:49 +03002330 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002331 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002332 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2333 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002334 kvm_cpu_vmxoff();
2335 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336}
2337
Avi Kivityedcafe32009-12-30 18:07:40 +02002338static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2339
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002340/*
2341 * Return the cr0 value that a nested guest would read. This is a combination
2342 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2343 * its hypervisor (cr0_read_shadow).
2344 */
2345static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2346{
2347 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2348 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2349}
2350static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2351{
2352 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2353 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2354}
2355
Avi Kivity6aa8b732006-12-10 02:21:36 -08002356static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2357{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002358 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002359
Avi Kivity6de12732011-03-07 12:51:22 +02002360 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2361 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2362 rflags = vmcs_readl(GUEST_RFLAGS);
2363 if (to_vmx(vcpu)->rmode.vm86_active) {
2364 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2365 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2366 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2367 }
2368 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002369 }
Avi Kivity6de12732011-03-07 12:51:22 +02002370 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371}
2372
2373static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2374{
Avi Kivity6de12732011-03-07 12:51:22 +02002375 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2376 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002377 if (to_vmx(vcpu)->rmode.vm86_active) {
2378 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002379 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002380 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381 vmcs_writel(GUEST_RFLAGS, rflags);
2382}
2383
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002384static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2385{
2386 return to_vmx(vcpu)->guest_pkru;
2387}
2388
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002389static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002390{
2391 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2392 int ret = 0;
2393
2394 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002395 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002396 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002397 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002398
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002399 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002400}
2401
2402static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2403{
2404 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2405 u32 interruptibility = interruptibility_old;
2406
2407 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2408
Jan Kiszka48005f62010-02-19 19:38:07 +01002409 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002410 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002411 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002412 interruptibility |= GUEST_INTR_STATE_STI;
2413
2414 if ((interruptibility != interruptibility_old))
2415 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2416}
2417
Avi Kivity6aa8b732006-12-10 02:21:36 -08002418static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2419{
2420 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002421
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002422 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002424 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002425
Glauber Costa2809f5d2009-05-12 16:21:05 -04002426 /* skipping an emulated instruction also counts */
2427 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002428}
2429
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002430/*
2431 * KVM wants to inject page-faults which it got to the guest. This function
2432 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002433 */
Gleb Natapove011c662013-09-25 12:51:35 +03002434static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002435{
2436 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2437
Gleb Natapove011c662013-09-25 12:51:35 +03002438 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002439 return 0;
2440
Jan Kiszka533558b2014-01-04 18:47:20 +01002441 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2442 vmcs_read32(VM_EXIT_INTR_INFO),
2443 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002444 return 1;
2445}
2446
Avi Kivity298101d2007-11-25 13:41:11 +02002447static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002448 bool has_error_code, u32 error_code,
2449 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002450{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002451 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002452 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002453
Gleb Natapove011c662013-09-25 12:51:35 +03002454 if (!reinject && is_guest_mode(vcpu) &&
2455 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002456 return;
2457
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002458 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002459 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002460 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2461 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002462
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002463 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002464 int inc_eip = 0;
2465 if (kvm_exception_is_soft(nr))
2466 inc_eip = vcpu->arch.event_exit_inst_len;
2467 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002468 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002469 return;
2470 }
2471
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002472 if (kvm_exception_is_soft(nr)) {
2473 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2474 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002475 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2476 } else
2477 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2478
2479 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002480}
2481
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002482static bool vmx_rdtscp_supported(void)
2483{
2484 return cpu_has_vmx_rdtscp();
2485}
2486
Mao, Junjiead756a12012-07-02 01:18:48 +00002487static bool vmx_invpcid_supported(void)
2488{
2489 return cpu_has_vmx_invpcid() && enable_ept;
2490}
2491
Avi Kivity6aa8b732006-12-10 02:21:36 -08002492/*
Eddie Donga75beee2007-05-17 18:55:15 +03002493 * Swap MSR entry in host/guest MSR entry array.
2494 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002495static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002496{
Avi Kivity26bb0982009-09-07 11:14:12 +03002497 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002498
2499 tmp = vmx->guest_msrs[to];
2500 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2501 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002502}
2503
Yang Zhang8d146952013-01-25 10:18:50 +08002504static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2505{
2506 unsigned long *msr_bitmap;
2507
Wincy Van670125b2015-03-04 14:31:56 +08002508 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002509 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002510 else if (cpu_has_secondary_exec_ctrls() &&
2511 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2512 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002513 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2514 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002515 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2516 else
2517 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2518 } else {
2519 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002520 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2521 else
2522 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002523 }
Yang Zhang8d146952013-01-25 10:18:50 +08002524 } else {
2525 if (is_long_mode(vcpu))
2526 msr_bitmap = vmx_msr_bitmap_longmode;
2527 else
2528 msr_bitmap = vmx_msr_bitmap_legacy;
2529 }
2530
2531 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2532}
2533
Eddie Donga75beee2007-05-17 18:55:15 +03002534/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002535 * Set up the vmcs to automatically save and restore system
2536 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2537 * mode, as fiddling with msrs is very expensive.
2538 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002539static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002540{
Avi Kivity26bb0982009-09-07 11:14:12 +03002541 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002542
Eddie Donga75beee2007-05-17 18:55:15 +03002543 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002544#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002545 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002546 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002547 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002548 move_msr_up(vmx, index, save_nmsrs++);
2549 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002550 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002551 move_msr_up(vmx, index, save_nmsrs++);
2552 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002553 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002554 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002555 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002556 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002557 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002558 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002559 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002560 * if efer.sce is enabled.
2561 */
Brian Gerst8c065852010-07-17 09:03:26 -04002562 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002563 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002564 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002565 }
Eddie Donga75beee2007-05-17 18:55:15 +03002566#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002567 index = __find_msr_index(vmx, MSR_EFER);
2568 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002569 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002570
Avi Kivity26bb0982009-09-07 11:14:12 +03002571 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002572
Yang Zhang8d146952013-01-25 10:18:50 +08002573 if (cpu_has_vmx_msr_bitmap())
2574 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002575}
2576
2577/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002579 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2580 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002582static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583{
2584 u64 host_tsc, tsc_offset;
2585
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002586 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002588 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589}
2590
2591/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002592 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002594static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002596 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002597 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002598 * We're here if L1 chose not to trap WRMSR to TSC. According
2599 * to the spec, this should set L1's TSC; The offset that L1
2600 * set for L2 remains unchanged, and still needs to be added
2601 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002602 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002603 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002604 /* recalculate vmcs02.TSC_OFFSET: */
2605 vmcs12 = get_vmcs12(vcpu);
2606 vmcs_write64(TSC_OFFSET, offset +
2607 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2608 vmcs12->tsc_offset : 0));
2609 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002610 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2611 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002612 vmcs_write64(TSC_OFFSET, offset);
2613 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614}
2615
Nadav Har'El801d3422011-05-25 23:02:23 +03002616static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2617{
2618 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2619 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2620}
2621
2622/*
2623 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2624 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2625 * all guests if the "nested" module option is off, and can also be disabled
2626 * for a single guest by disabling its VMX cpuid bit.
2627 */
2628static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2629{
2630 return nested && guest_cpuid_has_vmx(vcpu);
2631}
2632
Avi Kivity6aa8b732006-12-10 02:21:36 -08002633/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002634 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2635 * returned for the various VMX controls MSRs when nested VMX is enabled.
2636 * The same values should also be used to verify that vmcs12 control fields are
2637 * valid during nested entry from L1 to L2.
2638 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2639 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2640 * bit in the high half is on if the corresponding bit in the control field
2641 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002642 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002643static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002644{
2645 /*
2646 * Note that as a general rule, the high half of the MSRs (bits in
2647 * the control fields which may be 1) should be initialized by the
2648 * intersection of the underlying hardware's MSR (i.e., features which
2649 * can be supported) and the list of features we want to expose -
2650 * because they are known to be properly supported in our code.
2651 * Also, usually, the low half of the MSRs (bits which must be 1) can
2652 * be set to 0, meaning that L1 may turn off any of these bits. The
2653 * reason is that if one of these bits is necessary, it will appear
2654 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2655 * fields of vmcs01 and vmcs02, will turn these bits off - and
2656 * nested_vmx_exit_handled() will not pass related exits to L1.
2657 * These rules have exceptions below.
2658 */
2659
2660 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002661 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002662 vmx->nested.nested_vmx_pinbased_ctls_low,
2663 vmx->nested.nested_vmx_pinbased_ctls_high);
2664 vmx->nested.nested_vmx_pinbased_ctls_low |=
2665 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2666 vmx->nested.nested_vmx_pinbased_ctls_high &=
2667 PIN_BASED_EXT_INTR_MASK |
2668 PIN_BASED_NMI_EXITING |
2669 PIN_BASED_VIRTUAL_NMIS;
2670 vmx->nested.nested_vmx_pinbased_ctls_high |=
2671 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002672 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002673 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002674 vmx->nested.nested_vmx_pinbased_ctls_high |=
2675 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002676
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002677 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002678 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002679 vmx->nested.nested_vmx_exit_ctls_low,
2680 vmx->nested.nested_vmx_exit_ctls_high);
2681 vmx->nested.nested_vmx_exit_ctls_low =
2682 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002683
Wincy Vanb9c237b2015-02-03 23:56:30 +08002684 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002685#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002686 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002687#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002688 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002689 vmx->nested.nested_vmx_exit_ctls_high |=
2690 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002691 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002692 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2693
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002694 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002695 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002696
Jan Kiszka2996fca2014-06-16 13:59:43 +02002697 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002698 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002699
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002700 /* entry controls */
2701 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002702 vmx->nested.nested_vmx_entry_ctls_low,
2703 vmx->nested.nested_vmx_entry_ctls_high);
2704 vmx->nested.nested_vmx_entry_ctls_low =
2705 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2706 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002707#ifdef CONFIG_X86_64
2708 VM_ENTRY_IA32E_MODE |
2709#endif
2710 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002711 vmx->nested.nested_vmx_entry_ctls_high |=
2712 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002713 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002714 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002715
Jan Kiszka2996fca2014-06-16 13:59:43 +02002716 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002717 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002718
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002719 /* cpu-based controls */
2720 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002721 vmx->nested.nested_vmx_procbased_ctls_low,
2722 vmx->nested.nested_vmx_procbased_ctls_high);
2723 vmx->nested.nested_vmx_procbased_ctls_low =
2724 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2725 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002726 CPU_BASED_VIRTUAL_INTR_PENDING |
2727 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002728 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2729 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2730 CPU_BASED_CR3_STORE_EXITING |
2731#ifdef CONFIG_X86_64
2732 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2733#endif
2734 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002735 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2736 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2737 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2738 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002739 /*
2740 * We can allow some features even when not supported by the
2741 * hardware. For example, L1 can specify an MSR bitmap - and we
2742 * can use it to avoid exits to L1 - even when L0 runs L2
2743 * without MSR bitmaps.
2744 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002745 vmx->nested.nested_vmx_procbased_ctls_high |=
2746 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002747 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002748
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002749 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002750 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002751 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2752
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002753 /* secondary cpu-based controls */
2754 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002755 vmx->nested.nested_vmx_secondary_ctls_low,
2756 vmx->nested.nested_vmx_secondary_ctls_high);
2757 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2758 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002759 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002760 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002761 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002762 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002763 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002764 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002765 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002766 SECONDARY_EXEC_WBINVD_EXITING |
Dan Williamsdfa169b2016-06-02 11:17:24 -07002767 SECONDARY_EXEC_XSAVES;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002768
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002769 if (enable_ept) {
2770 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002771 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002772 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002773 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002774 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2775 VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002776 if (cpu_has_vmx_ept_execute_only())
2777 vmx->nested.nested_vmx_ept_caps |=
2778 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002779 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002780 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
2781 VMX_EPT_EXTENT_CONTEXT_BIT;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002782 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002783 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002784
Paolo Bonzinief697a72016-03-18 16:58:38 +01002785 /*
2786 * Old versions of KVM use the single-context version without
2787 * checking for support, so declare that it is supported even
2788 * though it is treated as global context. The alternative is
2789 * not failing the single-context invvpid, and it is worse.
2790 */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002791 if (enable_vpid)
2792 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002793 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002794 else
2795 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002796
Radim Krčmář0790ec12015-03-17 14:02:32 +01002797 if (enable_unrestricted_guest)
2798 vmx->nested.nested_vmx_secondary_ctls_high |=
2799 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2800
Jan Kiszkac18911a2013-03-13 16:06:41 +01002801 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002802 rdmsr(MSR_IA32_VMX_MISC,
2803 vmx->nested.nested_vmx_misc_low,
2804 vmx->nested.nested_vmx_misc_high);
2805 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2806 vmx->nested.nested_vmx_misc_low |=
2807 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002808 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002809 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002810
2811 /*
2812 * This MSR reports some information about VMX support. We
2813 * should return information about the VMX we emulate for the
2814 * guest, and the VMCS structure we give it - not about the
2815 * VMX support of the underlying hardware.
2816 */
2817 vmx->nested.nested_vmx_basic =
2818 VMCS12_REVISION |
2819 VMX_BASIC_TRUE_CTLS |
2820 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2821 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2822
2823 if (cpu_has_vmx_basic_inout())
2824 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2825
2826 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002827 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002828 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2829 * We picked the standard core2 setting.
2830 */
2831#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2832#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2833 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002834 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002835
2836 /* These MSRs specify bits which the guest must keep fixed off. */
2837 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2838 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002839
2840 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2841 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002842}
2843
David Matlack38991522016-11-29 18:14:08 -08002844/*
2845 * if fixed0[i] == 1: val[i] must be 1
2846 * if fixed1[i] == 0: val[i] must be 0
2847 */
2848static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2849{
2850 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002851}
2852
2853static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2854{
David Matlack38991522016-11-29 18:14:08 -08002855 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002856}
2857
2858static inline u64 vmx_control_msr(u32 low, u32 high)
2859{
2860 return low | ((u64)high << 32);
2861}
2862
David Matlack62cc6b9d2016-11-29 18:14:07 -08002863static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2864{
2865 superset &= mask;
2866 subset &= mask;
2867
2868 return (superset | subset) == superset;
2869}
2870
2871static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2872{
2873 const u64 feature_and_reserved =
2874 /* feature (except bit 48; see below) */
2875 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2876 /* reserved */
2877 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2878 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2879
2880 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2881 return -EINVAL;
2882
2883 /*
2884 * KVM does not emulate a version of VMX that constrains physical
2885 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2886 */
2887 if (data & BIT_ULL(48))
2888 return -EINVAL;
2889
2890 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2891 vmx_basic_vmcs_revision_id(data))
2892 return -EINVAL;
2893
2894 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2895 return -EINVAL;
2896
2897 vmx->nested.nested_vmx_basic = data;
2898 return 0;
2899}
2900
2901static int
2902vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2903{
2904 u64 supported;
2905 u32 *lowp, *highp;
2906
2907 switch (msr_index) {
2908 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2909 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2910 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2911 break;
2912 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2913 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2914 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2915 break;
2916 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2917 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2918 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2919 break;
2920 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2921 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2922 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2923 break;
2924 case MSR_IA32_VMX_PROCBASED_CTLS2:
2925 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
2926 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
2927 break;
2928 default:
2929 BUG();
2930 }
2931
2932 supported = vmx_control_msr(*lowp, *highp);
2933
2934 /* Check must-be-1 bits are still 1. */
2935 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
2936 return -EINVAL;
2937
2938 /* Check must-be-0 bits are still 0. */
2939 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
2940 return -EINVAL;
2941
2942 *lowp = data;
2943 *highp = data >> 32;
2944 return 0;
2945}
2946
2947static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
2948{
2949 const u64 feature_and_reserved_bits =
2950 /* feature */
2951 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
2952 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
2953 /* reserved */
2954 GENMASK_ULL(13, 9) | BIT_ULL(31);
2955 u64 vmx_misc;
2956
2957 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
2958 vmx->nested.nested_vmx_misc_high);
2959
2960 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
2961 return -EINVAL;
2962
2963 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
2964 PIN_BASED_VMX_PREEMPTION_TIMER) &&
2965 vmx_misc_preemption_timer_rate(data) !=
2966 vmx_misc_preemption_timer_rate(vmx_misc))
2967 return -EINVAL;
2968
2969 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
2970 return -EINVAL;
2971
2972 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
2973 return -EINVAL;
2974
2975 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
2976 return -EINVAL;
2977
2978 vmx->nested.nested_vmx_misc_low = data;
2979 vmx->nested.nested_vmx_misc_high = data >> 32;
2980 return 0;
2981}
2982
2983static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
2984{
2985 u64 vmx_ept_vpid_cap;
2986
2987 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
2988 vmx->nested.nested_vmx_vpid_caps);
2989
2990 /* Every bit is either reserved or a feature bit. */
2991 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
2992 return -EINVAL;
2993
2994 vmx->nested.nested_vmx_ept_caps = data;
2995 vmx->nested.nested_vmx_vpid_caps = data >> 32;
2996 return 0;
2997}
2998
2999static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3000{
3001 u64 *msr;
3002
3003 switch (msr_index) {
3004 case MSR_IA32_VMX_CR0_FIXED0:
3005 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3006 break;
3007 case MSR_IA32_VMX_CR4_FIXED0:
3008 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3009 break;
3010 default:
3011 BUG();
3012 }
3013
3014 /*
3015 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3016 * must be 1 in the restored value.
3017 */
3018 if (!is_bitwise_subset(data, *msr, -1ULL))
3019 return -EINVAL;
3020
3021 *msr = data;
3022 return 0;
3023}
3024
3025/*
3026 * Called when userspace is restoring VMX MSRs.
3027 *
3028 * Returns 0 on success, non-0 otherwise.
3029 */
3030static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3031{
3032 struct vcpu_vmx *vmx = to_vmx(vcpu);
3033
3034 switch (msr_index) {
3035 case MSR_IA32_VMX_BASIC:
3036 return vmx_restore_vmx_basic(vmx, data);
3037 case MSR_IA32_VMX_PINBASED_CTLS:
3038 case MSR_IA32_VMX_PROCBASED_CTLS:
3039 case MSR_IA32_VMX_EXIT_CTLS:
3040 case MSR_IA32_VMX_ENTRY_CTLS:
3041 /*
3042 * The "non-true" VMX capability MSRs are generated from the
3043 * "true" MSRs, so we do not support restoring them directly.
3044 *
3045 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3046 * should restore the "true" MSRs with the must-be-1 bits
3047 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3048 * DEFAULT SETTINGS".
3049 */
3050 return -EINVAL;
3051 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3052 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3053 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3054 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3055 case MSR_IA32_VMX_PROCBASED_CTLS2:
3056 return vmx_restore_control_msr(vmx, msr_index, data);
3057 case MSR_IA32_VMX_MISC:
3058 return vmx_restore_vmx_misc(vmx, data);
3059 case MSR_IA32_VMX_CR0_FIXED0:
3060 case MSR_IA32_VMX_CR4_FIXED0:
3061 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3062 case MSR_IA32_VMX_CR0_FIXED1:
3063 case MSR_IA32_VMX_CR4_FIXED1:
3064 /*
3065 * These MSRs are generated based on the vCPU's CPUID, so we
3066 * do not support restoring them directly.
3067 */
3068 return -EINVAL;
3069 case MSR_IA32_VMX_EPT_VPID_CAP:
3070 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3071 case MSR_IA32_VMX_VMCS_ENUM:
3072 vmx->nested.nested_vmx_vmcs_enum = data;
3073 return 0;
3074 default:
3075 /*
3076 * The rest of the VMX capability MSRs do not support restore.
3077 */
3078 return -EINVAL;
3079 }
3080}
3081
Jan Kiszkacae50132014-01-04 18:47:22 +01003082/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003083static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3084{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003085 struct vcpu_vmx *vmx = to_vmx(vcpu);
3086
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003087 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003088 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003089 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003090 break;
3091 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3092 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003093 *pdata = vmx_control_msr(
3094 vmx->nested.nested_vmx_pinbased_ctls_low,
3095 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003096 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3097 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003098 break;
3099 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3100 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003101 *pdata = vmx_control_msr(
3102 vmx->nested.nested_vmx_procbased_ctls_low,
3103 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003104 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3105 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003106 break;
3107 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3108 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003109 *pdata = vmx_control_msr(
3110 vmx->nested.nested_vmx_exit_ctls_low,
3111 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003112 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3113 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003114 break;
3115 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3116 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003117 *pdata = vmx_control_msr(
3118 vmx->nested.nested_vmx_entry_ctls_low,
3119 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003120 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3121 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003122 break;
3123 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003124 *pdata = vmx_control_msr(
3125 vmx->nested.nested_vmx_misc_low,
3126 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003127 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003128 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003129 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003130 break;
3131 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003132 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003133 break;
3134 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003135 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003136 break;
3137 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003138 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003139 break;
3140 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003141 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003142 break;
3143 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003144 *pdata = vmx_control_msr(
3145 vmx->nested.nested_vmx_secondary_ctls_low,
3146 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003147 break;
3148 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003149 *pdata = vmx->nested.nested_vmx_ept_caps |
3150 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003151 break;
3152 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003153 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003154 }
3155
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003156 return 0;
3157}
3158
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003159static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3160 uint64_t val)
3161{
3162 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3163
3164 return !(val & ~valid_bits);
3165}
3166
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003167/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003168 * Reads an msr value (of 'msr_index') into 'pdata'.
3169 * Returns 0 on success, non-0 otherwise.
3170 * Assumes vcpu_load() was already called.
3171 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003172static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003173{
Avi Kivity26bb0982009-09-07 11:14:12 +03003174 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003175
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003176 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003177#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003178 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003179 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003180 break;
3181 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003182 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003183 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003184 case MSR_KERNEL_GS_BASE:
3185 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003186 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003187 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003188#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003189 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003190 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303191 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003192 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003193 break;
3194 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003195 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196 break;
3197 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003198 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003199 break;
3200 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003201 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003202 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003203 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003204 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003205 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003206 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003207 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003208 case MSR_IA32_MCG_EXT_CTL:
3209 if (!msr_info->host_initiated &&
3210 !(to_vmx(vcpu)->msr_ia32_feature_control &
3211 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003212 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003213 msr_info->data = vcpu->arch.mcg_ext_ctl;
3214 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003215 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003216 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003217 break;
3218 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3219 if (!nested_vmx_allowed(vcpu))
3220 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003221 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003222 case MSR_IA32_XSS:
3223 if (!vmx_xsaves_supported())
3224 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003225 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003226 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003227 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003228 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003229 return 1;
3230 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003231 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003232 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003233 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003234 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003235 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003236 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003237 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238 }
3239
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 return 0;
3241}
3242
Jan Kiszkacae50132014-01-04 18:47:22 +01003243static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3244
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245/*
3246 * Writes msr value into into the appropriate "register".
3247 * Returns 0 on success, non-0 otherwise.
3248 * Assumes vcpu_load() was already called.
3249 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003250static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003251{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003252 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003253 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003254 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003255 u32 msr_index = msr_info->index;
3256 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003257
Avi Kivity6aa8b732006-12-10 02:21:36 -08003258 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003259 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003260 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003261 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003262#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003263 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003264 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003265 vmcs_writel(GUEST_FS_BASE, data);
3266 break;
3267 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003268 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003269 vmcs_writel(GUEST_GS_BASE, data);
3270 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003271 case MSR_KERNEL_GS_BASE:
3272 vmx_load_host_state(vmx);
3273 vmx->msr_guest_kernel_gs_base = data;
3274 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275#endif
3276 case MSR_IA32_SYSENTER_CS:
3277 vmcs_write32(GUEST_SYSENTER_CS, data);
3278 break;
3279 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003280 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281 break;
3282 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003283 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003284 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003285 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003286 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003287 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003288 vmcs_write64(GUEST_BNDCFGS, data);
3289 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303290 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08003291 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003292 break;
Sheng Yang468d4722008-10-09 16:01:55 +08003293 case MSR_IA32_CR_PAT:
3294 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003295 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3296 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003297 vmcs_write64(GUEST_IA32_PAT, data);
3298 vcpu->arch.pat = data;
3299 break;
3300 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003301 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003302 break;
Will Auldba904632012-11-29 12:42:50 -08003303 case MSR_IA32_TSC_ADJUST:
3304 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003305 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003306 case MSR_IA32_MCG_EXT_CTL:
3307 if ((!msr_info->host_initiated &&
3308 !(to_vmx(vcpu)->msr_ia32_feature_control &
3309 FEATURE_CONTROL_LMCE)) ||
3310 (data & ~MCG_EXT_CTL_LMCE_EN))
3311 return 1;
3312 vcpu->arch.mcg_ext_ctl = data;
3313 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003314 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003315 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003316 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003317 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3318 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003319 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003320 if (msr_info->host_initiated && data == 0)
3321 vmx_leave_nested(vcpu);
3322 break;
3323 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003324 if (!msr_info->host_initiated)
3325 return 1; /* they are read-only */
3326 if (!nested_vmx_allowed(vcpu))
3327 return 1;
3328 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003329 case MSR_IA32_XSS:
3330 if (!vmx_xsaves_supported())
3331 return 1;
3332 /*
3333 * The only supported bit as of Skylake is bit 8, but
3334 * it is not supported on KVM.
3335 */
3336 if (data != 0)
3337 return 1;
3338 vcpu->arch.ia32_xss = data;
3339 if (vcpu->arch.ia32_xss != host_xss)
3340 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3341 vcpu->arch.ia32_xss, host_xss);
3342 else
3343 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3344 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003345 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003346 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003347 return 1;
3348 /* Check reserved bit, higher 32 bits should be zero */
3349 if ((data >> 32) != 0)
3350 return 1;
3351 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003352 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003353 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003354 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003355 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003356 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003357 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3358 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003359 ret = kvm_set_shared_msr(msr->index, msr->data,
3360 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003361 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003362 if (ret)
3363 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003364 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003365 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003366 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003367 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368 }
3369
Eddie Dong2cc51562007-05-21 07:28:09 +03003370 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371}
3372
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003373static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003375 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3376 switch (reg) {
3377 case VCPU_REGS_RSP:
3378 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3379 break;
3380 case VCPU_REGS_RIP:
3381 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3382 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003383 case VCPU_EXREG_PDPTR:
3384 if (enable_ept)
3385 ept_save_pdptrs(vcpu);
3386 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003387 default:
3388 break;
3389 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003390}
3391
Avi Kivity6aa8b732006-12-10 02:21:36 -08003392static __init int cpu_has_kvm_support(void)
3393{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003394 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395}
3396
3397static __init int vmx_disabled_by_bios(void)
3398{
3399 u64 msr;
3400
3401 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003402 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003403 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003404 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3405 && tboot_enabled())
3406 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003407 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003408 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003409 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003410 && !tboot_enabled()) {
3411 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003412 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003413 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003414 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003415 /* launched w/o TXT and VMX disabled */
3416 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3417 && !tboot_enabled())
3418 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003419 }
3420
3421 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003422}
3423
Dongxiao Xu7725b892010-05-11 18:29:38 +08003424static void kvm_cpu_vmxon(u64 addr)
3425{
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003426 intel_pt_handle_vmx(1);
3427
Dongxiao Xu7725b892010-05-11 18:29:38 +08003428 asm volatile (ASM_VMX_VMXON_RAX
3429 : : "a"(&addr), "m"(addr)
3430 : "memory", "cc");
3431}
3432
Radim Krčmář13a34e02014-08-28 15:13:03 +02003433static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434{
3435 int cpu = raw_smp_processor_id();
3436 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003437 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003438
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003439 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003440 return -EBUSY;
3441
Nadav Har'Eld462b812011-05-24 15:26:10 +03003442 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003443 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3444 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003445
3446 /*
3447 * Now we can enable the vmclear operation in kdump
3448 * since the loaded_vmcss_on_cpu list on this cpu
3449 * has been initialized.
3450 *
3451 * Though the cpu is not in VMX operation now, there
3452 * is no problem to enable the vmclear operation
3453 * for the loaded_vmcss_on_cpu list is empty!
3454 */
3455 crash_enable_local_vmclear(cpu);
3456
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003458
3459 test_bits = FEATURE_CONTROL_LOCKED;
3460 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3461 if (tboot_enabled())
3462 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3463
3464 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003465 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003466 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3467 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003468 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003469
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003470 if (vmm_exclusive) {
3471 kvm_cpu_vmxon(phys_addr);
3472 ept_sync_global();
3473 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003474
Christoph Lameter89cbc762014-08-17 12:30:40 -05003475 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003476
Alexander Graf10474ae2009-09-15 11:37:46 +02003477 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478}
3479
Nadav Har'Eld462b812011-05-24 15:26:10 +03003480static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003481{
3482 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003483 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003484
Nadav Har'Eld462b812011-05-24 15:26:10 +03003485 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3486 loaded_vmcss_on_cpu_link)
3487 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003488}
3489
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003490
3491/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3492 * tricks.
3493 */
3494static void kvm_cpu_vmxoff(void)
3495{
3496 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003497
3498 intel_pt_handle_vmx(0);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003499}
3500
Radim Krčmář13a34e02014-08-28 15:13:03 +02003501static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003502{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003503 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003504 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003505 kvm_cpu_vmxoff();
3506 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003507 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003508}
3509
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003510static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003511 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512{
3513 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003514 u32 ctl = ctl_min | ctl_opt;
3515
3516 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3517
3518 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3519 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3520
3521 /* Ensure minimum (required) set of control bits are supported. */
3522 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003523 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003524
3525 *result = ctl;
3526 return 0;
3527}
3528
Avi Kivity110312c2010-12-21 12:54:20 +02003529static __init bool allow_1_setting(u32 msr, u32 ctl)
3530{
3531 u32 vmx_msr_low, vmx_msr_high;
3532
3533 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3534 return vmx_msr_high & ctl;
3535}
3536
Yang, Sheng002c7f72007-07-31 14:23:01 +03003537static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003538{
3539 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003540 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003541 u32 _pin_based_exec_control = 0;
3542 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003543 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003544 u32 _vmexit_control = 0;
3545 u32 _vmentry_control = 0;
3546
Raghavendra K T10166742012-02-07 23:19:20 +05303547 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003548#ifdef CONFIG_X86_64
3549 CPU_BASED_CR8_LOAD_EXITING |
3550 CPU_BASED_CR8_STORE_EXITING |
3551#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003552 CPU_BASED_CR3_LOAD_EXITING |
3553 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003554 CPU_BASED_USE_IO_BITMAPS |
3555 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003556 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003557 CPU_BASED_MWAIT_EXITING |
3558 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003559 CPU_BASED_INVLPG_EXITING |
3560 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003561
Sheng Yangf78e0e22007-10-29 09:40:42 +08003562 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003563 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003564 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003565 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3566 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003567 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003568#ifdef CONFIG_X86_64
3569 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3570 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3571 ~CPU_BASED_CR8_STORE_EXITING;
3572#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003573 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003574 min2 = 0;
3575 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003576 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003577 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003578 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003579 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003580 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003581 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003582 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003583 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003584 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003585 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003586 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003587 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003588 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003589 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003590 if (adjust_vmx_controls(min2, opt2,
3591 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003592 &_cpu_based_2nd_exec_control) < 0)
3593 return -EIO;
3594 }
3595#ifndef CONFIG_X86_64
3596 if (!(_cpu_based_2nd_exec_control &
3597 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3598 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3599#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003600
3601 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3602 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003603 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003604 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3605 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003606
Sheng Yangd56f5462008-04-25 10:13:16 +08003607 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003608 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3609 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003610 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3611 CPU_BASED_CR3_STORE_EXITING |
3612 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003613 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3614 vmx_capability.ept, vmx_capability.vpid);
3615 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003616
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003617 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003618#ifdef CONFIG_X86_64
3619 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3620#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003621 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003622 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003623 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3624 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003625 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003626
Yang Zhang01e439b2013-04-11 19:25:12 +08003627 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Yunhong Jiang64672c92016-06-13 14:19:59 -07003628 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
3629 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003630 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3631 &_pin_based_exec_control) < 0)
3632 return -EIO;
3633
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003634 if (cpu_has_broken_vmx_preemption_timer())
3635 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003636 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003637 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003638 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3639
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003640 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003641 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003642 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3643 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003644 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003645
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003646 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003647
3648 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3649 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003650 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003651
3652#ifdef CONFIG_X86_64
3653 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3654 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003655 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003656#endif
3657
3658 /* Require Write-Back (WB) memory type for VMCS accesses. */
3659 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003660 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003661
Yang, Sheng002c7f72007-07-31 14:23:01 +03003662 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003663 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003664 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003665 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003666
Yang, Sheng002c7f72007-07-31 14:23:01 +03003667 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3668 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003669 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003670 vmcs_conf->vmexit_ctrl = _vmexit_control;
3671 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003672
Avi Kivity110312c2010-12-21 12:54:20 +02003673 cpu_has_load_ia32_efer =
3674 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3675 VM_ENTRY_LOAD_IA32_EFER)
3676 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3677 VM_EXIT_LOAD_IA32_EFER);
3678
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003679 cpu_has_load_perf_global_ctrl =
3680 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3681 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3682 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3683 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3684
3685 /*
3686 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003687 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003688 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3689 *
3690 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3691 *
3692 * AAK155 (model 26)
3693 * AAP115 (model 30)
3694 * AAT100 (model 37)
3695 * BC86,AAY89,BD102 (model 44)
3696 * BA97 (model 46)
3697 *
3698 */
3699 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3700 switch (boot_cpu_data.x86_model) {
3701 case 26:
3702 case 30:
3703 case 37:
3704 case 44:
3705 case 46:
3706 cpu_has_load_perf_global_ctrl = false;
3707 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3708 "does not work properly. Using workaround\n");
3709 break;
3710 default:
3711 break;
3712 }
3713 }
3714
Borislav Petkov782511b2016-04-04 22:25:03 +02003715 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003716 rdmsrl(MSR_IA32_XSS, host_xss);
3717
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003718 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003719}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003720
3721static struct vmcs *alloc_vmcs_cpu(int cpu)
3722{
3723 int node = cpu_to_node(cpu);
3724 struct page *pages;
3725 struct vmcs *vmcs;
3726
Vlastimil Babka96db8002015-09-08 15:03:50 -07003727 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728 if (!pages)
3729 return NULL;
3730 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003731 memset(vmcs, 0, vmcs_config.size);
3732 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003733 return vmcs;
3734}
3735
3736static struct vmcs *alloc_vmcs(void)
3737{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003738 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003739}
3740
3741static void free_vmcs(struct vmcs *vmcs)
3742{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003743 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003744}
3745
Nadav Har'Eld462b812011-05-24 15:26:10 +03003746/*
3747 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3748 */
3749static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3750{
3751 if (!loaded_vmcs->vmcs)
3752 return;
3753 loaded_vmcs_clear(loaded_vmcs);
3754 free_vmcs(loaded_vmcs->vmcs);
3755 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003756 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003757}
3758
Sam Ravnborg39959582007-06-01 00:47:13 -07003759static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003760{
3761 int cpu;
3762
Zachary Amsden3230bb42009-09-29 11:38:37 -10003763 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003764 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003765 per_cpu(vmxarea, cpu) = NULL;
3766 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003767}
3768
Bandan Dasfe2b2012014-04-21 15:20:14 -04003769static void init_vmcs_shadow_fields(void)
3770{
3771 int i, j;
3772
3773 /* No checks for read only fields yet */
3774
3775 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3776 switch (shadow_read_write_fields[i]) {
3777 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003778 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003779 continue;
3780 break;
3781 default:
3782 break;
3783 }
3784
3785 if (j < i)
3786 shadow_read_write_fields[j] =
3787 shadow_read_write_fields[i];
3788 j++;
3789 }
3790 max_shadow_read_write_fields = j;
3791
3792 /* shadowed fields guest access without vmexit */
3793 for (i = 0; i < max_shadow_read_write_fields; i++) {
3794 clear_bit(shadow_read_write_fields[i],
3795 vmx_vmwrite_bitmap);
3796 clear_bit(shadow_read_write_fields[i],
3797 vmx_vmread_bitmap);
3798 }
3799 for (i = 0; i < max_shadow_read_only_fields; i++)
3800 clear_bit(shadow_read_only_fields[i],
3801 vmx_vmread_bitmap);
3802}
3803
Avi Kivity6aa8b732006-12-10 02:21:36 -08003804static __init int alloc_kvm_area(void)
3805{
3806 int cpu;
3807
Zachary Amsden3230bb42009-09-29 11:38:37 -10003808 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003809 struct vmcs *vmcs;
3810
3811 vmcs = alloc_vmcs_cpu(cpu);
3812 if (!vmcs) {
3813 free_kvm_area();
3814 return -ENOMEM;
3815 }
3816
3817 per_cpu(vmxarea, cpu) = vmcs;
3818 }
3819 return 0;
3820}
3821
Gleb Natapov14168782013-01-21 15:36:49 +02003822static bool emulation_required(struct kvm_vcpu *vcpu)
3823{
3824 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3825}
3826
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003827static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003828 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003829{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003830 if (!emulate_invalid_guest_state) {
3831 /*
3832 * CS and SS RPL should be equal during guest entry according
3833 * to VMX spec, but in reality it is not always so. Since vcpu
3834 * is in the middle of the transition from real mode to
3835 * protected mode it is safe to assume that RPL 0 is a good
3836 * default value.
3837 */
3838 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003839 save->selector &= ~SEGMENT_RPL_MASK;
3840 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003841 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003842 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003843 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003844}
3845
3846static void enter_pmode(struct kvm_vcpu *vcpu)
3847{
3848 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003849 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003850
Gleb Natapovd99e4152012-12-20 16:57:45 +02003851 /*
3852 * Update real mode segment cache. It may be not up-to-date if sement
3853 * register was written while vcpu was in a guest mode.
3854 */
3855 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3856 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3857 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3858 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3859 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3860 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3861
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003862 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003863
Avi Kivity2fb92db2011-04-27 19:42:18 +03003864 vmx_segment_cache_clear(vmx);
3865
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003866 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003867
3868 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003869 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3870 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003871 vmcs_writel(GUEST_RFLAGS, flags);
3872
Rusty Russell66aee912007-07-17 23:34:16 +10003873 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3874 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003875
3876 update_exception_bitmap(vcpu);
3877
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003878 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3879 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3880 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3881 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3882 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3883 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003884}
3885
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003886static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003887{
Mathias Krause772e0312012-08-30 01:30:19 +02003888 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003889 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003890
Gleb Natapovd99e4152012-12-20 16:57:45 +02003891 var.dpl = 0x3;
3892 if (seg == VCPU_SREG_CS)
3893 var.type = 0x3;
3894
3895 if (!emulate_invalid_guest_state) {
3896 var.selector = var.base >> 4;
3897 var.base = var.base & 0xffff0;
3898 var.limit = 0xffff;
3899 var.g = 0;
3900 var.db = 0;
3901 var.present = 1;
3902 var.s = 1;
3903 var.l = 0;
3904 var.unusable = 0;
3905 var.type = 0x3;
3906 var.avl = 0;
3907 if (save->base & 0xf)
3908 printk_once(KERN_WARNING "kvm: segment base is not "
3909 "paragraph aligned when entering "
3910 "protected mode (seg=%d)", seg);
3911 }
3912
3913 vmcs_write16(sf->selector, var.selector);
3914 vmcs_write32(sf->base, var.base);
3915 vmcs_write32(sf->limit, var.limit);
3916 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917}
3918
3919static void enter_rmode(struct kvm_vcpu *vcpu)
3920{
3921 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003922 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003923
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003924 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3925 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3926 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3927 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3928 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003929 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3930 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003931
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003932 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003933
Gleb Natapov776e58e2011-03-13 12:34:27 +02003934 /*
3935 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003936 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003937 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003938 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003939 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3940 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003941
Avi Kivity2fb92db2011-04-27 19:42:18 +03003942 vmx_segment_cache_clear(vmx);
3943
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003944 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3947
3948 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003949 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003950
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003951 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003952
3953 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003954 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003955 update_exception_bitmap(vcpu);
3956
Gleb Natapovd99e4152012-12-20 16:57:45 +02003957 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3958 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3959 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3960 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3961 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3962 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003963
Eddie Dong8668a3c2007-10-10 14:26:45 +08003964 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003965}
3966
Amit Shah401d10d2009-02-20 22:53:37 +05303967static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3968{
3969 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003970 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3971
3972 if (!msr)
3973 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303974
Avi Kivity44ea2b12009-09-06 15:55:37 +03003975 /*
3976 * Force kernel_gs_base reloading before EFER changes, as control
3977 * of this msr depends on is_long_mode().
3978 */
3979 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003980 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303981 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003982 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303983 msr->data = efer;
3984 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003985 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303986
3987 msr->data = efer & ~EFER_LME;
3988 }
3989 setup_msrs(vmx);
3990}
3991
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003992#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993
3994static void enter_lmode(struct kvm_vcpu *vcpu)
3995{
3996 u32 guest_tr_ar;
3997
Avi Kivity2fb92db2011-04-27 19:42:18 +03003998 vmx_segment_cache_clear(to_vmx(vcpu));
3999
Avi Kivity6aa8b732006-12-10 02:21:36 -08004000 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004001 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004002 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4003 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004004 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004005 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4006 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004007 }
Avi Kivityda38f432010-07-06 11:30:49 +03004008 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004009}
4010
4011static void exit_lmode(struct kvm_vcpu *vcpu)
4012{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004013 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004014 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004015}
4016
4017#endif
4018
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004019static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004020{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004021 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004022 if (enable_ept) {
4023 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4024 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08004025 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004026 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004027}
4028
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004029static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4030{
4031 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4032}
4033
Avi Kivitye8467fd2009-12-29 18:43:06 +02004034static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4035{
4036 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4037
4038 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4039 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4040}
4041
Avi Kivityaff48ba2010-12-05 18:56:11 +02004042static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4043{
4044 if (enable_ept && is_paging(vcpu))
4045 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4046 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4047}
4048
Anthony Liguori25c4c272007-04-27 09:29:21 +03004049static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004050{
Avi Kivityfc78f512009-12-07 12:16:48 +02004051 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4052
4053 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4054 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004055}
4056
Sheng Yang14394422008-04-28 12:24:45 +08004057static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4058{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004059 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4060
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004061 if (!test_bit(VCPU_EXREG_PDPTR,
4062 (unsigned long *)&vcpu->arch.regs_dirty))
4063 return;
4064
Sheng Yang14394422008-04-28 12:24:45 +08004065 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004066 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4067 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4068 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4069 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004070 }
4071}
4072
Avi Kivity8f5d5492009-05-31 18:41:29 +03004073static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4074{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004075 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4076
Avi Kivity8f5d5492009-05-31 18:41:29 +03004077 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004078 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4079 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4080 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4081 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004082 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004083
4084 __set_bit(VCPU_EXREG_PDPTR,
4085 (unsigned long *)&vcpu->arch.regs_avail);
4086 __set_bit(VCPU_EXREG_PDPTR,
4087 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004088}
4089
David Matlack38991522016-11-29 18:14:08 -08004090static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4091{
4092 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4093 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4094 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4095
4096 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4097 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4098 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4099 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4100
4101 return fixed_bits_valid(val, fixed0, fixed1);
4102}
4103
4104static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4105{
4106 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4107 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4108
4109 return fixed_bits_valid(val, fixed0, fixed1);
4110}
4111
4112static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4113{
4114 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4115 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4116
4117 return fixed_bits_valid(val, fixed0, fixed1);
4118}
4119
4120/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4121#define nested_guest_cr4_valid nested_cr4_valid
4122#define nested_host_cr4_valid nested_cr4_valid
4123
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004124static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004125
4126static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4127 unsigned long cr0,
4128 struct kvm_vcpu *vcpu)
4129{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004130 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4131 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004132 if (!(cr0 & X86_CR0_PG)) {
4133 /* From paging/starting to nonpaging */
4134 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004135 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004136 (CPU_BASED_CR3_LOAD_EXITING |
4137 CPU_BASED_CR3_STORE_EXITING));
4138 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004139 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004140 } else if (!is_paging(vcpu)) {
4141 /* From nonpaging to paging */
4142 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004143 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004144 ~(CPU_BASED_CR3_LOAD_EXITING |
4145 CPU_BASED_CR3_STORE_EXITING));
4146 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004147 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004148 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004149
4150 if (!(cr0 & X86_CR0_WP))
4151 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004152}
4153
Avi Kivity6aa8b732006-12-10 02:21:36 -08004154static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4155{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004156 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004157 unsigned long hw_cr0;
4158
Gleb Natapov50378782013-02-04 16:00:28 +02004159 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004160 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004161 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004162 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004163 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004164
Gleb Natapov218e7632013-01-21 15:36:45 +02004165 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4166 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004167
Gleb Natapov218e7632013-01-21 15:36:45 +02004168 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4169 enter_rmode(vcpu);
4170 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004171
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004172#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004173 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004174 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004175 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004176 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004177 exit_lmode(vcpu);
4178 }
4179#endif
4180
Avi Kivity089d0342009-03-23 18:26:32 +02004181 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004182 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4183
Avi Kivity6aa8b732006-12-10 02:21:36 -08004184 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004185 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004186 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004187
4188 /* depends on vcpu->arch.cr0 to be set to a new value */
4189 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004190}
4191
Sheng Yang14394422008-04-28 12:24:45 +08004192static u64 construct_eptp(unsigned long root_hpa)
4193{
4194 u64 eptp;
4195
4196 /* TODO write the value reading from MSR */
4197 eptp = VMX_EPT_DEFAULT_MT |
4198 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08004199 if (enable_ept_ad_bits)
4200 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004201 eptp |= (root_hpa & PAGE_MASK);
4202
4203 return eptp;
4204}
4205
Avi Kivity6aa8b732006-12-10 02:21:36 -08004206static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4207{
Sheng Yang14394422008-04-28 12:24:45 +08004208 unsigned long guest_cr3;
4209 u64 eptp;
4210
4211 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004212 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004213 eptp = construct_eptp(cr3);
4214 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004215 if (is_paging(vcpu) || is_guest_mode(vcpu))
4216 guest_cr3 = kvm_read_cr3(vcpu);
4217 else
4218 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02004219 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004220 }
4221
Sheng Yang2384d2b2008-01-17 15:14:33 +08004222 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004223 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004224}
4225
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004226static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004227{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004228 /*
4229 * Pass through host's Machine Check Enable value to hw_cr4, which
4230 * is in force while we are in guest mode. Do not let guests control
4231 * this bit, even if host CR4.MCE == 0.
4232 */
4233 unsigned long hw_cr4 =
4234 (cr4_read_shadow() & X86_CR4_MCE) |
4235 (cr4 & ~X86_CR4_MCE) |
4236 (to_vmx(vcpu)->rmode.vm86_active ?
4237 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004238
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004239 if (cr4 & X86_CR4_VMXE) {
4240 /*
4241 * To use VMXON (and later other VMX instructions), a guest
4242 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4243 * So basically the check on whether to allow nested VMX
4244 * is here.
4245 */
4246 if (!nested_vmx_allowed(vcpu))
4247 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004248 }
David Matlack38991522016-11-29 18:14:08 -08004249
4250 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004251 return 1;
4252
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004253 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004254 if (enable_ept) {
4255 if (!is_paging(vcpu)) {
4256 hw_cr4 &= ~X86_CR4_PAE;
4257 hw_cr4 |= X86_CR4_PSE;
4258 } else if (!(cr4 & X86_CR4_PAE)) {
4259 hw_cr4 &= ~X86_CR4_PAE;
4260 }
4261 }
Sheng Yang14394422008-04-28 12:24:45 +08004262
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004263 if (!enable_unrestricted_guest && !is_paging(vcpu))
4264 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004265 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4266 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4267 * to be manually disabled when guest switches to non-paging
4268 * mode.
4269 *
4270 * If !enable_unrestricted_guest, the CPU is always running
4271 * with CR0.PG=1 and CR4 needs to be modified.
4272 * If enable_unrestricted_guest, the CPU automatically
4273 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004274 */
Huaitong Handdba2622016-03-22 16:51:15 +08004275 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004276
Sheng Yang14394422008-04-28 12:24:45 +08004277 vmcs_writel(CR4_READ_SHADOW, cr4);
4278 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004279 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004280}
4281
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282static void vmx_get_segment(struct kvm_vcpu *vcpu,
4283 struct kvm_segment *var, int seg)
4284{
Avi Kivitya9179492011-01-03 14:28:52 +02004285 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004286 u32 ar;
4287
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004288 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004289 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004290 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004291 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004292 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004293 var->base = vmx_read_guest_seg_base(vmx, seg);
4294 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4295 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004296 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004297 var->base = vmx_read_guest_seg_base(vmx, seg);
4298 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4299 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4300 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004301 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004302 var->type = ar & 15;
4303 var->s = (ar >> 4) & 1;
4304 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004305 /*
4306 * Some userspaces do not preserve unusable property. Since usable
4307 * segment has to be present according to VMX spec we can use present
4308 * property to amend userspace bug by making unusable segment always
4309 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4310 * segment as unusable.
4311 */
4312 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004313 var->avl = (ar >> 12) & 1;
4314 var->l = (ar >> 13) & 1;
4315 var->db = (ar >> 14) & 1;
4316 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004317}
4318
Avi Kivitya9179492011-01-03 14:28:52 +02004319static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4320{
Avi Kivitya9179492011-01-03 14:28:52 +02004321 struct kvm_segment s;
4322
4323 if (to_vmx(vcpu)->rmode.vm86_active) {
4324 vmx_get_segment(vcpu, &s, seg);
4325 return s.base;
4326 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004327 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004328}
4329
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004330static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004331{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004332 struct vcpu_vmx *vmx = to_vmx(vcpu);
4333
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004334 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004335 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004336 else {
4337 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004338 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004339 }
Avi Kivity69c73022011-03-07 15:26:44 +02004340}
4341
Avi Kivity653e3102007-05-07 10:55:37 +03004342static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004343{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344 u32 ar;
4345
Avi Kivityf0495f92012-06-07 17:06:10 +03004346 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004347 ar = 1 << 16;
4348 else {
4349 ar = var->type & 15;
4350 ar |= (var->s & 1) << 4;
4351 ar |= (var->dpl & 3) << 5;
4352 ar |= (var->present & 1) << 7;
4353 ar |= (var->avl & 1) << 12;
4354 ar |= (var->l & 1) << 13;
4355 ar |= (var->db & 1) << 14;
4356 ar |= (var->g & 1) << 15;
4357 }
Avi Kivity653e3102007-05-07 10:55:37 +03004358
4359 return ar;
4360}
4361
4362static void vmx_set_segment(struct kvm_vcpu *vcpu,
4363 struct kvm_segment *var, int seg)
4364{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004365 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004366 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004367
Avi Kivity2fb92db2011-04-27 19:42:18 +03004368 vmx_segment_cache_clear(vmx);
4369
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004370 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4371 vmx->rmode.segs[seg] = *var;
4372 if (seg == VCPU_SREG_TR)
4373 vmcs_write16(sf->selector, var->selector);
4374 else if (var->s)
4375 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004376 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004377 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004378
Avi Kivity653e3102007-05-07 10:55:37 +03004379 vmcs_writel(sf->base, var->base);
4380 vmcs_write32(sf->limit, var->limit);
4381 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004382
4383 /*
4384 * Fix the "Accessed" bit in AR field of segment registers for older
4385 * qemu binaries.
4386 * IA32 arch specifies that at the time of processor reset the
4387 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004388 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004389 * state vmexit when "unrestricted guest" mode is turned on.
4390 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4391 * tree. Newer qemu binaries with that qemu fix would not need this
4392 * kvm hack.
4393 */
4394 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004395 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004396
Gleb Natapovf924d662012-12-12 19:10:55 +02004397 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004398
4399out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004400 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004401}
4402
Avi Kivity6aa8b732006-12-10 02:21:36 -08004403static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4404{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004405 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004406
4407 *db = (ar >> 14) & 1;
4408 *l = (ar >> 13) & 1;
4409}
4410
Gleb Natapov89a27f42010-02-16 10:51:48 +02004411static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004412{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004413 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4414 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004415}
4416
Gleb Natapov89a27f42010-02-16 10:51:48 +02004417static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004418{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004419 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4420 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004421}
4422
Gleb Natapov89a27f42010-02-16 10:51:48 +02004423static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004424{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004425 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4426 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004427}
4428
Gleb Natapov89a27f42010-02-16 10:51:48 +02004429static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004430{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004431 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4432 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433}
4434
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004435static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4436{
4437 struct kvm_segment var;
4438 u32 ar;
4439
4440 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004441 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004442 if (seg == VCPU_SREG_CS)
4443 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004444 ar = vmx_segment_access_rights(&var);
4445
4446 if (var.base != (var.selector << 4))
4447 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004448 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004449 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004450 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004451 return false;
4452
4453 return true;
4454}
4455
4456static bool code_segment_valid(struct kvm_vcpu *vcpu)
4457{
4458 struct kvm_segment cs;
4459 unsigned int cs_rpl;
4460
4461 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004462 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004463
Avi Kivity1872a3f2009-01-04 23:26:52 +02004464 if (cs.unusable)
4465 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004466 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004467 return false;
4468 if (!cs.s)
4469 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004470 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004471 if (cs.dpl > cs_rpl)
4472 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004473 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004474 if (cs.dpl != cs_rpl)
4475 return false;
4476 }
4477 if (!cs.present)
4478 return false;
4479
4480 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4481 return true;
4482}
4483
4484static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4485{
4486 struct kvm_segment ss;
4487 unsigned int ss_rpl;
4488
4489 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004490 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004491
Avi Kivity1872a3f2009-01-04 23:26:52 +02004492 if (ss.unusable)
4493 return true;
4494 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004495 return false;
4496 if (!ss.s)
4497 return false;
4498 if (ss.dpl != ss_rpl) /* DPL != RPL */
4499 return false;
4500 if (!ss.present)
4501 return false;
4502
4503 return true;
4504}
4505
4506static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4507{
4508 struct kvm_segment var;
4509 unsigned int rpl;
4510
4511 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004512 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004513
Avi Kivity1872a3f2009-01-04 23:26:52 +02004514 if (var.unusable)
4515 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004516 if (!var.s)
4517 return false;
4518 if (!var.present)
4519 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004520 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004521 if (var.dpl < rpl) /* DPL < RPL */
4522 return false;
4523 }
4524
4525 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4526 * rights flags
4527 */
4528 return true;
4529}
4530
4531static bool tr_valid(struct kvm_vcpu *vcpu)
4532{
4533 struct kvm_segment tr;
4534
4535 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4536
Avi Kivity1872a3f2009-01-04 23:26:52 +02004537 if (tr.unusable)
4538 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004539 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004540 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004541 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004542 return false;
4543 if (!tr.present)
4544 return false;
4545
4546 return true;
4547}
4548
4549static bool ldtr_valid(struct kvm_vcpu *vcpu)
4550{
4551 struct kvm_segment ldtr;
4552
4553 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4554
Avi Kivity1872a3f2009-01-04 23:26:52 +02004555 if (ldtr.unusable)
4556 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004557 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004558 return false;
4559 if (ldtr.type != 2)
4560 return false;
4561 if (!ldtr.present)
4562 return false;
4563
4564 return true;
4565}
4566
4567static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4568{
4569 struct kvm_segment cs, ss;
4570
4571 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4572 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4573
Nadav Amitb32a9912015-03-29 16:33:04 +03004574 return ((cs.selector & SEGMENT_RPL_MASK) ==
4575 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004576}
4577
4578/*
4579 * Check if guest state is valid. Returns true if valid, false if
4580 * not.
4581 * We assume that registers are always usable
4582 */
4583static bool guest_state_valid(struct kvm_vcpu *vcpu)
4584{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004585 if (enable_unrestricted_guest)
4586 return true;
4587
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004588 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004589 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004590 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4591 return false;
4592 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4593 return false;
4594 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4595 return false;
4596 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4597 return false;
4598 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4599 return false;
4600 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4601 return false;
4602 } else {
4603 /* protected mode guest state checks */
4604 if (!cs_ss_rpl_check(vcpu))
4605 return false;
4606 if (!code_segment_valid(vcpu))
4607 return false;
4608 if (!stack_segment_valid(vcpu))
4609 return false;
4610 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4611 return false;
4612 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4613 return false;
4614 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4615 return false;
4616 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4617 return false;
4618 if (!tr_valid(vcpu))
4619 return false;
4620 if (!ldtr_valid(vcpu))
4621 return false;
4622 }
4623 /* TODO:
4624 * - Add checks on RIP
4625 * - Add checks on RFLAGS
4626 */
4627
4628 return true;
4629}
4630
Mike Dayd77c26f2007-10-08 09:02:08 -04004631static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004632{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004633 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004634 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004635 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004636
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004637 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004638 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004639 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4640 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004641 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004642 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004643 r = kvm_write_guest_page(kvm, fn++, &data,
4644 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004645 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004646 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004647 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4648 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004649 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004650 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4651 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004652 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004653 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004654 r = kvm_write_guest_page(kvm, fn, &data,
4655 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4656 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004657out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004658 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004659 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004660}
4661
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004662static int init_rmode_identity_map(struct kvm *kvm)
4663{
Tang Chenf51770e2014-09-16 18:41:59 +08004664 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004665 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004666 u32 tmp;
4667
Avi Kivity089d0342009-03-23 18:26:32 +02004668 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004669 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004670
4671 /* Protect kvm->arch.ept_identity_pagetable_done. */
4672 mutex_lock(&kvm->slots_lock);
4673
Tang Chenf51770e2014-09-16 18:41:59 +08004674 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004675 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004676
Sheng Yangb927a3c2009-07-21 10:42:48 +08004677 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004678
4679 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004680 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004681 goto out2;
4682
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004683 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004684 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4685 if (r < 0)
4686 goto out;
4687 /* Set up identity-mapping pagetable for EPT in real mode */
4688 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4689 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4690 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4691 r = kvm_write_guest_page(kvm, identity_map_pfn,
4692 &tmp, i * sizeof(tmp), sizeof(tmp));
4693 if (r < 0)
4694 goto out;
4695 }
4696 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004697
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004698out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004699 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004700
4701out2:
4702 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004703 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004704}
4705
Avi Kivity6aa8b732006-12-10 02:21:36 -08004706static void seg_setup(int seg)
4707{
Mathias Krause772e0312012-08-30 01:30:19 +02004708 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004709 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004710
4711 vmcs_write16(sf->selector, 0);
4712 vmcs_writel(sf->base, 0);
4713 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004714 ar = 0x93;
4715 if (seg == VCPU_SREG_CS)
4716 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004717
4718 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004719}
4720
Sheng Yangf78e0e22007-10-29 09:40:42 +08004721static int alloc_apic_access_page(struct kvm *kvm)
4722{
Xiao Guangrong44841412012-09-07 14:14:20 +08004723 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004724 int r = 0;
4725
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004726 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004727 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004728 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004729 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4730 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004731 if (r)
4732 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004733
Tang Chen73a6d942014-09-11 13:38:00 +08004734 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004735 if (is_error_page(page)) {
4736 r = -EFAULT;
4737 goto out;
4738 }
4739
Tang Chenc24ae0d2014-09-24 15:57:58 +08004740 /*
4741 * Do not pin the page in memory, so that memory hot-unplug
4742 * is able to migrate it.
4743 */
4744 put_page(page);
4745 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004746out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004747 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004748 return r;
4749}
4750
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004751static int alloc_identity_pagetable(struct kvm *kvm)
4752{
Tang Chena255d472014-09-16 18:41:58 +08004753 /* Called with kvm->slots_lock held. */
4754
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004755 int r = 0;
4756
Tang Chena255d472014-09-16 18:41:58 +08004757 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4758
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004759 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4760 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004761
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004762 return r;
4763}
4764
Wanpeng Li991e7a02015-09-16 17:30:05 +08004765static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004766{
4767 int vpid;
4768
Avi Kivity919818a2009-03-23 18:01:29 +02004769 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004770 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004771 spin_lock(&vmx_vpid_lock);
4772 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004773 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004774 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004775 else
4776 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004777 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004778 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004779}
4780
Wanpeng Li991e7a02015-09-16 17:30:05 +08004781static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004782{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004783 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004784 return;
4785 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004786 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004787 spin_unlock(&vmx_vpid_lock);
4788}
4789
Yang Zhang8d146952013-01-25 10:18:50 +08004790#define MSR_TYPE_R 1
4791#define MSR_TYPE_W 2
4792static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4793 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004794{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004795 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004796
4797 if (!cpu_has_vmx_msr_bitmap())
4798 return;
4799
4800 /*
4801 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4802 * have the write-low and read-high bitmap offsets the wrong way round.
4803 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4804 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004805 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004806 if (type & MSR_TYPE_R)
4807 /* read-low */
4808 __clear_bit(msr, msr_bitmap + 0x000 / f);
4809
4810 if (type & MSR_TYPE_W)
4811 /* write-low */
4812 __clear_bit(msr, msr_bitmap + 0x800 / f);
4813
Sheng Yang25c5f222008-03-28 13:18:56 +08004814 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4815 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004816 if (type & MSR_TYPE_R)
4817 /* read-high */
4818 __clear_bit(msr, msr_bitmap + 0x400 / f);
4819
4820 if (type & MSR_TYPE_W)
4821 /* write-high */
4822 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4823
4824 }
4825}
4826
Wincy Vanf2b93282015-02-03 23:56:03 +08004827/*
4828 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4829 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4830 */
4831static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4832 unsigned long *msr_bitmap_nested,
4833 u32 msr, int type)
4834{
4835 int f = sizeof(unsigned long);
4836
4837 if (!cpu_has_vmx_msr_bitmap()) {
4838 WARN_ON(1);
4839 return;
4840 }
4841
4842 /*
4843 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4844 * have the write-low and read-high bitmap offsets the wrong way round.
4845 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4846 */
4847 if (msr <= 0x1fff) {
4848 if (type & MSR_TYPE_R &&
4849 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4850 /* read-low */
4851 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4852
4853 if (type & MSR_TYPE_W &&
4854 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4855 /* write-low */
4856 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4857
4858 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4859 msr &= 0x1fff;
4860 if (type & MSR_TYPE_R &&
4861 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4862 /* read-high */
4863 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4864
4865 if (type & MSR_TYPE_W &&
4866 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4867 /* write-high */
4868 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4869
4870 }
4871}
4872
Avi Kivity58972972009-02-24 22:26:47 +02004873static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4874{
4875 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004876 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4877 msr, MSR_TYPE_R | MSR_TYPE_W);
4878 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4879 msr, MSR_TYPE_R | MSR_TYPE_W);
4880}
4881
Radim Krčmář2e69f862016-09-29 22:41:32 +02004882static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08004883{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004884 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08004885 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004886 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08004887 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004888 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004889 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004890 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004891 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004892 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02004893 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08004894 }
Avi Kivity58972972009-02-24 22:26:47 +02004895}
4896
Andrey Smetanind62caab2015-11-10 15:36:33 +03004897static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004898{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004899 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004900}
4901
David Hildenbrand6342c502017-01-25 11:58:58 +01004902static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08004903{
4904 struct vcpu_vmx *vmx = to_vmx(vcpu);
4905 int max_irr;
4906 void *vapic_page;
4907 u16 status;
4908
4909 if (vmx->nested.pi_desc &&
4910 vmx->nested.pi_pending) {
4911 vmx->nested.pi_pending = false;
4912 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
David Hildenbrand6342c502017-01-25 11:58:58 +01004913 return;
Wincy Van705699a2015-02-03 23:58:17 +08004914
4915 max_irr = find_last_bit(
4916 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4917
4918 if (max_irr == 256)
David Hildenbrand6342c502017-01-25 11:58:58 +01004919 return;
Wincy Van705699a2015-02-03 23:58:17 +08004920
4921 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08004922 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4923 kunmap(vmx->nested.virtual_apic_page);
4924
4925 status = vmcs_read16(GUEST_INTR_STATUS);
4926 if ((u8)max_irr > ((u8)status & 0xff)) {
4927 status &= ~0xff;
4928 status |= (u8)max_irr;
4929 vmcs_write16(GUEST_INTR_STATUS, status);
4930 }
4931 }
Wincy Van705699a2015-02-03 23:58:17 +08004932}
4933
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004934static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4935{
4936#ifdef CONFIG_SMP
4937 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004938 struct vcpu_vmx *vmx = to_vmx(vcpu);
4939
4940 /*
4941 * Currently, we don't support urgent interrupt,
4942 * all interrupts are recognized as non-urgent
4943 * interrupt, so we cannot post interrupts when
4944 * 'SN' is set.
4945 *
4946 * If the vcpu is in guest mode, it means it is
4947 * running instead of being scheduled out and
4948 * waiting in the run queue, and that's the only
4949 * case when 'SN' is set currently, warning if
4950 * 'SN' is set.
4951 */
4952 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4953
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004954 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4955 POSTED_INTR_VECTOR);
4956 return true;
4957 }
4958#endif
4959 return false;
4960}
4961
Wincy Van705699a2015-02-03 23:58:17 +08004962static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4963 int vector)
4964{
4965 struct vcpu_vmx *vmx = to_vmx(vcpu);
4966
4967 if (is_guest_mode(vcpu) &&
4968 vector == vmx->nested.posted_intr_nv) {
4969 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004970 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004971 /*
4972 * If a posted intr is not recognized by hardware,
4973 * we will accomplish it in the next vmentry.
4974 */
4975 vmx->nested.pi_pending = true;
4976 kvm_make_request(KVM_REQ_EVENT, vcpu);
4977 return 0;
4978 }
4979 return -1;
4980}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004981/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004982 * Send interrupt to vcpu via posted interrupt way.
4983 * 1. If target vcpu is running(non-root mode), send posted interrupt
4984 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4985 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4986 * interrupt from PIR in next vmentry.
4987 */
4988static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4989{
4990 struct vcpu_vmx *vmx = to_vmx(vcpu);
4991 int r;
4992
Wincy Van705699a2015-02-03 23:58:17 +08004993 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4994 if (!r)
4995 return;
4996
Yang Zhanga20ed542013-04-11 19:25:15 +08004997 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4998 return;
4999
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005000 /* If a previous notification has sent the IPI, nothing to do. */
5001 if (pi_test_and_set_on(&vmx->pi_desc))
5002 return;
5003
5004 if (!kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08005005 kvm_vcpu_kick(vcpu);
5006}
5007
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005009 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5010 * will not change in the lifetime of the guest.
5011 * Note that host-state that does change is set elsewhere. E.g., host-state
5012 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5013 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005014static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005015{
5016 u32 low32, high32;
5017 unsigned long tmpl;
5018 struct desc_ptr dt;
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005019 unsigned long cr0, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005020
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005021 cr0 = read_cr0();
5022 WARN_ON(cr0 & X86_CR0_TS);
5023 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005024 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
5025
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005026 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005027 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005028 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5029 vmx->host_state.vmcs_host_cr4 = cr4;
5030
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005031 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005032#ifdef CONFIG_X86_64
5033 /*
5034 * Load null selectors, so we can avoid reloading them in
5035 * __vmx_load_host_state(), in case userspace uses the null selectors
5036 * too (the expected case).
5037 */
5038 vmcs_write16(HOST_DS_SELECTOR, 0);
5039 vmcs_write16(HOST_ES_SELECTOR, 0);
5040#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005041 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5042 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005043#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005044 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5045 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5046
5047 native_store_idt(&dt);
5048 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005049 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005050
Avi Kivity83287ea422012-09-16 15:10:57 +03005051 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005052
5053 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5054 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5055 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5056 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5057
5058 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5059 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5060 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5061 }
5062}
5063
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005064static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5065{
5066 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5067 if (enable_ept)
5068 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005069 if (is_guest_mode(&vmx->vcpu))
5070 vmx->vcpu.arch.cr4_guest_owned_bits &=
5071 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005072 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5073}
5074
Yang Zhang01e439b2013-04-11 19:25:12 +08005075static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5076{
5077 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5078
Andrey Smetanind62caab2015-11-10 15:36:33 +03005079 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005080 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005081 /* Enable the preemption timer dynamically */
5082 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005083 return pin_based_exec_ctrl;
5084}
5085
Andrey Smetanind62caab2015-11-10 15:36:33 +03005086static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5087{
5088 struct vcpu_vmx *vmx = to_vmx(vcpu);
5089
5090 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005091 if (cpu_has_secondary_exec_ctrls()) {
5092 if (kvm_vcpu_apicv_active(vcpu))
5093 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5094 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5095 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5096 else
5097 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5098 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5099 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5100 }
5101
5102 if (cpu_has_vmx_msr_bitmap())
5103 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005104}
5105
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005106static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5107{
5108 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005109
5110 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5111 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5112
Paolo Bonzini35754c92015-07-29 12:05:37 +02005113 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005114 exec_control &= ~CPU_BASED_TPR_SHADOW;
5115#ifdef CONFIG_X86_64
5116 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5117 CPU_BASED_CR8_LOAD_EXITING;
5118#endif
5119 }
5120 if (!enable_ept)
5121 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5122 CPU_BASED_CR3_LOAD_EXITING |
5123 CPU_BASED_INVLPG_EXITING;
5124 return exec_control;
5125}
5126
5127static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
5128{
5129 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005130 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005131 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5132 if (vmx->vpid == 0)
5133 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5134 if (!enable_ept) {
5135 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5136 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005137 /* Enable INVPCID for non-ept guests may cause performance regression. */
5138 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005139 }
5140 if (!enable_unrestricted_guest)
5141 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5142 if (!ple_gap)
5143 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03005144 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005145 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5146 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005147 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005148 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5149 (handle_vmptrld).
5150 We can NOT enable shadow_vmcs here because we don't have yet
5151 a current VMCS12
5152 */
5153 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005154
5155 if (!enable_pml)
5156 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005157
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005158 return exec_control;
5159}
5160
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005161static void ept_set_mmio_spte_mask(void)
5162{
5163 /*
5164 * EPT Misconfigurations can be generated if the value of bits 2:0
5165 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005166 */
Junaid Shahid312b6162016-12-21 20:29:29 -08005167 kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005168}
5169
Wanpeng Lif53cd632014-12-02 19:14:58 +08005170#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005171/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005172 * Sets up the vmcs for emulated real mode.
5173 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005174static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005175{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005176#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005177 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005178#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005179 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005180
Avi Kivity6aa8b732006-12-10 02:21:36 -08005181 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005182 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5183 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005184
Abel Gordon4607c2d2013-04-18 14:35:55 +03005185 if (enable_shadow_vmcs) {
5186 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5187 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5188 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005189 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005190 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005191
Avi Kivity6aa8b732006-12-10 02:21:36 -08005192 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5193
Avi Kivity6aa8b732006-12-10 02:21:36 -08005194 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005195 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005196 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005197
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005198 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005199
Dan Williamsdfa169b2016-06-02 11:17:24 -07005200 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005201 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5202 vmx_secondary_exec_control(vmx));
Dan Williamsdfa169b2016-06-02 11:17:24 -07005203 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005204
Andrey Smetanind62caab2015-11-10 15:36:33 +03005205 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005206 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5207 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5208 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5209 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5210
5211 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005212
Li RongQing0bcf2612015-12-03 13:29:34 +08005213 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005214 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005215 }
5216
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005217 if (ple_gap) {
5218 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005219 vmx->ple_window = ple_window;
5220 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005221 }
5222
Xiao Guangrongc3707952011-07-12 03:28:04 +08005223 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5224 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005225 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5226
Avi Kivity9581d442010-10-19 16:46:55 +02005227 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5228 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005229 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005230#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005231 rdmsrl(MSR_FS_BASE, a);
5232 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5233 rdmsrl(MSR_GS_BASE, a);
5234 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5235#else
5236 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5237 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5238#endif
5239
Eddie Dong2cc51562007-05-21 07:28:09 +03005240 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5241 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005242 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005243 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005244 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005245
Radim Krčmář74545702015-04-27 15:11:25 +02005246 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5247 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005248
Paolo Bonzini03916db2014-07-24 14:21:57 +02005249 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005250 u32 index = vmx_msr_index[i];
5251 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005252 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005253
5254 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5255 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005256 if (wrmsr_safe(index, data_low, data_high) < 0)
5257 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005258 vmx->guest_msrs[j].index = i;
5259 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005260 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005261 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005262 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005263
Gleb Natapov2961e8762013-11-25 15:37:13 +02005264
5265 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005266
5267 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005268 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005269
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005270 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5271 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5272
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005273 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005274
Wanpeng Lif53cd632014-12-02 19:14:58 +08005275 if (vmx_xsaves_supported())
5276 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5277
Peter Feiner4e595162016-07-07 14:49:58 -07005278 if (enable_pml) {
5279 ASSERT(vmx->pml_pg);
5280 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5281 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5282 }
5283
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005284 return 0;
5285}
5286
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005287static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005288{
5289 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005290 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005291 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005292
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005293 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005294
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005295 vmx->soft_vnmi_blocked = 0;
5296
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005297 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005298 kvm_set_cr8(vcpu, 0);
5299
5300 if (!init_event) {
5301 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5302 MSR_IA32_APICBASE_ENABLE;
5303 if (kvm_vcpu_is_reset_bsp(vcpu))
5304 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5305 apic_base_msr.host_initiated = true;
5306 kvm_set_apic_base(vcpu, &apic_base_msr);
5307 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005308
Avi Kivity2fb92db2011-04-27 19:42:18 +03005309 vmx_segment_cache_clear(vmx);
5310
Avi Kivity5706be02008-08-20 15:07:31 +03005311 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005312 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005313 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005314
5315 seg_setup(VCPU_SREG_DS);
5316 seg_setup(VCPU_SREG_ES);
5317 seg_setup(VCPU_SREG_FS);
5318 seg_setup(VCPU_SREG_GS);
5319 seg_setup(VCPU_SREG_SS);
5320
5321 vmcs_write16(GUEST_TR_SELECTOR, 0);
5322 vmcs_writel(GUEST_TR_BASE, 0);
5323 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5324 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5325
5326 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5327 vmcs_writel(GUEST_LDTR_BASE, 0);
5328 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5329 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5330
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005331 if (!init_event) {
5332 vmcs_write32(GUEST_SYSENTER_CS, 0);
5333 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5334 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5335 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5336 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005337
5338 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005339 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005340
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005341 vmcs_writel(GUEST_GDTR_BASE, 0);
5342 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5343
5344 vmcs_writel(GUEST_IDTR_BASE, 0);
5345 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5346
Anthony Liguori443381a2010-12-06 10:53:38 -06005347 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005348 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005349 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005350
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005351 setup_msrs(vmx);
5352
Avi Kivity6aa8b732006-12-10 02:21:36 -08005353 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5354
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005355 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005356 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005357 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005358 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005359 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005360 vmcs_write32(TPR_THRESHOLD, 0);
5361 }
5362
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005363 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005364
Andrey Smetanind62caab2015-11-10 15:36:33 +03005365 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005366 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5367
Sheng Yang2384d2b2008-01-17 15:14:33 +08005368 if (vmx->vpid != 0)
5369 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5370
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005371 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005372 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005373 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005374 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005375 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005376
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005377 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005378
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005379 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005380}
5381
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005382/*
5383 * In nested virtualization, check if L1 asked to exit on external interrupts.
5384 * For most existing hypervisors, this will always return true.
5385 */
5386static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5387{
5388 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5389 PIN_BASED_EXT_INTR_MASK;
5390}
5391
Bandan Das77b0f5d2014-04-19 18:17:45 -04005392/*
5393 * In nested virtualization, check if L1 has set
5394 * VM_EXIT_ACK_INTR_ON_EXIT
5395 */
5396static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5397{
5398 return get_vmcs12(vcpu)->vm_exit_controls &
5399 VM_EXIT_ACK_INTR_ON_EXIT;
5400}
5401
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005402static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5403{
5404 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5405 PIN_BASED_NMI_EXITING;
5406}
5407
Jan Kiszkac9a79532014-03-07 20:03:15 +01005408static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005409{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005410 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5411 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005412}
5413
Jan Kiszkac9a79532014-03-07 20:03:15 +01005414static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005415{
Jan Kiszkac9a79532014-03-07 20:03:15 +01005416 if (!cpu_has_virtual_nmis() ||
5417 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5418 enable_irq_window(vcpu);
5419 return;
5420 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005421
Paolo Bonzini47c01522016-12-19 11:44:07 +01005422 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5423 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005424}
5425
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005426static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005427{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005428 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005429 uint32_t intr;
5430 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005431
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005432 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005433
Avi Kivityfa89a812008-09-01 15:57:51 +03005434 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005435 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005436 int inc_eip = 0;
5437 if (vcpu->arch.interrupt.soft)
5438 inc_eip = vcpu->arch.event_exit_inst_len;
5439 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005440 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005441 return;
5442 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005443 intr = irq | INTR_INFO_VALID_MASK;
5444 if (vcpu->arch.interrupt.soft) {
5445 intr |= INTR_TYPE_SOFT_INTR;
5446 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5447 vmx->vcpu.arch.event_exit_inst_len);
5448 } else
5449 intr |= INTR_TYPE_EXT_INTR;
5450 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005451}
5452
Sheng Yangf08864b2008-05-15 18:23:25 +08005453static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5454{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005455 struct vcpu_vmx *vmx = to_vmx(vcpu);
5456
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005457 if (!is_guest_mode(vcpu)) {
5458 if (!cpu_has_virtual_nmis()) {
5459 /*
5460 * Tracking the NMI-blocked state in software is built upon
5461 * finding the next open IRQ window. This, in turn, depends on
5462 * well-behaving guests: They have to keep IRQs disabled at
5463 * least as long as the NMI handler runs. Otherwise we may
5464 * cause NMI nesting, maybe breaking the guest. But as this is
5465 * highly unlikely, we can live with the residual risk.
5466 */
5467 vmx->soft_vnmi_blocked = 1;
5468 vmx->vnmi_blocked_time = 0;
5469 }
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005470
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005471 ++vcpu->stat.nmi_injections;
5472 vmx->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005473 }
5474
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005475 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005476 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005477 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005478 return;
5479 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005480
Sheng Yangf08864b2008-05-15 18:23:25 +08005481 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5482 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005483}
5484
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005485static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5486{
5487 if (!cpu_has_virtual_nmis())
5488 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005489 if (to_vmx(vcpu)->nmi_known_unmasked)
5490 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005491 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005492}
5493
5494static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5495{
5496 struct vcpu_vmx *vmx = to_vmx(vcpu);
5497
5498 if (!cpu_has_virtual_nmis()) {
5499 if (vmx->soft_vnmi_blocked != masked) {
5500 vmx->soft_vnmi_blocked = masked;
5501 vmx->vnmi_blocked_time = 0;
5502 }
5503 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005504 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005505 if (masked)
5506 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5507 GUEST_INTR_STATE_NMI);
5508 else
5509 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5510 GUEST_INTR_STATE_NMI);
5511 }
5512}
5513
Jan Kiszka2505dc92013-04-14 12:12:47 +02005514static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5515{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005516 if (to_vmx(vcpu)->nested.nested_run_pending)
5517 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005518
Jan Kiszka2505dc92013-04-14 12:12:47 +02005519 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5520 return 0;
5521
5522 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5523 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5524 | GUEST_INTR_STATE_NMI));
5525}
5526
Gleb Natapov78646122009-03-23 12:12:11 +02005527static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5528{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005529 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5530 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005531 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5532 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005533}
5534
Izik Eiduscbc94022007-10-25 00:29:55 +02005535static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5536{
5537 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005538
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005539 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5540 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005541 if (ret)
5542 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005543 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005544 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005545}
5546
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005547static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005549 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005550 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005551 /*
5552 * Update instruction length as we may reinject the exception
5553 * from user space while in guest debugging mode.
5554 */
5555 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5556 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005557 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005558 return false;
5559 /* fall through */
5560 case DB_VECTOR:
5561 if (vcpu->guest_debug &
5562 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5563 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005564 /* fall through */
5565 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005566 case OF_VECTOR:
5567 case BR_VECTOR:
5568 case UD_VECTOR:
5569 case DF_VECTOR:
5570 case SS_VECTOR:
5571 case GP_VECTOR:
5572 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005573 return true;
5574 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005575 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005576 return false;
5577}
5578
5579static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5580 int vec, u32 err_code)
5581{
5582 /*
5583 * Instruction with address size override prefix opcode 0x67
5584 * Cause the #SS fault with 0 error code in VM86 mode.
5585 */
5586 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5587 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5588 if (vcpu->arch.halt_request) {
5589 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005590 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005591 }
5592 return 1;
5593 }
5594 return 0;
5595 }
5596
5597 /*
5598 * Forward all other exceptions that are valid in real mode.
5599 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5600 * the required debugging infrastructure rework.
5601 */
5602 kvm_queue_exception(vcpu, vec);
5603 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005604}
5605
Andi Kleena0861c02009-06-08 17:37:09 +08005606/*
5607 * Trigger machine check on the host. We assume all the MSRs are already set up
5608 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5609 * We pass a fake environment to the machine check handler because we want
5610 * the guest to be always treated like user space, no matter what context
5611 * it used internally.
5612 */
5613static void kvm_machine_check(void)
5614{
5615#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5616 struct pt_regs regs = {
5617 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5618 .flags = X86_EFLAGS_IF,
5619 };
5620
5621 do_machine_check(&regs, 0);
5622#endif
5623}
5624
Avi Kivity851ba692009-08-24 11:10:17 +03005625static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005626{
5627 /* already handled by vcpu_run */
5628 return 1;
5629}
5630
Avi Kivity851ba692009-08-24 11:10:17 +03005631static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005632{
Avi Kivity1155f762007-11-22 11:30:47 +02005633 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005634 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005635 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005636 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005637 u32 vect_info;
5638 enum emulation_result er;
5639
Avi Kivity1155f762007-11-22 11:30:47 +02005640 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005641 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005642
Andi Kleena0861c02009-06-08 17:37:09 +08005643 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005644 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005645
Jim Mattsonef85b672016-12-12 11:01:37 -08005646 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005647 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005648
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005649 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005650 if (is_guest_mode(vcpu)) {
5651 kvm_queue_exception(vcpu, UD_VECTOR);
5652 return 1;
5653 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005654 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005655 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005656 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005657 return 1;
5658 }
5659
Avi Kivity6aa8b732006-12-10 02:21:36 -08005660 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005661 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005662 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005663
5664 /*
5665 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5666 * MMIO, it is better to report an internal error.
5667 * See the comments in vmx_handle_exit.
5668 */
5669 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5670 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5671 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5672 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005673 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005674 vcpu->run->internal.data[0] = vect_info;
5675 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005676 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005677 return 0;
5678 }
5679
Avi Kivity6aa8b732006-12-10 02:21:36 -08005680 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005681 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005682 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005683 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005684 trace_kvm_page_fault(cr2, error_code);
5685
Gleb Natapov3298b752009-05-11 13:35:46 +03005686 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005687 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005688 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005689 }
5690
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005691 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005692
5693 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5694 return handle_rmode_exception(vcpu, ex_no, error_code);
5695
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005696 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005697 case AC_VECTOR:
5698 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5699 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005700 case DB_VECTOR:
5701 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5702 if (!(vcpu->guest_debug &
5703 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005704 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005705 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005706 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5707 skip_emulated_instruction(vcpu);
5708
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005709 kvm_queue_exception(vcpu, DB_VECTOR);
5710 return 1;
5711 }
5712 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5713 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5714 /* fall through */
5715 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005716 /*
5717 * Update instruction length as we may reinject #BP from
5718 * user space while in guest debugging mode. Reading it for
5719 * #DB as well causes no harm, it is not used in that case.
5720 */
5721 vmx->vcpu.arch.event_exit_inst_len =
5722 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005723 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005724 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005725 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5726 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005727 break;
5728 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005729 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5730 kvm_run->ex.exception = ex_no;
5731 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005732 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005733 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005734 return 0;
5735}
5736
Avi Kivity851ba692009-08-24 11:10:17 +03005737static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005738{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005739 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005740 return 1;
5741}
5742
Avi Kivity851ba692009-08-24 11:10:17 +03005743static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005744{
Avi Kivity851ba692009-08-24 11:10:17 +03005745 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005746 return 0;
5747}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005748
Avi Kivity851ba692009-08-24 11:10:17 +03005749static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005750{
He, Qingbfdaab02007-09-12 14:18:28 +08005751 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005752 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005753 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005754
He, Qingbfdaab02007-09-12 14:18:28 +08005755 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005756 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005757 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005758
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005759 ++vcpu->stat.io_exits;
5760
5761 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005762 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005763
5764 port = exit_qualification >> 16;
5765 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005766
Kyle Huey6affcbe2016-11-29 12:40:40 -08005767 ret = kvm_skip_emulated_instruction(vcpu);
5768
5769 /*
5770 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
5771 * KVM_EXIT_DEBUG here.
5772 */
5773 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005774}
5775
Ingo Molnar102d8322007-02-19 14:37:47 +02005776static void
5777vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5778{
5779 /*
5780 * Patch in the VMCALL instruction:
5781 */
5782 hypercall[0] = 0x0f;
5783 hypercall[1] = 0x01;
5784 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005785}
5786
Guo Chao0fa06072012-06-28 15:16:19 +08005787/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005788static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5789{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005790 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005791 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5792 unsigned long orig_val = val;
5793
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005794 /*
5795 * We get here when L2 changed cr0 in a way that did not change
5796 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005797 * but did change L0 shadowed bits. So we first calculate the
5798 * effective cr0 value that L1 would like to write into the
5799 * hardware. It consists of the L2-owned bits from the new
5800 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005801 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005802 val = (val & ~vmcs12->cr0_guest_host_mask) |
5803 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5804
David Matlack38991522016-11-29 18:14:08 -08005805 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005806 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005807
5808 if (kvm_set_cr0(vcpu, val))
5809 return 1;
5810 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005811 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005812 } else {
5813 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08005814 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005815 return 1;
David Matlack38991522016-11-29 18:14:08 -08005816
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005817 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005818 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005819}
5820
5821static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5822{
5823 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005824 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5825 unsigned long orig_val = val;
5826
5827 /* analogously to handle_set_cr0 */
5828 val = (val & ~vmcs12->cr4_guest_host_mask) |
5829 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5830 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005831 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005832 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005833 return 0;
5834 } else
5835 return kvm_set_cr4(vcpu, val);
5836}
5837
Avi Kivity851ba692009-08-24 11:10:17 +03005838static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005839{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005840 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005841 int cr;
5842 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005843 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005844 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005845
He, Qingbfdaab02007-09-12 14:18:28 +08005846 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005847 cr = exit_qualification & 15;
5848 reg = (exit_qualification >> 8) & 15;
5849 switch ((exit_qualification >> 4) & 3) {
5850 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005851 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005852 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005853 switch (cr) {
5854 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005855 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005856 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005857 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005858 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005859 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005860 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005861 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005862 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005863 case 8: {
5864 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005865 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005866 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005867 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005868 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08005869 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005870 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08005871 return ret;
5872 /*
5873 * TODO: we might be squashing a
5874 * KVM_GUESTDBG_SINGLESTEP-triggered
5875 * KVM_EXIT_DEBUG here.
5876 */
Avi Kivity851ba692009-08-24 11:10:17 +03005877 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005878 return 0;
5879 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005880 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005881 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005882 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005883 WARN_ONCE(1, "Guest should always own CR0.TS");
5884 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02005885 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08005886 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005887 case 1: /*mov from cr*/
5888 switch (cr) {
5889 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005890 val = kvm_read_cr3(vcpu);
5891 kvm_register_write(vcpu, reg, val);
5892 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005893 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005894 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005895 val = kvm_get_cr8(vcpu);
5896 kvm_register_write(vcpu, reg, val);
5897 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08005898 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005899 }
5900 break;
5901 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005902 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005903 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005904 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005905
Kyle Huey6affcbe2016-11-29 12:40:40 -08005906 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005907 default:
5908 break;
5909 }
Avi Kivity851ba692009-08-24 11:10:17 +03005910 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005911 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005912 (int)(exit_qualification >> 4) & 3, cr);
5913 return 0;
5914}
5915
Avi Kivity851ba692009-08-24 11:10:17 +03005916static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005917{
He, Qingbfdaab02007-09-12 14:18:28 +08005918 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005919 int dr, dr7, reg;
5920
5921 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5922 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5923
5924 /* First, if DR does not exist, trigger UD */
5925 if (!kvm_require_dr(vcpu, dr))
5926 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005927
Jan Kiszkaf2483412010-01-20 18:20:20 +01005928 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005929 if (!kvm_require_cpl(vcpu, 0))
5930 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005931 dr7 = vmcs_readl(GUEST_DR7);
5932 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005933 /*
5934 * As the vm-exit takes precedence over the debug trap, we
5935 * need to emulate the latter, either for the host or the
5936 * guest debugging itself.
5937 */
5938 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005939 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005940 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005941 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005942 vcpu->run->debug.arch.exception = DB_VECTOR;
5943 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005944 return 0;
5945 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005946 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005947 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005948 kvm_queue_exception(vcpu, DB_VECTOR);
5949 return 1;
5950 }
5951 }
5952
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005953 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01005954 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5955 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005956
5957 /*
5958 * No more DR vmexits; force a reload of the debug registers
5959 * and reenter on this instruction. The next vmexit will
5960 * retrieve the full state of the debug registers.
5961 */
5962 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5963 return 1;
5964 }
5965
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005966 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5967 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005968 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005969
5970 if (kvm_get_dr(vcpu, dr, &val))
5971 return 1;
5972 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005973 } else
Nadav Amit57773922014-06-18 17:19:23 +03005974 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005975 return 1;
5976
Kyle Huey6affcbe2016-11-29 12:40:40 -08005977 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005978}
5979
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005980static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5981{
5982 return vcpu->arch.dr6;
5983}
5984
5985static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5986{
5987}
5988
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005989static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5990{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005991 get_debugreg(vcpu->arch.db[0], 0);
5992 get_debugreg(vcpu->arch.db[1], 1);
5993 get_debugreg(vcpu->arch.db[2], 2);
5994 get_debugreg(vcpu->arch.db[3], 3);
5995 get_debugreg(vcpu->arch.dr6, 6);
5996 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5997
5998 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01005999 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006000}
6001
Gleb Natapov020df072010-04-13 10:05:23 +03006002static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6003{
6004 vmcs_writel(GUEST_DR7, val);
6005}
6006
Avi Kivity851ba692009-08-24 11:10:17 +03006007static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006008{
Kyle Huey6a908b62016-11-29 12:40:37 -08006009 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006010}
6011
Avi Kivity851ba692009-08-24 11:10:17 +03006012static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006013{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006014 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006015 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006016
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006017 msr_info.index = ecx;
6018 msr_info.host_initiated = false;
6019 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006020 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006021 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006022 return 1;
6023 }
6024
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006025 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006026
Avi Kivity6aa8b732006-12-10 02:21:36 -08006027 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006028 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6029 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006030 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006031}
6032
Avi Kivity851ba692009-08-24 11:10:17 +03006033static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006034{
Will Auld8fe8ab42012-11-29 12:42:12 -08006035 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006036 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6037 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6038 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006039
Will Auld8fe8ab42012-11-29 12:42:12 -08006040 msr.data = data;
6041 msr.index = ecx;
6042 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006043 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006044 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006045 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006046 return 1;
6047 }
6048
Avi Kivity59200272010-01-25 19:47:02 +02006049 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006050 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006051}
6052
Avi Kivity851ba692009-08-24 11:10:17 +03006053static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006054{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006055 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006056 return 1;
6057}
6058
Avi Kivity851ba692009-08-24 11:10:17 +03006059static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006060{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006061 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6062 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006063
Avi Kivity3842d132010-07-27 12:30:24 +03006064 kvm_make_request(KVM_REQ_EVENT, vcpu);
6065
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006066 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006067 return 1;
6068}
6069
Avi Kivity851ba692009-08-24 11:10:17 +03006070static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006071{
Avi Kivityd3bef152007-06-05 15:53:05 +03006072 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006073}
6074
Avi Kivity851ba692009-08-24 11:10:17 +03006075static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006076{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006077 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006078}
6079
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006080static int handle_invd(struct kvm_vcpu *vcpu)
6081{
Andre Przywara51d8b662010-12-21 11:12:02 +01006082 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006083}
6084
Avi Kivity851ba692009-08-24 11:10:17 +03006085static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006086{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006087 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006088
6089 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006090 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006091}
6092
Avi Kivityfee84b02011-11-10 14:57:25 +02006093static int handle_rdpmc(struct kvm_vcpu *vcpu)
6094{
6095 int err;
6096
6097 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006098 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006099}
6100
Avi Kivity851ba692009-08-24 11:10:17 +03006101static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006102{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006103 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006104}
6105
Dexuan Cui2acf9232010-06-10 11:27:12 +08006106static int handle_xsetbv(struct kvm_vcpu *vcpu)
6107{
6108 u64 new_bv = kvm_read_edx_eax(vcpu);
6109 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6110
6111 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006112 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006113 return 1;
6114}
6115
Wanpeng Lif53cd632014-12-02 19:14:58 +08006116static int handle_xsaves(struct kvm_vcpu *vcpu)
6117{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006118 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006119 WARN(1, "this should never happen\n");
6120 return 1;
6121}
6122
6123static int handle_xrstors(struct kvm_vcpu *vcpu)
6124{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006125 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006126 WARN(1, "this should never happen\n");
6127 return 1;
6128}
6129
Avi Kivity851ba692009-08-24 11:10:17 +03006130static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006131{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006132 if (likely(fasteoi)) {
6133 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6134 int access_type, offset;
6135
6136 access_type = exit_qualification & APIC_ACCESS_TYPE;
6137 offset = exit_qualification & APIC_ACCESS_OFFSET;
6138 /*
6139 * Sane guest uses MOV to write EOI, with written value
6140 * not cared. So make a short-circuit here by avoiding
6141 * heavy instruction emulation.
6142 */
6143 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6144 (offset == APIC_EOI)) {
6145 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006146 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006147 }
6148 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006149 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006150}
6151
Yang Zhangc7c9c562013-01-25 10:18:51 +08006152static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6153{
6154 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6155 int vector = exit_qualification & 0xff;
6156
6157 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6158 kvm_apic_set_eoi_accelerated(vcpu, vector);
6159 return 1;
6160}
6161
Yang Zhang83d4c282013-01-25 10:18:49 +08006162static int handle_apic_write(struct kvm_vcpu *vcpu)
6163{
6164 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6165 u32 offset = exit_qualification & 0xfff;
6166
6167 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6168 kvm_apic_write_nodecode(vcpu, offset);
6169 return 1;
6170}
6171
Avi Kivity851ba692009-08-24 11:10:17 +03006172static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006173{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006174 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006175 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006176 bool has_error_code = false;
6177 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006178 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006179 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006180
6181 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006182 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006183 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006184
6185 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6186
6187 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006188 if (reason == TASK_SWITCH_GATE && idt_v) {
6189 switch (type) {
6190 case INTR_TYPE_NMI_INTR:
6191 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006192 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006193 break;
6194 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006195 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006196 kvm_clear_interrupt_queue(vcpu);
6197 break;
6198 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006199 if (vmx->idt_vectoring_info &
6200 VECTORING_INFO_DELIVER_CODE_MASK) {
6201 has_error_code = true;
6202 error_code =
6203 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6204 }
6205 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006206 case INTR_TYPE_SOFT_EXCEPTION:
6207 kvm_clear_exception_queue(vcpu);
6208 break;
6209 default:
6210 break;
6211 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006212 }
Izik Eidus37817f22008-03-24 23:14:53 +02006213 tss_selector = exit_qualification;
6214
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006215 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6216 type != INTR_TYPE_EXT_INTR &&
6217 type != INTR_TYPE_NMI_INTR))
6218 skip_emulated_instruction(vcpu);
6219
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006220 if (kvm_task_switch(vcpu, tss_selector,
6221 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6222 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006223 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6224 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6225 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006226 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006227 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006228
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006229 /*
6230 * TODO: What about debug traps on tss switch?
6231 * Are we supposed to inject them and update dr6?
6232 */
6233
6234 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006235}
6236
Avi Kivity851ba692009-08-24 11:10:17 +03006237static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006238{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006239 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006240 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006241 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006242 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08006243
Sheng Yangf9c617f2009-03-25 10:08:52 +08006244 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006245
Sheng Yang14394422008-04-28 12:24:45 +08006246 gla_validity = (exit_qualification >> 7) & 0x3;
Liang Li72e0ae52016-08-18 15:49:19 +08006247 if (gla_validity == 0x2) {
Sheng Yang14394422008-04-28 12:24:45 +08006248 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
6249 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
6250 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08006251 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08006252 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
6253 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03006254 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6255 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03006256 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08006257 }
6258
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006259 /*
6260 * EPT violation happened while executing iret from NMI,
6261 * "blocked by NMI" bit has to be set before next VM entry.
6262 * There are errata that may cause this bit to not be set:
6263 * AAK134, BY25.
6264 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006265 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
6266 cpu_has_virtual_nmis() &&
6267 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006268 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6269
Sheng Yang14394422008-04-28 12:24:45 +08006270 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006271 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006272
Junaid Shahid27959a42016-12-06 16:46:10 -08006273 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006274 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006275 ? PFERR_USER_MASK : 0;
6276 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006277 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006278 ? PFERR_WRITE_MASK : 0;
6279 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006280 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006281 ? PFERR_FETCH_MASK : 0;
6282 /* ept page table entry is present? */
6283 error_code |= (exit_qualification &
6284 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6285 EPT_VIOLATION_EXECUTABLE))
6286 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006287
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01006288 vcpu->arch.gpa_available = true;
Yang Zhang25d92082013-08-06 12:00:32 +03006289 vcpu->arch.exit_qualification = exit_qualification;
6290
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006291 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006292}
6293
Avi Kivity851ba692009-08-24 11:10:17 +03006294static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006295{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006296 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006297 gpa_t gpa;
6298
6299 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006300 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006301 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006302 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006303 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006304
Paolo Bonzini450869d2015-11-04 13:41:21 +01006305 ret = handle_mmio_page_fault(vcpu, gpa, true);
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01006306 vcpu->arch.gpa_available = true;
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006307 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006308 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
6309 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08006310
6311 if (unlikely(ret == RET_MMIO_PF_INVALID))
6312 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
6313
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006314 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006315 return 1;
6316
6317 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006318 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006319
Avi Kivity851ba692009-08-24 11:10:17 +03006320 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6321 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006322
6323 return 0;
6324}
6325
Avi Kivity851ba692009-08-24 11:10:17 +03006326static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006327{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006328 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6329 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006330 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006331 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006332
6333 return 1;
6334}
6335
Mohammed Gamal80ced182009-09-01 12:48:18 +02006336static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006337{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006338 struct vcpu_vmx *vmx = to_vmx(vcpu);
6339 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006340 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006341 u32 cpu_exec_ctrl;
6342 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006343 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006344
6345 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6346 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006347
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006348 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006349 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006350 return handle_interrupt_window(&vmx->vcpu);
6351
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006352 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6353 return 1;
6354
Gleb Natapov991eebf2013-04-11 12:10:51 +03006355 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006356
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006357 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006358 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006359 ret = 0;
6360 goto out;
6361 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006362
Avi Kivityde5f70e2012-06-12 20:22:28 +03006363 if (err != EMULATE_DONE) {
6364 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6365 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6366 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006367 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006368 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006369
Gleb Natapov8d76c492013-05-08 18:38:44 +03006370 if (vcpu->arch.halt_request) {
6371 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006372 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006373 goto out;
6374 }
6375
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006376 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006377 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006378 if (need_resched())
6379 schedule();
6380 }
6381
Mohammed Gamal80ced182009-09-01 12:48:18 +02006382out:
6383 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006384}
6385
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006386static int __grow_ple_window(int val)
6387{
6388 if (ple_window_grow < 1)
6389 return ple_window;
6390
6391 val = min(val, ple_window_actual_max);
6392
6393 if (ple_window_grow < ple_window)
6394 val *= ple_window_grow;
6395 else
6396 val += ple_window_grow;
6397
6398 return val;
6399}
6400
6401static int __shrink_ple_window(int val, int modifier, int minimum)
6402{
6403 if (modifier < 1)
6404 return ple_window;
6405
6406 if (modifier < ple_window)
6407 val /= modifier;
6408 else
6409 val -= modifier;
6410
6411 return max(val, minimum);
6412}
6413
6414static void grow_ple_window(struct kvm_vcpu *vcpu)
6415{
6416 struct vcpu_vmx *vmx = to_vmx(vcpu);
6417 int old = vmx->ple_window;
6418
6419 vmx->ple_window = __grow_ple_window(old);
6420
6421 if (vmx->ple_window != old)
6422 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006423
6424 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006425}
6426
6427static void shrink_ple_window(struct kvm_vcpu *vcpu)
6428{
6429 struct vcpu_vmx *vmx = to_vmx(vcpu);
6430 int old = vmx->ple_window;
6431
6432 vmx->ple_window = __shrink_ple_window(old,
6433 ple_window_shrink, ple_window);
6434
6435 if (vmx->ple_window != old)
6436 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006437
6438 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006439}
6440
6441/*
6442 * ple_window_actual_max is computed to be one grow_ple_window() below
6443 * ple_window_max. (See __grow_ple_window for the reason.)
6444 * This prevents overflows, because ple_window_max is int.
6445 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6446 * this process.
6447 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6448 */
6449static void update_ple_window_actual_max(void)
6450{
6451 ple_window_actual_max =
6452 __shrink_ple_window(max(ple_window_max, ple_window),
6453 ple_window_grow, INT_MIN);
6454}
6455
Feng Wubf9f6ac2015-09-18 22:29:55 +08006456/*
6457 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6458 */
6459static void wakeup_handler(void)
6460{
6461 struct kvm_vcpu *vcpu;
6462 int cpu = smp_processor_id();
6463
6464 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6465 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6466 blocked_vcpu_list) {
6467 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6468
6469 if (pi_test_on(pi_desc) == 1)
6470 kvm_vcpu_kick(vcpu);
6471 }
6472 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6473}
6474
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006475void vmx_enable_tdp(void)
6476{
6477 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6478 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6479 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6480 0ull, VMX_EPT_EXECUTABLE_MASK,
6481 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Junaid Shahid312b6162016-12-21 20:29:29 -08006482 enable_ept_ad_bits ? 0ull : VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006483
6484 ept_set_mmio_spte_mask();
6485 kvm_enable_tdp();
6486}
6487
Tiejun Chenf2c76482014-10-28 10:14:47 +08006488static __init int hardware_setup(void)
6489{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006490 int r = -ENOMEM, i, msr;
6491
6492 rdmsrl_safe(MSR_EFER, &host_efer);
6493
6494 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6495 kvm_define_shared_msr(i, vmx_msr_index[i]);
6496
Radim Krčmář23611332016-09-29 22:41:33 +02006497 for (i = 0; i < VMX_BITMAP_NR; i++) {
6498 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6499 if (!vmx_bitmap[i])
6500 goto out;
6501 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006502
6503 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006504 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6505 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6506
6507 /*
6508 * Allow direct access to the PC debug port (it is often used for I/O
6509 * delays, but the vmexits simply slow things down).
6510 */
6511 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6512 clear_bit(0x80, vmx_io_bitmap_a);
6513
6514 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6515
6516 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6517 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6518
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006519 if (setup_vmcs_config(&vmcs_config) < 0) {
6520 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006521 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006522 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006523
6524 if (boot_cpu_has(X86_FEATURE_NX))
6525 kvm_enable_efer_bits(EFER_NX);
6526
6527 if (!cpu_has_vmx_vpid())
6528 enable_vpid = 0;
6529 if (!cpu_has_vmx_shadow_vmcs())
6530 enable_shadow_vmcs = 0;
6531 if (enable_shadow_vmcs)
6532 init_vmcs_shadow_fields();
6533
6534 if (!cpu_has_vmx_ept() ||
6535 !cpu_has_vmx_ept_4levels()) {
6536 enable_ept = 0;
6537 enable_unrestricted_guest = 0;
6538 enable_ept_ad_bits = 0;
6539 }
6540
6541 if (!cpu_has_vmx_ept_ad_bits())
6542 enable_ept_ad_bits = 0;
6543
6544 if (!cpu_has_vmx_unrestricted_guest())
6545 enable_unrestricted_guest = 0;
6546
Paolo Bonziniad15a292015-01-30 16:18:49 +01006547 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006548 flexpriority_enabled = 0;
6549
Paolo Bonziniad15a292015-01-30 16:18:49 +01006550 /*
6551 * set_apic_access_page_addr() is used to reload apic access
6552 * page upon invalidation. No need to do anything if not
6553 * using the APIC_ACCESS_ADDR VMCS field.
6554 */
6555 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006556 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006557
6558 if (!cpu_has_vmx_tpr_shadow())
6559 kvm_x86_ops->update_cr8_intercept = NULL;
6560
6561 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6562 kvm_disable_largepages();
6563
6564 if (!cpu_has_vmx_ple())
6565 ple_gap = 0;
6566
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006567 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006568 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006569 kvm_x86_ops->sync_pir_to_irr = NULL;
6570 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006571
Haozhong Zhang64903d62015-10-20 15:39:09 +08006572 if (cpu_has_vmx_tsc_scaling()) {
6573 kvm_has_tsc_control = true;
6574 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6575 kvm_tsc_scaling_ratio_frac_bits = 48;
6576 }
6577
Tiejun Chenbaa03522014-12-23 16:21:11 +08006578 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6579 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6580 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6581 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6582 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6583 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6584 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6585
Wanpeng Lic63e4562016-09-23 19:17:16 +08006586 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6587 vmx_msr_bitmap_legacy, PAGE_SIZE);
6588 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6589 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006590 memcpy(vmx_msr_bitmap_legacy_x2apic,
6591 vmx_msr_bitmap_legacy, PAGE_SIZE);
6592 memcpy(vmx_msr_bitmap_longmode_x2apic,
6593 vmx_msr_bitmap_longmode, PAGE_SIZE);
6594
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006595 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6596
Radim Krčmář40d83382016-09-29 22:41:31 +02006597 for (msr = 0x800; msr <= 0x8ff; msr++) {
6598 if (msr == 0x839 /* TMCCT */)
6599 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006600 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006601 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006602
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006603 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006604 * TPR reads and writes can be virtualized even if virtual interrupt
6605 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006606 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006607 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6608 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6609
Roman Kagan3ce424e2016-05-18 17:48:20 +03006610 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006611 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006612 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006613 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006614
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006615 if (enable_ept)
6616 vmx_enable_tdp();
6617 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006618 kvm_disable_tdp();
6619
6620 update_ple_window_actual_max();
6621
Kai Huang843e4332015-01-28 10:54:28 +08006622 /*
6623 * Only enable PML when hardware supports PML feature, and both EPT
6624 * and EPT A/D bit features are enabled -- PML depends on them to work.
6625 */
6626 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6627 enable_pml = 0;
6628
6629 if (!enable_pml) {
6630 kvm_x86_ops->slot_enable_log_dirty = NULL;
6631 kvm_x86_ops->slot_disable_log_dirty = NULL;
6632 kvm_x86_ops->flush_log_dirty = NULL;
6633 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6634 }
6635
Yunhong Jiang64672c92016-06-13 14:19:59 -07006636 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6637 u64 vmx_msr;
6638
6639 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6640 cpu_preemption_timer_multi =
6641 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6642 } else {
6643 kvm_x86_ops->set_hv_timer = NULL;
6644 kvm_x86_ops->cancel_hv_timer = NULL;
6645 }
6646
Feng Wubf9f6ac2015-09-18 22:29:55 +08006647 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6648
Ashok Rajc45dcc72016-06-22 14:59:56 +08006649 kvm_mce_cap_supported |= MCG_LMCE_P;
6650
Tiejun Chenf2c76482014-10-28 10:14:47 +08006651 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006652
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006653out:
Radim Krčmář23611332016-09-29 22:41:33 +02006654 for (i = 0; i < VMX_BITMAP_NR; i++)
6655 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006656
6657 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006658}
6659
6660static __exit void hardware_unsetup(void)
6661{
Radim Krčmář23611332016-09-29 22:41:33 +02006662 int i;
6663
6664 for (i = 0; i < VMX_BITMAP_NR; i++)
6665 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006666
Tiejun Chenf2c76482014-10-28 10:14:47 +08006667 free_kvm_area();
6668}
6669
Avi Kivity6aa8b732006-12-10 02:21:36 -08006670/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006671 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6672 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6673 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006674static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006675{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006676 if (ple_gap)
6677 grow_ple_window(vcpu);
6678
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006679 kvm_vcpu_on_spin(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006680 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006681}
6682
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006683static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006684{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006685 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006686}
6687
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006688static int handle_mwait(struct kvm_vcpu *vcpu)
6689{
6690 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6691 return handle_nop(vcpu);
6692}
6693
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006694static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6695{
6696 return 1;
6697}
6698
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006699static int handle_monitor(struct kvm_vcpu *vcpu)
6700{
6701 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6702 return handle_nop(vcpu);
6703}
6704
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006705/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006706 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6707 * We could reuse a single VMCS for all the L2 guests, but we also want the
6708 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6709 * allows keeping them loaded on the processor, and in the future will allow
6710 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6711 * every entry if they never change.
6712 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6713 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6714 *
6715 * The following functions allocate and free a vmcs02 in this pool.
6716 */
6717
6718/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6719static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6720{
6721 struct vmcs02_list *item;
6722 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6723 if (item->vmptr == vmx->nested.current_vmptr) {
6724 list_move(&item->list, &vmx->nested.vmcs02_pool);
6725 return &item->vmcs02;
6726 }
6727
6728 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6729 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006730 item = list_last_entry(&vmx->nested.vmcs02_pool,
6731 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006732 item->vmptr = vmx->nested.current_vmptr;
6733 list_move(&item->list, &vmx->nested.vmcs02_pool);
6734 return &item->vmcs02;
6735 }
6736
6737 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006738 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006739 if (!item)
6740 return NULL;
6741 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006742 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006743 if (!item->vmcs02.vmcs) {
6744 kfree(item);
6745 return NULL;
6746 }
6747 loaded_vmcs_init(&item->vmcs02);
6748 item->vmptr = vmx->nested.current_vmptr;
6749 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6750 vmx->nested.vmcs02_num++;
6751 return &item->vmcs02;
6752}
6753
6754/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6755static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6756{
6757 struct vmcs02_list *item;
6758 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6759 if (item->vmptr == vmptr) {
6760 free_loaded_vmcs(&item->vmcs02);
6761 list_del(&item->list);
6762 kfree(item);
6763 vmx->nested.vmcs02_num--;
6764 return;
6765 }
6766}
6767
6768/*
6769 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006770 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6771 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006772 */
6773static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6774{
6775 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006776
6777 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006778 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006779 /*
6780 * Something will leak if the above WARN triggers. Better than
6781 * a use-after-free.
6782 */
6783 if (vmx->loaded_vmcs == &item->vmcs02)
6784 continue;
6785
6786 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006787 list_del(&item->list);
6788 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006789 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006790 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006791}
6792
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006793/*
6794 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6795 * set the success or error code of an emulated VMX instruction, as specified
6796 * by Vol 2B, VMX Instruction Reference, "Conventions".
6797 */
6798static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6799{
6800 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6801 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6802 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6803}
6804
6805static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6806{
6807 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6808 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6809 X86_EFLAGS_SF | X86_EFLAGS_OF))
6810 | X86_EFLAGS_CF);
6811}
6812
Abel Gordon145c28d2013-04-18 14:36:55 +03006813static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006814 u32 vm_instruction_error)
6815{
6816 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6817 /*
6818 * failValid writes the error number to the current VMCS, which
6819 * can't be done there isn't a current VMCS.
6820 */
6821 nested_vmx_failInvalid(vcpu);
6822 return;
6823 }
6824 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6825 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6826 X86_EFLAGS_SF | X86_EFLAGS_OF))
6827 | X86_EFLAGS_ZF);
6828 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6829 /*
6830 * We don't need to force a shadow sync because
6831 * VM_INSTRUCTION_ERROR is not shadowed
6832 */
6833}
Abel Gordon145c28d2013-04-18 14:36:55 +03006834
Wincy Vanff651cb2014-12-11 08:52:58 +03006835static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6836{
6837 /* TODO: not to reset guest simply here. */
6838 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02006839 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03006840}
6841
Jan Kiszkaf41245002014-03-07 20:03:13 +01006842static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6843{
6844 struct vcpu_vmx *vmx =
6845 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6846
6847 vmx->nested.preemption_timer_expired = true;
6848 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6849 kvm_vcpu_kick(&vmx->vcpu);
6850
6851 return HRTIMER_NORESTART;
6852}
6853
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006854/*
Bandan Das19677e32014-05-06 02:19:15 -04006855 * Decode the memory-address operand of a vmx instruction, as recorded on an
6856 * exit caused by such an instruction (run by a guest hypervisor).
6857 * On success, returns 0. When the operand is invalid, returns 1 and throws
6858 * #UD or #GP.
6859 */
6860static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6861 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006862 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006863{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006864 gva_t off;
6865 bool exn;
6866 struct kvm_segment s;
6867
Bandan Das19677e32014-05-06 02:19:15 -04006868 /*
6869 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6870 * Execution", on an exit, vmx_instruction_info holds most of the
6871 * addressing components of the operand. Only the displacement part
6872 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6873 * For how an actual address is calculated from all these components,
6874 * refer to Vol. 1, "Operand Addressing".
6875 */
6876 int scaling = vmx_instruction_info & 3;
6877 int addr_size = (vmx_instruction_info >> 7) & 7;
6878 bool is_reg = vmx_instruction_info & (1u << 10);
6879 int seg_reg = (vmx_instruction_info >> 15) & 7;
6880 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6881 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6882 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6883 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6884
6885 if (is_reg) {
6886 kvm_queue_exception(vcpu, UD_VECTOR);
6887 return 1;
6888 }
6889
6890 /* Addr = segment_base + offset */
6891 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006892 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006893 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006894 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006895 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006896 off += kvm_register_read(vcpu, index_reg)<<scaling;
6897 vmx_get_segment(vcpu, &s, seg_reg);
6898 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006899
6900 if (addr_size == 1) /* 32 bit */
6901 *ret &= 0xffffffff;
6902
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006903 /* Checks for #GP/#SS exceptions. */
6904 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02006905 if (is_long_mode(vcpu)) {
6906 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6907 * non-canonical form. This is the only check on the memory
6908 * destination for long mode!
6909 */
6910 exn = is_noncanonical_address(*ret);
6911 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006912 /* Protected mode: apply checks for segment validity in the
6913 * following order:
6914 * - segment type check (#GP(0) may be thrown)
6915 * - usability check (#GP(0)/#SS(0))
6916 * - limit check (#GP(0)/#SS(0))
6917 */
6918 if (wr)
6919 /* #GP(0) if the destination operand is located in a
6920 * read-only data segment or any code segment.
6921 */
6922 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6923 else
6924 /* #GP(0) if the source operand is located in an
6925 * execute-only code segment
6926 */
6927 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02006928 if (exn) {
6929 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6930 return 1;
6931 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006932 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6933 */
6934 exn = (s.unusable != 0);
6935 /* Protected mode: #GP(0)/#SS(0) if the memory
6936 * operand is outside the segment limit.
6937 */
6938 exn = exn || (off + sizeof(u64) > s.limit);
6939 }
6940 if (exn) {
6941 kvm_queue_exception_e(vcpu,
6942 seg_reg == VCPU_SREG_SS ?
6943 SS_VECTOR : GP_VECTOR,
6944 0);
6945 return 1;
6946 }
6947
Bandan Das19677e32014-05-06 02:19:15 -04006948 return 0;
6949}
6950
6951/*
Bandan Das3573e222014-05-06 02:19:16 -04006952 * This function performs the various checks including
6953 * - if it's 4KB aligned
6954 * - No bits beyond the physical address width are set
6955 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006956 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006957 */
Bandan Das4291b582014-05-06 02:19:18 -04006958static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6959 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006960{
6961 gva_t gva;
6962 gpa_t vmptr;
6963 struct x86_exception e;
6964 struct page *page;
6965 struct vcpu_vmx *vmx = to_vmx(vcpu);
6966 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6967
6968 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006969 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006970 return 1;
6971
6972 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6973 sizeof(vmptr), &e)) {
6974 kvm_inject_page_fault(vcpu, &e);
6975 return 1;
6976 }
6977
6978 switch (exit_reason) {
6979 case EXIT_REASON_VMON:
6980 /*
6981 * SDM 3: 24.11.5
6982 * The first 4 bytes of VMXON region contain the supported
6983 * VMCS revision identifier
6984 *
6985 * Note - IA32_VMX_BASIC[48] will never be 1
6986 * for the nested case;
6987 * which replaces physical address width with 32
6988 *
6989 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006990 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006991 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006992 return kvm_skip_emulated_instruction(vcpu);
Bandan Das3573e222014-05-06 02:19:16 -04006993 }
6994
6995 page = nested_get_page(vcpu, vmptr);
Paolo Bonzini06ce5212017-01-24 11:56:21 +01006996 if (page == NULL) {
Bandan Das3573e222014-05-06 02:19:16 -04006997 nested_vmx_failInvalid(vcpu);
Paolo Bonzini06ce5212017-01-24 11:56:21 +01006998 return kvm_skip_emulated_instruction(vcpu);
6999 }
7000 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
Bandan Das3573e222014-05-06 02:19:16 -04007001 kunmap(page);
Paolo Bonzini06ce5212017-01-24 11:56:21 +01007002 nested_release_page_clean(page);
7003 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007004 return kvm_skip_emulated_instruction(vcpu);
Bandan Das3573e222014-05-06 02:19:16 -04007005 }
7006 kunmap(page);
Paolo Bonzini06ce5212017-01-24 11:56:21 +01007007 nested_release_page_clean(page);
Bandan Das3573e222014-05-06 02:19:16 -04007008 vmx->nested.vmxon_ptr = vmptr;
7009 break;
Bandan Das4291b582014-05-06 02:19:18 -04007010 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02007011 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04007012 nested_vmx_failValid(vcpu,
7013 VMXERR_VMCLEAR_INVALID_ADDRESS);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007014 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007015 }
Bandan Das3573e222014-05-06 02:19:16 -04007016
Bandan Das4291b582014-05-06 02:19:18 -04007017 if (vmptr == vmx->nested.vmxon_ptr) {
7018 nested_vmx_failValid(vcpu,
7019 VMXERR_VMCLEAR_VMXON_POINTER);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007020 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007021 }
7022 break;
7023 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02007024 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04007025 nested_vmx_failValid(vcpu,
7026 VMXERR_VMPTRLD_INVALID_ADDRESS);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007027 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007028 }
7029
7030 if (vmptr == vmx->nested.vmxon_ptr) {
7031 nested_vmx_failValid(vcpu,
GanShun37b9a672016-11-30 10:28:19 -08007032 VMXERR_VMPTRLD_VMXON_POINTER);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007033 return kvm_skip_emulated_instruction(vcpu);
Bandan Das4291b582014-05-06 02:19:18 -04007034 }
7035 break;
Bandan Das3573e222014-05-06 02:19:16 -04007036 default:
7037 return 1; /* shouldn't happen */
7038 }
7039
Bandan Das4291b582014-05-06 02:19:18 -04007040 if (vmpointer)
7041 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04007042 return 0;
7043}
7044
Jim Mattsone29acc52016-11-30 12:03:43 -08007045static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7046{
7047 struct vcpu_vmx *vmx = to_vmx(vcpu);
7048 struct vmcs *shadow_vmcs;
7049
7050 if (cpu_has_vmx_msr_bitmap()) {
7051 vmx->nested.msr_bitmap =
7052 (unsigned long *)__get_free_page(GFP_KERNEL);
7053 if (!vmx->nested.msr_bitmap)
7054 goto out_msr_bitmap;
7055 }
7056
7057 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7058 if (!vmx->nested.cached_vmcs12)
7059 goto out_cached_vmcs12;
7060
7061 if (enable_shadow_vmcs) {
7062 shadow_vmcs = alloc_vmcs();
7063 if (!shadow_vmcs)
7064 goto out_shadow_vmcs;
7065 /* mark vmcs as shadow */
7066 shadow_vmcs->revision_id |= (1u << 31);
7067 /* init shadow vmcs */
7068 vmcs_clear(shadow_vmcs);
7069 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7070 }
7071
7072 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7073 vmx->nested.vmcs02_num = 0;
7074
7075 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7076 HRTIMER_MODE_REL_PINNED);
7077 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7078
7079 vmx->nested.vmxon = true;
7080 return 0;
7081
7082out_shadow_vmcs:
7083 kfree(vmx->nested.cached_vmcs12);
7084
7085out_cached_vmcs12:
7086 free_page((unsigned long)vmx->nested.msr_bitmap);
7087
7088out_msr_bitmap:
7089 return -ENOMEM;
7090}
7091
Bandan Das3573e222014-05-06 02:19:16 -04007092/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007093 * Emulate the VMXON instruction.
7094 * Currently, we just remember that VMX is active, and do not save or even
7095 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7096 * do not currently need to store anything in that guest-allocated memory
7097 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7098 * argument is different from the VMXON pointer (which the spec says they do).
7099 */
7100static int handle_vmon(struct kvm_vcpu *vcpu)
7101{
Jim Mattsone29acc52016-11-30 12:03:43 -08007102 int ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007103 struct kvm_segment cs;
7104 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007105 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7106 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007107
7108 /* The Intel VMX Instruction Reference lists a bunch of bits that
7109 * are prerequisite to running VMXON, most notably cr4.VMXE must be
7110 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
7111 * Otherwise, we should fail with #UD. We test these now:
7112 */
7113 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
7114 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
7115 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
7116 kvm_queue_exception(vcpu, UD_VECTOR);
7117 return 1;
7118 }
7119
7120 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
7121 if (is_long_mode(vcpu) && !cs.l) {
7122 kvm_queue_exception(vcpu, UD_VECTOR);
7123 return 1;
7124 }
7125
7126 if (vmx_get_cpl(vcpu)) {
7127 kvm_inject_gp(vcpu, 0);
7128 return 1;
7129 }
Bandan Das3573e222014-05-06 02:19:16 -04007130
Abel Gordon145c28d2013-04-18 14:36:55 +03007131 if (vmx->nested.vmxon) {
7132 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007133 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007134 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007135
Haozhong Zhang3b840802016-06-22 14:59:54 +08007136 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007137 != VMXON_NEEDED_FEATURES) {
7138 kvm_inject_gp(vcpu, 0);
7139 return 1;
7140 }
7141
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007142 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
7143 return 1;
Jim Mattsone29acc52016-11-30 12:03:43 -08007144
7145 ret = enter_vmx_operation(vcpu);
7146 if (ret)
7147 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007148
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007149 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007150 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007151}
7152
7153/*
7154 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7155 * for running VMX instructions (except VMXON, whose prerequisites are
7156 * slightly different). It also specifies what exception to inject otherwise.
7157 */
7158static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7159{
7160 struct kvm_segment cs;
7161 struct vcpu_vmx *vmx = to_vmx(vcpu);
7162
7163 if (!vmx->nested.vmxon) {
7164 kvm_queue_exception(vcpu, UD_VECTOR);
7165 return 0;
7166 }
7167
7168 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
7169 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
7170 (is_long_mode(vcpu) && !cs.l)) {
7171 kvm_queue_exception(vcpu, UD_VECTOR);
7172 return 0;
7173 }
7174
7175 if (vmx_get_cpl(vcpu)) {
7176 kvm_inject_gp(vcpu, 0);
7177 return 0;
7178 }
7179
7180 return 1;
7181}
7182
Abel Gordone7953d72013-04-18 14:37:55 +03007183static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7184{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007185 if (vmx->nested.current_vmptr == -1ull)
7186 return;
7187
7188 /* current_vmptr and current_vmcs12 are always set/reset together */
7189 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
7190 return;
7191
Abel Gordon012f83c2013-04-18 14:39:25 +03007192 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007193 /* copy to memory all shadowed fields in case
7194 they were modified */
7195 copy_shadow_to_vmcs12(vmx);
7196 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007197 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
7198 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007199 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03007200 }
Wincy Van705699a2015-02-03 23:58:17 +08007201 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007202
7203 /* Flush VMCS12 to guest memory */
7204 memcpy(vmx->nested.current_vmcs12, vmx->nested.cached_vmcs12,
7205 VMCS12_SIZE);
7206
Abel Gordone7953d72013-04-18 14:37:55 +03007207 kunmap(vmx->nested.current_vmcs12_page);
7208 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007209 vmx->nested.current_vmptr = -1ull;
7210 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03007211}
7212
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007213/*
7214 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7215 * just stops using VMX.
7216 */
7217static void free_nested(struct vcpu_vmx *vmx)
7218{
7219 if (!vmx->nested.vmxon)
7220 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007221
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007222 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007223 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007224 nested_release_vmcs12(vmx);
Radim Krčmářd048c092016-08-08 20:16:22 +02007225 if (vmx->nested.msr_bitmap) {
7226 free_page((unsigned long)vmx->nested.msr_bitmap);
7227 vmx->nested.msr_bitmap = NULL;
7228 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007229 if (enable_shadow_vmcs) {
7230 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7231 free_vmcs(vmx->vmcs01.shadow_vmcs);
7232 vmx->vmcs01.shadow_vmcs = NULL;
7233 }
David Matlack4f2777b2016-07-13 17:16:37 -07007234 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007235 /* Unpin physical memory we referred to in current vmcs02 */
7236 if (vmx->nested.apic_access_page) {
7237 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007238 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007239 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007240 if (vmx->nested.virtual_apic_page) {
7241 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007242 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007243 }
Wincy Van705699a2015-02-03 23:58:17 +08007244 if (vmx->nested.pi_desc_page) {
7245 kunmap(vmx->nested.pi_desc_page);
7246 nested_release_page(vmx->nested.pi_desc_page);
7247 vmx->nested.pi_desc_page = NULL;
7248 vmx->nested.pi_desc = NULL;
7249 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007250
7251 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007252}
7253
7254/* Emulate the VMXOFF instruction */
7255static int handle_vmoff(struct kvm_vcpu *vcpu)
7256{
7257 if (!nested_vmx_check_permission(vcpu))
7258 return 1;
7259 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007260 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007261 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007262}
7263
Nadav Har'El27d6c862011-05-25 23:06:59 +03007264/* Emulate the VMCLEAR instruction */
7265static int handle_vmclear(struct kvm_vcpu *vcpu)
7266{
7267 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007268 gpa_t vmptr;
7269 struct vmcs12 *vmcs12;
7270 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007271
7272 if (!nested_vmx_check_permission(vcpu))
7273 return 1;
7274
Bandan Das4291b582014-05-06 02:19:18 -04007275 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007276 return 1;
7277
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007278 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007279 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007280
7281 page = nested_get_page(vcpu, vmptr);
7282 if (page == NULL) {
7283 /*
7284 * For accurate processor emulation, VMCLEAR beyond available
7285 * physical memory should do nothing at all. However, it is
7286 * possible that a nested vmx bug, not a guest hypervisor bug,
7287 * resulted in this case, so let's shut down before doing any
7288 * more damage:
7289 */
7290 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7291 return 1;
7292 }
7293 vmcs12 = kmap(page);
7294 vmcs12->launch_state = 0;
7295 kunmap(page);
7296 nested_release_page(page);
7297
7298 nested_free_vmcs02(vmx, vmptr);
7299
Nadav Har'El27d6c862011-05-25 23:06:59 +03007300 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007301 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007302}
7303
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007304static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7305
7306/* Emulate the VMLAUNCH instruction */
7307static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7308{
7309 return nested_vmx_run(vcpu, true);
7310}
7311
7312/* Emulate the VMRESUME instruction */
7313static int handle_vmresume(struct kvm_vcpu *vcpu)
7314{
7315
7316 return nested_vmx_run(vcpu, false);
7317}
7318
Nadav Har'El49f705c2011-05-25 23:08:30 +03007319enum vmcs_field_type {
7320 VMCS_FIELD_TYPE_U16 = 0,
7321 VMCS_FIELD_TYPE_U64 = 1,
7322 VMCS_FIELD_TYPE_U32 = 2,
7323 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
7324};
7325
7326static inline int vmcs_field_type(unsigned long field)
7327{
7328 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7329 return VMCS_FIELD_TYPE_U32;
7330 return (field >> 13) & 0x3 ;
7331}
7332
7333static inline int vmcs_field_readonly(unsigned long field)
7334{
7335 return (((field >> 10) & 0x3) == 1);
7336}
7337
7338/*
7339 * Read a vmcs12 field. Since these can have varying lengths and we return
7340 * one type, we chose the biggest type (u64) and zero-extend the return value
7341 * to that size. Note that the caller, handle_vmread, might need to use only
7342 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7343 * 64-bit fields are to be returned).
7344 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007345static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7346 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007347{
7348 short offset = vmcs_field_to_offset(field);
7349 char *p;
7350
7351 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007352 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007353
7354 p = ((char *)(get_vmcs12(vcpu))) + offset;
7355
7356 switch (vmcs_field_type(field)) {
7357 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7358 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007359 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007360 case VMCS_FIELD_TYPE_U16:
7361 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007362 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007363 case VMCS_FIELD_TYPE_U32:
7364 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007365 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007366 case VMCS_FIELD_TYPE_U64:
7367 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007368 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007369 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007370 WARN_ON(1);
7371 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007372 }
7373}
7374
Abel Gordon20b97fe2013-04-18 14:36:25 +03007375
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007376static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7377 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007378 short offset = vmcs_field_to_offset(field);
7379 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7380 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007381 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007382
7383 switch (vmcs_field_type(field)) {
7384 case VMCS_FIELD_TYPE_U16:
7385 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007386 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007387 case VMCS_FIELD_TYPE_U32:
7388 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007389 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007390 case VMCS_FIELD_TYPE_U64:
7391 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007392 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007393 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7394 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007395 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007396 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007397 WARN_ON(1);
7398 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007399 }
7400
7401}
7402
Abel Gordon16f5b902013-04-18 14:38:25 +03007403static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7404{
7405 int i;
7406 unsigned long field;
7407 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007408 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007409 const unsigned long *fields = shadow_read_write_fields;
7410 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007411
Jan Kiszka282da872014-10-08 18:05:39 +02007412 preempt_disable();
7413
Abel Gordon16f5b902013-04-18 14:38:25 +03007414 vmcs_load(shadow_vmcs);
7415
7416 for (i = 0; i < num_fields; i++) {
7417 field = fields[i];
7418 switch (vmcs_field_type(field)) {
7419 case VMCS_FIELD_TYPE_U16:
7420 field_value = vmcs_read16(field);
7421 break;
7422 case VMCS_FIELD_TYPE_U32:
7423 field_value = vmcs_read32(field);
7424 break;
7425 case VMCS_FIELD_TYPE_U64:
7426 field_value = vmcs_read64(field);
7427 break;
7428 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7429 field_value = vmcs_readl(field);
7430 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007431 default:
7432 WARN_ON(1);
7433 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007434 }
7435 vmcs12_write_any(&vmx->vcpu, field, field_value);
7436 }
7437
7438 vmcs_clear(shadow_vmcs);
7439 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007440
7441 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007442}
7443
Abel Gordonc3114422013-04-18 14:38:55 +03007444static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7445{
Mathias Krausec2bae892013-06-26 20:36:21 +02007446 const unsigned long *fields[] = {
7447 shadow_read_write_fields,
7448 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007449 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007450 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007451 max_shadow_read_write_fields,
7452 max_shadow_read_only_fields
7453 };
7454 int i, q;
7455 unsigned long field;
7456 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007457 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007458
7459 vmcs_load(shadow_vmcs);
7460
Mathias Krausec2bae892013-06-26 20:36:21 +02007461 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007462 for (i = 0; i < max_fields[q]; i++) {
7463 field = fields[q][i];
7464 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7465
7466 switch (vmcs_field_type(field)) {
7467 case VMCS_FIELD_TYPE_U16:
7468 vmcs_write16(field, (u16)field_value);
7469 break;
7470 case VMCS_FIELD_TYPE_U32:
7471 vmcs_write32(field, (u32)field_value);
7472 break;
7473 case VMCS_FIELD_TYPE_U64:
7474 vmcs_write64(field, (u64)field_value);
7475 break;
7476 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7477 vmcs_writel(field, (long)field_value);
7478 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007479 default:
7480 WARN_ON(1);
7481 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007482 }
7483 }
7484 }
7485
7486 vmcs_clear(shadow_vmcs);
7487 vmcs_load(vmx->loaded_vmcs->vmcs);
7488}
7489
Nadav Har'El49f705c2011-05-25 23:08:30 +03007490/*
7491 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7492 * used before) all generate the same failure when it is missing.
7493 */
7494static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7495{
7496 struct vcpu_vmx *vmx = to_vmx(vcpu);
7497 if (vmx->nested.current_vmptr == -1ull) {
7498 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007499 return 0;
7500 }
7501 return 1;
7502}
7503
7504static int handle_vmread(struct kvm_vcpu *vcpu)
7505{
7506 unsigned long field;
7507 u64 field_value;
7508 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7509 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7510 gva_t gva = 0;
7511
Kyle Hueyeb277562016-11-29 12:40:39 -08007512 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007513 return 1;
7514
Kyle Huey6affcbe2016-11-29 12:40:40 -08007515 if (!nested_vmx_check_vmcs12(vcpu))
7516 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007517
Nadav Har'El49f705c2011-05-25 23:08:30 +03007518 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007519 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007520 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007521 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007522 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007523 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007524 }
7525 /*
7526 * Now copy part of this value to register or memory, as requested.
7527 * Note that the number of bits actually copied is 32 or 64 depending
7528 * on the guest's mode (32 or 64 bit), not on the given field's length.
7529 */
7530 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007531 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007532 field_value);
7533 } else {
7534 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007535 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007536 return 1;
7537 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7538 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7539 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7540 }
7541
7542 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007543 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007544}
7545
7546
7547static int handle_vmwrite(struct kvm_vcpu *vcpu)
7548{
7549 unsigned long field;
7550 gva_t gva;
7551 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7552 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007553 /* The value to write might be 32 or 64 bits, depending on L1's long
7554 * mode, and eventually we need to write that into a field of several
7555 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007556 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007557 * bits into the vmcs12 field.
7558 */
7559 u64 field_value = 0;
7560 struct x86_exception e;
7561
Kyle Hueyeb277562016-11-29 12:40:39 -08007562 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007563 return 1;
7564
Kyle Huey6affcbe2016-11-29 12:40:40 -08007565 if (!nested_vmx_check_vmcs12(vcpu))
7566 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007567
Nadav Har'El49f705c2011-05-25 23:08:30 +03007568 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007569 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007570 (((vmx_instruction_info) >> 3) & 0xf));
7571 else {
7572 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007573 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007574 return 1;
7575 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007576 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007577 kvm_inject_page_fault(vcpu, &e);
7578 return 1;
7579 }
7580 }
7581
7582
Nadav Amit27e6fb52014-06-18 17:19:26 +03007583 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007584 if (vmcs_field_readonly(field)) {
7585 nested_vmx_failValid(vcpu,
7586 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007587 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007588 }
7589
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007590 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007591 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007592 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007593 }
7594
7595 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007596 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007597}
7598
Jim Mattsona8bc2842016-11-30 12:03:44 -08007599static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7600{
7601 vmx->nested.current_vmptr = vmptr;
7602 if (enable_shadow_vmcs) {
7603 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7604 SECONDARY_EXEC_SHADOW_VMCS);
7605 vmcs_write64(VMCS_LINK_POINTER,
7606 __pa(vmx->vmcs01.shadow_vmcs));
7607 vmx->nested.sync_shadow_vmcs = true;
7608 }
7609}
7610
Nadav Har'El63846662011-05-25 23:07:29 +03007611/* Emulate the VMPTRLD instruction */
7612static int handle_vmptrld(struct kvm_vcpu *vcpu)
7613{
7614 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007615 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007616
7617 if (!nested_vmx_check_permission(vcpu))
7618 return 1;
7619
Bandan Das4291b582014-05-06 02:19:18 -04007620 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007621 return 1;
7622
Nadav Har'El63846662011-05-25 23:07:29 +03007623 if (vmx->nested.current_vmptr != vmptr) {
7624 struct vmcs12 *new_vmcs12;
7625 struct page *page;
7626 page = nested_get_page(vcpu, vmptr);
7627 if (page == NULL) {
7628 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007629 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007630 }
7631 new_vmcs12 = kmap(page);
7632 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7633 kunmap(page);
7634 nested_release_page_clean(page);
7635 nested_vmx_failValid(vcpu,
7636 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007637 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007638 }
Nadav Har'El63846662011-05-25 23:07:29 +03007639
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007640 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007641 vmx->nested.current_vmcs12 = new_vmcs12;
7642 vmx->nested.current_vmcs12_page = page;
David Matlack4f2777b2016-07-13 17:16:37 -07007643 /*
7644 * Load VMCS12 from guest memory since it is not already
7645 * cached.
7646 */
7647 memcpy(vmx->nested.cached_vmcs12,
7648 vmx->nested.current_vmcs12, VMCS12_SIZE);
Jim Mattsona8bc2842016-11-30 12:03:44 -08007649 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007650 }
7651
7652 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007653 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007654}
7655
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007656/* Emulate the VMPTRST instruction */
7657static int handle_vmptrst(struct kvm_vcpu *vcpu)
7658{
7659 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7660 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7661 gva_t vmcs_gva;
7662 struct x86_exception e;
7663
7664 if (!nested_vmx_check_permission(vcpu))
7665 return 1;
7666
7667 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007668 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007669 return 1;
7670 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7671 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7672 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7673 sizeof(u64), &e)) {
7674 kvm_inject_page_fault(vcpu, &e);
7675 return 1;
7676 }
7677 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007678 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007679}
7680
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007681/* Emulate the INVEPT instruction */
7682static int handle_invept(struct kvm_vcpu *vcpu)
7683{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007684 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007685 u32 vmx_instruction_info, types;
7686 unsigned long type;
7687 gva_t gva;
7688 struct x86_exception e;
7689 struct {
7690 u64 eptp, gpa;
7691 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007692
Wincy Vanb9c237b2015-02-03 23:56:30 +08007693 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7694 SECONDARY_EXEC_ENABLE_EPT) ||
7695 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007696 kvm_queue_exception(vcpu, UD_VECTOR);
7697 return 1;
7698 }
7699
7700 if (!nested_vmx_check_permission(vcpu))
7701 return 1;
7702
7703 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7704 kvm_queue_exception(vcpu, UD_VECTOR);
7705 return 1;
7706 }
7707
7708 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007709 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007710
Wincy Vanb9c237b2015-02-03 23:56:30 +08007711 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007712
Jim Mattson85c856b2016-10-26 08:38:38 -07007713 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007714 nested_vmx_failValid(vcpu,
7715 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007716 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007717 }
7718
7719 /* According to the Intel VMX instruction reference, the memory
7720 * operand is read even if it isn't needed (e.g., for type==global)
7721 */
7722 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007723 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007724 return 1;
7725 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7726 sizeof(operand), &e)) {
7727 kvm_inject_page_fault(vcpu, &e);
7728 return 1;
7729 }
7730
7731 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007732 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007733 /*
7734 * TODO: track mappings and invalidate
7735 * single context requests appropriately
7736 */
7737 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007738 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007739 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007740 nested_vmx_succeed(vcpu);
7741 break;
7742 default:
7743 BUG_ON(1);
7744 break;
7745 }
7746
Kyle Huey6affcbe2016-11-29 12:40:40 -08007747 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007748}
7749
Petr Matouseka642fc32014-09-23 20:22:30 +02007750static int handle_invvpid(struct kvm_vcpu *vcpu)
7751{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007752 struct vcpu_vmx *vmx = to_vmx(vcpu);
7753 u32 vmx_instruction_info;
7754 unsigned long type, types;
7755 gva_t gva;
7756 struct x86_exception e;
7757 int vpid;
7758
7759 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7760 SECONDARY_EXEC_ENABLE_VPID) ||
7761 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7762 kvm_queue_exception(vcpu, UD_VECTOR);
7763 return 1;
7764 }
7765
7766 if (!nested_vmx_check_permission(vcpu))
7767 return 1;
7768
7769 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7770 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7771
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007772 types = (vmx->nested.nested_vmx_vpid_caps &
7773 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007774
Jim Mattson85c856b2016-10-26 08:38:38 -07007775 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007776 nested_vmx_failValid(vcpu,
7777 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007778 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007779 }
7780
7781 /* according to the intel vmx instruction reference, the memory
7782 * operand is read even if it isn't needed (e.g., for type==global)
7783 */
7784 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7785 vmx_instruction_info, false, &gva))
7786 return 1;
7787 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7788 sizeof(u32), &e)) {
7789 kvm_inject_page_fault(vcpu, &e);
7790 return 1;
7791 }
7792
7793 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007794 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Paolo Bonzinief697a72016-03-18 16:58:38 +01007795 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007796 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
7797 if (!vpid) {
7798 nested_vmx_failValid(vcpu,
7799 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007800 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007801 }
7802 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007803 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007804 break;
7805 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007806 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007807 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007808 }
7809
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007810 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7811 nested_vmx_succeed(vcpu);
7812
Kyle Huey6affcbe2016-11-29 12:40:40 -08007813 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007814}
7815
Kai Huang843e4332015-01-28 10:54:28 +08007816static int handle_pml_full(struct kvm_vcpu *vcpu)
7817{
7818 unsigned long exit_qualification;
7819
7820 trace_kvm_pml_full(vcpu->vcpu_id);
7821
7822 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7823
7824 /*
7825 * PML buffer FULL happened while executing iret from NMI,
7826 * "blocked by NMI" bit has to be set before next VM entry.
7827 */
7828 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7829 cpu_has_virtual_nmis() &&
7830 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7831 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7832 GUEST_INTR_STATE_NMI);
7833
7834 /*
7835 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7836 * here.., and there's no userspace involvement needed for PML.
7837 */
7838 return 1;
7839}
7840
Yunhong Jiang64672c92016-06-13 14:19:59 -07007841static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7842{
7843 kvm_lapic_expired_hv_timer(vcpu);
7844 return 1;
7845}
7846
Nadav Har'El0140cae2011-05-25 23:06:28 +03007847/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007848 * The exit handlers return 1 if the exit was handled fully and guest execution
7849 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7850 * to be done to userspace and return 0.
7851 */
Mathias Krause772e0312012-08-30 01:30:19 +02007852static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007853 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7854 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007855 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007856 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007857 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007858 [EXIT_REASON_CR_ACCESS] = handle_cr,
7859 [EXIT_REASON_DR_ACCESS] = handle_dr,
7860 [EXIT_REASON_CPUID] = handle_cpuid,
7861 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7862 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7863 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7864 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007865 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007866 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007867 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007868 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007869 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007870 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007871 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007872 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007873 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007874 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007875 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007876 [EXIT_REASON_VMOFF] = handle_vmoff,
7877 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007878 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7879 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007880 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007881 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007882 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007883 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007884 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007885 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007886 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7887 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007888 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007889 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007890 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007891 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007892 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007893 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007894 [EXIT_REASON_XSAVES] = handle_xsaves,
7895 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007896 [EXIT_REASON_PML_FULL] = handle_pml_full,
Yunhong Jiang64672c92016-06-13 14:19:59 -07007897 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007898};
7899
7900static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007901 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007902
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007903static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7904 struct vmcs12 *vmcs12)
7905{
7906 unsigned long exit_qualification;
7907 gpa_t bitmap, last_bitmap;
7908 unsigned int port;
7909 int size;
7910 u8 b;
7911
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007912 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007913 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007914
7915 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7916
7917 port = exit_qualification >> 16;
7918 size = (exit_qualification & 7) + 1;
7919
7920 last_bitmap = (gpa_t)-1;
7921 b = -1;
7922
7923 while (size > 0) {
7924 if (port < 0x8000)
7925 bitmap = vmcs12->io_bitmap_a;
7926 else if (port < 0x10000)
7927 bitmap = vmcs12->io_bitmap_b;
7928 else
Joe Perches1d804d02015-03-30 16:46:09 -07007929 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007930 bitmap += (port & 0x7fff) / 8;
7931
7932 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007933 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007934 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007935 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007936 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007937
7938 port++;
7939 size--;
7940 last_bitmap = bitmap;
7941 }
7942
Joe Perches1d804d02015-03-30 16:46:09 -07007943 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007944}
7945
Nadav Har'El644d7112011-05-25 23:12:35 +03007946/*
7947 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7948 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7949 * disinterest in the current event (read or write a specific MSR) by using an
7950 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7951 */
7952static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7953 struct vmcs12 *vmcs12, u32 exit_reason)
7954{
7955 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7956 gpa_t bitmap;
7957
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007958 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007959 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007960
7961 /*
7962 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7963 * for the four combinations of read/write and low/high MSR numbers.
7964 * First we need to figure out which of the four to use:
7965 */
7966 bitmap = vmcs12->msr_bitmap;
7967 if (exit_reason == EXIT_REASON_MSR_WRITE)
7968 bitmap += 2048;
7969 if (msr_index >= 0xc0000000) {
7970 msr_index -= 0xc0000000;
7971 bitmap += 1024;
7972 }
7973
7974 /* Then read the msr_index'th bit from this bitmap: */
7975 if (msr_index < 1024*8) {
7976 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007977 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007978 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007979 return 1 & (b >> (msr_index & 7));
7980 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007981 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007982}
7983
7984/*
7985 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7986 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7987 * intercept (via guest_host_mask etc.) the current event.
7988 */
7989static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7990 struct vmcs12 *vmcs12)
7991{
7992 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7993 int cr = exit_qualification & 15;
7994 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007995 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007996
7997 switch ((exit_qualification >> 4) & 3) {
7998 case 0: /* mov to cr */
7999 switch (cr) {
8000 case 0:
8001 if (vmcs12->cr0_guest_host_mask &
8002 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008003 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008004 break;
8005 case 3:
8006 if ((vmcs12->cr3_target_count >= 1 &&
8007 vmcs12->cr3_target_value0 == val) ||
8008 (vmcs12->cr3_target_count >= 2 &&
8009 vmcs12->cr3_target_value1 == val) ||
8010 (vmcs12->cr3_target_count >= 3 &&
8011 vmcs12->cr3_target_value2 == val) ||
8012 (vmcs12->cr3_target_count >= 4 &&
8013 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008014 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008015 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008016 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008017 break;
8018 case 4:
8019 if (vmcs12->cr4_guest_host_mask &
8020 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008021 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008022 break;
8023 case 8:
8024 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008025 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008026 break;
8027 }
8028 break;
8029 case 2: /* clts */
8030 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8031 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008032 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008033 break;
8034 case 1: /* mov from cr */
8035 switch (cr) {
8036 case 3:
8037 if (vmcs12->cpu_based_vm_exec_control &
8038 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008039 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008040 break;
8041 case 8:
8042 if (vmcs12->cpu_based_vm_exec_control &
8043 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008044 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008045 break;
8046 }
8047 break;
8048 case 3: /* lmsw */
8049 /*
8050 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8051 * cr0. Other attempted changes are ignored, with no exit.
8052 */
8053 if (vmcs12->cr0_guest_host_mask & 0xe &
8054 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008055 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008056 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8057 !(vmcs12->cr0_read_shadow & 0x1) &&
8058 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008059 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008060 break;
8061 }
Joe Perches1d804d02015-03-30 16:46:09 -07008062 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008063}
8064
8065/*
8066 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8067 * should handle it ourselves in L0 (and then continue L2). Only call this
8068 * when in is_guest_mode (L2).
8069 */
8070static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
8071{
Nadav Har'El644d7112011-05-25 23:12:35 +03008072 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8073 struct vcpu_vmx *vmx = to_vmx(vcpu);
8074 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01008075 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03008076
Jan Kiszka542060e2014-01-04 18:47:21 +01008077 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8078 vmcs_readl(EXIT_QUALIFICATION),
8079 vmx->idt_vectoring_info,
8080 intr_info,
8081 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8082 KVM_ISA_VMX);
8083
Nadav Har'El644d7112011-05-25 23:12:35 +03008084 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008085 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008086
8087 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008088 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8089 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008090 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008091 }
8092
8093 switch (exit_reason) {
8094 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008095 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008096 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008097 else if (is_page_fault(intr_info))
8098 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008099 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008100 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008101 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008102 else if (is_debug(intr_info) &&
8103 vcpu->guest_debug &
8104 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8105 return false;
8106 else if (is_breakpoint(intr_info) &&
8107 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8108 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008109 return vmcs12->exception_bitmap &
8110 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8111 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008112 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008113 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008114 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008115 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008116 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008117 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008118 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008119 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008120 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008121 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008122 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008123 case EXIT_REASON_HLT:
8124 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8125 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008126 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008127 case EXIT_REASON_INVLPG:
8128 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8129 case EXIT_REASON_RDPMC:
8130 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008131 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008132 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8133 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8134 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8135 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8136 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8137 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008138 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008139 /*
8140 * VMX instructions trap unconditionally. This allows L1 to
8141 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8142 */
Joe Perches1d804d02015-03-30 16:46:09 -07008143 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008144 case EXIT_REASON_CR_ACCESS:
8145 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8146 case EXIT_REASON_DR_ACCESS:
8147 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8148 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008149 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008150 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8151 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008152 case EXIT_REASON_MSR_READ:
8153 case EXIT_REASON_MSR_WRITE:
8154 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8155 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008156 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008157 case EXIT_REASON_MWAIT_INSTRUCTION:
8158 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008159 case EXIT_REASON_MONITOR_TRAP_FLAG:
8160 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008161 case EXIT_REASON_MONITOR_INSTRUCTION:
8162 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8163 case EXIT_REASON_PAUSE_INSTRUCTION:
8164 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8165 nested_cpu_has2(vmcs12,
8166 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8167 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008168 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008169 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008170 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008171 case EXIT_REASON_APIC_ACCESS:
8172 return nested_cpu_has2(vmcs12,
8173 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008174 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008175 case EXIT_REASON_EOI_INDUCED:
8176 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008177 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008178 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008179 /*
8180 * L0 always deals with the EPT violation. If nested EPT is
8181 * used, and the nested mmu code discovers that the address is
8182 * missing in the guest EPT table (EPT12), the EPT violation
8183 * will be injected with nested_ept_inject_page_fault()
8184 */
Joe Perches1d804d02015-03-30 16:46:09 -07008185 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008186 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008187 /*
8188 * L2 never uses directly L1's EPT, but rather L0's own EPT
8189 * table (shadow on EPT) or a merged EPT table that L0 built
8190 * (EPT on EPT). So any problems with the structure of the
8191 * table is L0's fault.
8192 */
Joe Perches1d804d02015-03-30 16:46:09 -07008193 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008194 case EXIT_REASON_WBINVD:
8195 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8196 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008197 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008198 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8199 /*
8200 * This should never happen, since it is not possible to
8201 * set XSS to a non-zero value---neither in L1 nor in L2.
8202 * If if it were, XSS would have to be checked against
8203 * the XSS exit bitmap in vmcs12.
8204 */
8205 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008206 case EXIT_REASON_PREEMPTION_TIMER:
8207 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008208 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008209 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008210 }
8211}
8212
Avi Kivity586f9602010-11-18 13:09:54 +02008213static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8214{
8215 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8216 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8217}
8218
Kai Huanga3eaa862015-11-04 13:46:05 +08008219static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008220{
Kai Huanga3eaa862015-11-04 13:46:05 +08008221 if (vmx->pml_pg) {
8222 __free_page(vmx->pml_pg);
8223 vmx->pml_pg = NULL;
8224 }
Kai Huang843e4332015-01-28 10:54:28 +08008225}
8226
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008227static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008228{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008229 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008230 u64 *pml_buf;
8231 u16 pml_idx;
8232
8233 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8234
8235 /* Do nothing if PML buffer is empty */
8236 if (pml_idx == (PML_ENTITY_NUM - 1))
8237 return;
8238
8239 /* PML index always points to next available PML buffer entity */
8240 if (pml_idx >= PML_ENTITY_NUM)
8241 pml_idx = 0;
8242 else
8243 pml_idx++;
8244
8245 pml_buf = page_address(vmx->pml_pg);
8246 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8247 u64 gpa;
8248
8249 gpa = pml_buf[pml_idx];
8250 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008251 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008252 }
8253
8254 /* reset PML index */
8255 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8256}
8257
8258/*
8259 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8260 * Called before reporting dirty_bitmap to userspace.
8261 */
8262static void kvm_flush_pml_buffers(struct kvm *kvm)
8263{
8264 int i;
8265 struct kvm_vcpu *vcpu;
8266 /*
8267 * We only need to kick vcpu out of guest mode here, as PML buffer
8268 * is flushed at beginning of all VMEXITs, and it's obvious that only
8269 * vcpus running in guest are possible to have unflushed GPAs in PML
8270 * buffer.
8271 */
8272 kvm_for_each_vcpu(i, vcpu, kvm)
8273 kvm_vcpu_kick(vcpu);
8274}
8275
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008276static void vmx_dump_sel(char *name, uint32_t sel)
8277{
8278 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
8279 name, vmcs_read32(sel),
8280 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8281 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8282 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8283}
8284
8285static void vmx_dump_dtsel(char *name, uint32_t limit)
8286{
8287 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8288 name, vmcs_read32(limit),
8289 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8290}
8291
8292static void dump_vmcs(void)
8293{
8294 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8295 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8296 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8297 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8298 u32 secondary_exec_control = 0;
8299 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008300 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008301 int i, n;
8302
8303 if (cpu_has_secondary_exec_ctrls())
8304 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8305
8306 pr_err("*** Guest State ***\n");
8307 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8308 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8309 vmcs_readl(CR0_GUEST_HOST_MASK));
8310 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8311 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8312 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8313 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8314 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8315 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008316 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8317 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8318 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8319 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008320 }
8321 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8322 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8323 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8324 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8325 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8326 vmcs_readl(GUEST_SYSENTER_ESP),
8327 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8328 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8329 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8330 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8331 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8332 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8333 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8334 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8335 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8336 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8337 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8338 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8339 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008340 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8341 efer, vmcs_read64(GUEST_IA32_PAT));
8342 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8343 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008344 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8345 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008346 pr_err("PerfGlobCtl = 0x%016llx\n",
8347 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008348 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008349 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008350 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8351 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8352 vmcs_read32(GUEST_ACTIVITY_STATE));
8353 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8354 pr_err("InterruptStatus = %04x\n",
8355 vmcs_read16(GUEST_INTR_STATUS));
8356
8357 pr_err("*** Host State ***\n");
8358 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8359 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8360 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8361 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8362 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8363 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8364 vmcs_read16(HOST_TR_SELECTOR));
8365 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8366 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8367 vmcs_readl(HOST_TR_BASE));
8368 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8369 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8370 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8371 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8372 vmcs_readl(HOST_CR4));
8373 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8374 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8375 vmcs_read32(HOST_IA32_SYSENTER_CS),
8376 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8377 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008378 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8379 vmcs_read64(HOST_IA32_EFER),
8380 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008381 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008382 pr_err("PerfGlobCtl = 0x%016llx\n",
8383 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008384
8385 pr_err("*** Control State ***\n");
8386 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8387 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8388 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8389 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8390 vmcs_read32(EXCEPTION_BITMAP),
8391 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8392 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8393 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8394 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8395 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8396 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8397 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8398 vmcs_read32(VM_EXIT_INTR_INFO),
8399 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8400 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8401 pr_err(" reason=%08x qualification=%016lx\n",
8402 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8403 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8404 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8405 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008406 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008407 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008408 pr_err("TSC Multiplier = 0x%016llx\n",
8409 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008410 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8411 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8412 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8413 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8414 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008415 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008416 n = vmcs_read32(CR3_TARGET_COUNT);
8417 for (i = 0; i + 1 < n; i += 4)
8418 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8419 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8420 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8421 if (i < n)
8422 pr_err("CR3 target%u=%016lx\n",
8423 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8424 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8425 pr_err("PLE Gap=%08x Window=%08x\n",
8426 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8427 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8428 pr_err("Virtual processor ID = 0x%04x\n",
8429 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8430}
8431
Avi Kivity6aa8b732006-12-10 02:21:36 -08008432/*
8433 * The guest has exited. See if we can fix it or if we need userspace
8434 * assistance.
8435 */
Avi Kivity851ba692009-08-24 11:10:17 +03008436static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008437{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008438 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008439 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008440 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008441
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008442 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Paolo Bonzinidb1c0562016-12-08 15:31:41 +01008443 vcpu->arch.gpa_available = false;
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008444
Kai Huang843e4332015-01-28 10:54:28 +08008445 /*
8446 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8447 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8448 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8449 * mode as if vcpus is in root mode, the PML buffer must has been
8450 * flushed already.
8451 */
8452 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008453 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008454
Mohammed Gamal80ced182009-09-01 12:48:18 +02008455 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008456 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008457 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008458
Nadav Har'El644d7112011-05-25 23:12:35 +03008459 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008460 nested_vmx_vmexit(vcpu, exit_reason,
8461 vmcs_read32(VM_EXIT_INTR_INFO),
8462 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008463 return 1;
8464 }
8465
Mohammed Gamal51207022010-05-31 22:40:54 +03008466 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008467 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008468 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8469 vcpu->run->fail_entry.hardware_entry_failure_reason
8470 = exit_reason;
8471 return 0;
8472 }
8473
Avi Kivity29bd8a72007-09-10 17:27:03 +03008474 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008475 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8476 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008477 = vmcs_read32(VM_INSTRUCTION_ERROR);
8478 return 0;
8479 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008480
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008481 /*
8482 * Note:
8483 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8484 * delivery event since it indicates guest is accessing MMIO.
8485 * The vm-exit can be triggered again after return to guest that
8486 * will cause infinite loop.
8487 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008488 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008489 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008490 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008491 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008492 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8493 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8494 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8495 vcpu->run->internal.ndata = 2;
8496 vcpu->run->internal.data[0] = vectoring_info;
8497 vcpu->run->internal.data[1] = exit_reason;
8498 return 0;
8499 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008500
Nadav Har'El644d7112011-05-25 23:12:35 +03008501 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8502 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008503 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008504 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008505 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008506 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008507 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008508 /*
8509 * This CPU don't support us in finding the end of an
8510 * NMI-blocked window if the guest runs with IRQs
8511 * disabled. So we pull the trigger after 1 s of
8512 * futile waiting, but inform the user about this.
8513 */
8514 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8515 "state on VCPU %d after 1 s timeout\n",
8516 __func__, vcpu->vcpu_id);
8517 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008518 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008519 }
8520
Avi Kivity6aa8b732006-12-10 02:21:36 -08008521 if (exit_reason < kvm_vmx_max_exit_handlers
8522 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008523 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008524 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008525 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8526 kvm_queue_exception(vcpu, UD_VECTOR);
8527 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008528 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008529}
8530
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008531static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008532{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008533 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8534
8535 if (is_guest_mode(vcpu) &&
8536 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8537 return;
8538
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008539 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008540 vmcs_write32(TPR_THRESHOLD, 0);
8541 return;
8542 }
8543
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008544 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008545}
8546
Yang Zhang8d146952013-01-25 10:18:50 +08008547static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8548{
8549 u32 sec_exec_control;
8550
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008551 /* Postpone execution until vmcs01 is the current VMCS. */
8552 if (is_guest_mode(vcpu)) {
8553 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8554 return;
8555 }
8556
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008557 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008558 return;
8559
Paolo Bonzini35754c92015-07-29 12:05:37 +02008560 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008561 return;
8562
8563 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8564
8565 if (set) {
8566 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8567 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8568 } else {
8569 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8570 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8571 }
8572 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8573
8574 vmx_set_msr_bitmap(vcpu);
8575}
8576
Tang Chen38b99172014-09-24 15:57:54 +08008577static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8578{
8579 struct vcpu_vmx *vmx = to_vmx(vcpu);
8580
8581 /*
8582 * Currently we do not handle the nested case where L2 has an
8583 * APIC access page of its own; that page is still pinned.
8584 * Hence, we skip the case where the VCPU is in guest mode _and_
8585 * L1 prepared an APIC access page for L2.
8586 *
8587 * For the case where L1 and L2 share the same APIC access page
8588 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8589 * in the vmcs12), this function will only update either the vmcs01
8590 * or the vmcs02. If the former, the vmcs02 will be updated by
8591 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8592 * the next L2->L1 exit.
8593 */
8594 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008595 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Tang Chen38b99172014-09-24 15:57:54 +08008596 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8597 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8598}
8599
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008600static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008601{
8602 u16 status;
8603 u8 old;
8604
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008605 if (max_isr == -1)
8606 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008607
8608 status = vmcs_read16(GUEST_INTR_STATUS);
8609 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008610 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008611 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008612 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008613 vmcs_write16(GUEST_INTR_STATUS, status);
8614 }
8615}
8616
8617static void vmx_set_rvi(int vector)
8618{
8619 u16 status;
8620 u8 old;
8621
Wei Wang4114c272014-11-05 10:53:43 +08008622 if (vector == -1)
8623 vector = 0;
8624
Yang Zhangc7c9c562013-01-25 10:18:51 +08008625 status = vmcs_read16(GUEST_INTR_STATUS);
8626 old = (u8)status & 0xff;
8627 if ((u8)vector != old) {
8628 status &= ~0xff;
8629 status |= (u8)vector;
8630 vmcs_write16(GUEST_INTR_STATUS, status);
8631 }
8632}
8633
8634static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8635{
Wanpeng Li963fee12014-07-17 19:03:00 +08008636 if (!is_guest_mode(vcpu)) {
8637 vmx_set_rvi(max_irr);
8638 return;
8639 }
8640
Wei Wang4114c272014-11-05 10:53:43 +08008641 if (max_irr == -1)
8642 return;
8643
Wanpeng Li963fee12014-07-17 19:03:00 +08008644 /*
Wei Wang4114c272014-11-05 10:53:43 +08008645 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8646 * handles it.
8647 */
8648 if (nested_exit_on_intr(vcpu))
8649 return;
8650
8651 /*
8652 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008653 * is run without virtual interrupt delivery.
8654 */
8655 if (!kvm_event_needs_reinjection(vcpu) &&
8656 vmx_interrupt_allowed(vcpu)) {
8657 kvm_queue_interrupt(vcpu, max_irr, false);
8658 vmx_inject_irq(vcpu);
8659 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008660}
8661
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008662static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008663{
8664 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008665 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008666
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008667 WARN_ON(!vcpu->arch.apicv_active);
8668 if (pi_test_on(&vmx->pi_desc)) {
8669 pi_clear_on(&vmx->pi_desc);
8670 /*
8671 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8672 * But on x86 this is just a compiler barrier anyway.
8673 */
8674 smp_mb__after_atomic();
8675 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8676 } else {
8677 max_irr = kvm_lapic_find_highest_irr(vcpu);
8678 }
8679 vmx_hwapic_irr_update(vcpu, max_irr);
8680 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008681}
8682
Andrey Smetanin63086302015-11-10 15:36:32 +03008683static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008684{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008685 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008686 return;
8687
Yang Zhangc7c9c562013-01-25 10:18:51 +08008688 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8689 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8690 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8691 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8692}
8693
Paolo Bonzini967235d2016-12-19 14:03:45 +01008694static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
8695{
8696 struct vcpu_vmx *vmx = to_vmx(vcpu);
8697
8698 pi_clear_on(&vmx->pi_desc);
8699 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
8700}
8701
Avi Kivity51aa01d2010-07-20 14:31:20 +03008702static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008703{
Avi Kivity00eba012011-03-07 17:24:54 +02008704 u32 exit_intr_info;
8705
8706 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8707 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8708 return;
8709
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008710 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008711 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008712
8713 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008714 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008715 kvm_machine_check();
8716
Gleb Natapov20f65982009-05-11 13:35:55 +03008717 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08008718 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008719 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008720 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008721 kvm_after_handle_nmi(&vmx->vcpu);
8722 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008723}
Gleb Natapov20f65982009-05-11 13:35:55 +03008724
Yang Zhanga547c6d2013-04-11 19:25:10 +08008725static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8726{
8727 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008728 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008729
Yang Zhanga547c6d2013-04-11 19:25:10 +08008730 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8731 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8732 unsigned int vector;
8733 unsigned long entry;
8734 gate_desc *desc;
8735 struct vcpu_vmx *vmx = to_vmx(vcpu);
8736#ifdef CONFIG_X86_64
8737 unsigned long tmp;
8738#endif
8739
8740 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8741 desc = (gate_desc *)vmx->host_idt_base + vector;
8742 entry = gate_offset(*desc);
8743 asm volatile(
8744#ifdef CONFIG_X86_64
8745 "mov %%" _ASM_SP ", %[sp]\n\t"
8746 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8747 "push $%c[ss]\n\t"
8748 "push %[sp]\n\t"
8749#endif
8750 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08008751 __ASM_SIZE(push) " $%c[cs]\n\t"
8752 "call *%[entry]\n\t"
8753 :
8754#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008755 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008756#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008757 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008758 :
8759 [entry]"r"(entry),
8760 [ss]"i"(__KERNEL_DS),
8761 [cs]"i"(__KERNEL_CS)
8762 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008763 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08008764}
8765
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008766static bool vmx_has_high_real_mode_segbase(void)
8767{
8768 return enable_unrestricted_guest || emulate_invalid_guest_state;
8769}
8770
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008771static bool vmx_mpx_supported(void)
8772{
8773 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8774 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8775}
8776
Wanpeng Li55412b22014-12-02 19:21:30 +08008777static bool vmx_xsaves_supported(void)
8778{
8779 return vmcs_config.cpu_based_2nd_exec_ctrl &
8780 SECONDARY_EXEC_XSAVES;
8781}
8782
Avi Kivity51aa01d2010-07-20 14:31:20 +03008783static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8784{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008785 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008786 bool unblock_nmi;
8787 u8 vector;
8788 bool idtv_info_valid;
8789
8790 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008791
Avi Kivitycf393f72008-07-01 16:20:21 +03008792 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008793 if (vmx->nmi_known_unmasked)
8794 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008795 /*
8796 * Can't use vmx->exit_intr_info since we're not sure what
8797 * the exit reason is.
8798 */
8799 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008800 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8801 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8802 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008803 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008804 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8805 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008806 * SDM 3: 23.2.2 (September 2008)
8807 * Bit 12 is undefined in any of the following cases:
8808 * If the VM exit sets the valid bit in the IDT-vectoring
8809 * information field.
8810 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008811 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008812 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8813 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008814 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8815 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008816 else
8817 vmx->nmi_known_unmasked =
8818 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8819 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008820 } else if (unlikely(vmx->soft_vnmi_blocked))
8821 vmx->vnmi_blocked_time +=
8822 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008823}
8824
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008825static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008826 u32 idt_vectoring_info,
8827 int instr_len_field,
8828 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008829{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008830 u8 vector;
8831 int type;
8832 bool idtv_info_valid;
8833
8834 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008835
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008836 vcpu->arch.nmi_injected = false;
8837 kvm_clear_exception_queue(vcpu);
8838 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008839
8840 if (!idtv_info_valid)
8841 return;
8842
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008843 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008844
Avi Kivity668f6122008-07-02 09:28:55 +03008845 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8846 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008847
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008848 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008849 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008850 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008851 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008852 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008853 * Clear bit "block by NMI" before VM entry if a NMI
8854 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008855 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008856 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008857 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008858 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008859 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008860 /* fall through */
8861 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008862 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008863 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008864 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008865 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008866 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008867 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008868 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008869 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008870 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008871 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008872 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008873 break;
8874 default:
8875 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008876 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008877}
8878
Avi Kivity83422e12010-07-20 14:43:23 +03008879static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8880{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008881 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008882 VM_EXIT_INSTRUCTION_LEN,
8883 IDT_VECTORING_ERROR_CODE);
8884}
8885
Avi Kivityb463a6f2010-07-20 15:06:17 +03008886static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8887{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008888 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008889 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8890 VM_ENTRY_INSTRUCTION_LEN,
8891 VM_ENTRY_EXCEPTION_ERROR_CODE);
8892
8893 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8894}
8895
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008896static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8897{
8898 int i, nr_msrs;
8899 struct perf_guest_switch_msr *msrs;
8900
8901 msrs = perf_guest_get_msrs(&nr_msrs);
8902
8903 if (!msrs)
8904 return;
8905
8906 for (i = 0; i < nr_msrs; i++)
8907 if (msrs[i].host == msrs[i].guest)
8908 clear_atomic_switch_msr(vmx, msrs[i].msr);
8909 else
8910 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8911 msrs[i].host);
8912}
8913
Jiang Biao33365e72016-11-03 15:03:37 +08008914static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07008915{
8916 struct vcpu_vmx *vmx = to_vmx(vcpu);
8917 u64 tscl;
8918 u32 delta_tsc;
8919
8920 if (vmx->hv_deadline_tsc == -1)
8921 return;
8922
8923 tscl = rdtsc();
8924 if (vmx->hv_deadline_tsc > tscl)
8925 /* sure to be 32 bit only because checked on set_hv_timer */
8926 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
8927 cpu_preemption_timer_multi);
8928 else
8929 delta_tsc = 0;
8930
8931 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
8932}
8933
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008934static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008935{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008936 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008937 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008938
8939 /* Record the guest's net vcpu time for enforced NMI injections. */
8940 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8941 vmx->entry_time = ktime_get();
8942
8943 /* Don't enter VMX if guest state is invalid, let the exit handler
8944 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008945 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008946 return;
8947
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008948 if (vmx->ple_window_dirty) {
8949 vmx->ple_window_dirty = false;
8950 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8951 }
8952
Abel Gordon012f83c2013-04-18 14:39:25 +03008953 if (vmx->nested.sync_shadow_vmcs) {
8954 copy_vmcs12_to_shadow(vmx);
8955 vmx->nested.sync_shadow_vmcs = false;
8956 }
8957
Avi Kivity104f2262010-11-18 13:12:52 +02008958 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8959 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8960 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8961 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8962
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008963 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008964 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8965 vmcs_writel(HOST_CR4, cr4);
8966 vmx->host_state.vmcs_host_cr4 = cr4;
8967 }
8968
Avi Kivity104f2262010-11-18 13:12:52 +02008969 /* When single-stepping over STI and MOV SS, we must clear the
8970 * corresponding interruptibility bits in the guest state. Otherwise
8971 * vmentry fails as it then expects bit 14 (BS) in pending debug
8972 * exceptions being set, but that's not correct for the guest debugging
8973 * case. */
8974 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8975 vmx_set_interrupt_shadow(vcpu, 0);
8976
Xiao Guangrong1be0e612016-03-22 16:51:18 +08008977 if (vmx->guest_pkru_valid)
8978 __write_pkru(vmx->guest_pkru);
8979
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008980 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008981 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008982
Yunhong Jiang64672c92016-06-13 14:19:59 -07008983 vmx_arm_hv_timer(vcpu);
8984
Nadav Har'Eld462b812011-05-24 15:26:10 +03008985 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008986 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008987 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008988 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8989 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8990 "push %%" _ASM_CX " \n\t"
8991 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008992 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008993 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008994 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008995 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008996 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008997 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8998 "mov %%cr2, %%" _ASM_DX " \n\t"
8999 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009000 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009001 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009002 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009003 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009004 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009005 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009006 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9007 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9008 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9009 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9010 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9011 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009012#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009013 "mov %c[r8](%0), %%r8 \n\t"
9014 "mov %c[r9](%0), %%r9 \n\t"
9015 "mov %c[r10](%0), %%r10 \n\t"
9016 "mov %c[r11](%0), %%r11 \n\t"
9017 "mov %c[r12](%0), %%r12 \n\t"
9018 "mov %c[r13](%0), %%r13 \n\t"
9019 "mov %c[r14](%0), %%r14 \n\t"
9020 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009021#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009022 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009023
Avi Kivity6aa8b732006-12-10 02:21:36 -08009024 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009025 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009026 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009027 "jmp 2f \n\t"
9028 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9029 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009030 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009031 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009032 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009033 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9034 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9035 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9036 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9037 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9038 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9039 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009040#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009041 "mov %%r8, %c[r8](%0) \n\t"
9042 "mov %%r9, %c[r9](%0) \n\t"
9043 "mov %%r10, %c[r10](%0) \n\t"
9044 "mov %%r11, %c[r11](%0) \n\t"
9045 "mov %%r12, %c[r12](%0) \n\t"
9046 "mov %%r13, %c[r13](%0) \n\t"
9047 "mov %%r14, %c[r14](%0) \n\t"
9048 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009049#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009050 "mov %%cr2, %%" _ASM_AX " \n\t"
9051 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009052
Avi Kivityb188c81f2012-09-16 15:10:58 +03009053 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009054 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009055 ".pushsection .rodata \n\t"
9056 ".global vmx_return \n\t"
9057 "vmx_return: " _ASM_PTR " 2b \n\t"
9058 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009059 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009060 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009061 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009062 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009063 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9064 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9065 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9066 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9067 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9068 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9069 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009070#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009071 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9072 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9073 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9074 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9075 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9076 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9077 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9078 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009079#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009080 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9081 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009082 : "cc", "memory"
9083#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009084 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009085 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009086#else
9087 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009088#endif
9089 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009090
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009091 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9092 if (debugctlmsr)
9093 update_debugctlmsr(debugctlmsr);
9094
Avi Kivityaa67f602012-08-01 16:48:03 +03009095#ifndef CONFIG_X86_64
9096 /*
9097 * The sysexit path does not restore ds/es, so we must set them to
9098 * a reasonable value ourselves.
9099 *
9100 * We can't defer this to vmx_load_host_state() since that function
9101 * may be executed in interrupt context, which saves and restore segments
9102 * around it, nullifying its effect.
9103 */
9104 loadsegment(ds, __USER_DS);
9105 loadsegment(es, __USER_DS);
9106#endif
9107
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009108 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009109 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009110 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009111 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009112 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009113 vcpu->arch.regs_dirty = 0;
9114
Avi Kivity1155f762007-11-22 11:30:47 +02009115 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9116
Nadav Har'Eld462b812011-05-24 15:26:10 +03009117 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009118
Avi Kivity51aa01d2010-07-20 14:31:20 +03009119 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009120
Gleb Natapove0b890d2013-09-25 12:51:33 +03009121 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009122 * eager fpu is enabled if PKEY is supported and CR4 is switched
9123 * back on host, so it is safe to read guest PKRU from current
9124 * XSAVE.
9125 */
9126 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9127 vmx->guest_pkru = __read_pkru();
9128 if (vmx->guest_pkru != vmx->host_pkru) {
9129 vmx->guest_pkru_valid = true;
9130 __write_pkru(vmx->host_pkru);
9131 } else
9132 vmx->guest_pkru_valid = false;
9133 }
9134
9135 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009136 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9137 * we did not inject a still-pending event to L1 now because of
9138 * nested_run_pending, we need to re-enable this bit.
9139 */
9140 if (vmx->nested.nested_run_pending)
9141 kvm_make_request(KVM_REQ_EVENT, vcpu);
9142
9143 vmx->nested.nested_run_pending = 0;
9144
Avi Kivity51aa01d2010-07-20 14:31:20 +03009145 vmx_complete_atomic_exit(vmx);
9146 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009147 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009148}
9149
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009150static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
9151{
9152 struct vcpu_vmx *vmx = to_vmx(vcpu);
9153 int cpu;
9154
9155 if (vmx->loaded_vmcs == &vmx->vmcs01)
9156 return;
9157
9158 cpu = get_cpu();
9159 vmx->loaded_vmcs = &vmx->vmcs01;
9160 vmx_vcpu_put(vcpu);
9161 vmx_vcpu_load(vcpu, cpu);
9162 vcpu->cpu = cpu;
9163 put_cpu();
9164}
9165
Jim Mattson2f1fe812016-07-08 15:36:06 -07009166/*
9167 * Ensure that the current vmcs of the logical processor is the
9168 * vmcs01 of the vcpu before calling free_nested().
9169 */
9170static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9171{
9172 struct vcpu_vmx *vmx = to_vmx(vcpu);
9173 int r;
9174
9175 r = vcpu_load(vcpu);
9176 BUG_ON(r);
9177 vmx_load_vmcs01(vcpu);
9178 free_nested(vmx);
9179 vcpu_put(vcpu);
9180}
9181
Avi Kivity6aa8b732006-12-10 02:21:36 -08009182static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9183{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009184 struct vcpu_vmx *vmx = to_vmx(vcpu);
9185
Kai Huang843e4332015-01-28 10:54:28 +08009186 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009187 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009188 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009189 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009190 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009191 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009192 kfree(vmx->guest_msrs);
9193 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009194 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009195}
9196
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009197static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009198{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009199 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009200 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009201 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009202
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009203 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009204 return ERR_PTR(-ENOMEM);
9205
Wanpeng Li991e7a02015-09-16 17:30:05 +08009206 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009207
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009208 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9209 if (err)
9210 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009211
Peter Feiner4e595162016-07-07 14:49:58 -07009212 err = -ENOMEM;
9213
9214 /*
9215 * If PML is turned on, failure on enabling PML just results in failure
9216 * of creating the vcpu, therefore we can simplify PML logic (by
9217 * avoiding dealing with cases, such as enabling PML partially on vcpus
9218 * for the guest, etc.
9219 */
9220 if (enable_pml) {
9221 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9222 if (!vmx->pml_pg)
9223 goto uninit_vcpu;
9224 }
9225
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009226 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009227 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9228 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009229
Peter Feiner4e595162016-07-07 14:49:58 -07009230 if (!vmx->guest_msrs)
9231 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009232
Nadav Har'Eld462b812011-05-24 15:26:10 +03009233 vmx->loaded_vmcs = &vmx->vmcs01;
9234 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009235 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009236 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009237 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009238 if (!vmm_exclusive)
9239 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
9240 loaded_vmcs_init(vmx->loaded_vmcs);
9241 if (!vmm_exclusive)
9242 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009243
Avi Kivity15ad7142007-07-11 18:17:21 +03009244 cpu = get_cpu();
9245 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009246 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009247 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009248 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009249 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009250 if (err)
9251 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009252 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009253 err = alloc_apic_access_page(kvm);
9254 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009255 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009256 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009257
Sheng Yangb927a3c2009-07-21 10:42:48 +08009258 if (enable_ept) {
9259 if (!kvm->arch.ept_identity_map_addr)
9260 kvm->arch.ept_identity_map_addr =
9261 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009262 err = init_rmode_identity_map(kvm);
9263 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009264 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009265 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009266
Wanpeng Li5c614b32015-10-13 09:18:36 -07009267 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009268 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009269 vmx->nested.vpid02 = allocate_vpid();
9270 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009271
Wincy Van705699a2015-02-03 23:58:17 +08009272 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009273 vmx->nested.current_vmptr = -1ull;
9274 vmx->nested.current_vmcs12 = NULL;
9275
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009276 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9277
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009278 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009279
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009280free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009281 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009282 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009283free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009284 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009285free_pml:
9286 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009287uninit_vcpu:
9288 kvm_vcpu_uninit(&vmx->vcpu);
9289free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009290 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009291 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009292 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009293}
9294
Yang, Sheng002c7f72007-07-31 14:23:01 +03009295static void __init vmx_check_processor_compat(void *rtn)
9296{
9297 struct vmcs_config vmcs_conf;
9298
9299 *(int *)rtn = 0;
9300 if (setup_vmcs_config(&vmcs_conf) < 0)
9301 *(int *)rtn = -EIO;
9302 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9303 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9304 smp_processor_id());
9305 *(int *)rtn = -EIO;
9306 }
9307}
9308
Sheng Yang67253af2008-04-25 10:20:22 +08009309static int get_ept_level(void)
9310{
9311 return VMX_EPT_DEFAULT_GAW + 1;
9312}
9313
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009314static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009315{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009316 u8 cache;
9317 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009318
Sheng Yang522c68c2009-04-27 20:35:43 +08009319 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009320 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009321 * 2. EPT with VT-d:
9322 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009323 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009324 * b. VT-d with snooping control feature: snooping control feature of
9325 * VT-d engine can guarantee the cache correctness. Just set it
9326 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009327 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009328 * consistent with host MTRR
9329 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009330 if (is_mmio) {
9331 cache = MTRR_TYPE_UNCACHABLE;
9332 goto exit;
9333 }
9334
9335 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009336 ipat = VMX_EPT_IPAT_BIT;
9337 cache = MTRR_TYPE_WRBACK;
9338 goto exit;
9339 }
9340
9341 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9342 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009343 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009344 cache = MTRR_TYPE_WRBACK;
9345 else
9346 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009347 goto exit;
9348 }
9349
Xiao Guangrongff536042015-06-15 16:55:22 +08009350 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009351
9352exit:
9353 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009354}
9355
Sheng Yang17cc3932010-01-05 19:02:27 +08009356static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009357{
Sheng Yang878403b2010-01-05 19:02:29 +08009358 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9359 return PT_DIRECTORY_LEVEL;
9360 else
9361 /* For shadow and EPT supported 1GB page */
9362 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009363}
9364
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009365static void vmcs_set_secondary_exec_control(u32 new_ctl)
9366{
9367 /*
9368 * These bits in the secondary execution controls field
9369 * are dynamic, the others are mostly based on the hypervisor
9370 * architecture and the guest's CPUID. Do not touch the
9371 * dynamic bits.
9372 */
9373 u32 mask =
9374 SECONDARY_EXEC_SHADOW_VMCS |
9375 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9376 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9377
9378 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9379
9380 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9381 (new_ctl & ~mask) | (cur_ctl & mask));
9382}
9383
David Matlack8322ebb2016-11-29 18:14:09 -08009384/*
9385 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9386 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9387 */
9388static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9389{
9390 struct vcpu_vmx *vmx = to_vmx(vcpu);
9391 struct kvm_cpuid_entry2 *entry;
9392
9393 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9394 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9395
9396#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9397 if (entry && (entry->_reg & (_cpuid_mask))) \
9398 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9399} while (0)
9400
9401 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9402 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9403 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9404 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9405 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9406 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9407 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9408 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9409 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9410 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9411 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9412 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9413 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9414 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9415 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9416
9417 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9418 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9419 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9420 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9421 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9422 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9423 cr4_fixed1_update(bit(11), ecx, bit(2));
9424
9425#undef cr4_fixed1_update
9426}
9427
Sheng Yang0e851882009-12-18 16:48:46 +08009428static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9429{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009430 struct kvm_cpuid_entry2 *best;
9431 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009432 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009433
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009434 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009435 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
9436 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009437 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009438
Paolo Bonzini8b972652015-09-15 17:34:42 +02009439 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009440 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009441 vmx->nested.nested_vmx_secondary_ctls_high |=
9442 SECONDARY_EXEC_RDTSCP;
9443 else
9444 vmx->nested.nested_vmx_secondary_ctls_high &=
9445 ~SECONDARY_EXEC_RDTSCP;
9446 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009447 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009448
Mao, Junjiead756a12012-07-02 01:18:48 +00009449 /* Exposing INVPCID only when PCID is exposed */
9450 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9451 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009452 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
9453 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009454 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009455
Mao, Junjiead756a12012-07-02 01:18:48 +00009456 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00009457 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00009458 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009459
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009460 if (cpu_has_secondary_exec_ctrls())
9461 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009462
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009463 if (nested_vmx_allowed(vcpu))
9464 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9465 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9466 else
9467 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9468 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009469
9470 if (nested_vmx_allowed(vcpu))
9471 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009472}
9473
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009474static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9475{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009476 if (func == 1 && nested)
9477 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009478}
9479
Yang Zhang25d92082013-08-06 12:00:32 +03009480static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9481 struct x86_exception *fault)
9482{
Jan Kiszka533558b2014-01-04 18:47:20 +01009483 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9484 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009485
9486 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009487 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009488 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009489 exit_reason = EXIT_REASON_EPT_VIOLATION;
9490 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009491 vmcs12->guest_physical_address = fault->address;
9492}
9493
Nadav Har'El155a97a2013-08-05 11:07:16 +03009494/* Callbacks for nested_ept_init_mmu_context: */
9495
9496static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9497{
9498 /* return the page table to be shadowed - in our case, EPT12 */
9499 return get_vmcs12(vcpu)->ept_pointer;
9500}
9501
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009502static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009503{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009504 WARN_ON(mmu_is_nested(vcpu));
9505 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009506 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9507 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009508 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9509 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9510 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9511
9512 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009513}
9514
9515static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9516{
9517 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9518}
9519
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009520static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9521 u16 error_code)
9522{
9523 bool inequality, bit;
9524
9525 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9526 inequality =
9527 (error_code & vmcs12->page_fault_error_code_mask) !=
9528 vmcs12->page_fault_error_code_match;
9529 return inequality ^ bit;
9530}
9531
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009532static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9533 struct x86_exception *fault)
9534{
9535 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9536
9537 WARN_ON(!is_guest_mode(vcpu));
9538
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009539 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009540 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9541 vmcs_read32(VM_EXIT_INTR_INFO),
9542 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009543 else
9544 kvm_inject_page_fault(vcpu, fault);
9545}
9546
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009547static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9548 struct vmcs12 *vmcs12);
9549
9550static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009551 struct vmcs12 *vmcs12)
9552{
9553 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009554 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009555
9556 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009557 /*
9558 * Translate L1 physical address to host physical
9559 * address for vmcs02. Keep the page pinned, so this
9560 * physical address remains valid. We keep a reference
9561 * to it so we can release it later.
9562 */
9563 if (vmx->nested.apic_access_page) /* shouldn't happen */
9564 nested_release_page(vmx->nested.apic_access_page);
9565 vmx->nested.apic_access_page =
9566 nested_get_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009567 /*
9568 * If translation failed, no matter: This feature asks
9569 * to exit when accessing the given address, and if it
9570 * can never be accessed, this feature won't do
9571 * anything anyway.
9572 */
9573 if (vmx->nested.apic_access_page) {
9574 hpa = page_to_phys(vmx->nested.apic_access_page);
9575 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9576 } else {
9577 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9578 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9579 }
9580 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9581 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9582 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9583 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9584 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009585 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009586
9587 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009588 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9589 nested_release_page(vmx->nested.virtual_apic_page);
9590 vmx->nested.virtual_apic_page =
9591 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9592
9593 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009594 * If translation failed, VM entry will fail because
9595 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9596 * Failing the vm entry is _not_ what the processor
9597 * does but it's basically the only possibility we
9598 * have. We could still enter the guest if CR8 load
9599 * exits are enabled, CR8 store exits are enabled, and
9600 * virtualize APIC access is disabled; in this case
9601 * the processor would never use the TPR shadow and we
9602 * could simply clear the bit from the execution
9603 * control. But such a configuration is useless, so
9604 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009605 */
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009606 if (vmx->nested.virtual_apic_page) {
9607 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9608 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9609 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009610 }
9611
Wincy Van705699a2015-02-03 23:58:17 +08009612 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009613 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9614 kunmap(vmx->nested.pi_desc_page);
9615 nested_release_page(vmx->nested.pi_desc_page);
9616 }
9617 vmx->nested.pi_desc_page =
9618 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
Wincy Van705699a2015-02-03 23:58:17 +08009619 vmx->nested.pi_desc =
9620 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9621 if (!vmx->nested.pi_desc) {
9622 nested_release_page_clean(vmx->nested.pi_desc_page);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009623 return;
Wincy Van705699a2015-02-03 23:58:17 +08009624 }
9625 vmx->nested.pi_desc =
9626 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9627 (unsigned long)(vmcs12->posted_intr_desc_addr &
9628 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009629 vmcs_write64(POSTED_INTR_DESC_ADDR,
9630 page_to_phys(vmx->nested.pi_desc_page) +
9631 (unsigned long)(vmcs12->posted_intr_desc_addr &
9632 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009633 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009634 if (cpu_has_vmx_msr_bitmap() &&
9635 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9636 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9637 ;
9638 else
9639 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9640 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009641}
9642
Jan Kiszkaf41245002014-03-07 20:03:13 +01009643static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9644{
9645 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9646 struct vcpu_vmx *vmx = to_vmx(vcpu);
9647
9648 if (vcpu->arch.virtual_tsc_khz == 0)
9649 return;
9650
9651 /* Make sure short timeouts reliably trigger an immediate vmexit.
9652 * hrtimer_start does not guarantee this. */
9653 if (preemption_timeout <= 1) {
9654 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9655 return;
9656 }
9657
9658 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9659 preemption_timeout *= 1000000;
9660 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9661 hrtimer_start(&vmx->nested.preemption_timer,
9662 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9663}
9664
Wincy Van3af18d92015-02-03 23:49:31 +08009665static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9666 struct vmcs12 *vmcs12)
9667{
9668 int maxphyaddr;
9669 u64 addr;
9670
9671 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9672 return 0;
9673
9674 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9675 WARN_ON(1);
9676 return -EINVAL;
9677 }
9678 maxphyaddr = cpuid_maxphyaddr(vcpu);
9679
9680 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9681 ((addr + PAGE_SIZE) >> maxphyaddr))
9682 return -EINVAL;
9683
9684 return 0;
9685}
9686
9687/*
9688 * Merge L0's and L1's MSR bitmap, return false to indicate that
9689 * we do not use the hardware.
9690 */
9691static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9692 struct vmcs12 *vmcs12)
9693{
Wincy Van82f0dd42015-02-03 23:57:18 +08009694 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009695 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +02009696 unsigned long *msr_bitmap_l1;
9697 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +08009698
Radim Krčmářd048c092016-08-08 20:16:22 +02009699 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +08009700 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9701 return false;
9702
9703 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9704 if (!page) {
9705 WARN_ON(1);
9706 return false;
9707 }
Radim Krčmářd048c092016-08-08 20:16:22 +02009708 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +08009709
Radim Krčmářd048c092016-08-08 20:16:22 +02009710 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
9711
Wincy Vanf2b93282015-02-03 23:56:03 +08009712 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009713 if (nested_cpu_has_apic_reg_virt(vmcs12))
9714 for (msr = 0x800; msr <= 0x8ff; msr++)
9715 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009716 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +08009717 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +02009718
9719 nested_vmx_disable_intercept_for_msr(
9720 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +08009721 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9722 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +02009723
Wincy Van608406e2015-02-03 23:57:51 +08009724 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +08009725 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009726 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009727 APIC_BASE_MSR + (APIC_EOI >> 4),
9728 MSR_TYPE_W);
9729 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +02009730 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +08009731 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9732 MSR_TYPE_W);
9733 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009734 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009735 kunmap(page);
9736 nested_release_page_clean(page);
9737
9738 return true;
9739}
9740
9741static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9742 struct vmcs12 *vmcs12)
9743{
Wincy Van82f0dd42015-02-03 23:57:18 +08009744 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009745 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009746 !nested_cpu_has_vid(vmcs12) &&
9747 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009748 return 0;
9749
9750 /*
9751 * If virtualize x2apic mode is enabled,
9752 * virtualize apic access must be disabled.
9753 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009754 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9755 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009756 return -EINVAL;
9757
Wincy Van608406e2015-02-03 23:57:51 +08009758 /*
9759 * If virtual interrupt delivery is enabled,
9760 * we must exit on external interrupts.
9761 */
9762 if (nested_cpu_has_vid(vmcs12) &&
9763 !nested_exit_on_intr(vcpu))
9764 return -EINVAL;
9765
Wincy Van705699a2015-02-03 23:58:17 +08009766 /*
9767 * bits 15:8 should be zero in posted_intr_nv,
9768 * the descriptor address has been already checked
9769 * in nested_get_vmcs12_pages.
9770 */
9771 if (nested_cpu_has_posted_intr(vmcs12) &&
9772 (!nested_cpu_has_vid(vmcs12) ||
9773 !nested_exit_intr_ack_set(vcpu) ||
9774 vmcs12->posted_intr_nv & 0xff00))
9775 return -EINVAL;
9776
Wincy Vanf2b93282015-02-03 23:56:03 +08009777 /* tpr shadow is needed by all apicv features. */
9778 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9779 return -EINVAL;
9780
9781 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009782}
9783
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009784static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9785 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009786 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009787{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009788 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009789 u64 count, addr;
9790
9791 if (vmcs12_read_any(vcpu, count_field, &count) ||
9792 vmcs12_read_any(vcpu, addr_field, &addr)) {
9793 WARN_ON(1);
9794 return -EINVAL;
9795 }
9796 if (count == 0)
9797 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009798 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009799 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9800 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009801 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009802 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9803 addr_field, maxphyaddr, count, addr);
9804 return -EINVAL;
9805 }
9806 return 0;
9807}
9808
9809static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9810 struct vmcs12 *vmcs12)
9811{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009812 if (vmcs12->vm_exit_msr_load_count == 0 &&
9813 vmcs12->vm_exit_msr_store_count == 0 &&
9814 vmcs12->vm_entry_msr_load_count == 0)
9815 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009816 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009817 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009818 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009819 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009820 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009821 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009822 return -EINVAL;
9823 return 0;
9824}
9825
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009826static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9827 struct vmx_msr_entry *e)
9828{
9829 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009830 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009831 return -EINVAL;
9832 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9833 e->index == MSR_IA32_UCODE_REV)
9834 return -EINVAL;
9835 if (e->reserved != 0)
9836 return -EINVAL;
9837 return 0;
9838}
9839
9840static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9841 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009842{
9843 if (e->index == MSR_FS_BASE ||
9844 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009845 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9846 nested_vmx_msr_check_common(vcpu, e))
9847 return -EINVAL;
9848 return 0;
9849}
9850
9851static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9852 struct vmx_msr_entry *e)
9853{
9854 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9855 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009856 return -EINVAL;
9857 return 0;
9858}
9859
9860/*
9861 * Load guest's/host's msr at nested entry/exit.
9862 * return 0 for success, entry index for failure.
9863 */
9864static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9865{
9866 u32 i;
9867 struct vmx_msr_entry e;
9868 struct msr_data msr;
9869
9870 msr.host_initiated = false;
9871 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009872 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9873 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009874 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009875 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9876 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009877 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009878 }
9879 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009880 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009881 "%s check failed (%u, 0x%x, 0x%x)\n",
9882 __func__, i, e.index, e.reserved);
9883 goto fail;
9884 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009885 msr.index = e.index;
9886 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009887 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009888 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009889 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9890 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009891 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009892 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009893 }
9894 return 0;
9895fail:
9896 return i + 1;
9897}
9898
9899static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9900{
9901 u32 i;
9902 struct vmx_msr_entry e;
9903
9904 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009905 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009906 if (kvm_vcpu_read_guest(vcpu,
9907 gpa + i * sizeof(e),
9908 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009909 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009910 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9911 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009912 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009913 }
9914 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009915 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009916 "%s check failed (%u, 0x%x, 0x%x)\n",
9917 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009918 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009919 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009920 msr_info.host_initiated = false;
9921 msr_info.index = e.index;
9922 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009923 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009924 "%s cannot read MSR (%u, 0x%x)\n",
9925 __func__, i, e.index);
9926 return -EINVAL;
9927 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009928 if (kvm_vcpu_write_guest(vcpu,
9929 gpa + i * sizeof(e) +
9930 offsetof(struct vmx_msr_entry, value),
9931 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02009932 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009933 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009934 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009935 return -EINVAL;
9936 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009937 }
9938 return 0;
9939}
9940
Ladi Prosek1dc35da2016-11-30 16:03:11 +01009941static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
9942{
9943 unsigned long invalid_mask;
9944
9945 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
9946 return (val & invalid_mask) == 0;
9947}
9948
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009949/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +01009950 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
9951 * emulating VM entry into a guest with EPT enabled.
9952 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
9953 * is assigned to entry_failure_code on failure.
9954 */
9955static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -08009956 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +01009957{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +01009958 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +01009959 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +01009960 *entry_failure_code = ENTRY_FAIL_DEFAULT;
9961 return 1;
9962 }
9963
9964 /*
9965 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
9966 * must not be dereferenced.
9967 */
9968 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
9969 !nested_ept) {
9970 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
9971 *entry_failure_code = ENTRY_FAIL_PDPTE;
9972 return 1;
9973 }
9974 }
9975
9976 vcpu->arch.cr3 = cr3;
9977 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
9978 }
9979
9980 kvm_mmu_reset_context(vcpu);
9981 return 0;
9982}
9983
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009984/*
9985 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9986 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009987 * 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 +03009988 * guest in a way that will both be appropriate to L1's requests, and our
9989 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9990 * function also has additional necessary side-effects, like setting various
9991 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +01009992 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
9993 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009994 */
Ladi Prosekee146c12016-11-30 16:03:09 +01009995static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -08009996 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009997{
9998 struct vcpu_vmx *vmx = to_vmx(vcpu);
9999 u32 exec_control;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010000 bool nested_ept_enabled = false;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010001
10002 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10003 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10004 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10005 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10006 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10007 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10008 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10009 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10010 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10011 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10012 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10013 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10014 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10015 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10016 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10017 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10018 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10019 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10020 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10021 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10022 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10023 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10024 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10025 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10026 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10027 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10028 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10029 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10030 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10031 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10032 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10033 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10034 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10035 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10036 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10037 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10038
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010039 if (from_vmentry &&
10040 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010041 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10042 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10043 } else {
10044 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10045 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10046 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010047 if (from_vmentry) {
10048 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10049 vmcs12->vm_entry_intr_info_field);
10050 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10051 vmcs12->vm_entry_exception_error_code);
10052 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10053 vmcs12->vm_entry_instruction_len);
10054 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10055 vmcs12->guest_interruptibility_info);
10056 } else {
10057 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10058 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010059 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010060 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010061 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10062 vmcs12->guest_pending_dbg_exceptions);
10063 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10064 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10065
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010066 if (nested_cpu_has_xsaves(vmcs12))
10067 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010068 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10069
Jan Kiszkaf41245002014-03-07 20:03:13 +010010070 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010071
Paolo Bonzini9314006db2016-07-06 13:23:51 +020010072 /* Preemption timer setting is only taken from vmcs01. */
10073 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10074 exec_control |= vmcs_config.pin_based_exec_ctrl;
10075 if (vmx->hv_deadline_tsc == -1)
10076 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10077
10078 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010079 if (nested_cpu_has_posted_intr(vmcs12)) {
10080 /*
10081 * Note that we use L0's vector here and in
10082 * vmx_deliver_nested_posted_interrupt.
10083 */
10084 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10085 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +080010086 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010087 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010088 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010089 }
Wincy Van705699a2015-02-03 23:58:17 +080010090
Jan Kiszkaf41245002014-03-07 20:03:13 +010010091 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010092
Jan Kiszkaf41245002014-03-07 20:03:13 +010010093 vmx->nested.preemption_timer_expired = false;
10094 if (nested_cpu_has_preemption_timer(vmcs12))
10095 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010096
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010097 /*
10098 * Whether page-faults are trapped is determined by a combination of
10099 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10100 * If enable_ept, L0 doesn't care about page faults and we should
10101 * set all of these to L1's desires. However, if !enable_ept, L0 does
10102 * care about (at least some) page faults, and because it is not easy
10103 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10104 * to exit on each and every L2 page fault. This is done by setting
10105 * MASK=MATCH=0 and (see below) EB.PF=1.
10106 * Note that below we don't need special code to set EB.PF beyond the
10107 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10108 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10109 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
10110 *
10111 * A problem with this approach (when !enable_ept) is that L1 may be
10112 * injected with more page faults than it asked for. This could have
10113 * caused problems, but in practice existing hypervisors don't care.
10114 * To fix this, we will need to emulate the PFEC checking (on the L1
10115 * page tables), using walk_addr(), when injecting PFs to L1.
10116 */
10117 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10118 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10119 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10120 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10121
10122 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf41245002014-03-07 20:03:13 +010010123 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +080010124
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010125 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010126 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010127 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010128 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Dan Williamsdfa169b2016-06-02 11:17:24 -070010129 SECONDARY_EXEC_APIC_REGISTER_VIRT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010130 if (nested_cpu_has(vmcs12,
10131 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
10132 exec_control |= vmcs12->secondary_vm_exec_control;
10133
Wincy Van608406e2015-02-03 23:57:51 +080010134 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10135 vmcs_write64(EOI_EXIT_BITMAP0,
10136 vmcs12->eoi_exit_bitmap0);
10137 vmcs_write64(EOI_EXIT_BITMAP1,
10138 vmcs12->eoi_exit_bitmap1);
10139 vmcs_write64(EOI_EXIT_BITMAP2,
10140 vmcs12->eoi_exit_bitmap2);
10141 vmcs_write64(EOI_EXIT_BITMAP3,
10142 vmcs12->eoi_exit_bitmap3);
10143 vmcs_write16(GUEST_INTR_STATUS,
10144 vmcs12->guest_intr_status);
10145 }
10146
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010147 nested_ept_enabled = (exec_control & SECONDARY_EXEC_ENABLE_EPT) != 0;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010148
10149 /*
10150 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10151 * nested_get_vmcs12_pages will either fix it up or
10152 * remove the VM execution control.
10153 */
10154 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10155 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10156
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010157 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10158 }
10159
10160
10161 /*
10162 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10163 * Some constant fields are set here by vmx_set_constant_host_state().
10164 * Other fields are different per CPU, and will be set later when
10165 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10166 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010167 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010168
10169 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010170 * Set the MSR load/store lists to match L0's settings.
10171 */
10172 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10173 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10174 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10175 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10176 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10177
10178 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010179 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10180 * entry, but only if the current (host) sp changed from the value
10181 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10182 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10183 * here we just force the write to happen on entry.
10184 */
10185 vmx->host_rsp = 0;
10186
10187 exec_control = vmx_exec_control(vmx); /* L0's desires */
10188 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10189 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10190 exec_control &= ~CPU_BASED_TPR_SHADOW;
10191 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010192
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010193 /*
10194 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10195 * nested_get_vmcs12_pages can't fix it up, the illegal value
10196 * will result in a VM entry failure.
10197 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010198 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010199 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010200 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10201 }
10202
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010203 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010204 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010205 * Rather, exit every time.
10206 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010207 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10208 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10209
10210 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10211
10212 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10213 * bitwise-or of what L1 wants to trap for L2, and what we want to
10214 * trap. Note that CR0.TS also needs updating - we do this later.
10215 */
10216 update_exception_bitmap(vcpu);
10217 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10218 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10219
Nadav Har'El8049d652013-08-05 11:07:06 +030010220 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10221 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10222 * bits are further modified by vmx_set_efer() below.
10223 */
Jan Kiszkaf41245002014-03-07 20:03:13 +010010224 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010225
10226 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10227 * emulated by vmx_set_efer(), below.
10228 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010229 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010230 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10231 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010232 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10233
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010234 if (from_vmentry &&
10235 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010236 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010237 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010238 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010239 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010240 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010241
10242 set_cr4_guest_host_mask(vmx);
10243
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010244 if (from_vmentry &&
10245 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010246 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10247
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010248 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10249 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010250 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010251 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010252 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010253 if (kvm_has_tsc_control)
10254 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010255
10256 if (enable_vpid) {
10257 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010258 * There is no direct mapping between vpid02 and vpid12, the
10259 * vpid02 is per-vCPU for L0 and reused while the value of
10260 * vpid12 is changed w/ one invvpid during nested vmentry.
10261 * The vpid12 is allocated by L1 for L2, so it will not
10262 * influence global bitmap(for vpid01 and vpid02 allocation)
10263 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010264 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010265 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10266 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10267 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10268 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10269 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10270 }
10271 } else {
10272 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10273 vmx_flush_tlb(vcpu);
10274 }
10275
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010276 }
10277
Nadav Har'El155a97a2013-08-05 11:07:16 +030010278 if (nested_cpu_has_ept(vmcs12)) {
10279 kvm_mmu_unload(vcpu);
10280 nested_ept_init_mmu_context(vcpu);
10281 }
10282
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010283 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010284 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10285 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010286 * The CR0_READ_SHADOW is what L2 should have expected to read given
10287 * the specifications by L1; It's not enough to take
10288 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10289 * have more bits than L1 expected.
10290 */
10291 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10292 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10293
10294 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10295 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10296
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010297 if (from_vmentry &&
10298 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010299 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10300 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10301 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10302 else
10303 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10304 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10305 vmx_set_efer(vcpu, vcpu->arch.efer);
10306
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010307 /* Shadow page tables on either EPT or shadow page tables. */
10308 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_ept_enabled,
10309 entry_failure_code))
10310 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010311
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010312 kvm_mmu_reset_context(vcpu);
10313
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010314 if (!enable_ept)
10315 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10316
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010317 /*
10318 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10319 */
10320 if (enable_ept) {
10321 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10322 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10323 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10324 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10325 }
10326
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010327 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10328 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010329 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010330}
10331
Jim Mattsonca0bde22016-11-30 12:03:46 -080010332static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10333{
10334 struct vcpu_vmx *vmx = to_vmx(vcpu);
10335
10336 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10337 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10338 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10339
10340 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10341 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10342
10343 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10344 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10345
10346 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10347 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10348
10349 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10350 vmx->nested.nested_vmx_procbased_ctls_low,
10351 vmx->nested.nested_vmx_procbased_ctls_high) ||
10352 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10353 vmx->nested.nested_vmx_secondary_ctls_low,
10354 vmx->nested.nested_vmx_secondary_ctls_high) ||
10355 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10356 vmx->nested.nested_vmx_pinbased_ctls_low,
10357 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10358 !vmx_control_verify(vmcs12->vm_exit_controls,
10359 vmx->nested.nested_vmx_exit_ctls_low,
10360 vmx->nested.nested_vmx_exit_ctls_high) ||
10361 !vmx_control_verify(vmcs12->vm_entry_controls,
10362 vmx->nested.nested_vmx_entry_ctls_low,
10363 vmx->nested.nested_vmx_entry_ctls_high))
10364 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10365
10366 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10367 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10368 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10369 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10370
10371 return 0;
10372}
10373
10374static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10375 u32 *exit_qual)
10376{
10377 bool ia32e;
10378
10379 *exit_qual = ENTRY_FAIL_DEFAULT;
10380
10381 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10382 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10383 return 1;
10384
10385 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10386 vmcs12->vmcs_link_pointer != -1ull) {
10387 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10388 return 1;
10389 }
10390
10391 /*
10392 * If the load IA32_EFER VM-entry control is 1, the following checks
10393 * are performed on the field for the IA32_EFER MSR:
10394 * - Bits reserved in the IA32_EFER MSR must be 0.
10395 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10396 * the IA-32e mode guest VM-exit control. It must also be identical
10397 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10398 * CR0.PG) is 1.
10399 */
10400 if (to_vmx(vcpu)->nested.nested_run_pending &&
10401 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10402 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10403 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10404 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10405 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10406 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10407 return 1;
10408 }
10409
10410 /*
10411 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10412 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10413 * the values of the LMA and LME bits in the field must each be that of
10414 * the host address-space size VM-exit control.
10415 */
10416 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10417 ia32e = (vmcs12->vm_exit_controls &
10418 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10419 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10420 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10421 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10422 return 1;
10423 }
10424
10425 return 0;
10426}
10427
Jim Mattson858e25c2016-11-30 12:03:47 -080010428static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10429{
10430 struct vcpu_vmx *vmx = to_vmx(vcpu);
10431 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10432 struct loaded_vmcs *vmcs02;
10433 int cpu;
10434 u32 msr_entry_idx;
10435 u32 exit_qual;
10436
10437 vmcs02 = nested_get_current_vmcs02(vmx);
10438 if (!vmcs02)
10439 return -ENOMEM;
10440
10441 enter_guest_mode(vcpu);
10442
10443 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10444 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10445
10446 cpu = get_cpu();
10447 vmx->loaded_vmcs = vmcs02;
10448 vmx_vcpu_put(vcpu);
10449 vmx_vcpu_load(vcpu, cpu);
10450 vcpu->cpu = cpu;
10451 put_cpu();
10452
10453 vmx_segment_cache_clear(vmx);
10454
10455 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10456 leave_guest_mode(vcpu);
10457 vmx_load_vmcs01(vcpu);
10458 nested_vmx_entry_failure(vcpu, vmcs12,
10459 EXIT_REASON_INVALID_STATE, exit_qual);
10460 return 1;
10461 }
10462
10463 nested_get_vmcs12_pages(vcpu, vmcs12);
10464
10465 msr_entry_idx = nested_vmx_load_msr(vcpu,
10466 vmcs12->vm_entry_msr_load_addr,
10467 vmcs12->vm_entry_msr_load_count);
10468 if (msr_entry_idx) {
10469 leave_guest_mode(vcpu);
10470 vmx_load_vmcs01(vcpu);
10471 nested_vmx_entry_failure(vcpu, vmcs12,
10472 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10473 return 1;
10474 }
10475
10476 vmcs12->launch_state = 1;
10477
10478 /*
10479 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10480 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10481 * returned as far as L1 is concerned. It will only return (and set
10482 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10483 */
10484 return 0;
10485}
10486
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010487/*
10488 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10489 * for running an L2 nested guest.
10490 */
10491static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10492{
10493 struct vmcs12 *vmcs12;
10494 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010495 u32 exit_qual;
10496 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010497
Kyle Hueyeb277562016-11-29 12:40:39 -080010498 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010499 return 1;
10500
Kyle Hueyeb277562016-11-29 12:40:39 -080010501 if (!nested_vmx_check_vmcs12(vcpu))
10502 goto out;
10503
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010504 vmcs12 = get_vmcs12(vcpu);
10505
Abel Gordon012f83c2013-04-18 14:39:25 +030010506 if (enable_shadow_vmcs)
10507 copy_shadow_to_vmcs12(vmx);
10508
Nadav Har'El7c177932011-05-25 23:12:04 +030010509 /*
10510 * The nested entry process starts with enforcing various prerequisites
10511 * on vmcs12 as required by the Intel SDM, and act appropriately when
10512 * they fail: As the SDM explains, some conditions should cause the
10513 * instruction to fail, while others will cause the instruction to seem
10514 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10515 * To speed up the normal (success) code path, we should avoid checking
10516 * for misconfigurations which will anyway be caught by the processor
10517 * when using the merged vmcs02.
10518 */
10519 if (vmcs12->launch_state == launch) {
10520 nested_vmx_failValid(vcpu,
10521 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10522 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010523 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010524 }
10525
Jim Mattsonca0bde22016-11-30 12:03:46 -080010526 ret = check_vmentry_prereqs(vcpu, vmcs12);
10527 if (ret) {
10528 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010529 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010530 }
10531
Nadav Har'El7c177932011-05-25 23:12:04 +030010532 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010533 * After this point, the trap flag no longer triggers a singlestep trap
10534 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10535 * This is not 100% correct; for performance reasons, we delegate most
10536 * of the checks on host state to the processor. If those fail,
10537 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010538 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010539 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010540
Jim Mattsonca0bde22016-11-30 12:03:46 -080010541 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10542 if (ret) {
10543 nested_vmx_entry_failure(vcpu, vmcs12,
10544 EXIT_REASON_INVALID_STATE, exit_qual);
10545 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010546 }
10547
10548 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010549 * We're finally done with prerequisite checking, and can start with
10550 * the nested entry.
10551 */
10552
Jim Mattson858e25c2016-11-30 12:03:47 -080010553 ret = enter_vmx_non_root_mode(vcpu, true);
10554 if (ret)
10555 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010556
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010557 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010558 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010559
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010560 vmx->nested.nested_run_pending = 1;
10561
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010562 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010563
10564out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010565 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010566}
10567
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010568/*
10569 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10570 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10571 * This function returns the new value we should put in vmcs12.guest_cr0.
10572 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10573 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10574 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10575 * didn't trap the bit, because if L1 did, so would L0).
10576 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10577 * been modified by L2, and L1 knows it. So just leave the old value of
10578 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10579 * isn't relevant, because if L0 traps this bit it can set it to anything.
10580 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10581 * changed these bits, and therefore they need to be updated, but L0
10582 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10583 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10584 */
10585static inline unsigned long
10586vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10587{
10588 return
10589 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10590 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10591 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10592 vcpu->arch.cr0_guest_owned_bits));
10593}
10594
10595static inline unsigned long
10596vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10597{
10598 return
10599 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10600 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10601 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10602 vcpu->arch.cr4_guest_owned_bits));
10603}
10604
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010605static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10606 struct vmcs12 *vmcs12)
10607{
10608 u32 idt_vectoring;
10609 unsigned int nr;
10610
Gleb Natapov851eb6672013-09-25 12:51:34 +030010611 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010612 nr = vcpu->arch.exception.nr;
10613 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10614
10615 if (kvm_exception_is_soft(nr)) {
10616 vmcs12->vm_exit_instruction_len =
10617 vcpu->arch.event_exit_inst_len;
10618 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10619 } else
10620 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10621
10622 if (vcpu->arch.exception.has_error_code) {
10623 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10624 vmcs12->idt_vectoring_error_code =
10625 vcpu->arch.exception.error_code;
10626 }
10627
10628 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010629 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010630 vmcs12->idt_vectoring_info_field =
10631 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10632 } else if (vcpu->arch.interrupt.pending) {
10633 nr = vcpu->arch.interrupt.nr;
10634 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10635
10636 if (vcpu->arch.interrupt.soft) {
10637 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10638 vmcs12->vm_entry_instruction_len =
10639 vcpu->arch.event_exit_inst_len;
10640 } else
10641 idt_vectoring |= INTR_TYPE_EXT_INTR;
10642
10643 vmcs12->idt_vectoring_info_field = idt_vectoring;
10644 }
10645}
10646
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010647static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10648{
10649 struct vcpu_vmx *vmx = to_vmx(vcpu);
10650
Jan Kiszkaf41245002014-03-07 20:03:13 +010010651 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10652 vmx->nested.preemption_timer_expired) {
10653 if (vmx->nested.nested_run_pending)
10654 return -EBUSY;
10655 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10656 return 0;
10657 }
10658
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010659 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010660 if (vmx->nested.nested_run_pending ||
10661 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010662 return -EBUSY;
10663 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10664 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10665 INTR_INFO_VALID_MASK, 0);
10666 /*
10667 * The NMI-triggered VM exit counts as injection:
10668 * clear this one and block further NMIs.
10669 */
10670 vcpu->arch.nmi_pending = 0;
10671 vmx_set_nmi_mask(vcpu, true);
10672 return 0;
10673 }
10674
10675 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10676 nested_exit_on_intr(vcpu)) {
10677 if (vmx->nested.nested_run_pending)
10678 return -EBUSY;
10679 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010680 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010681 }
10682
David Hildenbrand6342c502017-01-25 11:58:58 +010010683 vmx_complete_nested_posted_interrupt(vcpu);
10684 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010685}
10686
Jan Kiszkaf41245002014-03-07 20:03:13 +010010687static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10688{
10689 ktime_t remaining =
10690 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10691 u64 value;
10692
10693 if (ktime_to_ns(remaining) <= 0)
10694 return 0;
10695
10696 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10697 do_div(value, 1000000);
10698 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10699}
10700
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010701/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010702 * Update the guest state fields of vmcs12 to reflect changes that
10703 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
10704 * VM-entry controls is also updated, since this is really a guest
10705 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010706 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010707static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010708{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010709 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10710 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10711
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010712 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10713 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10714 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10715
10716 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10717 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10718 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10719 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10720 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10721 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10722 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10723 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10724 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10725 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10726 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10727 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10728 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10729 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10730 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10731 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10732 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10733 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10734 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10735 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10736 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10737 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10738 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10739 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10740 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10741 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10742 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10743 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10744 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10745 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10746 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10747 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10748 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10749 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10750 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10751 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10752
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010753 vmcs12->guest_interruptibility_info =
10754 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10755 vmcs12->guest_pending_dbg_exceptions =
10756 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010757 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10758 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10759 else
10760 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010761
Jan Kiszkaf41245002014-03-07 20:03:13 +010010762 if (nested_cpu_has_preemption_timer(vmcs12)) {
10763 if (vmcs12->vm_exit_controls &
10764 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10765 vmcs12->vmx_preemption_timer_value =
10766 vmx_get_preemption_timer_value(vcpu);
10767 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10768 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010769
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010770 /*
10771 * In some cases (usually, nested EPT), L2 is allowed to change its
10772 * own CR3 without exiting. If it has changed it, we must keep it.
10773 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10774 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10775 *
10776 * Additionally, restore L2's PDPTR to vmcs12.
10777 */
10778 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010779 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010780 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10781 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10782 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10783 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10784 }
10785
Jan Dakinevich119a9c02016-09-04 21:22:47 +030010786 if (nested_cpu_has_ept(vmcs12))
10787 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
10788
Wincy Van608406e2015-02-03 23:57:51 +080010789 if (nested_cpu_has_vid(vmcs12))
10790 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10791
Jan Kiszkac18911a2013-03-13 16:06:41 +010010792 vmcs12->vm_entry_controls =
10793 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010794 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010795
Jan Kiszka2996fca2014-06-16 13:59:43 +020010796 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10797 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10798 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10799 }
10800
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010801 /* TODO: These cannot have changed unless we have MSR bitmaps and
10802 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010803 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010804 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010805 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10806 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010807 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10808 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10809 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010010810 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010811 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010812 if (nested_cpu_has_xsaves(vmcs12))
10813 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010814}
10815
10816/*
10817 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10818 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10819 * and this function updates it to reflect the changes to the guest state while
10820 * L2 was running (and perhaps made some exits which were handled directly by L0
10821 * without going back to L1), and to reflect the exit reason.
10822 * Note that we do not have to copy here all VMCS fields, just those that
10823 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10824 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10825 * which already writes to vmcs12 directly.
10826 */
10827static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10828 u32 exit_reason, u32 exit_intr_info,
10829 unsigned long exit_qualification)
10830{
10831 /* update guest state fields: */
10832 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010833
10834 /* update exit information fields: */
10835
Jan Kiszka533558b2014-01-04 18:47:20 +010010836 vmcs12->vm_exit_reason = exit_reason;
10837 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010838
Jan Kiszka533558b2014-01-04 18:47:20 +010010839 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010840 if ((vmcs12->vm_exit_intr_info &
10841 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10842 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10843 vmcs12->vm_exit_intr_error_code =
10844 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010845 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010846 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10847 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10848
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010849 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10850 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10851 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010852 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010853
10854 /*
10855 * Transfer the event that L0 or L1 may wanted to inject into
10856 * L2 to IDT_VECTORING_INFO_FIELD.
10857 */
10858 vmcs12_save_pending_event(vcpu, vmcs12);
10859 }
10860
10861 /*
10862 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10863 * preserved above and would only end up incorrectly in L1.
10864 */
10865 vcpu->arch.nmi_injected = false;
10866 kvm_clear_exception_queue(vcpu);
10867 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010868}
10869
10870/*
10871 * A part of what we need to when the nested L2 guest exits and we want to
10872 * run its L1 parent, is to reset L1's guest state to the host state specified
10873 * in vmcs12.
10874 * This function is to be called not only on normal nested exit, but also on
10875 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10876 * Failures During or After Loading Guest State").
10877 * This function should be called when the active VMCS is L1's (vmcs01).
10878 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010879static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10880 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010881{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010882 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080010883 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010884
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010885 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10886 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010887 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010888 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10889 else
10890 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10891 vmx_set_efer(vcpu, vcpu->arch.efer);
10892
10893 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10894 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010895 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010896 /*
10897 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010898 * actually changed, because vmx_set_cr0 refers to efer set above.
10899 *
10900 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
10901 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010902 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010903 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020010904 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010905
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010906 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010907 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10908 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10909
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010910 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010911
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010912 /*
10913 * Only PDPTE load can fail as the value of cr3 was checked on entry and
10914 * couldn't have changed.
10915 */
10916 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
10917 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010918
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010919 if (!enable_ept)
10920 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10921
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010922 if (enable_vpid) {
10923 /*
10924 * Trivially support vpid by letting L2s share their parent
10925 * L1's vpid. TODO: move to a more elaborate solution, giving
10926 * each L2 its own vpid and exposing the vpid feature to L1.
10927 */
10928 vmx_flush_tlb(vcpu);
10929 }
10930
10931
10932 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10933 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10934 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10935 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10936 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010937
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010938 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10939 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10940 vmcs_write64(GUEST_BNDCFGS, 0);
10941
Jan Kiszka44811c02013-08-04 17:17:27 +020010942 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010943 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010944 vcpu->arch.pat = vmcs12->host_ia32_pat;
10945 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010946 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10947 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10948 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010949
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010950 /* Set L1 segment info according to Intel SDM
10951 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10952 seg = (struct kvm_segment) {
10953 .base = 0,
10954 .limit = 0xFFFFFFFF,
10955 .selector = vmcs12->host_cs_selector,
10956 .type = 11,
10957 .present = 1,
10958 .s = 1,
10959 .g = 1
10960 };
10961 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10962 seg.l = 1;
10963 else
10964 seg.db = 1;
10965 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10966 seg = (struct kvm_segment) {
10967 .base = 0,
10968 .limit = 0xFFFFFFFF,
10969 .type = 3,
10970 .present = 1,
10971 .s = 1,
10972 .db = 1,
10973 .g = 1
10974 };
10975 seg.selector = vmcs12->host_ds_selector;
10976 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10977 seg.selector = vmcs12->host_es_selector;
10978 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10979 seg.selector = vmcs12->host_ss_selector;
10980 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10981 seg.selector = vmcs12->host_fs_selector;
10982 seg.base = vmcs12->host_fs_base;
10983 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10984 seg.selector = vmcs12->host_gs_selector;
10985 seg.base = vmcs12->host_gs_base;
10986 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10987 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010988 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010989 .limit = 0x67,
10990 .selector = vmcs12->host_tr_selector,
10991 .type = 11,
10992 .present = 1
10993 };
10994 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10995
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010996 kvm_set_dr(vcpu, 7, 0x400);
10997 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010998
Wincy Van3af18d92015-02-03 23:49:31 +080010999 if (cpu_has_vmx_msr_bitmap())
11000 vmx_set_msr_bitmap(vcpu);
11001
Wincy Vanff651cb2014-12-11 08:52:58 +030011002 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11003 vmcs12->vm_exit_msr_load_count))
11004 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011005}
11006
11007/*
11008 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11009 * and modify vmcs12 to make it see what it would expect to see there if
11010 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11011 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011012static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11013 u32 exit_intr_info,
11014 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011015{
11016 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011017 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011018 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011019
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011020 /* trying to cancel vmlaunch/vmresume is a bug */
11021 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11022
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011023 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011024 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11025 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011026
Wincy Vanff651cb2014-12-11 08:52:58 +030011027 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11028 vmcs12->vm_exit_msr_store_count))
11029 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11030
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011031 if (unlikely(vmx->fail))
11032 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11033
Wanpeng Lif3380ca52014-08-05 12:42:23 +080011034 vmx_load_vmcs01(vcpu);
11035
Bandan Das77b0f5d2014-04-19 18:17:45 -040011036 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
11037 && nested_exit_intr_ack_set(vcpu)) {
11038 int irq = kvm_cpu_get_interrupt(vcpu);
11039 WARN_ON(irq < 0);
11040 vmcs12->vm_exit_intr_info = irq |
11041 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11042 }
11043
Jan Kiszka542060e2014-01-04 18:47:21 +010011044 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11045 vmcs12->exit_qualification,
11046 vmcs12->idt_vectoring_info_field,
11047 vmcs12->vm_exit_intr_info,
11048 vmcs12->vm_exit_intr_error_code,
11049 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011050
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011051 vm_entry_controls_reset_shadow(vmx);
11052 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011053 vmx_segment_cache_clear(vmx);
11054
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011055 /* if no vmcs02 cache requested, remove the one we used */
11056 if (VMCS02_POOL_SIZE == 0)
11057 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11058
11059 load_vmcs12_host_state(vcpu, vmcs12);
11060
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011061 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011062 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11063 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011064 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini9314006db2016-07-06 13:23:51 +020011065 if (vmx->hv_deadline_tsc == -1)
11066 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11067 PIN_BASED_VMX_PREEMPTION_TIMER);
11068 else
11069 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11070 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011071 if (kvm_has_tsc_control)
11072 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011073
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011074 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11075 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11076 vmx_set_virtual_x2apic_mode(vcpu,
11077 vcpu->arch.apic_base & X2APIC_ENABLE);
11078 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011079
11080 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11081 vmx->host_rsp = 0;
11082
11083 /* Unpin physical memory we referred to in vmcs02 */
11084 if (vmx->nested.apic_access_page) {
11085 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011086 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011087 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011088 if (vmx->nested.virtual_apic_page) {
11089 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011090 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011091 }
Wincy Van705699a2015-02-03 23:58:17 +080011092 if (vmx->nested.pi_desc_page) {
11093 kunmap(vmx->nested.pi_desc_page);
11094 nested_release_page(vmx->nested.pi_desc_page);
11095 vmx->nested.pi_desc_page = NULL;
11096 vmx->nested.pi_desc = NULL;
11097 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011098
11099 /*
Tang Chen38b99172014-09-24 15:57:54 +080011100 * We are now running in L2, mmu_notifier will force to reload the
11101 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11102 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011103 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011104
11105 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011106 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11107 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11108 * success or failure flag accordingly.
11109 */
11110 if (unlikely(vmx->fail)) {
11111 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011112 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011113 } else
11114 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011115 if (enable_shadow_vmcs)
11116 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011117
11118 /* in case we halted in L2 */
11119 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011120}
11121
Nadav Har'El7c177932011-05-25 23:12:04 +030011122/*
Jan Kiszka42124922014-01-04 18:47:19 +010011123 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11124 */
11125static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11126{
11127 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010011128 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010011129 free_nested(to_vmx(vcpu));
11130}
11131
11132/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011133 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11134 * 23.7 "VM-entry failures during or after loading guest state" (this also
11135 * lists the acceptable exit-reason and exit-qualification parameters).
11136 * It should only be called before L2 actually succeeded to run, and when
11137 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11138 */
11139static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11140 struct vmcs12 *vmcs12,
11141 u32 reason, unsigned long qualification)
11142{
11143 load_vmcs12_host_state(vcpu, vmcs12);
11144 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11145 vmcs12->exit_qualification = qualification;
11146 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011147 if (enable_shadow_vmcs)
11148 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011149}
11150
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011151static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11152 struct x86_instruction_info *info,
11153 enum x86_intercept_stage stage)
11154{
11155 return X86EMUL_CONTINUE;
11156}
11157
Yunhong Jiang64672c92016-06-13 14:19:59 -070011158#ifdef CONFIG_X86_64
11159/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11160static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11161 u64 divisor, u64 *result)
11162{
11163 u64 low = a << shift, high = a >> (64 - shift);
11164
11165 /* To avoid the overflow on divq */
11166 if (high >= divisor)
11167 return 1;
11168
11169 /* Low hold the result, high hold rem which is discarded */
11170 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11171 "rm" (divisor), "0" (low), "1" (high));
11172 *result = low;
11173
11174 return 0;
11175}
11176
11177static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11178{
11179 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011180 u64 tscl = rdtsc();
11181 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11182 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011183
11184 /* Convert to host delta tsc if tsc scaling is enabled */
11185 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11186 u64_shl_div_u64(delta_tsc,
11187 kvm_tsc_scaling_ratio_frac_bits,
11188 vcpu->arch.tsc_scaling_ratio,
11189 &delta_tsc))
11190 return -ERANGE;
11191
11192 /*
11193 * If the delta tsc can't fit in the 32 bit after the multi shift,
11194 * we can't use the preemption timer.
11195 * It's possible that it fits on later vmentries, but checking
11196 * on every vmentry is costly so we just use an hrtimer.
11197 */
11198 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11199 return -ERANGE;
11200
11201 vmx->hv_deadline_tsc = tscl + delta_tsc;
11202 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11203 PIN_BASED_VMX_PREEMPTION_TIMER);
11204 return 0;
11205}
11206
11207static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11208{
11209 struct vcpu_vmx *vmx = to_vmx(vcpu);
11210 vmx->hv_deadline_tsc = -1;
11211 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11212 PIN_BASED_VMX_PREEMPTION_TIMER);
11213}
11214#endif
11215
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011216static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011217{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011218 if (ple_gap)
11219 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011220}
11221
Kai Huang843e4332015-01-28 10:54:28 +080011222static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11223 struct kvm_memory_slot *slot)
11224{
11225 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11226 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11227}
11228
11229static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11230 struct kvm_memory_slot *slot)
11231{
11232 kvm_mmu_slot_set_dirty(kvm, slot);
11233}
11234
11235static void vmx_flush_log_dirty(struct kvm *kvm)
11236{
11237 kvm_flush_pml_buffers(kvm);
11238}
11239
11240static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11241 struct kvm_memory_slot *memslot,
11242 gfn_t offset, unsigned long mask)
11243{
11244 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11245}
11246
Feng Wuefc64402015-09-18 22:29:51 +080011247/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011248 * This routine does the following things for vCPU which is going
11249 * to be blocked if VT-d PI is enabled.
11250 * - Store the vCPU to the wakeup list, so when interrupts happen
11251 * we can find the right vCPU to wake up.
11252 * - Change the Posted-interrupt descriptor as below:
11253 * 'NDST' <-- vcpu->pre_pcpu
11254 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11255 * - If 'ON' is set during this process, which means at least one
11256 * interrupt is posted for this vCPU, we cannot block it, in
11257 * this case, return 1, otherwise, return 0.
11258 *
11259 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011260static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011261{
11262 unsigned long flags;
11263 unsigned int dest;
11264 struct pi_desc old, new;
11265 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11266
11267 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011268 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11269 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011270 return 0;
11271
11272 vcpu->pre_pcpu = vcpu->cpu;
11273 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11274 vcpu->pre_pcpu), flags);
11275 list_add_tail(&vcpu->blocked_vcpu_list,
11276 &per_cpu(blocked_vcpu_on_cpu,
11277 vcpu->pre_pcpu));
11278 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11279 vcpu->pre_pcpu), flags);
11280
11281 do {
11282 old.control = new.control = pi_desc->control;
11283
11284 /*
11285 * We should not block the vCPU if
11286 * an interrupt is posted for it.
11287 */
11288 if (pi_test_on(pi_desc) == 1) {
11289 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11290 vcpu->pre_pcpu), flags);
11291 list_del(&vcpu->blocked_vcpu_list);
11292 spin_unlock_irqrestore(
11293 &per_cpu(blocked_vcpu_on_cpu_lock,
11294 vcpu->pre_pcpu), flags);
11295 vcpu->pre_pcpu = -1;
11296
11297 return 1;
11298 }
11299
11300 WARN((pi_desc->sn == 1),
11301 "Warning: SN field of posted-interrupts "
11302 "is set before blocking\n");
11303
11304 /*
11305 * Since vCPU can be preempted during this process,
11306 * vcpu->cpu could be different with pre_pcpu, we
11307 * need to set pre_pcpu as the destination of wakeup
11308 * notification event, then we can find the right vCPU
11309 * to wakeup in wakeup handler if interrupts happen
11310 * when the vCPU is in blocked state.
11311 */
11312 dest = cpu_physical_id(vcpu->pre_pcpu);
11313
11314 if (x2apic_enabled())
11315 new.ndst = dest;
11316 else
11317 new.ndst = (dest << 8) & 0xFF00;
11318
11319 /* set 'NV' to 'wakeup vector' */
11320 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11321 } while (cmpxchg(&pi_desc->control, old.control,
11322 new.control) != old.control);
11323
11324 return 0;
11325}
11326
Yunhong Jiangbc225122016-06-13 14:19:58 -070011327static int vmx_pre_block(struct kvm_vcpu *vcpu)
11328{
11329 if (pi_pre_block(vcpu))
11330 return 1;
11331
Yunhong Jiang64672c92016-06-13 14:19:59 -070011332 if (kvm_lapic_hv_timer_in_use(vcpu))
11333 kvm_lapic_switch_to_sw_timer(vcpu);
11334
Yunhong Jiangbc225122016-06-13 14:19:58 -070011335 return 0;
11336}
11337
11338static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011339{
11340 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11341 struct pi_desc old, new;
11342 unsigned int dest;
11343 unsigned long flags;
11344
11345 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011346 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11347 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011348 return;
11349
11350 do {
11351 old.control = new.control = pi_desc->control;
11352
11353 dest = cpu_physical_id(vcpu->cpu);
11354
11355 if (x2apic_enabled())
11356 new.ndst = dest;
11357 else
11358 new.ndst = (dest << 8) & 0xFF00;
11359
11360 /* Allow posting non-urgent interrupts */
11361 new.sn = 0;
11362
11363 /* set 'NV' to 'notification vector' */
11364 new.nv = POSTED_INTR_VECTOR;
11365 } while (cmpxchg(&pi_desc->control, old.control,
11366 new.control) != old.control);
11367
11368 if(vcpu->pre_pcpu != -1) {
11369 spin_lock_irqsave(
11370 &per_cpu(blocked_vcpu_on_cpu_lock,
11371 vcpu->pre_pcpu), flags);
11372 list_del(&vcpu->blocked_vcpu_list);
11373 spin_unlock_irqrestore(
11374 &per_cpu(blocked_vcpu_on_cpu_lock,
11375 vcpu->pre_pcpu), flags);
11376 vcpu->pre_pcpu = -1;
11377 }
11378}
11379
Yunhong Jiangbc225122016-06-13 14:19:58 -070011380static void vmx_post_block(struct kvm_vcpu *vcpu)
11381{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011382 if (kvm_x86_ops->set_hv_timer)
11383 kvm_lapic_switch_to_hv_timer(vcpu);
11384
Yunhong Jiangbc225122016-06-13 14:19:58 -070011385 pi_post_block(vcpu);
11386}
11387
Feng Wubf9f6ac2015-09-18 22:29:55 +080011388/*
Feng Wuefc64402015-09-18 22:29:51 +080011389 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11390 *
11391 * @kvm: kvm
11392 * @host_irq: host irq of the interrupt
11393 * @guest_irq: gsi of the interrupt
11394 * @set: set or unset PI
11395 * returns 0 on success, < 0 on failure
11396 */
11397static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11398 uint32_t guest_irq, bool set)
11399{
11400 struct kvm_kernel_irq_routing_entry *e;
11401 struct kvm_irq_routing_table *irq_rt;
11402 struct kvm_lapic_irq irq;
11403 struct kvm_vcpu *vcpu;
11404 struct vcpu_data vcpu_info;
11405 int idx, ret = -EINVAL;
11406
11407 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011408 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11409 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011410 return 0;
11411
11412 idx = srcu_read_lock(&kvm->irq_srcu);
11413 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11414 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11415
11416 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11417 if (e->type != KVM_IRQ_ROUTING_MSI)
11418 continue;
11419 /*
11420 * VT-d PI cannot support posting multicast/broadcast
11421 * interrupts to a vCPU, we still use interrupt remapping
11422 * for these kind of interrupts.
11423 *
11424 * For lowest-priority interrupts, we only support
11425 * those with single CPU as the destination, e.g. user
11426 * configures the interrupts via /proc/irq or uses
11427 * irqbalance to make the interrupts single-CPU.
11428 *
11429 * We will support full lowest-priority interrupt later.
11430 */
11431
Radim Krčmář371313132016-07-12 22:09:27 +020011432 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011433 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11434 /*
11435 * Make sure the IRTE is in remapped mode if
11436 * we don't handle it in posted mode.
11437 */
11438 ret = irq_set_vcpu_affinity(host_irq, NULL);
11439 if (ret < 0) {
11440 printk(KERN_INFO
11441 "failed to back to remapped mode, irq: %u\n",
11442 host_irq);
11443 goto out;
11444 }
11445
Feng Wuefc64402015-09-18 22:29:51 +080011446 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011447 }
Feng Wuefc64402015-09-18 22:29:51 +080011448
11449 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11450 vcpu_info.vector = irq.vector;
11451
Feng Wub6ce9782016-01-25 16:53:35 +080011452 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011453 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11454
11455 if (set)
11456 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11457 else {
11458 /* suppress notification event before unposting */
11459 pi_set_sn(vcpu_to_pi_desc(vcpu));
11460 ret = irq_set_vcpu_affinity(host_irq, NULL);
11461 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11462 }
11463
11464 if (ret < 0) {
11465 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11466 __func__);
11467 goto out;
11468 }
11469 }
11470
11471 ret = 0;
11472out:
11473 srcu_read_unlock(&kvm->irq_srcu, idx);
11474 return ret;
11475}
11476
Ashok Rajc45dcc72016-06-22 14:59:56 +080011477static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11478{
11479 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11480 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11481 FEATURE_CONTROL_LMCE;
11482 else
11483 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11484 ~FEATURE_CONTROL_LMCE;
11485}
11486
Kees Cook404f6aa2016-08-08 16:29:06 -070011487static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011488 .cpu_has_kvm_support = cpu_has_kvm_support,
11489 .disabled_by_bios = vmx_disabled_by_bios,
11490 .hardware_setup = hardware_setup,
11491 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011492 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011493 .hardware_enable = hardware_enable,
11494 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011495 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011496 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011497
11498 .vcpu_create = vmx_create_vcpu,
11499 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011500 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011501
Avi Kivity04d2cc72007-09-10 18:10:54 +030011502 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011503 .vcpu_load = vmx_vcpu_load,
11504 .vcpu_put = vmx_vcpu_put,
11505
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011506 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011507 .get_msr = vmx_get_msr,
11508 .set_msr = vmx_set_msr,
11509 .get_segment_base = vmx_get_segment_base,
11510 .get_segment = vmx_get_segment,
11511 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011512 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011513 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011514 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011515 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011516 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011517 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011518 .set_cr3 = vmx_set_cr3,
11519 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011520 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011521 .get_idt = vmx_get_idt,
11522 .set_idt = vmx_set_idt,
11523 .get_gdt = vmx_get_gdt,
11524 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011525 .get_dr6 = vmx_get_dr6,
11526 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011527 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011528 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011529 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011530 .get_rflags = vmx_get_rflags,
11531 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011532
11533 .get_pkru = vmx_get_pkru,
11534
Avi Kivity6aa8b732006-12-10 02:21:36 -080011535 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011536
Avi Kivity6aa8b732006-12-10 02:21:36 -080011537 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011538 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011539 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011540 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11541 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011542 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011543 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011544 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011545 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011546 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011547 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011548 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011549 .get_nmi_mask = vmx_get_nmi_mask,
11550 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011551 .enable_nmi_window = enable_nmi_window,
11552 .enable_irq_window = enable_irq_window,
11553 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011554 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011555 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011556 .get_enable_apicv = vmx_get_enable_apicv,
11557 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011558 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011559 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011560 .hwapic_irr_update = vmx_hwapic_irr_update,
11561 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011562 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11563 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011564
Izik Eiduscbc94022007-10-25 00:29:55 +020011565 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011566 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011567 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011568
Avi Kivity586f9602010-11-18 13:09:54 +020011569 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011570
Sheng Yang17cc3932010-01-05 19:02:27 +080011571 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011572
11573 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011574
11575 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011576 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011577
11578 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011579
11580 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100011581
11582 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020011583
11584 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011585
11586 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080011587 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000011588 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080011589 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011590
11591 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011592
11593 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080011594
11595 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
11596 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
11597 .flush_log_dirty = vmx_flush_log_dirty,
11598 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020011599
Feng Wubf9f6ac2015-09-18 22:29:55 +080011600 .pre_block = vmx_pre_block,
11601 .post_block = vmx_post_block,
11602
Wei Huang25462f72015-06-19 15:45:05 +020011603 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080011604
11605 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070011606
11607#ifdef CONFIG_X86_64
11608 .set_hv_timer = vmx_set_hv_timer,
11609 .cancel_hv_timer = vmx_cancel_hv_timer,
11610#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080011611
11612 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011613};
11614
11615static int __init vmx_init(void)
11616{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011617 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
11618 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030011619 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080011620 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080011621
Dave Young2965faa2015-09-09 15:38:55 -070011622#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011623 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
11624 crash_vmclear_local_loaded_vmcss);
11625#endif
11626
He, Qingfdef3ad2007-04-30 09:45:24 +030011627 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080011628}
11629
11630static void __exit vmx_exit(void)
11631{
Dave Young2965faa2015-09-09 15:38:55 -070011632#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011633 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011634 synchronize_rcu();
11635#endif
11636
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011637 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011638}
11639
11640module_init(vmx_init)
11641module_exit(vmx_exit)