blob: 46154dac71e64b14d7563d76abc4d5b7c1f70e3b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
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
Gleb Natapov50378782013-02-04 16:00:28 +0200113#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
114#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200115#define KVM_VM_CR0_ALWAYS_ON \
116 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200117#define KVM_CR4_GUEST_OWNED_BITS \
118 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700119 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200120
Avi Kivitycdc0e242009-12-06 17:21:14 +0200121#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
122#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
123
Avi Kivity78ac8b42010-04-08 18:19:35 +0300124#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
125
Jan Kiszkaf4124502014-03-07 20:03:13 +0100126#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
127
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800128/*
129 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
130 * ple_gap: upper bound on the amount of time between two successive
131 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500132 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800133 * ple_window: upper bound on the amount of time a guest is allowed to execute
134 * in a PAUSE loop. Tests indicate that most spinlocks are held for
135 * less than 2^12 cycles
136 * Time is measured based on a counter that runs at the same rate as the TSC,
137 * refer SDM volume 3b section 21.6.13 & 22.1.3.
138 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200139#define KVM_VMX_DEFAULT_PLE_GAP 128
140#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
141#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
142#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
143#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
144 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
145
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800146static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
147module_param(ple_gap, int, S_IRUGO);
148
149static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
150module_param(ple_window, int, S_IRUGO);
151
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200152/* Default doubles per-vcpu window every exit. */
153static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
154module_param(ple_window_grow, int, S_IRUGO);
155
156/* Default resets per-vcpu window every exit to ple_window. */
157static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
158module_param(ple_window_shrink, int, S_IRUGO);
159
160/* Default is to compute the maximum so we can never overflow. */
161static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
162static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
163module_param(ple_window_max, int, S_IRUGO);
164
Avi Kivity83287ea422012-09-16 15:10:57 +0300165extern const ulong vmx_return;
166
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200167#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300168#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300169
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400170struct vmcs {
171 u32 revision_id;
172 u32 abort;
173 char data[0];
174};
175
Nadav Har'Eld462b812011-05-24 15:26:10 +0300176/*
177 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
178 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
179 * loaded on this CPU (so we can clear them if the CPU goes down).
180 */
181struct loaded_vmcs {
182 struct vmcs *vmcs;
183 int cpu;
184 int launched;
185 struct list_head loaded_vmcss_on_cpu_link;
186};
187
Avi Kivity26bb0982009-09-07 11:14:12 +0300188struct shared_msr_entry {
189 unsigned index;
190 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200191 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300192};
193
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300194/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300195 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
196 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
197 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
198 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
199 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
200 * More than one of these structures may exist, if L1 runs multiple L2 guests.
201 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
202 * underlying hardware which will be used to run L2.
203 * This structure is packed to ensure that its layout is identical across
204 * machines (necessary for live migration).
205 * If there are changes in this struct, VMCS12_REVISION must be changed.
206 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300207typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300208struct __packed vmcs12 {
209 /* According to the Intel spec, a VMCS region must start with the
210 * following two fields. Then follow implementation-specific data.
211 */
212 u32 revision_id;
213 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300214
Nadav Har'El27d6c862011-05-25 23:06:59 +0300215 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
216 u32 padding[7]; /* room for future expansion */
217
Nadav Har'El22bd0352011-05-25 23:05:57 +0300218 u64 io_bitmap_a;
219 u64 io_bitmap_b;
220 u64 msr_bitmap;
221 u64 vm_exit_msr_store_addr;
222 u64 vm_exit_msr_load_addr;
223 u64 vm_entry_msr_load_addr;
224 u64 tsc_offset;
225 u64 virtual_apic_page_addr;
226 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800227 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300228 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800229 u64 eoi_exit_bitmap0;
230 u64 eoi_exit_bitmap1;
231 u64 eoi_exit_bitmap2;
232 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800233 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300234 u64 guest_physical_address;
235 u64 vmcs_link_pointer;
236 u64 guest_ia32_debugctl;
237 u64 guest_ia32_pat;
238 u64 guest_ia32_efer;
239 u64 guest_ia32_perf_global_ctrl;
240 u64 guest_pdptr0;
241 u64 guest_pdptr1;
242 u64 guest_pdptr2;
243 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100244 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300245 u64 host_ia32_pat;
246 u64 host_ia32_efer;
247 u64 host_ia32_perf_global_ctrl;
248 u64 padding64[8]; /* room for future expansion */
249 /*
250 * To allow migration of L1 (complete with its L2 guests) between
251 * machines of different natural widths (32 or 64 bit), we cannot have
252 * unsigned long fields with no explict size. We use u64 (aliased
253 * natural_width) instead. Luckily, x86 is little-endian.
254 */
255 natural_width cr0_guest_host_mask;
256 natural_width cr4_guest_host_mask;
257 natural_width cr0_read_shadow;
258 natural_width cr4_read_shadow;
259 natural_width cr3_target_value0;
260 natural_width cr3_target_value1;
261 natural_width cr3_target_value2;
262 natural_width cr3_target_value3;
263 natural_width exit_qualification;
264 natural_width guest_linear_address;
265 natural_width guest_cr0;
266 natural_width guest_cr3;
267 natural_width guest_cr4;
268 natural_width guest_es_base;
269 natural_width guest_cs_base;
270 natural_width guest_ss_base;
271 natural_width guest_ds_base;
272 natural_width guest_fs_base;
273 natural_width guest_gs_base;
274 natural_width guest_ldtr_base;
275 natural_width guest_tr_base;
276 natural_width guest_gdtr_base;
277 natural_width guest_idtr_base;
278 natural_width guest_dr7;
279 natural_width guest_rsp;
280 natural_width guest_rip;
281 natural_width guest_rflags;
282 natural_width guest_pending_dbg_exceptions;
283 natural_width guest_sysenter_esp;
284 natural_width guest_sysenter_eip;
285 natural_width host_cr0;
286 natural_width host_cr3;
287 natural_width host_cr4;
288 natural_width host_fs_base;
289 natural_width host_gs_base;
290 natural_width host_tr_base;
291 natural_width host_gdtr_base;
292 natural_width host_idtr_base;
293 natural_width host_ia32_sysenter_esp;
294 natural_width host_ia32_sysenter_eip;
295 natural_width host_rsp;
296 natural_width host_rip;
297 natural_width paddingl[8]; /* room for future expansion */
298 u32 pin_based_vm_exec_control;
299 u32 cpu_based_vm_exec_control;
300 u32 exception_bitmap;
301 u32 page_fault_error_code_mask;
302 u32 page_fault_error_code_match;
303 u32 cr3_target_count;
304 u32 vm_exit_controls;
305 u32 vm_exit_msr_store_count;
306 u32 vm_exit_msr_load_count;
307 u32 vm_entry_controls;
308 u32 vm_entry_msr_load_count;
309 u32 vm_entry_intr_info_field;
310 u32 vm_entry_exception_error_code;
311 u32 vm_entry_instruction_len;
312 u32 tpr_threshold;
313 u32 secondary_vm_exec_control;
314 u32 vm_instruction_error;
315 u32 vm_exit_reason;
316 u32 vm_exit_intr_info;
317 u32 vm_exit_intr_error_code;
318 u32 idt_vectoring_info_field;
319 u32 idt_vectoring_error_code;
320 u32 vm_exit_instruction_len;
321 u32 vmx_instruction_info;
322 u32 guest_es_limit;
323 u32 guest_cs_limit;
324 u32 guest_ss_limit;
325 u32 guest_ds_limit;
326 u32 guest_fs_limit;
327 u32 guest_gs_limit;
328 u32 guest_ldtr_limit;
329 u32 guest_tr_limit;
330 u32 guest_gdtr_limit;
331 u32 guest_idtr_limit;
332 u32 guest_es_ar_bytes;
333 u32 guest_cs_ar_bytes;
334 u32 guest_ss_ar_bytes;
335 u32 guest_ds_ar_bytes;
336 u32 guest_fs_ar_bytes;
337 u32 guest_gs_ar_bytes;
338 u32 guest_ldtr_ar_bytes;
339 u32 guest_tr_ar_bytes;
340 u32 guest_interruptibility_info;
341 u32 guest_activity_state;
342 u32 guest_sysenter_cs;
343 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100344 u32 vmx_preemption_timer_value;
345 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300346 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800347 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300348 u16 guest_es_selector;
349 u16 guest_cs_selector;
350 u16 guest_ss_selector;
351 u16 guest_ds_selector;
352 u16 guest_fs_selector;
353 u16 guest_gs_selector;
354 u16 guest_ldtr_selector;
355 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800356 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300357 u16 host_es_selector;
358 u16 host_cs_selector;
359 u16 host_ss_selector;
360 u16 host_ds_selector;
361 u16 host_fs_selector;
362 u16 host_gs_selector;
363 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300364};
365
366/*
367 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
368 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
369 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
370 */
371#define VMCS12_REVISION 0x11e57ed0
372
373/*
374 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
375 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
376 * current implementation, 4K are reserved to avoid future complications.
377 */
378#define VMCS12_SIZE 0x1000
379
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300380/* Used to remember the last vmcs02 used for some recently used vmcs12s */
381struct vmcs02_list {
382 struct list_head list;
383 gpa_t vmptr;
384 struct loaded_vmcs vmcs02;
385};
386
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300387/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300388 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
389 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
390 */
391struct nested_vmx {
392 /* Has the level1 guest done vmxon? */
393 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400394 gpa_t vmxon_ptr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300395
396 /* The guest-physical address of the current VMCS L1 keeps for L2 */
397 gpa_t current_vmptr;
398 /* The host-usable pointer to the above */
399 struct page *current_vmcs12_page;
400 struct vmcs12 *current_vmcs12;
Abel Gordon8de48832013-04-18 14:37:25 +0300401 struct vmcs *current_shadow_vmcs;
Abel Gordon012f83c2013-04-18 14:39:25 +0300402 /*
403 * Indicates if the shadow vmcs must be updated with the
404 * data hold by vmcs12
405 */
406 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300407
408 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
409 struct list_head vmcs02_pool;
410 int vmcs02_num;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300411 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300412 /* L2 must run next, and mustn't decide to exit to L1. */
413 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300414 /*
415 * Guest pages referred to in vmcs02 with host-physical pointers, so
416 * we must keep them pinned while L2 runs.
417 */
418 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800419 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800420 struct page *pi_desc_page;
421 struct pi_desc *pi_desc;
422 bool pi_pending;
423 u16 posted_intr_nv;
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800424 u64 msr_ia32_feature_control;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100425
426 struct hrtimer preemption_timer;
427 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200428
429 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
430 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800431
Wanpeng Li5c614b32015-10-13 09:18:36 -0700432 u16 vpid02;
433 u16 last_vpid;
434
Wincy Vanb9c237b2015-02-03 23:56:30 +0800435 u32 nested_vmx_procbased_ctls_low;
436 u32 nested_vmx_procbased_ctls_high;
437 u32 nested_vmx_true_procbased_ctls_low;
438 u32 nested_vmx_secondary_ctls_low;
439 u32 nested_vmx_secondary_ctls_high;
440 u32 nested_vmx_pinbased_ctls_low;
441 u32 nested_vmx_pinbased_ctls_high;
442 u32 nested_vmx_exit_ctls_low;
443 u32 nested_vmx_exit_ctls_high;
444 u32 nested_vmx_true_exit_ctls_low;
445 u32 nested_vmx_entry_ctls_low;
446 u32 nested_vmx_entry_ctls_high;
447 u32 nested_vmx_true_entry_ctls_low;
448 u32 nested_vmx_misc_low;
449 u32 nested_vmx_misc_high;
450 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700451 u32 nested_vmx_vpid_caps;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300452};
453
Yang Zhang01e439b2013-04-11 19:25:12 +0800454#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800455#define POSTED_INTR_SN 1
456
Yang Zhang01e439b2013-04-11 19:25:12 +0800457/* Posted-Interrupt Descriptor */
458struct pi_desc {
459 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800460 union {
461 struct {
462 /* bit 256 - Outstanding Notification */
463 u16 on : 1,
464 /* bit 257 - Suppress Notification */
465 sn : 1,
466 /* bit 271:258 - Reserved */
467 rsvd_1 : 14;
468 /* bit 279:272 - Notification Vector */
469 u8 nv;
470 /* bit 287:280 - Reserved */
471 u8 rsvd_2;
472 /* bit 319:288 - Notification Destination */
473 u32 ndst;
474 };
475 u64 control;
476 };
477 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800478} __aligned(64);
479
Yang Zhanga20ed542013-04-11 19:25:15 +0800480static bool pi_test_and_set_on(struct pi_desc *pi_desc)
481{
482 return test_and_set_bit(POSTED_INTR_ON,
483 (unsigned long *)&pi_desc->control);
484}
485
486static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
487{
488 return test_and_clear_bit(POSTED_INTR_ON,
489 (unsigned long *)&pi_desc->control);
490}
491
492static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
493{
494 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
495}
496
Feng Wuebbfc762015-09-18 22:29:46 +0800497static inline void pi_clear_sn(struct pi_desc *pi_desc)
498{
499 return clear_bit(POSTED_INTR_SN,
500 (unsigned long *)&pi_desc->control);
501}
502
503static inline void pi_set_sn(struct pi_desc *pi_desc)
504{
505 return set_bit(POSTED_INTR_SN,
506 (unsigned long *)&pi_desc->control);
507}
508
509static inline int pi_test_on(struct pi_desc *pi_desc)
510{
511 return test_bit(POSTED_INTR_ON,
512 (unsigned long *)&pi_desc->control);
513}
514
515static inline int pi_test_sn(struct pi_desc *pi_desc)
516{
517 return test_bit(POSTED_INTR_SN,
518 (unsigned long *)&pi_desc->control);
519}
520
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400521struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000522 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300523 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300524 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200525 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300526 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200527 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200528 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300529 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400530 int nmsrs;
531 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800532 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400533#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300534 u64 msr_host_kernel_gs_base;
535 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200537 u32 vm_entry_controls_shadow;
538 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300539 /*
540 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
541 * non-nested (L1) guest, it always points to vmcs01. For a nested
542 * guest (L2), it points to a different VMCS.
543 */
544 struct loaded_vmcs vmcs01;
545 struct loaded_vmcs *loaded_vmcs;
546 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300547 struct msr_autoload {
548 unsigned nr;
549 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
550 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
551 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400552 struct {
553 int loaded;
554 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300555#ifdef CONFIG_X86_64
556 u16 ds_sel, es_sel;
557#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200558 int gs_ldt_reload_needed;
559 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000560 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700561 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400562 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200563 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300564 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300565 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300566 struct kvm_segment segs[8];
567 } rmode;
568 struct {
569 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300570 struct kvm_save_segment {
571 u16 selector;
572 unsigned long base;
573 u32 limit;
574 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300575 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300576 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800577 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300578 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200579
580 /* Support for vnmi-less CPUs */
581 int soft_vnmi_blocked;
582 ktime_t entry_time;
583 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800584 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800585
Yang Zhang01e439b2013-04-11 19:25:12 +0800586 /* Posted interrupt descriptor */
587 struct pi_desc pi_desc;
588
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300589 /* Support for a guest hypervisor (nested VMX) */
590 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200591
592 /* Dynamic PLE window. */
593 int ple_window;
594 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800595
596 /* Support for PML */
597#define PML_ENTITY_NUM 512
598 struct page *pml_pg;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400599};
600
Avi Kivity2fb92db2011-04-27 19:42:18 +0300601enum segment_cache_field {
602 SEG_FIELD_SEL = 0,
603 SEG_FIELD_BASE = 1,
604 SEG_FIELD_LIMIT = 2,
605 SEG_FIELD_AR = 3,
606
607 SEG_FIELD_NR = 4
608};
609
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400610static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
611{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000612 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400613}
614
Feng Wuefc64402015-09-18 22:29:51 +0800615static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
616{
617 return &(to_vmx(vcpu)->pi_desc);
618}
619
Nadav Har'El22bd0352011-05-25 23:05:57 +0300620#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
621#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
622#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
623 [number##_HIGH] = VMCS12_OFFSET(name)+4
624
Abel Gordon4607c2d2013-04-18 14:35:55 +0300625
Bandan Dasfe2b2012014-04-21 15:20:14 -0400626static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300627 /*
628 * We do NOT shadow fields that are modified when L0
629 * traps and emulates any vmx instruction (e.g. VMPTRLD,
630 * VMXON...) executed by L1.
631 * For example, VM_INSTRUCTION_ERROR is read
632 * by L1 if a vmx instruction fails (part of the error path).
633 * Note the code assumes this logic. If for some reason
634 * we start shadowing these fields then we need to
635 * force a shadow sync when L0 emulates vmx instructions
636 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
637 * by nested_vmx_failValid)
638 */
639 VM_EXIT_REASON,
640 VM_EXIT_INTR_INFO,
641 VM_EXIT_INSTRUCTION_LEN,
642 IDT_VECTORING_INFO_FIELD,
643 IDT_VECTORING_ERROR_CODE,
644 VM_EXIT_INTR_ERROR_CODE,
645 EXIT_QUALIFICATION,
646 GUEST_LINEAR_ADDRESS,
647 GUEST_PHYSICAL_ADDRESS
648};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400649static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300650 ARRAY_SIZE(shadow_read_only_fields);
651
Bandan Dasfe2b2012014-04-21 15:20:14 -0400652static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800653 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300654 GUEST_RIP,
655 GUEST_RSP,
656 GUEST_CR0,
657 GUEST_CR3,
658 GUEST_CR4,
659 GUEST_INTERRUPTIBILITY_INFO,
660 GUEST_RFLAGS,
661 GUEST_CS_SELECTOR,
662 GUEST_CS_AR_BYTES,
663 GUEST_CS_LIMIT,
664 GUEST_CS_BASE,
665 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100666 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300667 CR0_GUEST_HOST_MASK,
668 CR0_READ_SHADOW,
669 CR4_READ_SHADOW,
670 TSC_OFFSET,
671 EXCEPTION_BITMAP,
672 CPU_BASED_VM_EXEC_CONTROL,
673 VM_ENTRY_EXCEPTION_ERROR_CODE,
674 VM_ENTRY_INTR_INFO_FIELD,
675 VM_ENTRY_INSTRUCTION_LEN,
676 VM_ENTRY_EXCEPTION_ERROR_CODE,
677 HOST_FS_BASE,
678 HOST_GS_BASE,
679 HOST_FS_SELECTOR,
680 HOST_GS_SELECTOR
681};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400682static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300683 ARRAY_SIZE(shadow_read_write_fields);
684
Mathias Krause772e0312012-08-30 01:30:19 +0200685static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300686 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800687 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300688 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
689 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
690 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
691 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
692 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
693 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
694 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
695 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800696 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300697 FIELD(HOST_ES_SELECTOR, host_es_selector),
698 FIELD(HOST_CS_SELECTOR, host_cs_selector),
699 FIELD(HOST_SS_SELECTOR, host_ss_selector),
700 FIELD(HOST_DS_SELECTOR, host_ds_selector),
701 FIELD(HOST_FS_SELECTOR, host_fs_selector),
702 FIELD(HOST_GS_SELECTOR, host_gs_selector),
703 FIELD(HOST_TR_SELECTOR, host_tr_selector),
704 FIELD64(IO_BITMAP_A, io_bitmap_a),
705 FIELD64(IO_BITMAP_B, io_bitmap_b),
706 FIELD64(MSR_BITMAP, msr_bitmap),
707 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
708 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
709 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
710 FIELD64(TSC_OFFSET, tsc_offset),
711 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
712 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800713 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300714 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800715 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
716 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
717 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
718 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800719 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300720 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
721 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
722 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
723 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
724 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
725 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
726 FIELD64(GUEST_PDPTR0, guest_pdptr0),
727 FIELD64(GUEST_PDPTR1, guest_pdptr1),
728 FIELD64(GUEST_PDPTR2, guest_pdptr2),
729 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100730 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300731 FIELD64(HOST_IA32_PAT, host_ia32_pat),
732 FIELD64(HOST_IA32_EFER, host_ia32_efer),
733 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
734 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
735 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
736 FIELD(EXCEPTION_BITMAP, exception_bitmap),
737 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
738 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
739 FIELD(CR3_TARGET_COUNT, cr3_target_count),
740 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
741 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
742 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
743 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
744 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
745 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
746 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
747 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
748 FIELD(TPR_THRESHOLD, tpr_threshold),
749 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
750 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
751 FIELD(VM_EXIT_REASON, vm_exit_reason),
752 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
753 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
754 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
755 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
756 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
757 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
758 FIELD(GUEST_ES_LIMIT, guest_es_limit),
759 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
760 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
761 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
762 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
763 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
764 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
765 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
766 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
767 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
768 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
769 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
770 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
771 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
772 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
773 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
774 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
775 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
776 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
777 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
778 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
779 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100780 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300781 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
782 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
783 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
784 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
785 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
786 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
787 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
788 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
789 FIELD(EXIT_QUALIFICATION, exit_qualification),
790 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
791 FIELD(GUEST_CR0, guest_cr0),
792 FIELD(GUEST_CR3, guest_cr3),
793 FIELD(GUEST_CR4, guest_cr4),
794 FIELD(GUEST_ES_BASE, guest_es_base),
795 FIELD(GUEST_CS_BASE, guest_cs_base),
796 FIELD(GUEST_SS_BASE, guest_ss_base),
797 FIELD(GUEST_DS_BASE, guest_ds_base),
798 FIELD(GUEST_FS_BASE, guest_fs_base),
799 FIELD(GUEST_GS_BASE, guest_gs_base),
800 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
801 FIELD(GUEST_TR_BASE, guest_tr_base),
802 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
803 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
804 FIELD(GUEST_DR7, guest_dr7),
805 FIELD(GUEST_RSP, guest_rsp),
806 FIELD(GUEST_RIP, guest_rip),
807 FIELD(GUEST_RFLAGS, guest_rflags),
808 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
809 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
810 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
811 FIELD(HOST_CR0, host_cr0),
812 FIELD(HOST_CR3, host_cr3),
813 FIELD(HOST_CR4, host_cr4),
814 FIELD(HOST_FS_BASE, host_fs_base),
815 FIELD(HOST_GS_BASE, host_gs_base),
816 FIELD(HOST_TR_BASE, host_tr_base),
817 FIELD(HOST_GDTR_BASE, host_gdtr_base),
818 FIELD(HOST_IDTR_BASE, host_idtr_base),
819 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
820 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
821 FIELD(HOST_RSP, host_rsp),
822 FIELD(HOST_RIP, host_rip),
823};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300824
825static inline short vmcs_field_to_offset(unsigned long field)
826{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100827 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
828
829 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
830 vmcs_field_to_offset_table[field] == 0)
831 return -ENOENT;
832
Nadav Har'El22bd0352011-05-25 23:05:57 +0300833 return vmcs_field_to_offset_table[field];
834}
835
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300836static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
837{
838 return to_vmx(vcpu)->nested.current_vmcs12;
839}
840
841static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
842{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200843 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800844 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300845 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800846
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300847 return page;
848}
849
850static void nested_release_page(struct page *page)
851{
852 kvm_release_page_dirty(page);
853}
854
855static void nested_release_page_clean(struct page *page)
856{
857 kvm_release_page_clean(page);
858}
859
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300860static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800861static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800862static void kvm_cpu_vmxon(u64 addr);
863static void kvm_cpu_vmxoff(void);
Paolo Bonzini93c4adc2014-03-05 23:19:52 +0100864static bool vmx_mpx_supported(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800865static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200866static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300867static void vmx_set_segment(struct kvm_vcpu *vcpu,
868 struct kvm_segment *var, int seg);
869static void vmx_get_segment(struct kvm_vcpu *vcpu,
870 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200871static bool guest_state_valid(struct kvm_vcpu *vcpu);
872static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300873static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300874static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800875static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300876
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877static DEFINE_PER_CPU(struct vmcs *, vmxarea);
878static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300879/*
880 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
881 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
882 */
883static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300884static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885
Feng Wubf9f6ac2015-09-18 22:29:55 +0800886/*
887 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
888 * can find which vCPU should be waken up.
889 */
890static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
891static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
892
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200893static unsigned long *vmx_io_bitmap_a;
894static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200895static unsigned long *vmx_msr_bitmap_legacy;
896static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800897static unsigned long *vmx_msr_bitmap_legacy_x2apic;
898static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800899static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300900static unsigned long *vmx_vmread_bitmap;
901static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300902
Avi Kivity110312c2010-12-21 12:54:20 +0200903static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200904static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200905
Sheng Yang2384d2b2008-01-17 15:14:33 +0800906static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
907static DEFINE_SPINLOCK(vmx_vpid_lock);
908
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300909static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910 int size;
911 int order;
912 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300913 u32 pin_based_exec_ctrl;
914 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800915 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300916 u32 vmexit_ctrl;
917 u32 vmentry_ctrl;
918} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919
Hannes Ederefff9e52008-11-28 17:02:06 +0100920static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800921 u32 ept;
922 u32 vpid;
923} vmx_capability;
924
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925#define VMX_SEGMENT_FIELD(seg) \
926 [VCPU_SREG_##seg] = { \
927 .selector = GUEST_##seg##_SELECTOR, \
928 .base = GUEST_##seg##_BASE, \
929 .limit = GUEST_##seg##_LIMIT, \
930 .ar_bytes = GUEST_##seg##_AR_BYTES, \
931 }
932
Mathias Krause772e0312012-08-30 01:30:19 +0200933static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 unsigned selector;
935 unsigned base;
936 unsigned limit;
937 unsigned ar_bytes;
938} kvm_vmx_segment_fields[] = {
939 VMX_SEGMENT_FIELD(CS),
940 VMX_SEGMENT_FIELD(DS),
941 VMX_SEGMENT_FIELD(ES),
942 VMX_SEGMENT_FIELD(FS),
943 VMX_SEGMENT_FIELD(GS),
944 VMX_SEGMENT_FIELD(SS),
945 VMX_SEGMENT_FIELD(TR),
946 VMX_SEGMENT_FIELD(LDTR),
947};
948
Avi Kivity26bb0982009-09-07 11:14:12 +0300949static u64 host_efer;
950
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300951static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
952
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300953/*
Brian Gerst8c065852010-07-17 09:03:26 -0400954 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300955 * away by decrementing the array size.
956 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800957static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800958#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300959 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400961 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963
Jan Kiszka5bb16012016-02-09 20:14:21 +0100964static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800965{
966 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
967 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +0100968 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
969}
970
Jan Kiszka6f054852016-02-09 20:15:18 +0100971static inline bool is_debug(u32 intr_info)
972{
973 return is_exception_n(intr_info, DB_VECTOR);
974}
975
976static inline bool is_breakpoint(u32 intr_info)
977{
978 return is_exception_n(intr_info, BP_VECTOR);
979}
980
Jan Kiszka5bb16012016-02-09 20:14:21 +0100981static inline bool is_page_fault(u32 intr_info)
982{
983 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984}
985
Gui Jianfeng31299942010-03-15 17:29:09 +0800986static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300987{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100988 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300989}
990
Gui Jianfeng31299942010-03-15 17:29:09 +0800991static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500992{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100993 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500994}
995
Gui Jianfeng31299942010-03-15 17:29:09 +0800996static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997{
998 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
999 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1000}
1001
Gui Jianfeng31299942010-03-15 17:29:09 +08001002static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001003{
1004 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1005 INTR_INFO_VALID_MASK)) ==
1006 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1007}
1008
Gui Jianfeng31299942010-03-15 17:29:09 +08001009static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001010{
Sheng Yang04547152009-04-01 15:52:31 +08001011 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001012}
1013
Gui Jianfeng31299942010-03-15 17:29:09 +08001014static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001015{
Sheng Yang04547152009-04-01 15:52:31 +08001016 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001017}
1018
Paolo Bonzini35754c92015-07-29 12:05:37 +02001019static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001020{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001021 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001022}
1023
Gui Jianfeng31299942010-03-15 17:29:09 +08001024static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001025{
Sheng Yang04547152009-04-01 15:52:31 +08001026 return vmcs_config.cpu_based_exec_ctrl &
1027 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001028}
1029
Avi Kivity774ead32007-12-26 13:57:04 +02001030static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001031{
Sheng Yang04547152009-04-01 15:52:31 +08001032 return vmcs_config.cpu_based_2nd_exec_ctrl &
1033 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1034}
1035
Yang Zhang8d146952013-01-25 10:18:50 +08001036static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1037{
1038 return vmcs_config.cpu_based_2nd_exec_ctrl &
1039 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1040}
1041
Yang Zhang83d4c282013-01-25 10:18:49 +08001042static inline bool cpu_has_vmx_apic_register_virt(void)
1043{
1044 return vmcs_config.cpu_based_2nd_exec_ctrl &
1045 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1046}
1047
Yang Zhangc7c9c562013-01-25 10:18:51 +08001048static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1049{
1050 return vmcs_config.cpu_based_2nd_exec_ctrl &
1051 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1052}
1053
Yang Zhang01e439b2013-04-11 19:25:12 +08001054static inline bool cpu_has_vmx_posted_intr(void)
1055{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001056 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1057 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001058}
1059
1060static inline bool cpu_has_vmx_apicv(void)
1061{
1062 return cpu_has_vmx_apic_register_virt() &&
1063 cpu_has_vmx_virtual_intr_delivery() &&
1064 cpu_has_vmx_posted_intr();
1065}
1066
Sheng Yang04547152009-04-01 15:52:31 +08001067static inline bool cpu_has_vmx_flexpriority(void)
1068{
1069 return cpu_has_vmx_tpr_shadow() &&
1070 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001071}
1072
Marcelo Tosattie7997942009-06-11 12:07:40 -03001073static inline bool cpu_has_vmx_ept_execute_only(void)
1074{
Gui Jianfeng31299942010-03-15 17:29:09 +08001075 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001076}
1077
Marcelo Tosattie7997942009-06-11 12:07:40 -03001078static inline bool cpu_has_vmx_ept_2m_page(void)
1079{
Gui Jianfeng31299942010-03-15 17:29:09 +08001080 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001081}
1082
Sheng Yang878403b2010-01-05 19:02:29 +08001083static inline bool cpu_has_vmx_ept_1g_page(void)
1084{
Gui Jianfeng31299942010-03-15 17:29:09 +08001085 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001086}
1087
Sheng Yang4bc9b982010-06-02 14:05:24 +08001088static inline bool cpu_has_vmx_ept_4levels(void)
1089{
1090 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1091}
1092
Xudong Hao83c3a332012-05-28 19:33:35 +08001093static inline bool cpu_has_vmx_ept_ad_bits(void)
1094{
1095 return vmx_capability.ept & VMX_EPT_AD_BIT;
1096}
1097
Gui Jianfeng31299942010-03-15 17:29:09 +08001098static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001099{
Gui Jianfeng31299942010-03-15 17:29:09 +08001100 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001101}
1102
Gui Jianfeng31299942010-03-15 17:29:09 +08001103static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001104{
Gui Jianfeng31299942010-03-15 17:29:09 +08001105 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001106}
1107
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001108static inline bool cpu_has_vmx_invvpid_single(void)
1109{
1110 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1111}
1112
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001113static inline bool cpu_has_vmx_invvpid_global(void)
1114{
1115 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1116}
1117
Gui Jianfeng31299942010-03-15 17:29:09 +08001118static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001119{
Sheng Yang04547152009-04-01 15:52:31 +08001120 return vmcs_config.cpu_based_2nd_exec_ctrl &
1121 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001122}
1123
Gui Jianfeng31299942010-03-15 17:29:09 +08001124static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001125{
1126 return vmcs_config.cpu_based_2nd_exec_ctrl &
1127 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1128}
1129
Gui Jianfeng31299942010-03-15 17:29:09 +08001130static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001131{
1132 return vmcs_config.cpu_based_2nd_exec_ctrl &
1133 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1134}
1135
Paolo Bonzini35754c92015-07-29 12:05:37 +02001136static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001137{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001138 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001139}
1140
Gui Jianfeng31299942010-03-15 17:29:09 +08001141static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001142{
Sheng Yang04547152009-04-01 15:52:31 +08001143 return vmcs_config.cpu_based_2nd_exec_ctrl &
1144 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001145}
1146
Gui Jianfeng31299942010-03-15 17:29:09 +08001147static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001148{
1149 return vmcs_config.cpu_based_2nd_exec_ctrl &
1150 SECONDARY_EXEC_RDTSCP;
1151}
1152
Mao, Junjiead756a12012-07-02 01:18:48 +00001153static inline bool cpu_has_vmx_invpcid(void)
1154{
1155 return vmcs_config.cpu_based_2nd_exec_ctrl &
1156 SECONDARY_EXEC_ENABLE_INVPCID;
1157}
1158
Gui Jianfeng31299942010-03-15 17:29:09 +08001159static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001160{
1161 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1162}
1163
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001164static inline bool cpu_has_vmx_wbinvd_exit(void)
1165{
1166 return vmcs_config.cpu_based_2nd_exec_ctrl &
1167 SECONDARY_EXEC_WBINVD_EXITING;
1168}
1169
Abel Gordonabc4fc52013-04-18 14:35:25 +03001170static inline bool cpu_has_vmx_shadow_vmcs(void)
1171{
1172 u64 vmx_msr;
1173 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1174 /* check if the cpu supports writing r/o exit information fields */
1175 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1176 return false;
1177
1178 return vmcs_config.cpu_based_2nd_exec_ctrl &
1179 SECONDARY_EXEC_SHADOW_VMCS;
1180}
1181
Kai Huang843e4332015-01-28 10:54:28 +08001182static inline bool cpu_has_vmx_pml(void)
1183{
1184 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1185}
1186
Haozhong Zhang64903d62015-10-20 15:39:09 +08001187static inline bool cpu_has_vmx_tsc_scaling(void)
1188{
1189 return vmcs_config.cpu_based_2nd_exec_ctrl &
1190 SECONDARY_EXEC_TSC_SCALING;
1191}
1192
Sheng Yang04547152009-04-01 15:52:31 +08001193static inline bool report_flexpriority(void)
1194{
1195 return flexpriority_enabled;
1196}
1197
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001198static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1199{
1200 return vmcs12->cpu_based_vm_exec_control & bit;
1201}
1202
1203static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1204{
1205 return (vmcs12->cpu_based_vm_exec_control &
1206 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1207 (vmcs12->secondary_vm_exec_control & bit);
1208}
1209
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001210static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001211{
1212 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1213}
1214
Jan Kiszkaf4124502014-03-07 20:03:13 +01001215static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1216{
1217 return vmcs12->pin_based_vm_exec_control &
1218 PIN_BASED_VMX_PREEMPTION_TIMER;
1219}
1220
Nadav Har'El155a97a2013-08-05 11:07:16 +03001221static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1222{
1223 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1224}
1225
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001226static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1227{
1228 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1229 vmx_xsaves_supported();
1230}
1231
Wincy Vanf2b93282015-02-03 23:56:03 +08001232static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1233{
1234 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1235}
1236
Wanpeng Li5c614b32015-10-13 09:18:36 -07001237static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1238{
1239 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1240}
1241
Wincy Van82f0dd42015-02-03 23:57:18 +08001242static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1243{
1244 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1245}
1246
Wincy Van608406e2015-02-03 23:57:51 +08001247static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1248{
1249 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1250}
1251
Wincy Van705699a2015-02-03 23:58:17 +08001252static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1253{
1254 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1255}
1256
Nadav Har'El644d7112011-05-25 23:12:35 +03001257static inline bool is_exception(u32 intr_info)
1258{
1259 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1260 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1261}
1262
Jan Kiszka533558b2014-01-04 18:47:20 +01001263static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1264 u32 exit_intr_info,
1265 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001266static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1267 struct vmcs12 *vmcs12,
1268 u32 reason, unsigned long qualification);
1269
Rusty Russell8b9cf982007-07-30 16:31:43 +10001270static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001271{
1272 int i;
1273
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001274 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001275 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001276 return i;
1277 return -1;
1278}
1279
Sheng Yang2384d2b2008-01-17 15:14:33 +08001280static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1281{
1282 struct {
1283 u64 vpid : 16;
1284 u64 rsvd : 48;
1285 u64 gva;
1286 } operand = { vpid, 0, gva };
1287
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001288 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001289 /* CF==1 or ZF==1 --> rc = -1 */
1290 "; ja 1f ; ud2 ; 1:"
1291 : : "a"(&operand), "c"(ext) : "cc", "memory");
1292}
1293
Sheng Yang14394422008-04-28 12:24:45 +08001294static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1295{
1296 struct {
1297 u64 eptp, gpa;
1298 } operand = {eptp, gpa};
1299
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001300 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001301 /* CF==1 or ZF==1 --> rc = -1 */
1302 "; ja 1f ; ud2 ; 1:\n"
1303 : : "a" (&operand), "c" (ext) : "cc", "memory");
1304}
1305
Avi Kivity26bb0982009-09-07 11:14:12 +03001306static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001307{
1308 int i;
1309
Rusty Russell8b9cf982007-07-30 16:31:43 +10001310 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001311 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001312 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001313 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001314}
1315
Avi Kivity6aa8b732006-12-10 02:21:36 -08001316static void vmcs_clear(struct vmcs *vmcs)
1317{
1318 u64 phys_addr = __pa(vmcs);
1319 u8 error;
1320
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001321 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001322 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001323 : "cc", "memory");
1324 if (error)
1325 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1326 vmcs, phys_addr);
1327}
1328
Nadav Har'Eld462b812011-05-24 15:26:10 +03001329static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1330{
1331 vmcs_clear(loaded_vmcs->vmcs);
1332 loaded_vmcs->cpu = -1;
1333 loaded_vmcs->launched = 0;
1334}
1335
Dongxiao Xu7725b892010-05-11 18:29:38 +08001336static void vmcs_load(struct vmcs *vmcs)
1337{
1338 u64 phys_addr = __pa(vmcs);
1339 u8 error;
1340
1341 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001342 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001343 : "cc", "memory");
1344 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001345 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001346 vmcs, phys_addr);
1347}
1348
Dave Young2965faa2015-09-09 15:38:55 -07001349#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001350/*
1351 * This bitmap is used to indicate whether the vmclear
1352 * operation is enabled on all cpus. All disabled by
1353 * default.
1354 */
1355static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1356
1357static inline void crash_enable_local_vmclear(int cpu)
1358{
1359 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1360}
1361
1362static inline void crash_disable_local_vmclear(int cpu)
1363{
1364 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1365}
1366
1367static inline int crash_local_vmclear_enabled(int cpu)
1368{
1369 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1370}
1371
1372static void crash_vmclear_local_loaded_vmcss(void)
1373{
1374 int cpu = raw_smp_processor_id();
1375 struct loaded_vmcs *v;
1376
1377 if (!crash_local_vmclear_enabled(cpu))
1378 return;
1379
1380 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1381 loaded_vmcss_on_cpu_link)
1382 vmcs_clear(v->vmcs);
1383}
1384#else
1385static inline void crash_enable_local_vmclear(int cpu) { }
1386static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001387#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001388
Nadav Har'Eld462b812011-05-24 15:26:10 +03001389static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001391 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001392 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001393
Nadav Har'Eld462b812011-05-24 15:26:10 +03001394 if (loaded_vmcs->cpu != cpu)
1395 return; /* vcpu migration can race with cpu offline */
1396 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001398 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001399 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001400
1401 /*
1402 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1403 * is before setting loaded_vmcs->vcpu to -1 which is done in
1404 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1405 * then adds the vmcs into percpu list before it is deleted.
1406 */
1407 smp_wmb();
1408
Nadav Har'Eld462b812011-05-24 15:26:10 +03001409 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001410 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411}
1412
Nadav Har'Eld462b812011-05-24 15:26:10 +03001413static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001414{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001415 int cpu = loaded_vmcs->cpu;
1416
1417 if (cpu != -1)
1418 smp_call_function_single(cpu,
1419 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001420}
1421
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001422static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001423{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001424 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001425 return;
1426
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001427 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001428 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001429}
1430
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001431static inline void vpid_sync_vcpu_global(void)
1432{
1433 if (cpu_has_vmx_invvpid_global())
1434 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1435}
1436
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001437static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001438{
1439 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001440 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001441 else
1442 vpid_sync_vcpu_global();
1443}
1444
Sheng Yang14394422008-04-28 12:24:45 +08001445static inline void ept_sync_global(void)
1446{
1447 if (cpu_has_vmx_invept_global())
1448 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1449}
1450
1451static inline void ept_sync_context(u64 eptp)
1452{
Avi Kivity089d0342009-03-23 18:26:32 +02001453 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001454 if (cpu_has_vmx_invept_context())
1455 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1456 else
1457 ept_sync_global();
1458 }
1459}
1460
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001461static __always_inline void vmcs_check16(unsigned long field)
1462{
1463 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1464 "16-bit accessor invalid for 64-bit field");
1465 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1466 "16-bit accessor invalid for 64-bit high field");
1467 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1468 "16-bit accessor invalid for 32-bit high field");
1469 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1470 "16-bit accessor invalid for natural width field");
1471}
1472
1473static __always_inline void vmcs_check32(unsigned long field)
1474{
1475 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1476 "32-bit accessor invalid for 16-bit field");
1477 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1478 "32-bit accessor invalid for natural width field");
1479}
1480
1481static __always_inline void vmcs_check64(unsigned long field)
1482{
1483 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1484 "64-bit accessor invalid for 16-bit field");
1485 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1486 "64-bit accessor invalid for 64-bit high field");
1487 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1488 "64-bit accessor invalid for 32-bit field");
1489 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1490 "64-bit accessor invalid for natural width field");
1491}
1492
1493static __always_inline void vmcs_checkl(unsigned long field)
1494{
1495 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1496 "Natural width accessor invalid for 16-bit field");
1497 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1498 "Natural width accessor invalid for 64-bit field");
1499 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1500 "Natural width accessor invalid for 64-bit high field");
1501 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1502 "Natural width accessor invalid for 32-bit field");
1503}
1504
1505static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506{
Avi Kivity5e520e62011-05-15 10:13:12 -04001507 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508
Avi Kivity5e520e62011-05-15 10:13:12 -04001509 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1510 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511 return value;
1512}
1513
Avi Kivity96304212011-05-15 10:13:13 -04001514static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001516 vmcs_check16(field);
1517 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001518}
1519
Avi Kivity96304212011-05-15 10:13:13 -04001520static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001522 vmcs_check32(field);
1523 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524}
1525
Avi Kivity96304212011-05-15 10:13:13 -04001526static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001527{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001528 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001529#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001530 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001531#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001532 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533#endif
1534}
1535
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001536static __always_inline unsigned long vmcs_readl(unsigned long field)
1537{
1538 vmcs_checkl(field);
1539 return __vmcs_readl(field);
1540}
1541
Avi Kivitye52de1b2007-01-05 16:36:56 -08001542static noinline void vmwrite_error(unsigned long field, unsigned long value)
1543{
1544 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1545 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1546 dump_stack();
1547}
1548
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001549static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550{
1551 u8 error;
1552
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001553 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001554 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001555 if (unlikely(error))
1556 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557}
1558
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001559static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001561 vmcs_check16(field);
1562 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563}
1564
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001565static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001567 vmcs_check32(field);
1568 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569}
1570
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001571static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001573 vmcs_check64(field);
1574 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001575#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001577 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578#endif
1579}
1580
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001581static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001582{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001583 vmcs_checkl(field);
1584 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001585}
1586
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001587static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001588{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001589 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1590 "vmcs_clear_bits does not support 64-bit fields");
1591 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1592}
1593
1594static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1595{
1596 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1597 "vmcs_set_bits does not support 64-bit fields");
1598 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001599}
1600
Gleb Natapov2961e8762013-11-25 15:37:13 +02001601static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1602{
1603 vmcs_write32(VM_ENTRY_CONTROLS, val);
1604 vmx->vm_entry_controls_shadow = val;
1605}
1606
1607static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1608{
1609 if (vmx->vm_entry_controls_shadow != val)
1610 vm_entry_controls_init(vmx, val);
1611}
1612
1613static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1614{
1615 return vmx->vm_entry_controls_shadow;
1616}
1617
1618
1619static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1620{
1621 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1622}
1623
1624static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1625{
1626 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1627}
1628
1629static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1630{
1631 vmcs_write32(VM_EXIT_CONTROLS, val);
1632 vmx->vm_exit_controls_shadow = val;
1633}
1634
1635static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1636{
1637 if (vmx->vm_exit_controls_shadow != val)
1638 vm_exit_controls_init(vmx, val);
1639}
1640
1641static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1642{
1643 return vmx->vm_exit_controls_shadow;
1644}
1645
1646
1647static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1648{
1649 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1650}
1651
1652static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1653{
1654 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1655}
1656
Avi Kivity2fb92db2011-04-27 19:42:18 +03001657static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1658{
1659 vmx->segment_cache.bitmask = 0;
1660}
1661
1662static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1663 unsigned field)
1664{
1665 bool ret;
1666 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1667
1668 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1669 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1670 vmx->segment_cache.bitmask = 0;
1671 }
1672 ret = vmx->segment_cache.bitmask & mask;
1673 vmx->segment_cache.bitmask |= mask;
1674 return ret;
1675}
1676
1677static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1678{
1679 u16 *p = &vmx->segment_cache.seg[seg].selector;
1680
1681 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1682 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1683 return *p;
1684}
1685
1686static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1687{
1688 ulong *p = &vmx->segment_cache.seg[seg].base;
1689
1690 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1691 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1692 return *p;
1693}
1694
1695static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1696{
1697 u32 *p = &vmx->segment_cache.seg[seg].limit;
1698
1699 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1700 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1701 return *p;
1702}
1703
1704static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1705{
1706 u32 *p = &vmx->segment_cache.seg[seg].ar;
1707
1708 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1709 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1710 return *p;
1711}
1712
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001713static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1714{
1715 u32 eb;
1716
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001717 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001718 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001719 if ((vcpu->guest_debug &
1720 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1721 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1722 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001723 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001724 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001725 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001726 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001727 if (vcpu->fpu_active)
1728 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001729
1730 /* When we are running a nested L2 guest and L1 specified for it a
1731 * certain exception bitmap, we must trap the same exceptions and pass
1732 * them to L1. When running L2, we will only handle the exceptions
1733 * specified above if L1 did not want them.
1734 */
1735 if (is_guest_mode(vcpu))
1736 eb |= get_vmcs12(vcpu)->exception_bitmap;
1737
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001738 vmcs_write32(EXCEPTION_BITMAP, eb);
1739}
1740
Gleb Natapov2961e8762013-11-25 15:37:13 +02001741static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1742 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001743{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001744 vm_entry_controls_clearbit(vmx, entry);
1745 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001746}
1747
Avi Kivity61d2ef22010-04-28 16:40:38 +03001748static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1749{
1750 unsigned i;
1751 struct msr_autoload *m = &vmx->msr_autoload;
1752
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001753 switch (msr) {
1754 case MSR_EFER:
1755 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001756 clear_atomic_switch_msr_special(vmx,
1757 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001758 VM_EXIT_LOAD_IA32_EFER);
1759 return;
1760 }
1761 break;
1762 case MSR_CORE_PERF_GLOBAL_CTRL:
1763 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001764 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001765 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1766 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1767 return;
1768 }
1769 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001770 }
1771
Avi Kivity61d2ef22010-04-28 16:40:38 +03001772 for (i = 0; i < m->nr; ++i)
1773 if (m->guest[i].index == msr)
1774 break;
1775
1776 if (i == m->nr)
1777 return;
1778 --m->nr;
1779 m->guest[i] = m->guest[m->nr];
1780 m->host[i] = m->host[m->nr];
1781 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1782 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1783}
1784
Gleb Natapov2961e8762013-11-25 15:37:13 +02001785static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1786 unsigned long entry, unsigned long exit,
1787 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1788 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001789{
1790 vmcs_write64(guest_val_vmcs, guest_val);
1791 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001792 vm_entry_controls_setbit(vmx, entry);
1793 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001794}
1795
Avi Kivity61d2ef22010-04-28 16:40:38 +03001796static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1797 u64 guest_val, u64 host_val)
1798{
1799 unsigned i;
1800 struct msr_autoload *m = &vmx->msr_autoload;
1801
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001802 switch (msr) {
1803 case MSR_EFER:
1804 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001805 add_atomic_switch_msr_special(vmx,
1806 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001807 VM_EXIT_LOAD_IA32_EFER,
1808 GUEST_IA32_EFER,
1809 HOST_IA32_EFER,
1810 guest_val, host_val);
1811 return;
1812 }
1813 break;
1814 case MSR_CORE_PERF_GLOBAL_CTRL:
1815 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001816 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001817 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1818 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1819 GUEST_IA32_PERF_GLOBAL_CTRL,
1820 HOST_IA32_PERF_GLOBAL_CTRL,
1821 guest_val, host_val);
1822 return;
1823 }
1824 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001825 }
1826
Avi Kivity61d2ef22010-04-28 16:40:38 +03001827 for (i = 0; i < m->nr; ++i)
1828 if (m->guest[i].index == msr)
1829 break;
1830
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001831 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001832 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001833 "Can't add msr %x\n", msr);
1834 return;
1835 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001836 ++m->nr;
1837 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1838 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1839 }
1840
1841 m->guest[i].index = msr;
1842 m->guest[i].value = guest_val;
1843 m->host[i].index = msr;
1844 m->host[i].value = host_val;
1845}
1846
Avi Kivity33ed6322007-05-02 16:54:03 +03001847static void reload_tss(void)
1848{
Avi Kivity33ed6322007-05-02 16:54:03 +03001849 /*
1850 * VT restores TR but not its size. Useless.
1851 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001852 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001853 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001854
Avi Kivityd3591922010-07-26 18:32:39 +03001855 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001856 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1857 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001858}
1859
Avi Kivity92c0d902009-10-29 11:00:16 +02001860static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001861{
Roel Kluin3a34a882009-08-04 02:08:45 -07001862 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001863 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001864
Avi Kivityf6801df2010-01-21 15:31:50 +02001865 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001866
Avi Kivity51c6cf62007-08-29 03:48:05 +03001867 /*
Guo Chao0fa06072012-06-28 15:16:19 +08001868 * NX is emulated; LMA and LME handled by hardware; SCE meaningless
Avi Kivity51c6cf62007-08-29 03:48:05 +03001869 * outside long mode
1870 */
1871 ignore_bits = EFER_NX | EFER_SCE;
1872#ifdef CONFIG_X86_64
1873 ignore_bits |= EFER_LMA | EFER_LME;
1874 /* SCE is meaningful only in long mode on Intel */
1875 if (guest_efer & EFER_LMA)
1876 ignore_bits &= ~(u64)EFER_SCE;
1877#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001878 guest_efer &= ~ignore_bits;
1879 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001880 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001881 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001882
1883 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001884
1885 /*
1886 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1887 * On CPUs that support "load IA32_EFER", always switch EFER
1888 * atomically, since it's faster than switching it manually.
1889 */
1890 if (cpu_has_load_ia32_efer ||
1891 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001892 guest_efer = vmx->vcpu.arch.efer;
1893 if (!(guest_efer & EFER_LMA))
1894 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001895 if (guest_efer != host_efer)
1896 add_atomic_switch_msr(vmx, MSR_EFER,
1897 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001898 return false;
1899 }
1900
Avi Kivity26bb0982009-09-07 11:14:12 +03001901 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001902}
1903
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001904static unsigned long segment_base(u16 selector)
1905{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001906 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001907 struct desc_struct *d;
1908 unsigned long table_base;
1909 unsigned long v;
1910
1911 if (!(selector & ~3))
1912 return 0;
1913
Avi Kivityd3591922010-07-26 18:32:39 +03001914 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001915
1916 if (selector & 4) { /* from ldt */
1917 u16 ldt_selector = kvm_read_ldt();
1918
1919 if (!(ldt_selector & ~3))
1920 return 0;
1921
1922 table_base = segment_base(ldt_selector);
1923 }
1924 d = (struct desc_struct *)(table_base + (selector & ~7));
1925 v = get_desc_base(d);
1926#ifdef CONFIG_X86_64
1927 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1928 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1929#endif
1930 return v;
1931}
1932
1933static inline unsigned long kvm_read_tr_base(void)
1934{
1935 u16 tr;
1936 asm("str %0" : "=g"(tr));
1937 return segment_base(tr);
1938}
1939
Avi Kivity04d2cc72007-09-10 18:10:54 +03001940static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001941{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001942 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001943 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001944
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001945 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001946 return;
1947
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001948 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001949 /*
1950 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1951 * allow segment selectors with cpl > 0 or ti == 1.
1952 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001953 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001954 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001955 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001956 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001957 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001958 vmx->host_state.fs_reload_needed = 0;
1959 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001960 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001961 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001962 }
Avi Kivity9581d442010-10-19 16:46:55 +02001963 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001964 if (!(vmx->host_state.gs_sel & 7))
1965 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001966 else {
1967 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001968 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001969 }
1970
1971#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03001972 savesegment(ds, vmx->host_state.ds_sel);
1973 savesegment(es, vmx->host_state.es_sel);
1974#endif
1975
1976#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03001977 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1978 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1979#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001980 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1981 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001982#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001983
1984#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001985 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1986 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001987 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001988#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00001989 if (boot_cpu_has(X86_FEATURE_MPX))
1990 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03001991 for (i = 0; i < vmx->save_nmsrs; ++i)
1992 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001993 vmx->guest_msrs[i].data,
1994 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001995}
1996
Avi Kivitya9b21b62008-06-24 11:48:49 +03001997static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001998{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001999 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002000 return;
2001
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002002 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002003 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002004#ifdef CONFIG_X86_64
2005 if (is_long_mode(&vmx->vcpu))
2006 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2007#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002008 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002009 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002010#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002011 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002012#else
2013 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002014#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002015 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002016 if (vmx->host_state.fs_reload_needed)
2017 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002018#ifdef CONFIG_X86_64
2019 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2020 loadsegment(ds, vmx->host_state.ds_sel);
2021 loadsegment(es, vmx->host_state.es_sel);
2022 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002023#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002024 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002025#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002026 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002027#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002028 if (vmx->host_state.msr_host_bndcfgs)
2029 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002030 /*
2031 * If the FPU is not active (through the host task or
2032 * the guest vcpu), then restore the cr0.TS bit.
2033 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002034 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002035 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002036 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002037}
2038
Avi Kivitya9b21b62008-06-24 11:48:49 +03002039static void vmx_load_host_state(struct vcpu_vmx *vmx)
2040{
2041 preempt_disable();
2042 __vmx_load_host_state(vmx);
2043 preempt_enable();
2044}
2045
Feng Wu28b835d2015-09-18 22:29:54 +08002046static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2047{
2048 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2049 struct pi_desc old, new;
2050 unsigned int dest;
2051
2052 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2053 !irq_remapping_cap(IRQ_POSTING_CAP))
2054 return;
2055
2056 do {
2057 old.control = new.control = pi_desc->control;
2058
2059 /*
2060 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2061 * are two possible cases:
2062 * 1. After running 'pre_block', context switch
2063 * happened. For this case, 'sn' was set in
2064 * vmx_vcpu_put(), so we need to clear it here.
2065 * 2. After running 'pre_block', we were blocked,
2066 * and woken up by some other guy. For this case,
2067 * we don't need to do anything, 'pi_post_block'
2068 * will do everything for us. However, we cannot
2069 * check whether it is case #1 or case #2 here
2070 * (maybe, not needed), so we also clear sn here,
2071 * I think it is not a big deal.
2072 */
2073 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2074 if (vcpu->cpu != cpu) {
2075 dest = cpu_physical_id(cpu);
2076
2077 if (x2apic_enabled())
2078 new.ndst = dest;
2079 else
2080 new.ndst = (dest << 8) & 0xFF00;
2081 }
2082
2083 /* set 'NV' to 'notification vector' */
2084 new.nv = POSTED_INTR_VECTOR;
2085 }
2086
2087 /* Allow posting non-urgent interrupts */
2088 new.sn = 0;
2089 } while (cmpxchg(&pi_desc->control, old.control,
2090 new.control) != old.control);
2091}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092/*
2093 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2094 * vcpu mutex is already taken.
2095 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002096static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002098 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002099 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002101 if (!vmm_exclusive)
2102 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002103 else if (vmx->loaded_vmcs->cpu != cpu)
2104 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002105
Nadav Har'Eld462b812011-05-24 15:26:10 +03002106 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2107 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2108 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002109 }
2110
Nadav Har'Eld462b812011-05-24 15:26:10 +03002111 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002112 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002113 unsigned long sysenter_esp;
2114
Avi Kivitya8eeb042010-05-10 12:34:53 +03002115 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002116 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002117 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002118
2119 /*
2120 * Read loaded_vmcs->cpu should be before fetching
2121 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2122 * See the comments in __loaded_vmcs_clear().
2123 */
2124 smp_rmb();
2125
Nadav Har'Eld462b812011-05-24 15:26:10 +03002126 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2127 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002128 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002129 local_irq_enable();
2130
Avi Kivity6aa8b732006-12-10 02:21:36 -08002131 /*
2132 * Linux uses per-cpu TSS and GDT, so set these when switching
2133 * processors.
2134 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002135 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002136 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137
2138 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2139 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002140
2141 /* Setup TSC multiplier */
2142 if (cpu_has_vmx_tsc_scaling())
2143 vmcs_write64(TSC_MULTIPLIER,
2144 vcpu->arch.tsc_scaling_ratio);
2145
Nadav Har'Eld462b812011-05-24 15:26:10 +03002146 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147 }
Feng Wu28b835d2015-09-18 22:29:54 +08002148
2149 vmx_vcpu_pi_load(vcpu, cpu);
2150}
2151
2152static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2153{
2154 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2155
2156 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2157 !irq_remapping_cap(IRQ_POSTING_CAP))
2158 return;
2159
2160 /* Set SN when the vCPU is preempted */
2161 if (vcpu->preempted)
2162 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163}
2164
2165static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2166{
Feng Wu28b835d2015-09-18 22:29:54 +08002167 vmx_vcpu_pi_put(vcpu);
2168
Avi Kivitya9b21b62008-06-24 11:48:49 +03002169 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002170 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002171 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2172 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002173 kvm_cpu_vmxoff();
2174 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175}
2176
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002177static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2178{
Avi Kivity81231c62010-01-24 16:26:40 +02002179 ulong cr0;
2180
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002181 if (vcpu->fpu_active)
2182 return;
2183 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002184 cr0 = vmcs_readl(GUEST_CR0);
2185 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2186 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2187 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002188 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002189 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002190 if (is_guest_mode(vcpu))
2191 vcpu->arch.cr0_guest_owned_bits &=
2192 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002193 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002194}
2195
Avi Kivityedcafe32009-12-30 18:07:40 +02002196static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2197
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002198/*
2199 * Return the cr0 value that a nested guest would read. This is a combination
2200 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2201 * its hypervisor (cr0_read_shadow).
2202 */
2203static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2204{
2205 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2206 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2207}
2208static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2209{
2210 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2211 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2212}
2213
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002214static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2215{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002216 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2217 * set this *before* calling this function.
2218 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002219 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002220 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002221 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002222 vcpu->arch.cr0_guest_owned_bits = 0;
2223 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002224 if (is_guest_mode(vcpu)) {
2225 /*
2226 * L1's specified read shadow might not contain the TS bit,
2227 * so now that we turned on shadowing of this bit, we need to
2228 * set this bit of the shadow. Like in nested_vmx_run we need
2229 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2230 * up-to-date here because we just decached cr0.TS (and we'll
2231 * only update vmcs12->guest_cr0 on nested exit).
2232 */
2233 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2234 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2235 (vcpu->arch.cr0 & X86_CR0_TS);
2236 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2237 } else
2238 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002239}
2240
Avi Kivity6aa8b732006-12-10 02:21:36 -08002241static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2242{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002243 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002244
Avi Kivity6de12732011-03-07 12:51:22 +02002245 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2246 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2247 rflags = vmcs_readl(GUEST_RFLAGS);
2248 if (to_vmx(vcpu)->rmode.vm86_active) {
2249 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2250 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2251 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2252 }
2253 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002254 }
Avi Kivity6de12732011-03-07 12:51:22 +02002255 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256}
2257
2258static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2259{
Avi Kivity6de12732011-03-07 12:51:22 +02002260 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2261 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002262 if (to_vmx(vcpu)->rmode.vm86_active) {
2263 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002264 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002265 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266 vmcs_writel(GUEST_RFLAGS, rflags);
2267}
2268
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002269static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002270{
2271 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2272 int ret = 0;
2273
2274 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002275 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002276 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002277 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002278
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002279 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002280}
2281
2282static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2283{
2284 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2285 u32 interruptibility = interruptibility_old;
2286
2287 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2288
Jan Kiszka48005f62010-02-19 19:38:07 +01002289 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002290 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002291 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002292 interruptibility |= GUEST_INTR_STATE_STI;
2293
2294 if ((interruptibility != interruptibility_old))
2295 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2296}
2297
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2299{
2300 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002302 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002303 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002304 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305
Glauber Costa2809f5d2009-05-12 16:21:05 -04002306 /* skipping an emulated instruction also counts */
2307 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002308}
2309
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002310/*
2311 * KVM wants to inject page-faults which it got to the guest. This function
2312 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002313 */
Gleb Natapove011c662013-09-25 12:51:35 +03002314static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002315{
2316 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2317
Gleb Natapove011c662013-09-25 12:51:35 +03002318 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002319 return 0;
2320
Jan Kiszka533558b2014-01-04 18:47:20 +01002321 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2322 vmcs_read32(VM_EXIT_INTR_INFO),
2323 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002324 return 1;
2325}
2326
Avi Kivity298101d2007-11-25 13:41:11 +02002327static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002328 bool has_error_code, u32 error_code,
2329 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002330{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002331 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002332 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002333
Gleb Natapove011c662013-09-25 12:51:35 +03002334 if (!reinject && is_guest_mode(vcpu) &&
2335 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002336 return;
2337
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002338 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002339 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002340 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2341 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002342
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002343 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002344 int inc_eip = 0;
2345 if (kvm_exception_is_soft(nr))
2346 inc_eip = vcpu->arch.event_exit_inst_len;
2347 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002348 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002349 return;
2350 }
2351
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002352 if (kvm_exception_is_soft(nr)) {
2353 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2354 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002355 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2356 } else
2357 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2358
2359 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002360}
2361
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002362static bool vmx_rdtscp_supported(void)
2363{
2364 return cpu_has_vmx_rdtscp();
2365}
2366
Mao, Junjiead756a12012-07-02 01:18:48 +00002367static bool vmx_invpcid_supported(void)
2368{
2369 return cpu_has_vmx_invpcid() && enable_ept;
2370}
2371
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372/*
Eddie Donga75beee2007-05-17 18:55:15 +03002373 * Swap MSR entry in host/guest MSR entry array.
2374 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002375static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002376{
Avi Kivity26bb0982009-09-07 11:14:12 +03002377 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002378
2379 tmp = vmx->guest_msrs[to];
2380 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2381 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002382}
2383
Yang Zhang8d146952013-01-25 10:18:50 +08002384static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2385{
2386 unsigned long *msr_bitmap;
2387
Wincy Van670125b2015-03-04 14:31:56 +08002388 if (is_guest_mode(vcpu))
2389 msr_bitmap = vmx_msr_bitmap_nested;
Jan Kiszka8a9781f2015-05-04 08:32:32 +02002390 else if (vcpu->arch.apic_base & X2APIC_ENABLE) {
Yang Zhang8d146952013-01-25 10:18:50 +08002391 if (is_long_mode(vcpu))
2392 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2393 else
2394 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2395 } else {
2396 if (is_long_mode(vcpu))
2397 msr_bitmap = vmx_msr_bitmap_longmode;
2398 else
2399 msr_bitmap = vmx_msr_bitmap_legacy;
2400 }
2401
2402 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2403}
2404
Eddie Donga75beee2007-05-17 18:55:15 +03002405/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002406 * Set up the vmcs to automatically save and restore system
2407 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2408 * mode, as fiddling with msrs is very expensive.
2409 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002410static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002411{
Avi Kivity26bb0982009-09-07 11:14:12 +03002412 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002413
Eddie Donga75beee2007-05-17 18:55:15 +03002414 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002415#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002416 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002417 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002418 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002419 move_msr_up(vmx, index, save_nmsrs++);
2420 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002421 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002422 move_msr_up(vmx, index, save_nmsrs++);
2423 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002424 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002425 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002426 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002427 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002428 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002429 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002430 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002431 * if efer.sce is enabled.
2432 */
Brian Gerst8c065852010-07-17 09:03:26 -04002433 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002434 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002435 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002436 }
Eddie Donga75beee2007-05-17 18:55:15 +03002437#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002438 index = __find_msr_index(vmx, MSR_EFER);
2439 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002440 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002441
Avi Kivity26bb0982009-09-07 11:14:12 +03002442 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002443
Yang Zhang8d146952013-01-25 10:18:50 +08002444 if (cpu_has_vmx_msr_bitmap())
2445 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002446}
2447
2448/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002449 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002450 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2451 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002453static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002454{
2455 u64 host_tsc, tsc_offset;
2456
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002457 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002458 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002459 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002460}
2461
2462/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002463 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2464 * counter, even if a nested guest (L2) is currently running.
2465 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002466static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002467{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002468 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002469
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002470 tsc_offset = is_guest_mode(vcpu) ?
2471 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2472 vmcs_read64(TSC_OFFSET);
2473 return host_tsc + tsc_offset;
2474}
2475
Will Auldba904632012-11-29 12:42:50 -08002476static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2477{
2478 return vmcs_read64(TSC_OFFSET);
2479}
2480
Joerg Roedel4051b182011-03-25 09:44:49 +01002481/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002482 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002483 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002484static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002485{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002486 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002487 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002488 * We're here if L1 chose not to trap WRMSR to TSC. According
2489 * to the spec, this should set L1's TSC; The offset that L1
2490 * set for L2 remains unchanged, and still needs to be added
2491 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002492 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002493 struct vmcs12 *vmcs12;
2494 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2495 /* recalculate vmcs02.TSC_OFFSET: */
2496 vmcs12 = get_vmcs12(vcpu);
2497 vmcs_write64(TSC_OFFSET, offset +
2498 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2499 vmcs12->tsc_offset : 0));
2500 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002501 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2502 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002503 vmcs_write64(TSC_OFFSET, offset);
2504 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505}
2506
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002507static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002508{
2509 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002510
Zachary Amsdene48672f2010-08-19 22:07:23 -10002511 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002512 if (is_guest_mode(vcpu)) {
2513 /* Even when running L2, the adjustment needs to apply to L1 */
2514 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002515 } else
2516 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2517 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002518}
2519
Nadav Har'El801d3422011-05-25 23:02:23 +03002520static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2521{
2522 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2523 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2524}
2525
2526/*
2527 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2528 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2529 * all guests if the "nested" module option is off, and can also be disabled
2530 * for a single guest by disabling its VMX cpuid bit.
2531 */
2532static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2533{
2534 return nested && guest_cpuid_has_vmx(vcpu);
2535}
2536
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002538 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2539 * returned for the various VMX controls MSRs when nested VMX is enabled.
2540 * The same values should also be used to verify that vmcs12 control fields are
2541 * valid during nested entry from L1 to L2.
2542 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2543 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2544 * bit in the high half is on if the corresponding bit in the control field
2545 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002546 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002547static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002548{
2549 /*
2550 * Note that as a general rule, the high half of the MSRs (bits in
2551 * the control fields which may be 1) should be initialized by the
2552 * intersection of the underlying hardware's MSR (i.e., features which
2553 * can be supported) and the list of features we want to expose -
2554 * because they are known to be properly supported in our code.
2555 * Also, usually, the low half of the MSRs (bits which must be 1) can
2556 * be set to 0, meaning that L1 may turn off any of these bits. The
2557 * reason is that if one of these bits is necessary, it will appear
2558 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2559 * fields of vmcs01 and vmcs02, will turn these bits off - and
2560 * nested_vmx_exit_handled() will not pass related exits to L1.
2561 * These rules have exceptions below.
2562 */
2563
2564 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002565 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002566 vmx->nested.nested_vmx_pinbased_ctls_low,
2567 vmx->nested.nested_vmx_pinbased_ctls_high);
2568 vmx->nested.nested_vmx_pinbased_ctls_low |=
2569 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2570 vmx->nested.nested_vmx_pinbased_ctls_high &=
2571 PIN_BASED_EXT_INTR_MASK |
2572 PIN_BASED_NMI_EXITING |
2573 PIN_BASED_VIRTUAL_NMIS;
2574 vmx->nested.nested_vmx_pinbased_ctls_high |=
2575 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002576 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002577 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002578 vmx->nested.nested_vmx_pinbased_ctls_high |=
2579 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002580
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002581 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002582 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002583 vmx->nested.nested_vmx_exit_ctls_low,
2584 vmx->nested.nested_vmx_exit_ctls_high);
2585 vmx->nested.nested_vmx_exit_ctls_low =
2586 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002587
Wincy Vanb9c237b2015-02-03 23:56:30 +08002588 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002589#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002590 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002591#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002592 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002593 vmx->nested.nested_vmx_exit_ctls_high |=
2594 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002595 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002596 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2597
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002598 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002599 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002600
Jan Kiszka2996fca2014-06-16 13:59:43 +02002601 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002602 vmx->nested.nested_vmx_true_exit_ctls_low =
2603 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002604 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2605
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002606 /* entry controls */
2607 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002608 vmx->nested.nested_vmx_entry_ctls_low,
2609 vmx->nested.nested_vmx_entry_ctls_high);
2610 vmx->nested.nested_vmx_entry_ctls_low =
2611 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2612 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002613#ifdef CONFIG_X86_64
2614 VM_ENTRY_IA32E_MODE |
2615#endif
2616 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002617 vmx->nested.nested_vmx_entry_ctls_high |=
2618 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002619 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002620 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002621
Jan Kiszka2996fca2014-06-16 13:59:43 +02002622 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002623 vmx->nested.nested_vmx_true_entry_ctls_low =
2624 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002625 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2626
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002627 /* cpu-based controls */
2628 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002629 vmx->nested.nested_vmx_procbased_ctls_low,
2630 vmx->nested.nested_vmx_procbased_ctls_high);
2631 vmx->nested.nested_vmx_procbased_ctls_low =
2632 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2633 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002634 CPU_BASED_VIRTUAL_INTR_PENDING |
2635 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002636 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2637 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2638 CPU_BASED_CR3_STORE_EXITING |
2639#ifdef CONFIG_X86_64
2640 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2641#endif
2642 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002643 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2644 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2645 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2646 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002647 /*
2648 * We can allow some features even when not supported by the
2649 * hardware. For example, L1 can specify an MSR bitmap - and we
2650 * can use it to avoid exits to L1 - even when L0 runs L2
2651 * without MSR bitmaps.
2652 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002653 vmx->nested.nested_vmx_procbased_ctls_high |=
2654 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002655 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002656
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002657 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002658 vmx->nested.nested_vmx_true_procbased_ctls_low =
2659 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002660 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2661
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002662 /* secondary cpu-based controls */
2663 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002664 vmx->nested.nested_vmx_secondary_ctls_low,
2665 vmx->nested.nested_vmx_secondary_ctls_high);
2666 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2667 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002668 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002669 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002670 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002671 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002672 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002673 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002674 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002675 SECONDARY_EXEC_XSAVES |
2676 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002677
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002678 if (enable_ept) {
2679 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002680 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002681 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002682 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002683 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2684 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002685 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002686 /*
Bandan Das4b855072014-04-19 18:17:44 -04002687 * For nested guests, we don't do anything specific
2688 * for single context invalidation. Hence, only advertise
2689 * support for global context invalidation.
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002690 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002691 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002692 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002693 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002694
Wanpeng Li089d7b62015-10-13 09:18:37 -07002695 if (enable_vpid)
2696 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
2697 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2698 else
2699 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002700
Radim Krčmář0790ec12015-03-17 14:02:32 +01002701 if (enable_unrestricted_guest)
2702 vmx->nested.nested_vmx_secondary_ctls_high |=
2703 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2704
Jan Kiszkac18911a2013-03-13 16:06:41 +01002705 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002706 rdmsr(MSR_IA32_VMX_MISC,
2707 vmx->nested.nested_vmx_misc_low,
2708 vmx->nested.nested_vmx_misc_high);
2709 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2710 vmx->nested.nested_vmx_misc_low |=
2711 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002712 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002713 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002714}
2715
2716static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2717{
2718 /*
2719 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2720 */
2721 return ((control & high) | low) == control;
2722}
2723
2724static inline u64 vmx_control_msr(u32 low, u32 high)
2725{
2726 return low | ((u64)high << 32);
2727}
2728
Jan Kiszkacae50132014-01-04 18:47:22 +01002729/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002730static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2731{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002732 struct vcpu_vmx *vmx = to_vmx(vcpu);
2733
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002734 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002735 case MSR_IA32_VMX_BASIC:
2736 /*
2737 * This MSR reports some information about VMX support. We
2738 * should return information about the VMX we emulate for the
2739 * guest, and the VMCS structure we give it - not about the
2740 * VMX support of the underlying hardware.
2741 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002742 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002743 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2744 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2745 break;
2746 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2747 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002748 *pdata = vmx_control_msr(
2749 vmx->nested.nested_vmx_pinbased_ctls_low,
2750 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002751 break;
2752 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002753 *pdata = vmx_control_msr(
2754 vmx->nested.nested_vmx_true_procbased_ctls_low,
2755 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002756 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002757 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 *pdata = vmx_control_msr(
2759 vmx->nested.nested_vmx_procbased_ctls_low,
2760 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002761 break;
2762 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002763 *pdata = vmx_control_msr(
2764 vmx->nested.nested_vmx_true_exit_ctls_low,
2765 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002766 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002767 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002768 *pdata = vmx_control_msr(
2769 vmx->nested.nested_vmx_exit_ctls_low,
2770 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002771 break;
2772 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002773 *pdata = vmx_control_msr(
2774 vmx->nested.nested_vmx_true_entry_ctls_low,
2775 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002776 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002777 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002778 *pdata = vmx_control_msr(
2779 vmx->nested.nested_vmx_entry_ctls_low,
2780 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002781 break;
2782 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002783 *pdata = vmx_control_msr(
2784 vmx->nested.nested_vmx_misc_low,
2785 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002786 break;
2787 /*
2788 * These MSRs specify bits which the guest must keep fixed (on or off)
2789 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2790 * We picked the standard core2 setting.
2791 */
2792#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2793#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2794 case MSR_IA32_VMX_CR0_FIXED0:
2795 *pdata = VMXON_CR0_ALWAYSON;
2796 break;
2797 case MSR_IA32_VMX_CR0_FIXED1:
2798 *pdata = -1ULL;
2799 break;
2800 case MSR_IA32_VMX_CR4_FIXED0:
2801 *pdata = VMXON_CR4_ALWAYSON;
2802 break;
2803 case MSR_IA32_VMX_CR4_FIXED1:
2804 *pdata = -1ULL;
2805 break;
2806 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002807 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002808 break;
2809 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002810 *pdata = vmx_control_msr(
2811 vmx->nested.nested_vmx_secondary_ctls_low,
2812 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 break;
2814 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002815 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002816 *pdata = vmx->nested.nested_vmx_ept_caps |
2817 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002818 break;
2819 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002820 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002821 }
2822
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002823 return 0;
2824}
2825
2826/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827 * Reads an msr value (of 'msr_index') into 'pdata'.
2828 * Returns 0 on success, non-0 otherwise.
2829 * Assumes vcpu_load() was already called.
2830 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002831static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832{
Avi Kivity26bb0982009-09-07 11:14:12 +03002833 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002835 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002836#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002838 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839 break;
2840 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002841 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002843 case MSR_KERNEL_GS_BASE:
2844 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002845 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002846 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002847#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002849 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302850 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002851 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002852 break;
2853 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002854 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002855 break;
2856 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002857 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858 break;
2859 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002860 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002861 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002862 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002863 if (!vmx_mpx_supported())
2864 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002865 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002866 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002867 case MSR_IA32_FEATURE_CONTROL:
2868 if (!nested_vmx_allowed(vcpu))
2869 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002870 msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002871 break;
2872 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2873 if (!nested_vmx_allowed(vcpu))
2874 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002875 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08002876 case MSR_IA32_XSS:
2877 if (!vmx_xsaves_supported())
2878 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002879 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08002880 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002881 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002882 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002883 return 1;
2884 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002886 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002887 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002888 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002889 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002891 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002892 }
2893
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894 return 0;
2895}
2896
Jan Kiszkacae50132014-01-04 18:47:22 +01002897static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2898
Avi Kivity6aa8b732006-12-10 02:21:36 -08002899/*
2900 * Writes msr value into into the appropriate "register".
2901 * Returns 0 on success, non-0 otherwise.
2902 * Assumes vcpu_load() was already called.
2903 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002904static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002906 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002907 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002908 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002909 u32 msr_index = msr_info->index;
2910 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03002911
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002913 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002914 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002915 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002916#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002918 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002919 vmcs_writel(GUEST_FS_BASE, data);
2920 break;
2921 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002922 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923 vmcs_writel(GUEST_GS_BASE, data);
2924 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002925 case MSR_KERNEL_GS_BASE:
2926 vmx_load_host_state(vmx);
2927 vmx->msr_guest_kernel_gs_base = data;
2928 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002929#endif
2930 case MSR_IA32_SYSENTER_CS:
2931 vmcs_write32(GUEST_SYSENTER_CS, data);
2932 break;
2933 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002934 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935 break;
2936 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002937 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002938 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002939 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002940 if (!vmx_mpx_supported())
2941 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002942 vmcs_write64(GUEST_BNDCFGS, data);
2943 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302944 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08002945 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002947 case MSR_IA32_CR_PAT:
2948 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03002949 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2950 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002951 vmcs_write64(GUEST_IA32_PAT, data);
2952 vcpu->arch.pat = data;
2953 break;
2954 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002955 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002956 break;
Will Auldba904632012-11-29 12:42:50 -08002957 case MSR_IA32_TSC_ADJUST:
2958 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002959 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002960 case MSR_IA32_FEATURE_CONTROL:
2961 if (!nested_vmx_allowed(vcpu) ||
2962 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2963 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2964 return 1;
2965 vmx->nested.msr_ia32_feature_control = data;
2966 if (msr_info->host_initiated && data == 0)
2967 vmx_leave_nested(vcpu);
2968 break;
2969 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2970 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08002971 case MSR_IA32_XSS:
2972 if (!vmx_xsaves_supported())
2973 return 1;
2974 /*
2975 * The only supported bit as of Skylake is bit 8, but
2976 * it is not supported on KVM.
2977 */
2978 if (data != 0)
2979 return 1;
2980 vcpu->arch.ia32_xss = data;
2981 if (vcpu->arch.ia32_xss != host_xss)
2982 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
2983 vcpu->arch.ia32_xss, host_xss);
2984 else
2985 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
2986 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002987 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002988 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002989 return 1;
2990 /* Check reserved bit, higher 32 bits should be zero */
2991 if ((data >> 32) != 0)
2992 return 1;
2993 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002994 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002995 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002996 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07002997 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002998 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002999 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3000 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003001 ret = kvm_set_shared_msr(msr->index, msr->data,
3002 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003003 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003004 if (ret)
3005 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003006 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003007 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003008 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003009 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003010 }
3011
Eddie Dong2cc51562007-05-21 07:28:09 +03003012 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003013}
3014
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003015static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003016{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003017 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3018 switch (reg) {
3019 case VCPU_REGS_RSP:
3020 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3021 break;
3022 case VCPU_REGS_RIP:
3023 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3024 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003025 case VCPU_EXREG_PDPTR:
3026 if (enable_ept)
3027 ept_save_pdptrs(vcpu);
3028 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003029 default:
3030 break;
3031 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003032}
3033
Avi Kivity6aa8b732006-12-10 02:21:36 -08003034static __init int cpu_has_kvm_support(void)
3035{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003036 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037}
3038
3039static __init int vmx_disabled_by_bios(void)
3040{
3041 u64 msr;
3042
3043 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003044 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003045 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003046 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3047 && tboot_enabled())
3048 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003049 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003050 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003051 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003052 && !tboot_enabled()) {
3053 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003054 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003055 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003056 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003057 /* launched w/o TXT and VMX disabled */
3058 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3059 && !tboot_enabled())
3060 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003061 }
3062
3063 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003064}
3065
Dongxiao Xu7725b892010-05-11 18:29:38 +08003066static void kvm_cpu_vmxon(u64 addr)
3067{
3068 asm volatile (ASM_VMX_VMXON_RAX
3069 : : "a"(&addr), "m"(addr)
3070 : "memory", "cc");
3071}
3072
Radim Krčmář13a34e02014-08-28 15:13:03 +02003073static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003074{
3075 int cpu = raw_smp_processor_id();
3076 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003077 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003078
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003079 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003080 return -EBUSY;
3081
Nadav Har'Eld462b812011-05-24 15:26:10 +03003082 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003083 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3084 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003085
3086 /*
3087 * Now we can enable the vmclear operation in kdump
3088 * since the loaded_vmcss_on_cpu list on this cpu
3089 * has been initialized.
3090 *
3091 * Though the cpu is not in VMX operation now, there
3092 * is no problem to enable the vmclear operation
3093 * for the loaded_vmcss_on_cpu list is empty!
3094 */
3095 crash_enable_local_vmclear(cpu);
3096
Avi Kivity6aa8b732006-12-10 02:21:36 -08003097 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003098
3099 test_bits = FEATURE_CONTROL_LOCKED;
3100 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3101 if (tboot_enabled())
3102 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3103
3104 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003106 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3107 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003108 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003109
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003110 if (vmm_exclusive) {
3111 kvm_cpu_vmxon(phys_addr);
3112 ept_sync_global();
3113 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003114
Christoph Lameter89cbc762014-08-17 12:30:40 -05003115 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003116
Alexander Graf10474ae2009-09-15 11:37:46 +02003117 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003118}
3119
Nadav Har'Eld462b812011-05-24 15:26:10 +03003120static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003121{
3122 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003123 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003124
Nadav Har'Eld462b812011-05-24 15:26:10 +03003125 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3126 loaded_vmcss_on_cpu_link)
3127 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003128}
3129
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003130
3131/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3132 * tricks.
3133 */
3134static void kvm_cpu_vmxoff(void)
3135{
3136 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003137}
3138
Radim Krčmář13a34e02014-08-28 15:13:03 +02003139static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003141 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003142 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003143 kvm_cpu_vmxoff();
3144 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003145 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003146}
3147
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003148static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003149 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003150{
3151 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003152 u32 ctl = ctl_min | ctl_opt;
3153
3154 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3155
3156 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3157 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3158
3159 /* Ensure minimum (required) set of control bits are supported. */
3160 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003161 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003162
3163 *result = ctl;
3164 return 0;
3165}
3166
Avi Kivity110312c2010-12-21 12:54:20 +02003167static __init bool allow_1_setting(u32 msr, u32 ctl)
3168{
3169 u32 vmx_msr_low, vmx_msr_high;
3170
3171 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3172 return vmx_msr_high & ctl;
3173}
3174
Yang, Sheng002c7f72007-07-31 14:23:01 +03003175static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003176{
3177 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003178 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003179 u32 _pin_based_exec_control = 0;
3180 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003181 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003182 u32 _vmexit_control = 0;
3183 u32 _vmentry_control = 0;
3184
Raghavendra K T10166742012-02-07 23:19:20 +05303185 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003186#ifdef CONFIG_X86_64
3187 CPU_BASED_CR8_LOAD_EXITING |
3188 CPU_BASED_CR8_STORE_EXITING |
3189#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003190 CPU_BASED_CR3_LOAD_EXITING |
3191 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003192 CPU_BASED_USE_IO_BITMAPS |
3193 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003194 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003195 CPU_BASED_MWAIT_EXITING |
3196 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003197 CPU_BASED_INVLPG_EXITING |
3198 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003199
Sheng Yangf78e0e22007-10-29 09:40:42 +08003200 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003201 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003202 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003203 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3204 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003205 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003206#ifdef CONFIG_X86_64
3207 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3208 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3209 ~CPU_BASED_CR8_STORE_EXITING;
3210#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003211 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003212 min2 = 0;
3213 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003214 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003215 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003216 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003217 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003218 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003219 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003220 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003221 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003222 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003223 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003224 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003225 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003226 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003227 SECONDARY_EXEC_PCOMMIT |
3228 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003229 if (adjust_vmx_controls(min2, opt2,
3230 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003231 &_cpu_based_2nd_exec_control) < 0)
3232 return -EIO;
3233 }
3234#ifndef CONFIG_X86_64
3235 if (!(_cpu_based_2nd_exec_control &
3236 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3237 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3238#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003239
3240 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3241 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003242 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003243 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3244 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003245
Sheng Yangd56f5462008-04-25 10:13:16 +08003246 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003247 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3248 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003249 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3250 CPU_BASED_CR3_STORE_EXITING |
3251 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003252 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3253 vmx_capability.ept, vmx_capability.vpid);
3254 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003255
Paolo Bonzini81908bf2014-02-21 10:32:27 +01003256 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003257#ifdef CONFIG_X86_64
3258 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3259#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003260 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003261 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003262 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3263 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003264 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003265
Yang Zhang01e439b2013-04-11 19:25:12 +08003266 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3267 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
3268 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3269 &_pin_based_exec_control) < 0)
3270 return -EIO;
3271
3272 if (!(_cpu_based_2nd_exec_control &
3273 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
3274 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
3275 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3276
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003277 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003278 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003279 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3280 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003281 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003282
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003283 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003284
3285 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3286 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003287 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003288
3289#ifdef CONFIG_X86_64
3290 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3291 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003292 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003293#endif
3294
3295 /* Require Write-Back (WB) memory type for VMCS accesses. */
3296 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003297 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003298
Yang, Sheng002c7f72007-07-31 14:23:01 +03003299 vmcs_conf->size = vmx_msr_high & 0x1fff;
3300 vmcs_conf->order = get_order(vmcs_config.size);
3301 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003302
Yang, Sheng002c7f72007-07-31 14:23:01 +03003303 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3304 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003305 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003306 vmcs_conf->vmexit_ctrl = _vmexit_control;
3307 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003308
Avi Kivity110312c2010-12-21 12:54:20 +02003309 cpu_has_load_ia32_efer =
3310 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3311 VM_ENTRY_LOAD_IA32_EFER)
3312 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3313 VM_EXIT_LOAD_IA32_EFER);
3314
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003315 cpu_has_load_perf_global_ctrl =
3316 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3317 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3318 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3319 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3320
3321 /*
3322 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
3323 * but due to arrata below it can't be used. Workaround is to use
3324 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3325 *
3326 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3327 *
3328 * AAK155 (model 26)
3329 * AAP115 (model 30)
3330 * AAT100 (model 37)
3331 * BC86,AAY89,BD102 (model 44)
3332 * BA97 (model 46)
3333 *
3334 */
3335 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3336 switch (boot_cpu_data.x86_model) {
3337 case 26:
3338 case 30:
3339 case 37:
3340 case 44:
3341 case 46:
3342 cpu_has_load_perf_global_ctrl = false;
3343 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3344 "does not work properly. Using workaround\n");
3345 break;
3346 default:
3347 break;
3348 }
3349 }
3350
Wanpeng Li20300092014-12-02 19:14:59 +08003351 if (cpu_has_xsaves)
3352 rdmsrl(MSR_IA32_XSS, host_xss);
3353
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003354 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003355}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003356
3357static struct vmcs *alloc_vmcs_cpu(int cpu)
3358{
3359 int node = cpu_to_node(cpu);
3360 struct page *pages;
3361 struct vmcs *vmcs;
3362
Vlastimil Babka96db8002015-09-08 15:03:50 -07003363 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003364 if (!pages)
3365 return NULL;
3366 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003367 memset(vmcs, 0, vmcs_config.size);
3368 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369 return vmcs;
3370}
3371
3372static struct vmcs *alloc_vmcs(void)
3373{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003374 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003375}
3376
3377static void free_vmcs(struct vmcs *vmcs)
3378{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003379 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003380}
3381
Nadav Har'Eld462b812011-05-24 15:26:10 +03003382/*
3383 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3384 */
3385static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3386{
3387 if (!loaded_vmcs->vmcs)
3388 return;
3389 loaded_vmcs_clear(loaded_vmcs);
3390 free_vmcs(loaded_vmcs->vmcs);
3391 loaded_vmcs->vmcs = NULL;
3392}
3393
Sam Ravnborg39959582007-06-01 00:47:13 -07003394static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395{
3396 int cpu;
3397
Zachary Amsden3230bb42009-09-29 11:38:37 -10003398 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003399 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003400 per_cpu(vmxarea, cpu) = NULL;
3401 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003402}
3403
Bandan Dasfe2b2012014-04-21 15:20:14 -04003404static void init_vmcs_shadow_fields(void)
3405{
3406 int i, j;
3407
3408 /* No checks for read only fields yet */
3409
3410 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3411 switch (shadow_read_write_fields[i]) {
3412 case GUEST_BNDCFGS:
3413 if (!vmx_mpx_supported())
3414 continue;
3415 break;
3416 default:
3417 break;
3418 }
3419
3420 if (j < i)
3421 shadow_read_write_fields[j] =
3422 shadow_read_write_fields[i];
3423 j++;
3424 }
3425 max_shadow_read_write_fields = j;
3426
3427 /* shadowed fields guest access without vmexit */
3428 for (i = 0; i < max_shadow_read_write_fields; i++) {
3429 clear_bit(shadow_read_write_fields[i],
3430 vmx_vmwrite_bitmap);
3431 clear_bit(shadow_read_write_fields[i],
3432 vmx_vmread_bitmap);
3433 }
3434 for (i = 0; i < max_shadow_read_only_fields; i++)
3435 clear_bit(shadow_read_only_fields[i],
3436 vmx_vmread_bitmap);
3437}
3438
Avi Kivity6aa8b732006-12-10 02:21:36 -08003439static __init int alloc_kvm_area(void)
3440{
3441 int cpu;
3442
Zachary Amsden3230bb42009-09-29 11:38:37 -10003443 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003444 struct vmcs *vmcs;
3445
3446 vmcs = alloc_vmcs_cpu(cpu);
3447 if (!vmcs) {
3448 free_kvm_area();
3449 return -ENOMEM;
3450 }
3451
3452 per_cpu(vmxarea, cpu) = vmcs;
3453 }
3454 return 0;
3455}
3456
Gleb Natapov14168782013-01-21 15:36:49 +02003457static bool emulation_required(struct kvm_vcpu *vcpu)
3458{
3459 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3460}
3461
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003462static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003463 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003464{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003465 if (!emulate_invalid_guest_state) {
3466 /*
3467 * CS and SS RPL should be equal during guest entry according
3468 * to VMX spec, but in reality it is not always so. Since vcpu
3469 * is in the middle of the transition from real mode to
3470 * protected mode it is safe to assume that RPL 0 is a good
3471 * default value.
3472 */
3473 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003474 save->selector &= ~SEGMENT_RPL_MASK;
3475 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003476 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003478 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003479}
3480
3481static void enter_pmode(struct kvm_vcpu *vcpu)
3482{
3483 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003484 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003485
Gleb Natapovd99e4152012-12-20 16:57:45 +02003486 /*
3487 * Update real mode segment cache. It may be not up-to-date if sement
3488 * register was written while vcpu was in a guest mode.
3489 */
3490 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3491 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3492 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3493 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3494 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3495 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3496
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003497 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003498
Avi Kivity2fb92db2011-04-27 19:42:18 +03003499 vmx_segment_cache_clear(vmx);
3500
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003501 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003502
3503 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003504 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3505 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506 vmcs_writel(GUEST_RFLAGS, flags);
3507
Rusty Russell66aee912007-07-17 23:34:16 +10003508 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3509 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003510
3511 update_exception_bitmap(vcpu);
3512
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003513 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3514 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3515 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3516 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3517 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3518 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003519}
3520
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003521static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003522{
Mathias Krause772e0312012-08-30 01:30:19 +02003523 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003524 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525
Gleb Natapovd99e4152012-12-20 16:57:45 +02003526 var.dpl = 0x3;
3527 if (seg == VCPU_SREG_CS)
3528 var.type = 0x3;
3529
3530 if (!emulate_invalid_guest_state) {
3531 var.selector = var.base >> 4;
3532 var.base = var.base & 0xffff0;
3533 var.limit = 0xffff;
3534 var.g = 0;
3535 var.db = 0;
3536 var.present = 1;
3537 var.s = 1;
3538 var.l = 0;
3539 var.unusable = 0;
3540 var.type = 0x3;
3541 var.avl = 0;
3542 if (save->base & 0xf)
3543 printk_once(KERN_WARNING "kvm: segment base is not "
3544 "paragraph aligned when entering "
3545 "protected mode (seg=%d)", seg);
3546 }
3547
3548 vmcs_write16(sf->selector, var.selector);
3549 vmcs_write32(sf->base, var.base);
3550 vmcs_write32(sf->limit, var.limit);
3551 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552}
3553
3554static void enter_rmode(struct kvm_vcpu *vcpu)
3555{
3556 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003557 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003558
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003559 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3560 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3561 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3562 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3563 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003564 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3565 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003566
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003567 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003568
Gleb Natapov776e58e2011-03-13 12:34:27 +02003569 /*
3570 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003571 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003572 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003573 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003574 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3575 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003576
Avi Kivity2fb92db2011-04-27 19:42:18 +03003577 vmx_segment_cache_clear(vmx);
3578
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003579 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003581 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3582
3583 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003584 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003585
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003586 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003587
3588 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003589 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003590 update_exception_bitmap(vcpu);
3591
Gleb Natapovd99e4152012-12-20 16:57:45 +02003592 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3593 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3594 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3595 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3596 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3597 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003598
Eddie Dong8668a3c2007-10-10 14:26:45 +08003599 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003600}
3601
Amit Shah401d10d2009-02-20 22:53:37 +05303602static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3603{
3604 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003605 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3606
3607 if (!msr)
3608 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303609
Avi Kivity44ea2b12009-09-06 15:55:37 +03003610 /*
3611 * Force kernel_gs_base reloading before EFER changes, as control
3612 * of this msr depends on is_long_mode().
3613 */
3614 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003615 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303616 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003617 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303618 msr->data = efer;
3619 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003620 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303621
3622 msr->data = efer & ~EFER_LME;
3623 }
3624 setup_msrs(vmx);
3625}
3626
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003627#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003628
3629static void enter_lmode(struct kvm_vcpu *vcpu)
3630{
3631 u32 guest_tr_ar;
3632
Avi Kivity2fb92db2011-04-27 19:42:18 +03003633 vmx_segment_cache_clear(to_vmx(vcpu));
3634
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003636 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003637 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3638 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003639 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003640 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3641 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642 }
Avi Kivityda38f432010-07-06 11:30:49 +03003643 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003644}
3645
3646static void exit_lmode(struct kvm_vcpu *vcpu)
3647{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003648 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003649 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003650}
3651
3652#endif
3653
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003654static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003655{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003656 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003657 if (enable_ept) {
3658 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3659 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003660 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003661 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003662}
3663
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003664static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3665{
3666 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3667}
3668
Avi Kivitye8467fd2009-12-29 18:43:06 +02003669static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3670{
3671 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3672
3673 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3674 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3675}
3676
Avi Kivityaff48ba2010-12-05 18:56:11 +02003677static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3678{
3679 if (enable_ept && is_paging(vcpu))
3680 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3681 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3682}
3683
Anthony Liguori25c4c272007-04-27 09:29:21 +03003684static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003685{
Avi Kivityfc78f512009-12-07 12:16:48 +02003686 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3687
3688 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3689 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003690}
3691
Sheng Yang14394422008-04-28 12:24:45 +08003692static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3693{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003694 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3695
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003696 if (!test_bit(VCPU_EXREG_PDPTR,
3697 (unsigned long *)&vcpu->arch.regs_dirty))
3698 return;
3699
Sheng Yang14394422008-04-28 12:24:45 +08003700 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003701 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3702 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3703 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3704 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003705 }
3706}
3707
Avi Kivity8f5d5492009-05-31 18:41:29 +03003708static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3709{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003710 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3711
Avi Kivity8f5d5492009-05-31 18:41:29 +03003712 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003713 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3714 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3715 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3716 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003717 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003718
3719 __set_bit(VCPU_EXREG_PDPTR,
3720 (unsigned long *)&vcpu->arch.regs_avail);
3721 __set_bit(VCPU_EXREG_PDPTR,
3722 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003723}
3724
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003725static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003726
3727static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3728 unsigned long cr0,
3729 struct kvm_vcpu *vcpu)
3730{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003731 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3732 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003733 if (!(cr0 & X86_CR0_PG)) {
3734 /* From paging/starting to nonpaging */
3735 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003736 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003737 (CPU_BASED_CR3_LOAD_EXITING |
3738 CPU_BASED_CR3_STORE_EXITING));
3739 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003740 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003741 } else if (!is_paging(vcpu)) {
3742 /* From nonpaging to paging */
3743 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003744 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003745 ~(CPU_BASED_CR3_LOAD_EXITING |
3746 CPU_BASED_CR3_STORE_EXITING));
3747 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003748 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003749 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003750
3751 if (!(cr0 & X86_CR0_WP))
3752 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003753}
3754
Avi Kivity6aa8b732006-12-10 02:21:36 -08003755static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3756{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003757 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003758 unsigned long hw_cr0;
3759
Gleb Natapov50378782013-02-04 16:00:28 +02003760 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003761 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003762 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003763 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003764 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003765
Gleb Natapov218e7632013-01-21 15:36:45 +02003766 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3767 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003768
Gleb Natapov218e7632013-01-21 15:36:45 +02003769 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3770 enter_rmode(vcpu);
3771 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003772
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003773#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003774 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003775 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003776 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003777 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003778 exit_lmode(vcpu);
3779 }
3780#endif
3781
Avi Kivity089d0342009-03-23 18:26:32 +02003782 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003783 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3784
Avi Kivity02daab22009-12-30 12:40:26 +02003785 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003786 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003787
Avi Kivity6aa8b732006-12-10 02:21:36 -08003788 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003789 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003790 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003791
3792 /* depends on vcpu->arch.cr0 to be set to a new value */
3793 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794}
3795
Sheng Yang14394422008-04-28 12:24:45 +08003796static u64 construct_eptp(unsigned long root_hpa)
3797{
3798 u64 eptp;
3799
3800 /* TODO write the value reading from MSR */
3801 eptp = VMX_EPT_DEFAULT_MT |
3802 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003803 if (enable_ept_ad_bits)
3804 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003805 eptp |= (root_hpa & PAGE_MASK);
3806
3807 return eptp;
3808}
3809
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3811{
Sheng Yang14394422008-04-28 12:24:45 +08003812 unsigned long guest_cr3;
3813 u64 eptp;
3814
3815 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003816 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003817 eptp = construct_eptp(cr3);
3818 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003819 if (is_paging(vcpu) || is_guest_mode(vcpu))
3820 guest_cr3 = kvm_read_cr3(vcpu);
3821 else
3822 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02003823 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003824 }
3825
Sheng Yang2384d2b2008-01-17 15:14:33 +08003826 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003827 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003828}
3829
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003830static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003831{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003832 /*
3833 * Pass through host's Machine Check Enable value to hw_cr4, which
3834 * is in force while we are in guest mode. Do not let guests control
3835 * this bit, even if host CR4.MCE == 0.
3836 */
3837 unsigned long hw_cr4 =
3838 (cr4_read_shadow() & X86_CR4_MCE) |
3839 (cr4 & ~X86_CR4_MCE) |
3840 (to_vmx(vcpu)->rmode.vm86_active ?
3841 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003842
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003843 if (cr4 & X86_CR4_VMXE) {
3844 /*
3845 * To use VMXON (and later other VMX instructions), a guest
3846 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3847 * So basically the check on whether to allow nested VMX
3848 * is here.
3849 */
3850 if (!nested_vmx_allowed(vcpu))
3851 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003852 }
3853 if (to_vmx(vcpu)->nested.vmxon &&
3854 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003855 return 1;
3856
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003857 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003858 if (enable_ept) {
3859 if (!is_paging(vcpu)) {
3860 hw_cr4 &= ~X86_CR4_PAE;
3861 hw_cr4 |= X86_CR4_PSE;
3862 } else if (!(cr4 & X86_CR4_PAE)) {
3863 hw_cr4 &= ~X86_CR4_PAE;
3864 }
3865 }
Sheng Yang14394422008-04-28 12:24:45 +08003866
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003867 if (!enable_unrestricted_guest && !is_paging(vcpu))
3868 /*
3869 * SMEP/SMAP is disabled if CPU is in non-paging mode in
3870 * hardware. However KVM always uses paging mode without
3871 * unrestricted guest.
3872 * To emulate this behavior, SMEP/SMAP needs to be manually
3873 * disabled when guest switches to non-paging mode.
3874 */
3875 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP);
3876
Sheng Yang14394422008-04-28 12:24:45 +08003877 vmcs_writel(CR4_READ_SHADOW, cr4);
3878 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003879 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003880}
3881
Avi Kivity6aa8b732006-12-10 02:21:36 -08003882static void vmx_get_segment(struct kvm_vcpu *vcpu,
3883 struct kvm_segment *var, int seg)
3884{
Avi Kivitya9179492011-01-03 14:28:52 +02003885 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003886 u32 ar;
3887
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003888 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003889 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003890 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003891 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003892 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003893 var->base = vmx_read_guest_seg_base(vmx, seg);
3894 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3895 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003896 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003897 var->base = vmx_read_guest_seg_base(vmx, seg);
3898 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3899 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3900 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003901 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003902 var->type = ar & 15;
3903 var->s = (ar >> 4) & 1;
3904 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003905 /*
3906 * Some userspaces do not preserve unusable property. Since usable
3907 * segment has to be present according to VMX spec we can use present
3908 * property to amend userspace bug by making unusable segment always
3909 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3910 * segment as unusable.
3911 */
3912 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913 var->avl = (ar >> 12) & 1;
3914 var->l = (ar >> 13) & 1;
3915 var->db = (ar >> 14) & 1;
3916 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917}
3918
Avi Kivitya9179492011-01-03 14:28:52 +02003919static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3920{
Avi Kivitya9179492011-01-03 14:28:52 +02003921 struct kvm_segment s;
3922
3923 if (to_vmx(vcpu)->rmode.vm86_active) {
3924 vmx_get_segment(vcpu, &s, seg);
3925 return s.base;
3926 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003927 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003928}
3929
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003930static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003931{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003932 struct vcpu_vmx *vmx = to_vmx(vcpu);
3933
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003934 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003935 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003936 else {
3937 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003938 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003939 }
Avi Kivity69c73022011-03-07 15:26:44 +02003940}
3941
Avi Kivity653e3102007-05-07 10:55:37 +03003942static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944 u32 ar;
3945
Avi Kivityf0495f92012-06-07 17:06:10 +03003946 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947 ar = 1 << 16;
3948 else {
3949 ar = var->type & 15;
3950 ar |= (var->s & 1) << 4;
3951 ar |= (var->dpl & 3) << 5;
3952 ar |= (var->present & 1) << 7;
3953 ar |= (var->avl & 1) << 12;
3954 ar |= (var->l & 1) << 13;
3955 ar |= (var->db & 1) << 14;
3956 ar |= (var->g & 1) << 15;
3957 }
Avi Kivity653e3102007-05-07 10:55:37 +03003958
3959 return ar;
3960}
3961
3962static void vmx_set_segment(struct kvm_vcpu *vcpu,
3963 struct kvm_segment *var, int seg)
3964{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003965 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003966 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003967
Avi Kivity2fb92db2011-04-27 19:42:18 +03003968 vmx_segment_cache_clear(vmx);
3969
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003970 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3971 vmx->rmode.segs[seg] = *var;
3972 if (seg == VCPU_SREG_TR)
3973 vmcs_write16(sf->selector, var->selector);
3974 else if (var->s)
3975 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003976 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003977 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003978
Avi Kivity653e3102007-05-07 10:55:37 +03003979 vmcs_writel(sf->base, var->base);
3980 vmcs_write32(sf->limit, var->limit);
3981 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003982
3983 /*
3984 * Fix the "Accessed" bit in AR field of segment registers for older
3985 * qemu binaries.
3986 * IA32 arch specifies that at the time of processor reset the
3987 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003988 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003989 * state vmexit when "unrestricted guest" mode is turned on.
3990 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3991 * tree. Newer qemu binaries with that qemu fix would not need this
3992 * kvm hack.
3993 */
3994 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003995 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003996
Gleb Natapovf924d662012-12-12 19:10:55 +02003997 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003998
3999out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004000 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004001}
4002
Avi Kivity6aa8b732006-12-10 02:21:36 -08004003static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4004{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004005 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004006
4007 *db = (ar >> 14) & 1;
4008 *l = (ar >> 13) & 1;
4009}
4010
Gleb Natapov89a27f42010-02-16 10:51:48 +02004011static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004012{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004013 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4014 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004015}
4016
Gleb Natapov89a27f42010-02-16 10:51:48 +02004017static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004018{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004019 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4020 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021}
4022
Gleb Natapov89a27f42010-02-16 10:51:48 +02004023static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004024{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004025 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4026 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004027}
4028
Gleb Natapov89a27f42010-02-16 10:51:48 +02004029static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004030{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004031 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4032 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004033}
4034
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004035static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4036{
4037 struct kvm_segment var;
4038 u32 ar;
4039
4040 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004041 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004042 if (seg == VCPU_SREG_CS)
4043 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004044 ar = vmx_segment_access_rights(&var);
4045
4046 if (var.base != (var.selector << 4))
4047 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004048 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004049 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004050 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004051 return false;
4052
4053 return true;
4054}
4055
4056static bool code_segment_valid(struct kvm_vcpu *vcpu)
4057{
4058 struct kvm_segment cs;
4059 unsigned int cs_rpl;
4060
4061 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004062 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004063
Avi Kivity1872a3f2009-01-04 23:26:52 +02004064 if (cs.unusable)
4065 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004066 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004067 return false;
4068 if (!cs.s)
4069 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004070 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004071 if (cs.dpl > cs_rpl)
4072 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004073 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004074 if (cs.dpl != cs_rpl)
4075 return false;
4076 }
4077 if (!cs.present)
4078 return false;
4079
4080 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4081 return true;
4082}
4083
4084static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4085{
4086 struct kvm_segment ss;
4087 unsigned int ss_rpl;
4088
4089 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004090 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004091
Avi Kivity1872a3f2009-01-04 23:26:52 +02004092 if (ss.unusable)
4093 return true;
4094 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004095 return false;
4096 if (!ss.s)
4097 return false;
4098 if (ss.dpl != ss_rpl) /* DPL != RPL */
4099 return false;
4100 if (!ss.present)
4101 return false;
4102
4103 return true;
4104}
4105
4106static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4107{
4108 struct kvm_segment var;
4109 unsigned int rpl;
4110
4111 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004112 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004113
Avi Kivity1872a3f2009-01-04 23:26:52 +02004114 if (var.unusable)
4115 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004116 if (!var.s)
4117 return false;
4118 if (!var.present)
4119 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004120 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004121 if (var.dpl < rpl) /* DPL < RPL */
4122 return false;
4123 }
4124
4125 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4126 * rights flags
4127 */
4128 return true;
4129}
4130
4131static bool tr_valid(struct kvm_vcpu *vcpu)
4132{
4133 struct kvm_segment tr;
4134
4135 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4136
Avi Kivity1872a3f2009-01-04 23:26:52 +02004137 if (tr.unusable)
4138 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004139 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004140 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004141 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004142 return false;
4143 if (!tr.present)
4144 return false;
4145
4146 return true;
4147}
4148
4149static bool ldtr_valid(struct kvm_vcpu *vcpu)
4150{
4151 struct kvm_segment ldtr;
4152
4153 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4154
Avi Kivity1872a3f2009-01-04 23:26:52 +02004155 if (ldtr.unusable)
4156 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004157 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004158 return false;
4159 if (ldtr.type != 2)
4160 return false;
4161 if (!ldtr.present)
4162 return false;
4163
4164 return true;
4165}
4166
4167static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4168{
4169 struct kvm_segment cs, ss;
4170
4171 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4172 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4173
Nadav Amitb32a9912015-03-29 16:33:04 +03004174 return ((cs.selector & SEGMENT_RPL_MASK) ==
4175 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004176}
4177
4178/*
4179 * Check if guest state is valid. Returns true if valid, false if
4180 * not.
4181 * We assume that registers are always usable
4182 */
4183static bool guest_state_valid(struct kvm_vcpu *vcpu)
4184{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004185 if (enable_unrestricted_guest)
4186 return true;
4187
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004188 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004189 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004190 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4191 return false;
4192 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4193 return false;
4194 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4195 return false;
4196 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4197 return false;
4198 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4199 return false;
4200 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4201 return false;
4202 } else {
4203 /* protected mode guest state checks */
4204 if (!cs_ss_rpl_check(vcpu))
4205 return false;
4206 if (!code_segment_valid(vcpu))
4207 return false;
4208 if (!stack_segment_valid(vcpu))
4209 return false;
4210 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4211 return false;
4212 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4213 return false;
4214 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4215 return false;
4216 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4217 return false;
4218 if (!tr_valid(vcpu))
4219 return false;
4220 if (!ldtr_valid(vcpu))
4221 return false;
4222 }
4223 /* TODO:
4224 * - Add checks on RIP
4225 * - Add checks on RFLAGS
4226 */
4227
4228 return true;
4229}
4230
Mike Dayd77c26f2007-10-08 09:02:08 -04004231static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004233 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004234 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004235 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004236
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004237 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004238 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004239 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4240 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004241 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004242 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004243 r = kvm_write_guest_page(kvm, fn++, &data,
4244 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004245 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004246 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004247 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4248 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004249 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004250 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4251 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004252 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004253 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004254 r = kvm_write_guest_page(kvm, fn, &data,
4255 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4256 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004257out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004258 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004259 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004260}
4261
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004262static int init_rmode_identity_map(struct kvm *kvm)
4263{
Tang Chenf51770e2014-09-16 18:41:59 +08004264 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004265 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004266 u32 tmp;
4267
Avi Kivity089d0342009-03-23 18:26:32 +02004268 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004269 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004270
4271 /* Protect kvm->arch.ept_identity_pagetable_done. */
4272 mutex_lock(&kvm->slots_lock);
4273
Tang Chenf51770e2014-09-16 18:41:59 +08004274 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004275 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004276
Sheng Yangb927a3c2009-07-21 10:42:48 +08004277 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004278
4279 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004280 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004281 goto out2;
4282
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004283 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004284 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4285 if (r < 0)
4286 goto out;
4287 /* Set up identity-mapping pagetable for EPT in real mode */
4288 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4289 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4290 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4291 r = kvm_write_guest_page(kvm, identity_map_pfn,
4292 &tmp, i * sizeof(tmp), sizeof(tmp));
4293 if (r < 0)
4294 goto out;
4295 }
4296 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004297
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004298out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004299 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004300
4301out2:
4302 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004303 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004304}
4305
Avi Kivity6aa8b732006-12-10 02:21:36 -08004306static void seg_setup(int seg)
4307{
Mathias Krause772e0312012-08-30 01:30:19 +02004308 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004309 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004310
4311 vmcs_write16(sf->selector, 0);
4312 vmcs_writel(sf->base, 0);
4313 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004314 ar = 0x93;
4315 if (seg == VCPU_SREG_CS)
4316 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004317
4318 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319}
4320
Sheng Yangf78e0e22007-10-29 09:40:42 +08004321static int alloc_apic_access_page(struct kvm *kvm)
4322{
Xiao Guangrong44841412012-09-07 14:14:20 +08004323 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004324 int r = 0;
4325
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004326 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004327 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004328 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004329 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4330 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004331 if (r)
4332 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004333
Tang Chen73a6d942014-09-11 13:38:00 +08004334 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004335 if (is_error_page(page)) {
4336 r = -EFAULT;
4337 goto out;
4338 }
4339
Tang Chenc24ae0d2014-09-24 15:57:58 +08004340 /*
4341 * Do not pin the page in memory, so that memory hot-unplug
4342 * is able to migrate it.
4343 */
4344 put_page(page);
4345 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004346out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004347 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004348 return r;
4349}
4350
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004351static int alloc_identity_pagetable(struct kvm *kvm)
4352{
Tang Chena255d472014-09-16 18:41:58 +08004353 /* Called with kvm->slots_lock held. */
4354
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004355 int r = 0;
4356
Tang Chena255d472014-09-16 18:41:58 +08004357 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4358
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004359 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4360 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004361
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004362 return r;
4363}
4364
Wanpeng Li991e7a02015-09-16 17:30:05 +08004365static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004366{
4367 int vpid;
4368
Avi Kivity919818a2009-03-23 18:01:29 +02004369 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004370 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004371 spin_lock(&vmx_vpid_lock);
4372 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004373 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004374 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004375 else
4376 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004377 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004378 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004379}
4380
Wanpeng Li991e7a02015-09-16 17:30:05 +08004381static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004382{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004383 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004384 return;
4385 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004386 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004387 spin_unlock(&vmx_vpid_lock);
4388}
4389
Yang Zhang8d146952013-01-25 10:18:50 +08004390#define MSR_TYPE_R 1
4391#define MSR_TYPE_W 2
4392static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4393 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004394{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004395 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004396
4397 if (!cpu_has_vmx_msr_bitmap())
4398 return;
4399
4400 /*
4401 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4402 * have the write-low and read-high bitmap offsets the wrong way round.
4403 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4404 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004405 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004406 if (type & MSR_TYPE_R)
4407 /* read-low */
4408 __clear_bit(msr, msr_bitmap + 0x000 / f);
4409
4410 if (type & MSR_TYPE_W)
4411 /* write-low */
4412 __clear_bit(msr, msr_bitmap + 0x800 / f);
4413
Sheng Yang25c5f222008-03-28 13:18:56 +08004414 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4415 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004416 if (type & MSR_TYPE_R)
4417 /* read-high */
4418 __clear_bit(msr, msr_bitmap + 0x400 / f);
4419
4420 if (type & MSR_TYPE_W)
4421 /* write-high */
4422 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4423
4424 }
4425}
4426
4427static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4428 u32 msr, int type)
4429{
4430 int f = sizeof(unsigned long);
4431
4432 if (!cpu_has_vmx_msr_bitmap())
4433 return;
4434
4435 /*
4436 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4437 * have the write-low and read-high bitmap offsets the wrong way round.
4438 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4439 */
4440 if (msr <= 0x1fff) {
4441 if (type & MSR_TYPE_R)
4442 /* read-low */
4443 __set_bit(msr, msr_bitmap + 0x000 / f);
4444
4445 if (type & MSR_TYPE_W)
4446 /* write-low */
4447 __set_bit(msr, msr_bitmap + 0x800 / f);
4448
4449 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4450 msr &= 0x1fff;
4451 if (type & MSR_TYPE_R)
4452 /* read-high */
4453 __set_bit(msr, msr_bitmap + 0x400 / f);
4454
4455 if (type & MSR_TYPE_W)
4456 /* write-high */
4457 __set_bit(msr, msr_bitmap + 0xc00 / f);
4458
Sheng Yang25c5f222008-03-28 13:18:56 +08004459 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004460}
4461
Wincy Vanf2b93282015-02-03 23:56:03 +08004462/*
4463 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4464 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4465 */
4466static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4467 unsigned long *msr_bitmap_nested,
4468 u32 msr, int type)
4469{
4470 int f = sizeof(unsigned long);
4471
4472 if (!cpu_has_vmx_msr_bitmap()) {
4473 WARN_ON(1);
4474 return;
4475 }
4476
4477 /*
4478 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4479 * have the write-low and read-high bitmap offsets the wrong way round.
4480 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4481 */
4482 if (msr <= 0x1fff) {
4483 if (type & MSR_TYPE_R &&
4484 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4485 /* read-low */
4486 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4487
4488 if (type & MSR_TYPE_W &&
4489 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4490 /* write-low */
4491 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4492
4493 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4494 msr &= 0x1fff;
4495 if (type & MSR_TYPE_R &&
4496 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4497 /* read-high */
4498 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4499
4500 if (type & MSR_TYPE_W &&
4501 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4502 /* write-high */
4503 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4504
4505 }
4506}
4507
Avi Kivity58972972009-02-24 22:26:47 +02004508static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4509{
4510 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004511 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4512 msr, MSR_TYPE_R | MSR_TYPE_W);
4513 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4514 msr, MSR_TYPE_R | MSR_TYPE_W);
4515}
4516
4517static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4518{
4519 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4520 msr, MSR_TYPE_R);
4521 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4522 msr, MSR_TYPE_R);
4523}
4524
4525static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4526{
4527 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4528 msr, MSR_TYPE_R);
4529 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4530 msr, MSR_TYPE_R);
4531}
4532
4533static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4534{
4535 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4536 msr, MSR_TYPE_W);
4537 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4538 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004539}
4540
Andrey Smetanind62caab2015-11-10 15:36:33 +03004541static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004542{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004543 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004544}
4545
Wincy Van705699a2015-02-03 23:58:17 +08004546static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4547{
4548 struct vcpu_vmx *vmx = to_vmx(vcpu);
4549 int max_irr;
4550 void *vapic_page;
4551 u16 status;
4552
4553 if (vmx->nested.pi_desc &&
4554 vmx->nested.pi_pending) {
4555 vmx->nested.pi_pending = false;
4556 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4557 return 0;
4558
4559 max_irr = find_last_bit(
4560 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4561
4562 if (max_irr == 256)
4563 return 0;
4564
4565 vapic_page = kmap(vmx->nested.virtual_apic_page);
4566 if (!vapic_page) {
4567 WARN_ON(1);
4568 return -ENOMEM;
4569 }
4570 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4571 kunmap(vmx->nested.virtual_apic_page);
4572
4573 status = vmcs_read16(GUEST_INTR_STATUS);
4574 if ((u8)max_irr > ((u8)status & 0xff)) {
4575 status &= ~0xff;
4576 status |= (u8)max_irr;
4577 vmcs_write16(GUEST_INTR_STATUS, status);
4578 }
4579 }
4580 return 0;
4581}
4582
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004583static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4584{
4585#ifdef CONFIG_SMP
4586 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004587 struct vcpu_vmx *vmx = to_vmx(vcpu);
4588
4589 /*
4590 * Currently, we don't support urgent interrupt,
4591 * all interrupts are recognized as non-urgent
4592 * interrupt, so we cannot post interrupts when
4593 * 'SN' is set.
4594 *
4595 * If the vcpu is in guest mode, it means it is
4596 * running instead of being scheduled out and
4597 * waiting in the run queue, and that's the only
4598 * case when 'SN' is set currently, warning if
4599 * 'SN' is set.
4600 */
4601 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4602
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004603 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4604 POSTED_INTR_VECTOR);
4605 return true;
4606 }
4607#endif
4608 return false;
4609}
4610
Wincy Van705699a2015-02-03 23:58:17 +08004611static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4612 int vector)
4613{
4614 struct vcpu_vmx *vmx = to_vmx(vcpu);
4615
4616 if (is_guest_mode(vcpu) &&
4617 vector == vmx->nested.posted_intr_nv) {
4618 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004619 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004620 /*
4621 * If a posted intr is not recognized by hardware,
4622 * we will accomplish it in the next vmentry.
4623 */
4624 vmx->nested.pi_pending = true;
4625 kvm_make_request(KVM_REQ_EVENT, vcpu);
4626 return 0;
4627 }
4628 return -1;
4629}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004630/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004631 * Send interrupt to vcpu via posted interrupt way.
4632 * 1. If target vcpu is running(non-root mode), send posted interrupt
4633 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4634 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4635 * interrupt from PIR in next vmentry.
4636 */
4637static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4638{
4639 struct vcpu_vmx *vmx = to_vmx(vcpu);
4640 int r;
4641
Wincy Van705699a2015-02-03 23:58:17 +08004642 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4643 if (!r)
4644 return;
4645
Yang Zhanga20ed542013-04-11 19:25:15 +08004646 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4647 return;
4648
4649 r = pi_test_and_set_on(&vmx->pi_desc);
4650 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004651 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004652 kvm_vcpu_kick(vcpu);
4653}
4654
4655static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4656{
4657 struct vcpu_vmx *vmx = to_vmx(vcpu);
4658
4659 if (!pi_test_and_clear_on(&vmx->pi_desc))
4660 return;
4661
4662 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4663}
4664
Avi Kivity6aa8b732006-12-10 02:21:36 -08004665/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004666 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4667 * will not change in the lifetime of the guest.
4668 * Note that host-state that does change is set elsewhere. E.g., host-state
4669 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4670 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004671static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004672{
4673 u32 low32, high32;
4674 unsigned long tmpl;
4675 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004676 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004677
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004678 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004679 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4680
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004681 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004682 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004683 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4684 vmx->host_state.vmcs_host_cr4 = cr4;
4685
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004686 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004687#ifdef CONFIG_X86_64
4688 /*
4689 * Load null selectors, so we can avoid reloading them in
4690 * __vmx_load_host_state(), in case userspace uses the null selectors
4691 * too (the expected case).
4692 */
4693 vmcs_write16(HOST_DS_SELECTOR, 0);
4694 vmcs_write16(HOST_ES_SELECTOR, 0);
4695#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004696 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4697 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004698#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004699 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4700 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4701
4702 native_store_idt(&dt);
4703 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004704 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004705
Avi Kivity83287ea422012-09-16 15:10:57 +03004706 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004707
4708 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4709 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4710 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4711 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4712
4713 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4714 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4715 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4716 }
4717}
4718
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004719static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4720{
4721 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4722 if (enable_ept)
4723 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004724 if (is_guest_mode(&vmx->vcpu))
4725 vmx->vcpu.arch.cr4_guest_owned_bits &=
4726 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004727 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4728}
4729
Yang Zhang01e439b2013-04-11 19:25:12 +08004730static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4731{
4732 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4733
Andrey Smetanind62caab2015-11-10 15:36:33 +03004734 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004735 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4736 return pin_based_exec_ctrl;
4737}
4738
Andrey Smetanind62caab2015-11-10 15:36:33 +03004739static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4740{
4741 struct vcpu_vmx *vmx = to_vmx(vcpu);
4742
4743 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
4744}
4745
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004746static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4747{
4748 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004749
4750 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4751 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4752
Paolo Bonzini35754c92015-07-29 12:05:37 +02004753 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004754 exec_control &= ~CPU_BASED_TPR_SHADOW;
4755#ifdef CONFIG_X86_64
4756 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4757 CPU_BASED_CR8_LOAD_EXITING;
4758#endif
4759 }
4760 if (!enable_ept)
4761 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4762 CPU_BASED_CR3_LOAD_EXITING |
4763 CPU_BASED_INVLPG_EXITING;
4764 return exec_control;
4765}
4766
4767static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4768{
4769 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004770 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004771 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4772 if (vmx->vpid == 0)
4773 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4774 if (!enable_ept) {
4775 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4776 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004777 /* Enable INVPCID for non-ept guests may cause performance regression. */
4778 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004779 }
4780 if (!enable_unrestricted_guest)
4781 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4782 if (!ple_gap)
4783 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004784 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004785 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4786 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004787 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004788 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4789 (handle_vmptrld).
4790 We can NOT enable shadow_vmcs here because we don't have yet
4791 a current VMCS12
4792 */
4793 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004794
4795 if (!enable_pml)
4796 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004797
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004798 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4799 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4800
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004801 return exec_control;
4802}
4803
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004804static void ept_set_mmio_spte_mask(void)
4805{
4806 /*
4807 * EPT Misconfigurations can be generated if the value of bits 2:0
4808 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004809 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004810 * spte.
4811 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004812 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004813}
4814
Wanpeng Lif53cd632014-12-02 19:14:58 +08004815#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004816/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817 * Sets up the vmcs for emulated real mode.
4818 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004819static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004820{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004821#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004823#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825
Avi Kivity6aa8b732006-12-10 02:21:36 -08004826 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004827 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4828 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829
Abel Gordon4607c2d2013-04-18 14:35:55 +03004830 if (enable_shadow_vmcs) {
4831 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4832 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4833 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004834 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004835 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004836
Avi Kivity6aa8b732006-12-10 02:21:36 -08004837 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4838
Avi Kivity6aa8b732006-12-10 02:21:36 -08004839 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004840 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004841
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004842 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004843
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004844 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004845 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4846 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004847
Andrey Smetanind62caab2015-11-10 15:36:33 +03004848 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004849 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4850 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4851 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4852 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4853
4854 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004855
Li RongQing0bcf2612015-12-03 13:29:34 +08004856 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004857 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004858 }
4859
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004860 if (ple_gap) {
4861 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004862 vmx->ple_window = ple_window;
4863 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004864 }
4865
Xiao Guangrongc3707952011-07-12 03:28:04 +08004866 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4867 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004868 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4869
Avi Kivity9581d442010-10-19 16:46:55 +02004870 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4871 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004872 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004873#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004874 rdmsrl(MSR_FS_BASE, a);
4875 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4876 rdmsrl(MSR_GS_BASE, a);
4877 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4878#else
4879 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4880 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4881#endif
4882
Eddie Dong2cc51562007-05-21 07:28:09 +03004883 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4884 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004885 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03004886 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004887 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004888
Radim Krčmář74545702015-04-27 15:11:25 +02004889 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4890 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004891
Paolo Bonzini03916db2014-07-24 14:21:57 +02004892 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004893 u32 index = vmx_msr_index[i];
4894 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004895 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004896
4897 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4898 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004899 if (wrmsr_safe(index, data_low, data_high) < 0)
4900 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004901 vmx->guest_msrs[j].index = i;
4902 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004903 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004904 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004905 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004906
Gleb Natapov2961e8762013-11-25 15:37:13 +02004907
4908 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004909
4910 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02004911 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004912
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004913 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004914 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004915
Wanpeng Lif53cd632014-12-02 19:14:58 +08004916 if (vmx_xsaves_supported())
4917 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4918
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004919 return 0;
4920}
4921
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004922static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004923{
4924 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004925 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004926 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004927
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004928 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004929
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004930 vmx->soft_vnmi_blocked = 0;
4931
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004932 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004933 kvm_set_cr8(vcpu, 0);
4934
4935 if (!init_event) {
4936 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4937 MSR_IA32_APICBASE_ENABLE;
4938 if (kvm_vcpu_is_reset_bsp(vcpu))
4939 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4940 apic_base_msr.host_initiated = true;
4941 kvm_set_apic_base(vcpu, &apic_base_msr);
4942 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004943
Avi Kivity2fb92db2011-04-27 19:42:18 +03004944 vmx_segment_cache_clear(vmx);
4945
Avi Kivity5706be02008-08-20 15:07:31 +03004946 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004947 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004948 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004949
4950 seg_setup(VCPU_SREG_DS);
4951 seg_setup(VCPU_SREG_ES);
4952 seg_setup(VCPU_SREG_FS);
4953 seg_setup(VCPU_SREG_GS);
4954 seg_setup(VCPU_SREG_SS);
4955
4956 vmcs_write16(GUEST_TR_SELECTOR, 0);
4957 vmcs_writel(GUEST_TR_BASE, 0);
4958 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4959 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4960
4961 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4962 vmcs_writel(GUEST_LDTR_BASE, 0);
4963 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4964 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4965
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004966 if (!init_event) {
4967 vmcs_write32(GUEST_SYSENTER_CS, 0);
4968 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4969 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4970 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4971 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004972
4973 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01004974 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004975
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004976 vmcs_writel(GUEST_GDTR_BASE, 0);
4977 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4978
4979 vmcs_writel(GUEST_IDTR_BASE, 0);
4980 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4981
Anthony Liguori443381a2010-12-06 10:53:38 -06004982 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004983 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004984 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004985
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004986 setup_msrs(vmx);
4987
Avi Kivity6aa8b732006-12-10 02:21:36 -08004988 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4989
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004990 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004991 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004992 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004993 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004994 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004995 vmcs_write32(TPR_THRESHOLD, 0);
4996 }
4997
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004998 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004999
Andrey Smetanind62caab2015-11-10 15:36:33 +03005000 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005001 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5002
Sheng Yang2384d2b2008-01-17 15:14:33 +08005003 if (vmx->vpid != 0)
5004 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5005
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005006 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
5007 vmx_set_cr0(vcpu, cr0); /* enter rmode */
5008 vmx->vcpu.arch.cr0 = cr0;
5009 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005010 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005011 vmx_fpu_activate(vcpu);
5012 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005013
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005014 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005015}
5016
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005017/*
5018 * In nested virtualization, check if L1 asked to exit on external interrupts.
5019 * For most existing hypervisors, this will always return true.
5020 */
5021static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5022{
5023 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5024 PIN_BASED_EXT_INTR_MASK;
5025}
5026
Bandan Das77b0f5d2014-04-19 18:17:45 -04005027/*
5028 * In nested virtualization, check if L1 has set
5029 * VM_EXIT_ACK_INTR_ON_EXIT
5030 */
5031static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5032{
5033 return get_vmcs12(vcpu)->vm_exit_controls &
5034 VM_EXIT_ACK_INTR_ON_EXIT;
5035}
5036
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005037static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5038{
5039 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5040 PIN_BASED_NMI_EXITING;
5041}
5042
Jan Kiszkac9a79532014-03-07 20:03:15 +01005043static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005044{
5045 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005046
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005047 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5048 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5049 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5050}
5051
Jan Kiszkac9a79532014-03-07 20:03:15 +01005052static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005053{
5054 u32 cpu_based_vm_exec_control;
5055
Jan Kiszkac9a79532014-03-07 20:03:15 +01005056 if (!cpu_has_virtual_nmis() ||
5057 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5058 enable_irq_window(vcpu);
5059 return;
5060 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005061
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005062 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5063 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5064 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5065}
5066
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005067static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005068{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005069 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005070 uint32_t intr;
5071 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005072
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005073 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005074
Avi Kivityfa89a812008-09-01 15:57:51 +03005075 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005076 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005077 int inc_eip = 0;
5078 if (vcpu->arch.interrupt.soft)
5079 inc_eip = vcpu->arch.event_exit_inst_len;
5080 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005081 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005082 return;
5083 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005084 intr = irq | INTR_INFO_VALID_MASK;
5085 if (vcpu->arch.interrupt.soft) {
5086 intr |= INTR_TYPE_SOFT_INTR;
5087 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5088 vmx->vcpu.arch.event_exit_inst_len);
5089 } else
5090 intr |= INTR_TYPE_EXT_INTR;
5091 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005092}
5093
Sheng Yangf08864b2008-05-15 18:23:25 +08005094static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5095{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005096 struct vcpu_vmx *vmx = to_vmx(vcpu);
5097
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005098 if (is_guest_mode(vcpu))
5099 return;
5100
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005101 if (!cpu_has_virtual_nmis()) {
5102 /*
5103 * Tracking the NMI-blocked state in software is built upon
5104 * finding the next open IRQ window. This, in turn, depends on
5105 * well-behaving guests: They have to keep IRQs disabled at
5106 * least as long as the NMI handler runs. Otherwise we may
5107 * cause NMI nesting, maybe breaking the guest. But as this is
5108 * highly unlikely, we can live with the residual risk.
5109 */
5110 vmx->soft_vnmi_blocked = 1;
5111 vmx->vnmi_blocked_time = 0;
5112 }
5113
Jan Kiszka487b3912008-09-26 09:30:56 +02005114 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005115 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005116 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005117 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005118 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005119 return;
5120 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005121 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5122 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005123}
5124
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005125static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5126{
5127 if (!cpu_has_virtual_nmis())
5128 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005129 if (to_vmx(vcpu)->nmi_known_unmasked)
5130 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005131 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005132}
5133
5134static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5135{
5136 struct vcpu_vmx *vmx = to_vmx(vcpu);
5137
5138 if (!cpu_has_virtual_nmis()) {
5139 if (vmx->soft_vnmi_blocked != masked) {
5140 vmx->soft_vnmi_blocked = masked;
5141 vmx->vnmi_blocked_time = 0;
5142 }
5143 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005144 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005145 if (masked)
5146 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5147 GUEST_INTR_STATE_NMI);
5148 else
5149 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5150 GUEST_INTR_STATE_NMI);
5151 }
5152}
5153
Jan Kiszka2505dc92013-04-14 12:12:47 +02005154static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5155{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005156 if (to_vmx(vcpu)->nested.nested_run_pending)
5157 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005158
Jan Kiszka2505dc92013-04-14 12:12:47 +02005159 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5160 return 0;
5161
5162 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5163 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5164 | GUEST_INTR_STATE_NMI));
5165}
5166
Gleb Natapov78646122009-03-23 12:12:11 +02005167static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5168{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005169 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5170 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005171 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5172 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005173}
5174
Izik Eiduscbc94022007-10-25 00:29:55 +02005175static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5176{
5177 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005178
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005179 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5180 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005181 if (ret)
5182 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005183 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005184 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005185}
5186
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005187static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005188{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005189 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005190 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005191 /*
5192 * Update instruction length as we may reinject the exception
5193 * from user space while in guest debugging mode.
5194 */
5195 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5196 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005197 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005198 return false;
5199 /* fall through */
5200 case DB_VECTOR:
5201 if (vcpu->guest_debug &
5202 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5203 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005204 /* fall through */
5205 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005206 case OF_VECTOR:
5207 case BR_VECTOR:
5208 case UD_VECTOR:
5209 case DF_VECTOR:
5210 case SS_VECTOR:
5211 case GP_VECTOR:
5212 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005213 return true;
5214 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005215 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005216 return false;
5217}
5218
5219static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5220 int vec, u32 err_code)
5221{
5222 /*
5223 * Instruction with address size override prefix opcode 0x67
5224 * Cause the #SS fault with 0 error code in VM86 mode.
5225 */
5226 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5227 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5228 if (vcpu->arch.halt_request) {
5229 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005230 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005231 }
5232 return 1;
5233 }
5234 return 0;
5235 }
5236
5237 /*
5238 * Forward all other exceptions that are valid in real mode.
5239 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5240 * the required debugging infrastructure rework.
5241 */
5242 kvm_queue_exception(vcpu, vec);
5243 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005244}
5245
Andi Kleena0861c02009-06-08 17:37:09 +08005246/*
5247 * Trigger machine check on the host. We assume all the MSRs are already set up
5248 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5249 * We pass a fake environment to the machine check handler because we want
5250 * the guest to be always treated like user space, no matter what context
5251 * it used internally.
5252 */
5253static void kvm_machine_check(void)
5254{
5255#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5256 struct pt_regs regs = {
5257 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5258 .flags = X86_EFLAGS_IF,
5259 };
5260
5261 do_machine_check(&regs, 0);
5262#endif
5263}
5264
Avi Kivity851ba692009-08-24 11:10:17 +03005265static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005266{
5267 /* already handled by vcpu_run */
5268 return 1;
5269}
5270
Avi Kivity851ba692009-08-24 11:10:17 +03005271static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005272{
Avi Kivity1155f762007-11-22 11:30:47 +02005273 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005274 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005275 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005276 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005277 u32 vect_info;
5278 enum emulation_result er;
5279
Avi Kivity1155f762007-11-22 11:30:47 +02005280 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005281 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005282
Andi Kleena0861c02009-06-08 17:37:09 +08005283 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005284 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005285
Jan Kiszkae4a41882008-09-26 09:30:46 +02005286 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005287 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005288
5289 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005290 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005291 return 1;
5292 }
5293
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005294 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005295 if (is_guest_mode(vcpu)) {
5296 kvm_queue_exception(vcpu, UD_VECTOR);
5297 return 1;
5298 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005299 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005300 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005301 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005302 return 1;
5303 }
5304
Avi Kivity6aa8b732006-12-10 02:21:36 -08005305 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005306 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005307 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005308
5309 /*
5310 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5311 * MMIO, it is better to report an internal error.
5312 * See the comments in vmx_handle_exit.
5313 */
5314 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5315 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5316 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5317 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005318 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005319 vcpu->run->internal.data[0] = vect_info;
5320 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005321 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005322 return 0;
5323 }
5324
Avi Kivity6aa8b732006-12-10 02:21:36 -08005325 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005326 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005327 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005328 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005329 trace_kvm_page_fault(cr2, error_code);
5330
Gleb Natapov3298b752009-05-11 13:35:46 +03005331 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005332 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005333 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005334 }
5335
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005336 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005337
5338 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5339 return handle_rmode_exception(vcpu, ex_no, error_code);
5340
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005341 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005342 case AC_VECTOR:
5343 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5344 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005345 case DB_VECTOR:
5346 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5347 if (!(vcpu->guest_debug &
5348 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005349 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005350 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005351 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5352 skip_emulated_instruction(vcpu);
5353
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005354 kvm_queue_exception(vcpu, DB_VECTOR);
5355 return 1;
5356 }
5357 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5358 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5359 /* fall through */
5360 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005361 /*
5362 * Update instruction length as we may reinject #BP from
5363 * user space while in guest debugging mode. Reading it for
5364 * #DB as well causes no harm, it is not used in that case.
5365 */
5366 vmx->vcpu.arch.event_exit_inst_len =
5367 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005368 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005369 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005370 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5371 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005372 break;
5373 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005374 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5375 kvm_run->ex.exception = ex_no;
5376 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005377 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005378 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005379 return 0;
5380}
5381
Avi Kivity851ba692009-08-24 11:10:17 +03005382static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005383{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005384 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005385 return 1;
5386}
5387
Avi Kivity851ba692009-08-24 11:10:17 +03005388static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005389{
Avi Kivity851ba692009-08-24 11:10:17 +03005390 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005391 return 0;
5392}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005393
Avi Kivity851ba692009-08-24 11:10:17 +03005394static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005395{
He, Qingbfdaab02007-09-12 14:18:28 +08005396 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005397 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005398 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005399
He, Qingbfdaab02007-09-12 14:18:28 +08005400 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005401 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005402 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005403
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005404 ++vcpu->stat.io_exits;
5405
5406 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005407 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005408
5409 port = exit_qualification >> 16;
5410 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005411 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005412
5413 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005414}
5415
Ingo Molnar102d8322007-02-19 14:37:47 +02005416static void
5417vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5418{
5419 /*
5420 * Patch in the VMCALL instruction:
5421 */
5422 hypercall[0] = 0x0f;
5423 hypercall[1] = 0x01;
5424 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005425}
5426
Wincy Vanb9c237b2015-02-03 23:56:30 +08005427static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005428{
5429 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005430 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005431
Wincy Vanb9c237b2015-02-03 23:56:30 +08005432 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005433 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5434 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5435 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5436 return (val & always_on) == always_on;
5437}
5438
Guo Chao0fa06072012-06-28 15:16:19 +08005439/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005440static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5441{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005442 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005443 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5444 unsigned long orig_val = val;
5445
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005446 /*
5447 * We get here when L2 changed cr0 in a way that did not change
5448 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005449 * but did change L0 shadowed bits. So we first calculate the
5450 * effective cr0 value that L1 would like to write into the
5451 * hardware. It consists of the L2-owned bits from the new
5452 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005453 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005454 val = (val & ~vmcs12->cr0_guest_host_mask) |
5455 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5456
Wincy Vanb9c237b2015-02-03 23:56:30 +08005457 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005458 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005459
5460 if (kvm_set_cr0(vcpu, val))
5461 return 1;
5462 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005463 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005464 } else {
5465 if (to_vmx(vcpu)->nested.vmxon &&
5466 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5467 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005468 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005469 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005470}
5471
5472static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5473{
5474 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005475 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5476 unsigned long orig_val = val;
5477
5478 /* analogously to handle_set_cr0 */
5479 val = (val & ~vmcs12->cr4_guest_host_mask) |
5480 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5481 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005482 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005483 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005484 return 0;
5485 } else
5486 return kvm_set_cr4(vcpu, val);
5487}
5488
5489/* called to set cr0 as approriate for clts instruction exit. */
5490static void handle_clts(struct kvm_vcpu *vcpu)
5491{
5492 if (is_guest_mode(vcpu)) {
5493 /*
5494 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5495 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5496 * just pretend it's off (also in arch.cr0 for fpu_activate).
5497 */
5498 vmcs_writel(CR0_READ_SHADOW,
5499 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5500 vcpu->arch.cr0 &= ~X86_CR0_TS;
5501 } else
5502 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5503}
5504
Avi Kivity851ba692009-08-24 11:10:17 +03005505static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005506{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005507 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005508 int cr;
5509 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005510 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005511
He, Qingbfdaab02007-09-12 14:18:28 +08005512 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005513 cr = exit_qualification & 15;
5514 reg = (exit_qualification >> 8) & 15;
5515 switch ((exit_qualification >> 4) & 3) {
5516 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005517 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005518 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005519 switch (cr) {
5520 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005521 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005522 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005523 return 1;
5524 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005525 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005526 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005527 return 1;
5528 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005529 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005530 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005531 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005532 case 8: {
5533 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005534 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005535 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005536 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005537 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005538 return 1;
5539 if (cr8_prev <= cr8)
5540 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005541 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005542 return 0;
5543 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005544 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005545 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005546 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005547 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005548 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005549 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005550 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005551 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005552 case 1: /*mov from cr*/
5553 switch (cr) {
5554 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005555 val = kvm_read_cr3(vcpu);
5556 kvm_register_write(vcpu, reg, val);
5557 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005558 skip_emulated_instruction(vcpu);
5559 return 1;
5560 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005561 val = kvm_get_cr8(vcpu);
5562 kvm_register_write(vcpu, reg, val);
5563 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005564 skip_emulated_instruction(vcpu);
5565 return 1;
5566 }
5567 break;
5568 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005569 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005570 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005571 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005572
5573 skip_emulated_instruction(vcpu);
5574 return 1;
5575 default:
5576 break;
5577 }
Avi Kivity851ba692009-08-24 11:10:17 +03005578 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005579 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005580 (int)(exit_qualification >> 4) & 3, cr);
5581 return 0;
5582}
5583
Avi Kivity851ba692009-08-24 11:10:17 +03005584static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005585{
He, Qingbfdaab02007-09-12 14:18:28 +08005586 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005587 int dr, dr7, reg;
5588
5589 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5590 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5591
5592 /* First, if DR does not exist, trigger UD */
5593 if (!kvm_require_dr(vcpu, dr))
5594 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005595
Jan Kiszkaf2483412010-01-20 18:20:20 +01005596 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005597 if (!kvm_require_cpl(vcpu, 0))
5598 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005599 dr7 = vmcs_readl(GUEST_DR7);
5600 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005601 /*
5602 * As the vm-exit takes precedence over the debug trap, we
5603 * need to emulate the latter, either for the host or the
5604 * guest debugging itself.
5605 */
5606 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005607 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005608 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005609 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005610 vcpu->run->debug.arch.exception = DB_VECTOR;
5611 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005612 return 0;
5613 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005614 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005615 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005616 kvm_queue_exception(vcpu, DB_VECTOR);
5617 return 1;
5618 }
5619 }
5620
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005621 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01005622 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5623 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005624
5625 /*
5626 * No more DR vmexits; force a reload of the debug registers
5627 * and reenter on this instruction. The next vmexit will
5628 * retrieve the full state of the debug registers.
5629 */
5630 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5631 return 1;
5632 }
5633
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005634 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5635 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005636 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005637
5638 if (kvm_get_dr(vcpu, dr, &val))
5639 return 1;
5640 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005641 } else
Nadav Amit57773922014-06-18 17:19:23 +03005642 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005643 return 1;
5644
Avi Kivity6aa8b732006-12-10 02:21:36 -08005645 skip_emulated_instruction(vcpu);
5646 return 1;
5647}
5648
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005649static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5650{
5651 return vcpu->arch.dr6;
5652}
5653
5654static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5655{
5656}
5657
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005658static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5659{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005660 get_debugreg(vcpu->arch.db[0], 0);
5661 get_debugreg(vcpu->arch.db[1], 1);
5662 get_debugreg(vcpu->arch.db[2], 2);
5663 get_debugreg(vcpu->arch.db[3], 3);
5664 get_debugreg(vcpu->arch.dr6, 6);
5665 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5666
5667 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01005668 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005669}
5670
Gleb Natapov020df072010-04-13 10:05:23 +03005671static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5672{
5673 vmcs_writel(GUEST_DR7, val);
5674}
5675
Avi Kivity851ba692009-08-24 11:10:17 +03005676static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005677{
Avi Kivity06465c52007-02-28 20:46:53 +02005678 kvm_emulate_cpuid(vcpu);
5679 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005680}
5681
Avi Kivity851ba692009-08-24 11:10:17 +03005682static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005683{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005684 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005685 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005686
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005687 msr_info.index = ecx;
5688 msr_info.host_initiated = false;
5689 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005690 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005691 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005692 return 1;
5693 }
5694
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005695 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005696
Avi Kivity6aa8b732006-12-10 02:21:36 -08005697 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005698 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5699 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005700 skip_emulated_instruction(vcpu);
5701 return 1;
5702}
5703
Avi Kivity851ba692009-08-24 11:10:17 +03005704static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005705{
Will Auld8fe8ab42012-11-29 12:42:12 -08005706 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005707 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5708 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5709 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005710
Will Auld8fe8ab42012-11-29 12:42:12 -08005711 msr.data = data;
5712 msr.index = ecx;
5713 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005714 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005715 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005716 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005717 return 1;
5718 }
5719
Avi Kivity59200272010-01-25 19:47:02 +02005720 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005721 skip_emulated_instruction(vcpu);
5722 return 1;
5723}
5724
Avi Kivity851ba692009-08-24 11:10:17 +03005725static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005726{
Avi Kivity3842d132010-07-27 12:30:24 +03005727 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005728 return 1;
5729}
5730
Avi Kivity851ba692009-08-24 11:10:17 +03005731static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005732{
Eddie Dong85f455f2007-07-06 12:20:49 +03005733 u32 cpu_based_vm_exec_control;
5734
5735 /* clear pending irq */
5736 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5737 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5738 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005739
Avi Kivity3842d132010-07-27 12:30:24 +03005740 kvm_make_request(KVM_REQ_EVENT, vcpu);
5741
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005742 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005743 return 1;
5744}
5745
Avi Kivity851ba692009-08-24 11:10:17 +03005746static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005747{
Avi Kivityd3bef152007-06-05 15:53:05 +03005748 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005749}
5750
Avi Kivity851ba692009-08-24 11:10:17 +03005751static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005752{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005753 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005754}
5755
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005756static int handle_invd(struct kvm_vcpu *vcpu)
5757{
Andre Przywara51d8b662010-12-21 11:12:02 +01005758 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005759}
5760
Avi Kivity851ba692009-08-24 11:10:17 +03005761static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005762{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005763 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005764
5765 kvm_mmu_invlpg(vcpu, exit_qualification);
5766 skip_emulated_instruction(vcpu);
5767 return 1;
5768}
5769
Avi Kivityfee84b02011-11-10 14:57:25 +02005770static int handle_rdpmc(struct kvm_vcpu *vcpu)
5771{
5772 int err;
5773
5774 err = kvm_rdpmc(vcpu);
5775 kvm_complete_insn_gp(vcpu, err);
5776
5777 return 1;
5778}
5779
Avi Kivity851ba692009-08-24 11:10:17 +03005780static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005781{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005782 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005783 return 1;
5784}
5785
Dexuan Cui2acf9232010-06-10 11:27:12 +08005786static int handle_xsetbv(struct kvm_vcpu *vcpu)
5787{
5788 u64 new_bv = kvm_read_edx_eax(vcpu);
5789 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5790
5791 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5792 skip_emulated_instruction(vcpu);
5793 return 1;
5794}
5795
Wanpeng Lif53cd632014-12-02 19:14:58 +08005796static int handle_xsaves(struct kvm_vcpu *vcpu)
5797{
5798 skip_emulated_instruction(vcpu);
5799 WARN(1, "this should never happen\n");
5800 return 1;
5801}
5802
5803static int handle_xrstors(struct kvm_vcpu *vcpu)
5804{
5805 skip_emulated_instruction(vcpu);
5806 WARN(1, "this should never happen\n");
5807 return 1;
5808}
5809
Avi Kivity851ba692009-08-24 11:10:17 +03005810static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005811{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005812 if (likely(fasteoi)) {
5813 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5814 int access_type, offset;
5815
5816 access_type = exit_qualification & APIC_ACCESS_TYPE;
5817 offset = exit_qualification & APIC_ACCESS_OFFSET;
5818 /*
5819 * Sane guest uses MOV to write EOI, with written value
5820 * not cared. So make a short-circuit here by avoiding
5821 * heavy instruction emulation.
5822 */
5823 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5824 (offset == APIC_EOI)) {
5825 kvm_lapic_set_eoi(vcpu);
5826 skip_emulated_instruction(vcpu);
5827 return 1;
5828 }
5829 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005830 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005831}
5832
Yang Zhangc7c9c562013-01-25 10:18:51 +08005833static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5834{
5835 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5836 int vector = exit_qualification & 0xff;
5837
5838 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5839 kvm_apic_set_eoi_accelerated(vcpu, vector);
5840 return 1;
5841}
5842
Yang Zhang83d4c282013-01-25 10:18:49 +08005843static int handle_apic_write(struct kvm_vcpu *vcpu)
5844{
5845 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5846 u32 offset = exit_qualification & 0xfff;
5847
5848 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5849 kvm_apic_write_nodecode(vcpu, offset);
5850 return 1;
5851}
5852
Avi Kivity851ba692009-08-24 11:10:17 +03005853static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005854{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005855 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005856 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005857 bool has_error_code = false;
5858 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005859 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005860 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005861
5862 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005863 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005864 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005865
5866 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5867
5868 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005869 if (reason == TASK_SWITCH_GATE && idt_v) {
5870 switch (type) {
5871 case INTR_TYPE_NMI_INTR:
5872 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005873 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005874 break;
5875 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005876 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005877 kvm_clear_interrupt_queue(vcpu);
5878 break;
5879 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005880 if (vmx->idt_vectoring_info &
5881 VECTORING_INFO_DELIVER_CODE_MASK) {
5882 has_error_code = true;
5883 error_code =
5884 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5885 }
5886 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005887 case INTR_TYPE_SOFT_EXCEPTION:
5888 kvm_clear_exception_queue(vcpu);
5889 break;
5890 default:
5891 break;
5892 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005893 }
Izik Eidus37817f22008-03-24 23:14:53 +02005894 tss_selector = exit_qualification;
5895
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005896 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5897 type != INTR_TYPE_EXT_INTR &&
5898 type != INTR_TYPE_NMI_INTR))
5899 skip_emulated_instruction(vcpu);
5900
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005901 if (kvm_task_switch(vcpu, tss_selector,
5902 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5903 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03005904 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5905 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5906 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005907 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03005908 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005909
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005910 /*
5911 * TODO: What about debug traps on tss switch?
5912 * Are we supposed to inject them and update dr6?
5913 */
5914
5915 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02005916}
5917
Avi Kivity851ba692009-08-24 11:10:17 +03005918static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005919{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005920 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005921 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005922 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005923 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08005924
Sheng Yangf9c617f2009-03-25 10:08:52 +08005925 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08005926
Sheng Yang14394422008-04-28 12:24:45 +08005927 gla_validity = (exit_qualification >> 7) & 0x3;
5928 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
5929 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
5930 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
5931 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08005932 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08005933 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
5934 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03005935 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5936 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03005937 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08005938 }
5939
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005940 /*
5941 * EPT violation happened while executing iret from NMI,
5942 * "blocked by NMI" bit has to be set before next VM entry.
5943 * There are errata that may cause this bit to not be set:
5944 * AAK134, BY25.
5945 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005946 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
5947 cpu_has_virtual_nmis() &&
5948 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005949 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5950
Sheng Yang14394422008-04-28 12:24:45 +08005951 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005952 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005953
5954 /* It is a write fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005955 error_code = exit_qualification & PFERR_WRITE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005956 /* It is a fetch fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005957 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005958 /* ept page table is present? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005959 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005960
Yang Zhang25d92082013-08-06 12:00:32 +03005961 vcpu->arch.exit_qualification = exit_qualification;
5962
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005963 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005964}
5965
Avi Kivity851ba692009-08-24 11:10:17 +03005966static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005967{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005968 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005969 gpa_t gpa;
5970
5971 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005972 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005973 skip_emulated_instruction(vcpu);
Jason Wang931c33b2015-09-15 14:41:58 +08005974 trace_kvm_fast_mmio(gpa);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005975 return 1;
5976 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005977
Paolo Bonzini450869d2015-11-04 13:41:21 +01005978 ret = handle_mmio_page_fault(vcpu, gpa, true);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005979 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005980 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
5981 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005982
5983 if (unlikely(ret == RET_MMIO_PF_INVALID))
5984 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
5985
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005986 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005987 return 1;
5988
5989 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005990 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005991
Avi Kivity851ba692009-08-24 11:10:17 +03005992 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5993 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005994
5995 return 0;
5996}
5997
Avi Kivity851ba692009-08-24 11:10:17 +03005998static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005999{
6000 u32 cpu_based_vm_exec_control;
6001
6002 /* clear pending NMI */
6003 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6004 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6005 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6006 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006007 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006008
6009 return 1;
6010}
6011
Mohammed Gamal80ced182009-09-01 12:48:18 +02006012static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006013{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006014 struct vcpu_vmx *vmx = to_vmx(vcpu);
6015 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006016 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006017 u32 cpu_exec_ctrl;
6018 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006019 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006020
6021 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6022 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006023
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006024 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006025 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006026 return handle_interrupt_window(&vmx->vcpu);
6027
Avi Kivityde87dcd2012-06-12 20:21:38 +03006028 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6029 return 1;
6030
Gleb Natapov991eebf2013-04-11 12:10:51 +03006031 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006032
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006033 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006034 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006035 ret = 0;
6036 goto out;
6037 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006038
Avi Kivityde5f70e2012-06-12 20:22:28 +03006039 if (err != EMULATE_DONE) {
6040 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6041 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6042 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006043 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006044 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006045
Gleb Natapov8d76c492013-05-08 18:38:44 +03006046 if (vcpu->arch.halt_request) {
6047 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006048 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006049 goto out;
6050 }
6051
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006052 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006053 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006054 if (need_resched())
6055 schedule();
6056 }
6057
Mohammed Gamal80ced182009-09-01 12:48:18 +02006058out:
6059 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006060}
6061
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006062static int __grow_ple_window(int val)
6063{
6064 if (ple_window_grow < 1)
6065 return ple_window;
6066
6067 val = min(val, ple_window_actual_max);
6068
6069 if (ple_window_grow < ple_window)
6070 val *= ple_window_grow;
6071 else
6072 val += ple_window_grow;
6073
6074 return val;
6075}
6076
6077static int __shrink_ple_window(int val, int modifier, int minimum)
6078{
6079 if (modifier < 1)
6080 return ple_window;
6081
6082 if (modifier < ple_window)
6083 val /= modifier;
6084 else
6085 val -= modifier;
6086
6087 return max(val, minimum);
6088}
6089
6090static void grow_ple_window(struct kvm_vcpu *vcpu)
6091{
6092 struct vcpu_vmx *vmx = to_vmx(vcpu);
6093 int old = vmx->ple_window;
6094
6095 vmx->ple_window = __grow_ple_window(old);
6096
6097 if (vmx->ple_window != old)
6098 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006099
6100 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006101}
6102
6103static void shrink_ple_window(struct kvm_vcpu *vcpu)
6104{
6105 struct vcpu_vmx *vmx = to_vmx(vcpu);
6106 int old = vmx->ple_window;
6107
6108 vmx->ple_window = __shrink_ple_window(old,
6109 ple_window_shrink, ple_window);
6110
6111 if (vmx->ple_window != old)
6112 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006113
6114 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006115}
6116
6117/*
6118 * ple_window_actual_max is computed to be one grow_ple_window() below
6119 * ple_window_max. (See __grow_ple_window for the reason.)
6120 * This prevents overflows, because ple_window_max is int.
6121 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6122 * this process.
6123 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6124 */
6125static void update_ple_window_actual_max(void)
6126{
6127 ple_window_actual_max =
6128 __shrink_ple_window(max(ple_window_max, ple_window),
6129 ple_window_grow, INT_MIN);
6130}
6131
Feng Wubf9f6ac2015-09-18 22:29:55 +08006132/*
6133 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6134 */
6135static void wakeup_handler(void)
6136{
6137 struct kvm_vcpu *vcpu;
6138 int cpu = smp_processor_id();
6139
6140 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6141 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6142 blocked_vcpu_list) {
6143 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6144
6145 if (pi_test_on(pi_desc) == 1)
6146 kvm_vcpu_kick(vcpu);
6147 }
6148 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6149}
6150
Tiejun Chenf2c76482014-10-28 10:14:47 +08006151static __init int hardware_setup(void)
6152{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006153 int r = -ENOMEM, i, msr;
6154
6155 rdmsrl_safe(MSR_EFER, &host_efer);
6156
6157 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6158 kvm_define_shared_msr(i, vmx_msr_index[i]);
6159
6160 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
6161 if (!vmx_io_bitmap_a)
6162 return r;
6163
6164 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
6165 if (!vmx_io_bitmap_b)
6166 goto out;
6167
6168 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6169 if (!vmx_msr_bitmap_legacy)
6170 goto out1;
6171
6172 vmx_msr_bitmap_legacy_x2apic =
6173 (unsigned long *)__get_free_page(GFP_KERNEL);
6174 if (!vmx_msr_bitmap_legacy_x2apic)
6175 goto out2;
6176
6177 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6178 if (!vmx_msr_bitmap_longmode)
6179 goto out3;
6180
6181 vmx_msr_bitmap_longmode_x2apic =
6182 (unsigned long *)__get_free_page(GFP_KERNEL);
6183 if (!vmx_msr_bitmap_longmode_x2apic)
6184 goto out4;
Wincy Van3af18d92015-02-03 23:49:31 +08006185
6186 if (nested) {
6187 vmx_msr_bitmap_nested =
6188 (unsigned long *)__get_free_page(GFP_KERNEL);
6189 if (!vmx_msr_bitmap_nested)
6190 goto out5;
6191 }
6192
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006193 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6194 if (!vmx_vmread_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006195 goto out6;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006196
6197 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6198 if (!vmx_vmwrite_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006199 goto out7;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006200
6201 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6202 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6203
6204 /*
6205 * Allow direct access to the PC debug port (it is often used for I/O
6206 * delays, but the vmexits simply slow things down).
6207 */
6208 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6209 clear_bit(0x80, vmx_io_bitmap_a);
6210
6211 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6212
6213 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6214 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Wincy Van3af18d92015-02-03 23:49:31 +08006215 if (nested)
6216 memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006217
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006218 if (setup_vmcs_config(&vmcs_config) < 0) {
6219 r = -EIO;
Wincy Van3af18d92015-02-03 23:49:31 +08006220 goto out8;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006221 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006222
6223 if (boot_cpu_has(X86_FEATURE_NX))
6224 kvm_enable_efer_bits(EFER_NX);
6225
6226 if (!cpu_has_vmx_vpid())
6227 enable_vpid = 0;
6228 if (!cpu_has_vmx_shadow_vmcs())
6229 enable_shadow_vmcs = 0;
6230 if (enable_shadow_vmcs)
6231 init_vmcs_shadow_fields();
6232
6233 if (!cpu_has_vmx_ept() ||
6234 !cpu_has_vmx_ept_4levels()) {
6235 enable_ept = 0;
6236 enable_unrestricted_guest = 0;
6237 enable_ept_ad_bits = 0;
6238 }
6239
6240 if (!cpu_has_vmx_ept_ad_bits())
6241 enable_ept_ad_bits = 0;
6242
6243 if (!cpu_has_vmx_unrestricted_guest())
6244 enable_unrestricted_guest = 0;
6245
Paolo Bonziniad15a292015-01-30 16:18:49 +01006246 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006247 flexpriority_enabled = 0;
6248
Paolo Bonziniad15a292015-01-30 16:18:49 +01006249 /*
6250 * set_apic_access_page_addr() is used to reload apic access
6251 * page upon invalidation. No need to do anything if not
6252 * using the APIC_ACCESS_ADDR VMCS field.
6253 */
6254 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006255 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006256
6257 if (!cpu_has_vmx_tpr_shadow())
6258 kvm_x86_ops->update_cr8_intercept = NULL;
6259
6260 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6261 kvm_disable_largepages();
6262
6263 if (!cpu_has_vmx_ple())
6264 ple_gap = 0;
6265
6266 if (!cpu_has_vmx_apicv())
6267 enable_apicv = 0;
6268
Haozhong Zhang64903d62015-10-20 15:39:09 +08006269 if (cpu_has_vmx_tsc_scaling()) {
6270 kvm_has_tsc_control = true;
6271 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6272 kvm_tsc_scaling_ratio_frac_bits = 48;
6273 }
6274
Tiejun Chenbaa03522014-12-23 16:21:11 +08006275 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6276 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6277 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6278 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6279 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6280 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6281 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6282
6283 memcpy(vmx_msr_bitmap_legacy_x2apic,
6284 vmx_msr_bitmap_legacy, PAGE_SIZE);
6285 memcpy(vmx_msr_bitmap_longmode_x2apic,
6286 vmx_msr_bitmap_longmode, PAGE_SIZE);
6287
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006288 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6289
Tiejun Chenbaa03522014-12-23 16:21:11 +08006290 if (enable_apicv) {
6291 for (msr = 0x800; msr <= 0x8ff; msr++)
6292 vmx_disable_intercept_msr_read_x2apic(msr);
6293
6294 /* According SDM, in x2apic mode, the whole id reg is used.
6295 * But in KVM, it only use the highest eight bits. Need to
6296 * intercept it */
6297 vmx_enable_intercept_msr_read_x2apic(0x802);
6298 /* TMCCT */
6299 vmx_enable_intercept_msr_read_x2apic(0x839);
6300 /* TPR */
6301 vmx_disable_intercept_msr_write_x2apic(0x808);
6302 /* EOI */
6303 vmx_disable_intercept_msr_write_x2apic(0x80b);
6304 /* SELF-IPI */
6305 vmx_disable_intercept_msr_write_x2apic(0x83f);
6306 }
6307
6308 if (enable_ept) {
6309 kvm_mmu_set_mask_ptes(0ull,
6310 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
6311 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
6312 0ull, VMX_EPT_EXECUTABLE_MASK);
6313 ept_set_mmio_spte_mask();
6314 kvm_enable_tdp();
6315 } else
6316 kvm_disable_tdp();
6317
6318 update_ple_window_actual_max();
6319
Kai Huang843e4332015-01-28 10:54:28 +08006320 /*
6321 * Only enable PML when hardware supports PML feature, and both EPT
6322 * and EPT A/D bit features are enabled -- PML depends on them to work.
6323 */
6324 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6325 enable_pml = 0;
6326
6327 if (!enable_pml) {
6328 kvm_x86_ops->slot_enable_log_dirty = NULL;
6329 kvm_x86_ops->slot_disable_log_dirty = NULL;
6330 kvm_x86_ops->flush_log_dirty = NULL;
6331 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6332 }
6333
Feng Wubf9f6ac2015-09-18 22:29:55 +08006334 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6335
Tiejun Chenf2c76482014-10-28 10:14:47 +08006336 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006337
Wincy Van3af18d92015-02-03 23:49:31 +08006338out8:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006339 free_page((unsigned long)vmx_vmwrite_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006340out7:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006341 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006342out6:
6343 if (nested)
6344 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006345out5:
6346 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6347out4:
6348 free_page((unsigned long)vmx_msr_bitmap_longmode);
6349out3:
6350 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6351out2:
6352 free_page((unsigned long)vmx_msr_bitmap_legacy);
6353out1:
6354 free_page((unsigned long)vmx_io_bitmap_b);
6355out:
6356 free_page((unsigned long)vmx_io_bitmap_a);
6357
6358 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006359}
6360
6361static __exit void hardware_unsetup(void)
6362{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006363 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6364 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6365 free_page((unsigned long)vmx_msr_bitmap_legacy);
6366 free_page((unsigned long)vmx_msr_bitmap_longmode);
6367 free_page((unsigned long)vmx_io_bitmap_b);
6368 free_page((unsigned long)vmx_io_bitmap_a);
6369 free_page((unsigned long)vmx_vmwrite_bitmap);
6370 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006371 if (nested)
6372 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006373
Tiejun Chenf2c76482014-10-28 10:14:47 +08006374 free_kvm_area();
6375}
6376
Avi Kivity6aa8b732006-12-10 02:21:36 -08006377/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006378 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6379 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6380 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006381static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006382{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006383 if (ple_gap)
6384 grow_ple_window(vcpu);
6385
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006386 skip_emulated_instruction(vcpu);
6387 kvm_vcpu_on_spin(vcpu);
6388
6389 return 1;
6390}
6391
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006392static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006393{
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006394 skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006395 return 1;
6396}
6397
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006398static int handle_mwait(struct kvm_vcpu *vcpu)
6399{
6400 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6401 return handle_nop(vcpu);
6402}
6403
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006404static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6405{
6406 return 1;
6407}
6408
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006409static int handle_monitor(struct kvm_vcpu *vcpu)
6410{
6411 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6412 return handle_nop(vcpu);
6413}
6414
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006415/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006416 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6417 * We could reuse a single VMCS for all the L2 guests, but we also want the
6418 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6419 * allows keeping them loaded on the processor, and in the future will allow
6420 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6421 * every entry if they never change.
6422 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6423 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6424 *
6425 * The following functions allocate and free a vmcs02 in this pool.
6426 */
6427
6428/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6429static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6430{
6431 struct vmcs02_list *item;
6432 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6433 if (item->vmptr == vmx->nested.current_vmptr) {
6434 list_move(&item->list, &vmx->nested.vmcs02_pool);
6435 return &item->vmcs02;
6436 }
6437
6438 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6439 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006440 item = list_last_entry(&vmx->nested.vmcs02_pool,
6441 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006442 item->vmptr = vmx->nested.current_vmptr;
6443 list_move(&item->list, &vmx->nested.vmcs02_pool);
6444 return &item->vmcs02;
6445 }
6446
6447 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006448 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006449 if (!item)
6450 return NULL;
6451 item->vmcs02.vmcs = alloc_vmcs();
6452 if (!item->vmcs02.vmcs) {
6453 kfree(item);
6454 return NULL;
6455 }
6456 loaded_vmcs_init(&item->vmcs02);
6457 item->vmptr = vmx->nested.current_vmptr;
6458 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6459 vmx->nested.vmcs02_num++;
6460 return &item->vmcs02;
6461}
6462
6463/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6464static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6465{
6466 struct vmcs02_list *item;
6467 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6468 if (item->vmptr == vmptr) {
6469 free_loaded_vmcs(&item->vmcs02);
6470 list_del(&item->list);
6471 kfree(item);
6472 vmx->nested.vmcs02_num--;
6473 return;
6474 }
6475}
6476
6477/*
6478 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006479 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6480 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006481 */
6482static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6483{
6484 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006485
6486 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006487 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006488 /*
6489 * Something will leak if the above WARN triggers. Better than
6490 * a use-after-free.
6491 */
6492 if (vmx->loaded_vmcs == &item->vmcs02)
6493 continue;
6494
6495 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006496 list_del(&item->list);
6497 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006498 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006499 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006500}
6501
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006502/*
6503 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6504 * set the success or error code of an emulated VMX instruction, as specified
6505 * by Vol 2B, VMX Instruction Reference, "Conventions".
6506 */
6507static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6508{
6509 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6510 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6511 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6512}
6513
6514static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6515{
6516 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6517 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6518 X86_EFLAGS_SF | X86_EFLAGS_OF))
6519 | X86_EFLAGS_CF);
6520}
6521
Abel Gordon145c28d2013-04-18 14:36:55 +03006522static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006523 u32 vm_instruction_error)
6524{
6525 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6526 /*
6527 * failValid writes the error number to the current VMCS, which
6528 * can't be done there isn't a current VMCS.
6529 */
6530 nested_vmx_failInvalid(vcpu);
6531 return;
6532 }
6533 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6534 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6535 X86_EFLAGS_SF | X86_EFLAGS_OF))
6536 | X86_EFLAGS_ZF);
6537 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6538 /*
6539 * We don't need to force a shadow sync because
6540 * VM_INSTRUCTION_ERROR is not shadowed
6541 */
6542}
Abel Gordon145c28d2013-04-18 14:36:55 +03006543
Wincy Vanff651cb2014-12-11 08:52:58 +03006544static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6545{
6546 /* TODO: not to reset guest simply here. */
6547 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6548 pr_warn("kvm: nested vmx abort, indicator %d\n", indicator);
6549}
6550
Jan Kiszkaf4124502014-03-07 20:03:13 +01006551static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6552{
6553 struct vcpu_vmx *vmx =
6554 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6555
6556 vmx->nested.preemption_timer_expired = true;
6557 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6558 kvm_vcpu_kick(&vmx->vcpu);
6559
6560 return HRTIMER_NORESTART;
6561}
6562
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006563/*
Bandan Das19677e32014-05-06 02:19:15 -04006564 * Decode the memory-address operand of a vmx instruction, as recorded on an
6565 * exit caused by such an instruction (run by a guest hypervisor).
6566 * On success, returns 0. When the operand is invalid, returns 1 and throws
6567 * #UD or #GP.
6568 */
6569static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6570 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006571 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006572{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006573 gva_t off;
6574 bool exn;
6575 struct kvm_segment s;
6576
Bandan Das19677e32014-05-06 02:19:15 -04006577 /*
6578 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6579 * Execution", on an exit, vmx_instruction_info holds most of the
6580 * addressing components of the operand. Only the displacement part
6581 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6582 * For how an actual address is calculated from all these components,
6583 * refer to Vol. 1, "Operand Addressing".
6584 */
6585 int scaling = vmx_instruction_info & 3;
6586 int addr_size = (vmx_instruction_info >> 7) & 7;
6587 bool is_reg = vmx_instruction_info & (1u << 10);
6588 int seg_reg = (vmx_instruction_info >> 15) & 7;
6589 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6590 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6591 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6592 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6593
6594 if (is_reg) {
6595 kvm_queue_exception(vcpu, UD_VECTOR);
6596 return 1;
6597 }
6598
6599 /* Addr = segment_base + offset */
6600 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006601 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006602 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006603 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006604 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006605 off += kvm_register_read(vcpu, index_reg)<<scaling;
6606 vmx_get_segment(vcpu, &s, seg_reg);
6607 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006608
6609 if (addr_size == 1) /* 32 bit */
6610 *ret &= 0xffffffff;
6611
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006612 /* Checks for #GP/#SS exceptions. */
6613 exn = false;
6614 if (is_protmode(vcpu)) {
6615 /* Protected mode: apply checks for segment validity in the
6616 * following order:
6617 * - segment type check (#GP(0) may be thrown)
6618 * - usability check (#GP(0)/#SS(0))
6619 * - limit check (#GP(0)/#SS(0))
6620 */
6621 if (wr)
6622 /* #GP(0) if the destination operand is located in a
6623 * read-only data segment or any code segment.
6624 */
6625 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6626 else
6627 /* #GP(0) if the source operand is located in an
6628 * execute-only code segment
6629 */
6630 exn = ((s.type & 0xa) == 8);
6631 }
6632 if (exn) {
6633 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6634 return 1;
6635 }
6636 if (is_long_mode(vcpu)) {
6637 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6638 * non-canonical form. This is an only check for long mode.
6639 */
6640 exn = is_noncanonical_address(*ret);
6641 } else if (is_protmode(vcpu)) {
6642 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6643 */
6644 exn = (s.unusable != 0);
6645 /* Protected mode: #GP(0)/#SS(0) if the memory
6646 * operand is outside the segment limit.
6647 */
6648 exn = exn || (off + sizeof(u64) > s.limit);
6649 }
6650 if (exn) {
6651 kvm_queue_exception_e(vcpu,
6652 seg_reg == VCPU_SREG_SS ?
6653 SS_VECTOR : GP_VECTOR,
6654 0);
6655 return 1;
6656 }
6657
Bandan Das19677e32014-05-06 02:19:15 -04006658 return 0;
6659}
6660
6661/*
Bandan Das3573e222014-05-06 02:19:16 -04006662 * This function performs the various checks including
6663 * - if it's 4KB aligned
6664 * - No bits beyond the physical address width are set
6665 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006666 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006667 */
Bandan Das4291b582014-05-06 02:19:18 -04006668static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6669 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006670{
6671 gva_t gva;
6672 gpa_t vmptr;
6673 struct x86_exception e;
6674 struct page *page;
6675 struct vcpu_vmx *vmx = to_vmx(vcpu);
6676 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6677
6678 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006679 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006680 return 1;
6681
6682 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6683 sizeof(vmptr), &e)) {
6684 kvm_inject_page_fault(vcpu, &e);
6685 return 1;
6686 }
6687
6688 switch (exit_reason) {
6689 case EXIT_REASON_VMON:
6690 /*
6691 * SDM 3: 24.11.5
6692 * The first 4 bytes of VMXON region contain the supported
6693 * VMCS revision identifier
6694 *
6695 * Note - IA32_VMX_BASIC[48] will never be 1
6696 * for the nested case;
6697 * which replaces physical address width with 32
6698 *
6699 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006700 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006701 nested_vmx_failInvalid(vcpu);
6702 skip_emulated_instruction(vcpu);
6703 return 1;
6704 }
6705
6706 page = nested_get_page(vcpu, vmptr);
6707 if (page == NULL ||
6708 *(u32 *)kmap(page) != VMCS12_REVISION) {
6709 nested_vmx_failInvalid(vcpu);
6710 kunmap(page);
6711 skip_emulated_instruction(vcpu);
6712 return 1;
6713 }
6714 kunmap(page);
6715 vmx->nested.vmxon_ptr = vmptr;
6716 break;
Bandan Das4291b582014-05-06 02:19:18 -04006717 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006718 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006719 nested_vmx_failValid(vcpu,
6720 VMXERR_VMCLEAR_INVALID_ADDRESS);
6721 skip_emulated_instruction(vcpu);
6722 return 1;
6723 }
Bandan Das3573e222014-05-06 02:19:16 -04006724
Bandan Das4291b582014-05-06 02:19:18 -04006725 if (vmptr == vmx->nested.vmxon_ptr) {
6726 nested_vmx_failValid(vcpu,
6727 VMXERR_VMCLEAR_VMXON_POINTER);
6728 skip_emulated_instruction(vcpu);
6729 return 1;
6730 }
6731 break;
6732 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006733 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006734 nested_vmx_failValid(vcpu,
6735 VMXERR_VMPTRLD_INVALID_ADDRESS);
6736 skip_emulated_instruction(vcpu);
6737 return 1;
6738 }
6739
6740 if (vmptr == vmx->nested.vmxon_ptr) {
6741 nested_vmx_failValid(vcpu,
6742 VMXERR_VMCLEAR_VMXON_POINTER);
6743 skip_emulated_instruction(vcpu);
6744 return 1;
6745 }
6746 break;
Bandan Das3573e222014-05-06 02:19:16 -04006747 default:
6748 return 1; /* shouldn't happen */
6749 }
6750
Bandan Das4291b582014-05-06 02:19:18 -04006751 if (vmpointer)
6752 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04006753 return 0;
6754}
6755
6756/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006757 * Emulate the VMXON instruction.
6758 * Currently, we just remember that VMX is active, and do not save or even
6759 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6760 * do not currently need to store anything in that guest-allocated memory
6761 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6762 * argument is different from the VMXON pointer (which the spec says they do).
6763 */
6764static int handle_vmon(struct kvm_vcpu *vcpu)
6765{
6766 struct kvm_segment cs;
6767 struct vcpu_vmx *vmx = to_vmx(vcpu);
Abel Gordon8de48832013-04-18 14:37:25 +03006768 struct vmcs *shadow_vmcs;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006769 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6770 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006771
6772 /* The Intel VMX Instruction Reference lists a bunch of bits that
6773 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6774 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6775 * Otherwise, we should fail with #UD. We test these now:
6776 */
6777 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6778 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6779 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6780 kvm_queue_exception(vcpu, UD_VECTOR);
6781 return 1;
6782 }
6783
6784 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6785 if (is_long_mode(vcpu) && !cs.l) {
6786 kvm_queue_exception(vcpu, UD_VECTOR);
6787 return 1;
6788 }
6789
6790 if (vmx_get_cpl(vcpu)) {
6791 kvm_inject_gp(vcpu, 0);
6792 return 1;
6793 }
Bandan Das3573e222014-05-06 02:19:16 -04006794
Bandan Das4291b582014-05-06 02:19:18 -04006795 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
Bandan Das3573e222014-05-06 02:19:16 -04006796 return 1;
6797
Abel Gordon145c28d2013-04-18 14:36:55 +03006798 if (vmx->nested.vmxon) {
6799 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6800 skip_emulated_instruction(vcpu);
6801 return 1;
6802 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006803
6804 if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
6805 != VMXON_NEEDED_FEATURES) {
6806 kvm_inject_gp(vcpu, 0);
6807 return 1;
6808 }
6809
Abel Gordon8de48832013-04-18 14:37:25 +03006810 if (enable_shadow_vmcs) {
6811 shadow_vmcs = alloc_vmcs();
6812 if (!shadow_vmcs)
6813 return -ENOMEM;
6814 /* mark vmcs as shadow */
6815 shadow_vmcs->revision_id |= (1u << 31);
6816 /* init shadow vmcs */
6817 vmcs_clear(shadow_vmcs);
6818 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6819 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006820
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006821 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6822 vmx->nested.vmcs02_num = 0;
6823
Jan Kiszkaf4124502014-03-07 20:03:13 +01006824 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6825 HRTIMER_MODE_REL);
6826 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6827
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006828 vmx->nested.vmxon = true;
6829
6830 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006831 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006832 return 1;
6833}
6834
6835/*
6836 * Intel's VMX Instruction Reference specifies a common set of prerequisites
6837 * for running VMX instructions (except VMXON, whose prerequisites are
6838 * slightly different). It also specifies what exception to inject otherwise.
6839 */
6840static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
6841{
6842 struct kvm_segment cs;
6843 struct vcpu_vmx *vmx = to_vmx(vcpu);
6844
6845 if (!vmx->nested.vmxon) {
6846 kvm_queue_exception(vcpu, UD_VECTOR);
6847 return 0;
6848 }
6849
6850 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6851 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
6852 (is_long_mode(vcpu) && !cs.l)) {
6853 kvm_queue_exception(vcpu, UD_VECTOR);
6854 return 0;
6855 }
6856
6857 if (vmx_get_cpl(vcpu)) {
6858 kvm_inject_gp(vcpu, 0);
6859 return 0;
6860 }
6861
6862 return 1;
6863}
6864
Abel Gordone7953d72013-04-18 14:37:55 +03006865static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
6866{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006867 if (vmx->nested.current_vmptr == -1ull)
6868 return;
6869
6870 /* current_vmptr and current_vmcs12 are always set/reset together */
6871 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
6872 return;
6873
Abel Gordon012f83c2013-04-18 14:39:25 +03006874 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006875 /* copy to memory all shadowed fields in case
6876 they were modified */
6877 copy_shadow_to_vmcs12(vmx);
6878 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08006879 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6880 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006881 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03006882 }
Wincy Van705699a2015-02-03 23:58:17 +08006883 vmx->nested.posted_intr_nv = -1;
Abel Gordone7953d72013-04-18 14:37:55 +03006884 kunmap(vmx->nested.current_vmcs12_page);
6885 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006886 vmx->nested.current_vmptr = -1ull;
6887 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03006888}
6889
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006890/*
6891 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
6892 * just stops using VMX.
6893 */
6894static void free_nested(struct vcpu_vmx *vmx)
6895{
6896 if (!vmx->nested.vmxon)
6897 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006898
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006899 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07006900 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006901 nested_release_vmcs12(vmx);
Abel Gordone7953d72013-04-18 14:37:55 +03006902 if (enable_shadow_vmcs)
6903 free_vmcs(vmx->nested.current_shadow_vmcs);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006904 /* Unpin physical memory we referred to in current vmcs02 */
6905 if (vmx->nested.apic_access_page) {
6906 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006907 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006908 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006909 if (vmx->nested.virtual_apic_page) {
6910 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006911 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006912 }
Wincy Van705699a2015-02-03 23:58:17 +08006913 if (vmx->nested.pi_desc_page) {
6914 kunmap(vmx->nested.pi_desc_page);
6915 nested_release_page(vmx->nested.pi_desc_page);
6916 vmx->nested.pi_desc_page = NULL;
6917 vmx->nested.pi_desc = NULL;
6918 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006919
6920 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006921}
6922
6923/* Emulate the VMXOFF instruction */
6924static int handle_vmoff(struct kvm_vcpu *vcpu)
6925{
6926 if (!nested_vmx_check_permission(vcpu))
6927 return 1;
6928 free_nested(to_vmx(vcpu));
6929 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006930 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006931 return 1;
6932}
6933
Nadav Har'El27d6c862011-05-25 23:06:59 +03006934/* Emulate the VMCLEAR instruction */
6935static int handle_vmclear(struct kvm_vcpu *vcpu)
6936{
6937 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006938 gpa_t vmptr;
6939 struct vmcs12 *vmcs12;
6940 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03006941
6942 if (!nested_vmx_check_permission(vcpu))
6943 return 1;
6944
Bandan Das4291b582014-05-06 02:19:18 -04006945 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03006946 return 1;
6947
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006948 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03006949 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006950
6951 page = nested_get_page(vcpu, vmptr);
6952 if (page == NULL) {
6953 /*
6954 * For accurate processor emulation, VMCLEAR beyond available
6955 * physical memory should do nothing at all. However, it is
6956 * possible that a nested vmx bug, not a guest hypervisor bug,
6957 * resulted in this case, so let's shut down before doing any
6958 * more damage:
6959 */
6960 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6961 return 1;
6962 }
6963 vmcs12 = kmap(page);
6964 vmcs12->launch_state = 0;
6965 kunmap(page);
6966 nested_release_page(page);
6967
6968 nested_free_vmcs02(vmx, vmptr);
6969
6970 skip_emulated_instruction(vcpu);
6971 nested_vmx_succeed(vcpu);
6972 return 1;
6973}
6974
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006975static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
6976
6977/* Emulate the VMLAUNCH instruction */
6978static int handle_vmlaunch(struct kvm_vcpu *vcpu)
6979{
6980 return nested_vmx_run(vcpu, true);
6981}
6982
6983/* Emulate the VMRESUME instruction */
6984static int handle_vmresume(struct kvm_vcpu *vcpu)
6985{
6986
6987 return nested_vmx_run(vcpu, false);
6988}
6989
Nadav Har'El49f705c2011-05-25 23:08:30 +03006990enum vmcs_field_type {
6991 VMCS_FIELD_TYPE_U16 = 0,
6992 VMCS_FIELD_TYPE_U64 = 1,
6993 VMCS_FIELD_TYPE_U32 = 2,
6994 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
6995};
6996
6997static inline int vmcs_field_type(unsigned long field)
6998{
6999 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7000 return VMCS_FIELD_TYPE_U32;
7001 return (field >> 13) & 0x3 ;
7002}
7003
7004static inline int vmcs_field_readonly(unsigned long field)
7005{
7006 return (((field >> 10) & 0x3) == 1);
7007}
7008
7009/*
7010 * Read a vmcs12 field. Since these can have varying lengths and we return
7011 * one type, we chose the biggest type (u64) and zero-extend the return value
7012 * to that size. Note that the caller, handle_vmread, might need to use only
7013 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7014 * 64-bit fields are to be returned).
7015 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007016static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7017 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007018{
7019 short offset = vmcs_field_to_offset(field);
7020 char *p;
7021
7022 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007023 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007024
7025 p = ((char *)(get_vmcs12(vcpu))) + offset;
7026
7027 switch (vmcs_field_type(field)) {
7028 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7029 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007030 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007031 case VMCS_FIELD_TYPE_U16:
7032 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007033 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007034 case VMCS_FIELD_TYPE_U32:
7035 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007036 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007037 case VMCS_FIELD_TYPE_U64:
7038 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007039 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007040 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007041 WARN_ON(1);
7042 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007043 }
7044}
7045
Abel Gordon20b97fe2013-04-18 14:36:25 +03007046
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007047static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7048 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007049 short offset = vmcs_field_to_offset(field);
7050 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7051 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007052 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007053
7054 switch (vmcs_field_type(field)) {
7055 case VMCS_FIELD_TYPE_U16:
7056 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007057 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007058 case VMCS_FIELD_TYPE_U32:
7059 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007060 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007061 case VMCS_FIELD_TYPE_U64:
7062 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007063 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007064 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7065 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007066 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007067 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007068 WARN_ON(1);
7069 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007070 }
7071
7072}
7073
Abel Gordon16f5b902013-04-18 14:38:25 +03007074static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7075{
7076 int i;
7077 unsigned long field;
7078 u64 field_value;
7079 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007080 const unsigned long *fields = shadow_read_write_fields;
7081 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007082
Jan Kiszka282da872014-10-08 18:05:39 +02007083 preempt_disable();
7084
Abel Gordon16f5b902013-04-18 14:38:25 +03007085 vmcs_load(shadow_vmcs);
7086
7087 for (i = 0; i < num_fields; i++) {
7088 field = fields[i];
7089 switch (vmcs_field_type(field)) {
7090 case VMCS_FIELD_TYPE_U16:
7091 field_value = vmcs_read16(field);
7092 break;
7093 case VMCS_FIELD_TYPE_U32:
7094 field_value = vmcs_read32(field);
7095 break;
7096 case VMCS_FIELD_TYPE_U64:
7097 field_value = vmcs_read64(field);
7098 break;
7099 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7100 field_value = vmcs_readl(field);
7101 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007102 default:
7103 WARN_ON(1);
7104 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007105 }
7106 vmcs12_write_any(&vmx->vcpu, field, field_value);
7107 }
7108
7109 vmcs_clear(shadow_vmcs);
7110 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007111
7112 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007113}
7114
Abel Gordonc3114422013-04-18 14:38:55 +03007115static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7116{
Mathias Krausec2bae892013-06-26 20:36:21 +02007117 const unsigned long *fields[] = {
7118 shadow_read_write_fields,
7119 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007120 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007121 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007122 max_shadow_read_write_fields,
7123 max_shadow_read_only_fields
7124 };
7125 int i, q;
7126 unsigned long field;
7127 u64 field_value = 0;
7128 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
7129
7130 vmcs_load(shadow_vmcs);
7131
Mathias Krausec2bae892013-06-26 20:36:21 +02007132 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007133 for (i = 0; i < max_fields[q]; i++) {
7134 field = fields[q][i];
7135 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7136
7137 switch (vmcs_field_type(field)) {
7138 case VMCS_FIELD_TYPE_U16:
7139 vmcs_write16(field, (u16)field_value);
7140 break;
7141 case VMCS_FIELD_TYPE_U32:
7142 vmcs_write32(field, (u32)field_value);
7143 break;
7144 case VMCS_FIELD_TYPE_U64:
7145 vmcs_write64(field, (u64)field_value);
7146 break;
7147 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7148 vmcs_writel(field, (long)field_value);
7149 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007150 default:
7151 WARN_ON(1);
7152 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007153 }
7154 }
7155 }
7156
7157 vmcs_clear(shadow_vmcs);
7158 vmcs_load(vmx->loaded_vmcs->vmcs);
7159}
7160
Nadav Har'El49f705c2011-05-25 23:08:30 +03007161/*
7162 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7163 * used before) all generate the same failure when it is missing.
7164 */
7165static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7166{
7167 struct vcpu_vmx *vmx = to_vmx(vcpu);
7168 if (vmx->nested.current_vmptr == -1ull) {
7169 nested_vmx_failInvalid(vcpu);
7170 skip_emulated_instruction(vcpu);
7171 return 0;
7172 }
7173 return 1;
7174}
7175
7176static int handle_vmread(struct kvm_vcpu *vcpu)
7177{
7178 unsigned long field;
7179 u64 field_value;
7180 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7181 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7182 gva_t gva = 0;
7183
7184 if (!nested_vmx_check_permission(vcpu) ||
7185 !nested_vmx_check_vmcs12(vcpu))
7186 return 1;
7187
7188 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007189 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007190 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007191 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007192 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7193 skip_emulated_instruction(vcpu);
7194 return 1;
7195 }
7196 /*
7197 * Now copy part of this value to register or memory, as requested.
7198 * Note that the number of bits actually copied is 32 or 64 depending
7199 * on the guest's mode (32 or 64 bit), not on the given field's length.
7200 */
7201 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007202 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007203 field_value);
7204 } else {
7205 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007206 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007207 return 1;
7208 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7209 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7210 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7211 }
7212
7213 nested_vmx_succeed(vcpu);
7214 skip_emulated_instruction(vcpu);
7215 return 1;
7216}
7217
7218
7219static int handle_vmwrite(struct kvm_vcpu *vcpu)
7220{
7221 unsigned long field;
7222 gva_t gva;
7223 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7224 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007225 /* The value to write might be 32 or 64 bits, depending on L1's long
7226 * mode, and eventually we need to write that into a field of several
7227 * possible lengths. The code below first zero-extends the value to 64
7228 * bit (field_value), and then copies only the approriate number of
7229 * bits into the vmcs12 field.
7230 */
7231 u64 field_value = 0;
7232 struct x86_exception e;
7233
7234 if (!nested_vmx_check_permission(vcpu) ||
7235 !nested_vmx_check_vmcs12(vcpu))
7236 return 1;
7237
7238 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007239 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007240 (((vmx_instruction_info) >> 3) & 0xf));
7241 else {
7242 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007243 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007244 return 1;
7245 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007246 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007247 kvm_inject_page_fault(vcpu, &e);
7248 return 1;
7249 }
7250 }
7251
7252
Nadav Amit27e6fb52014-06-18 17:19:26 +03007253 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007254 if (vmcs_field_readonly(field)) {
7255 nested_vmx_failValid(vcpu,
7256 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
7257 skip_emulated_instruction(vcpu);
7258 return 1;
7259 }
7260
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007261 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007262 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7263 skip_emulated_instruction(vcpu);
7264 return 1;
7265 }
7266
7267 nested_vmx_succeed(vcpu);
7268 skip_emulated_instruction(vcpu);
7269 return 1;
7270}
7271
Nadav Har'El63846662011-05-25 23:07:29 +03007272/* Emulate the VMPTRLD instruction */
7273static int handle_vmptrld(struct kvm_vcpu *vcpu)
7274{
7275 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007276 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007277
7278 if (!nested_vmx_check_permission(vcpu))
7279 return 1;
7280
Bandan Das4291b582014-05-06 02:19:18 -04007281 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007282 return 1;
7283
Nadav Har'El63846662011-05-25 23:07:29 +03007284 if (vmx->nested.current_vmptr != vmptr) {
7285 struct vmcs12 *new_vmcs12;
7286 struct page *page;
7287 page = nested_get_page(vcpu, vmptr);
7288 if (page == NULL) {
7289 nested_vmx_failInvalid(vcpu);
7290 skip_emulated_instruction(vcpu);
7291 return 1;
7292 }
7293 new_vmcs12 = kmap(page);
7294 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7295 kunmap(page);
7296 nested_release_page_clean(page);
7297 nested_vmx_failValid(vcpu,
7298 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
7299 skip_emulated_instruction(vcpu);
7300 return 1;
7301 }
Nadav Har'El63846662011-05-25 23:07:29 +03007302
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007303 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007304 vmx->nested.current_vmptr = vmptr;
7305 vmx->nested.current_vmcs12 = new_vmcs12;
7306 vmx->nested.current_vmcs12_page = page;
Abel Gordon012f83c2013-04-18 14:39:25 +03007307 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007308 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7309 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007310 vmcs_write64(VMCS_LINK_POINTER,
7311 __pa(vmx->nested.current_shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007312 vmx->nested.sync_shadow_vmcs = true;
7313 }
Nadav Har'El63846662011-05-25 23:07:29 +03007314 }
7315
7316 nested_vmx_succeed(vcpu);
7317 skip_emulated_instruction(vcpu);
7318 return 1;
7319}
7320
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007321/* Emulate the VMPTRST instruction */
7322static int handle_vmptrst(struct kvm_vcpu *vcpu)
7323{
7324 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7325 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7326 gva_t vmcs_gva;
7327 struct x86_exception e;
7328
7329 if (!nested_vmx_check_permission(vcpu))
7330 return 1;
7331
7332 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007333 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007334 return 1;
7335 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7336 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7337 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7338 sizeof(u64), &e)) {
7339 kvm_inject_page_fault(vcpu, &e);
7340 return 1;
7341 }
7342 nested_vmx_succeed(vcpu);
7343 skip_emulated_instruction(vcpu);
7344 return 1;
7345}
7346
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007347/* Emulate the INVEPT instruction */
7348static int handle_invept(struct kvm_vcpu *vcpu)
7349{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007350 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007351 u32 vmx_instruction_info, types;
7352 unsigned long type;
7353 gva_t gva;
7354 struct x86_exception e;
7355 struct {
7356 u64 eptp, gpa;
7357 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007358
Wincy Vanb9c237b2015-02-03 23:56:30 +08007359 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7360 SECONDARY_EXEC_ENABLE_EPT) ||
7361 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007362 kvm_queue_exception(vcpu, UD_VECTOR);
7363 return 1;
7364 }
7365
7366 if (!nested_vmx_check_permission(vcpu))
7367 return 1;
7368
7369 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7370 kvm_queue_exception(vcpu, UD_VECTOR);
7371 return 1;
7372 }
7373
7374 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007375 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007376
Wincy Vanb9c237b2015-02-03 23:56:30 +08007377 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007378
7379 if (!(types & (1UL << type))) {
7380 nested_vmx_failValid(vcpu,
7381 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7382 return 1;
7383 }
7384
7385 /* According to the Intel VMX instruction reference, the memory
7386 * operand is read even if it isn't needed (e.g., for type==global)
7387 */
7388 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007389 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007390 return 1;
7391 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7392 sizeof(operand), &e)) {
7393 kvm_inject_page_fault(vcpu, &e);
7394 return 1;
7395 }
7396
7397 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007398 case VMX_EPT_EXTENT_GLOBAL:
7399 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007400 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007401 nested_vmx_succeed(vcpu);
7402 break;
7403 default:
Bandan Das4b855072014-04-19 18:17:44 -04007404 /* Trap single context invalidation invept calls */
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007405 BUG_ON(1);
7406 break;
7407 }
7408
7409 skip_emulated_instruction(vcpu);
7410 return 1;
7411}
7412
Petr Matouseka642fc32014-09-23 20:22:30 +02007413static int handle_invvpid(struct kvm_vcpu *vcpu)
7414{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007415 struct vcpu_vmx *vmx = to_vmx(vcpu);
7416 u32 vmx_instruction_info;
7417 unsigned long type, types;
7418 gva_t gva;
7419 struct x86_exception e;
7420 int vpid;
7421
7422 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7423 SECONDARY_EXEC_ENABLE_VPID) ||
7424 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7425 kvm_queue_exception(vcpu, UD_VECTOR);
7426 return 1;
7427 }
7428
7429 if (!nested_vmx_check_permission(vcpu))
7430 return 1;
7431
7432 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7433 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7434
7435 types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7;
7436
7437 if (!(types & (1UL << type))) {
7438 nested_vmx_failValid(vcpu,
7439 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7440 return 1;
7441 }
7442
7443 /* according to the intel vmx instruction reference, the memory
7444 * operand is read even if it isn't needed (e.g., for type==global)
7445 */
7446 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7447 vmx_instruction_info, false, &gva))
7448 return 1;
7449 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7450 sizeof(u32), &e)) {
7451 kvm_inject_page_fault(vcpu, &e);
7452 return 1;
7453 }
7454
7455 switch (type) {
7456 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li5c614b32015-10-13 09:18:36 -07007457 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007458 nested_vmx_succeed(vcpu);
7459 break;
7460 default:
7461 /* Trap single context invalidation invvpid calls */
7462 BUG_ON(1);
7463 break;
7464 }
7465
7466 skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007467 return 1;
7468}
7469
Kai Huang843e4332015-01-28 10:54:28 +08007470static int handle_pml_full(struct kvm_vcpu *vcpu)
7471{
7472 unsigned long exit_qualification;
7473
7474 trace_kvm_pml_full(vcpu->vcpu_id);
7475
7476 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7477
7478 /*
7479 * PML buffer FULL happened while executing iret from NMI,
7480 * "blocked by NMI" bit has to be set before next VM entry.
7481 */
7482 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7483 cpu_has_virtual_nmis() &&
7484 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7485 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7486 GUEST_INTR_STATE_NMI);
7487
7488 /*
7489 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7490 * here.., and there's no userspace involvement needed for PML.
7491 */
7492 return 1;
7493}
7494
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007495static int handle_pcommit(struct kvm_vcpu *vcpu)
7496{
7497 /* we never catch pcommit instruct for L1 guest. */
7498 WARN_ON(1);
7499 return 1;
7500}
7501
Nadav Har'El0140cae2011-05-25 23:06:28 +03007502/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007503 * The exit handlers return 1 if the exit was handled fully and guest execution
7504 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7505 * to be done to userspace and return 0.
7506 */
Mathias Krause772e0312012-08-30 01:30:19 +02007507static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007508 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7509 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007510 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007511 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007512 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007513 [EXIT_REASON_CR_ACCESS] = handle_cr,
7514 [EXIT_REASON_DR_ACCESS] = handle_dr,
7515 [EXIT_REASON_CPUID] = handle_cpuid,
7516 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7517 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7518 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7519 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007520 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007521 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007522 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007523 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007524 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007525 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007526 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007527 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007528 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007529 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007530 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007531 [EXIT_REASON_VMOFF] = handle_vmoff,
7532 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007533 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7534 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007535 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007536 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007537 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007538 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007539 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007540 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007541 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7542 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007543 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007544 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007545 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007546 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007547 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007548 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007549 [EXIT_REASON_XSAVES] = handle_xsaves,
7550 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007551 [EXIT_REASON_PML_FULL] = handle_pml_full,
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007552 [EXIT_REASON_PCOMMIT] = handle_pcommit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007553};
7554
7555static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007556 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007557
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007558static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7559 struct vmcs12 *vmcs12)
7560{
7561 unsigned long exit_qualification;
7562 gpa_t bitmap, last_bitmap;
7563 unsigned int port;
7564 int size;
7565 u8 b;
7566
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007567 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007568 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007569
7570 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7571
7572 port = exit_qualification >> 16;
7573 size = (exit_qualification & 7) + 1;
7574
7575 last_bitmap = (gpa_t)-1;
7576 b = -1;
7577
7578 while (size > 0) {
7579 if (port < 0x8000)
7580 bitmap = vmcs12->io_bitmap_a;
7581 else if (port < 0x10000)
7582 bitmap = vmcs12->io_bitmap_b;
7583 else
Joe Perches1d804d02015-03-30 16:46:09 -07007584 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007585 bitmap += (port & 0x7fff) / 8;
7586
7587 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007588 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007589 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007590 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007591 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007592
7593 port++;
7594 size--;
7595 last_bitmap = bitmap;
7596 }
7597
Joe Perches1d804d02015-03-30 16:46:09 -07007598 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007599}
7600
Nadav Har'El644d7112011-05-25 23:12:35 +03007601/*
7602 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7603 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7604 * disinterest in the current event (read or write a specific MSR) by using an
7605 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7606 */
7607static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7608 struct vmcs12 *vmcs12, u32 exit_reason)
7609{
7610 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7611 gpa_t bitmap;
7612
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007613 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007614 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007615
7616 /*
7617 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7618 * for the four combinations of read/write and low/high MSR numbers.
7619 * First we need to figure out which of the four to use:
7620 */
7621 bitmap = vmcs12->msr_bitmap;
7622 if (exit_reason == EXIT_REASON_MSR_WRITE)
7623 bitmap += 2048;
7624 if (msr_index >= 0xc0000000) {
7625 msr_index -= 0xc0000000;
7626 bitmap += 1024;
7627 }
7628
7629 /* Then read the msr_index'th bit from this bitmap: */
7630 if (msr_index < 1024*8) {
7631 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007632 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007633 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007634 return 1 & (b >> (msr_index & 7));
7635 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007636 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007637}
7638
7639/*
7640 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7641 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7642 * intercept (via guest_host_mask etc.) the current event.
7643 */
7644static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7645 struct vmcs12 *vmcs12)
7646{
7647 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7648 int cr = exit_qualification & 15;
7649 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007650 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007651
7652 switch ((exit_qualification >> 4) & 3) {
7653 case 0: /* mov to cr */
7654 switch (cr) {
7655 case 0:
7656 if (vmcs12->cr0_guest_host_mask &
7657 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007658 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007659 break;
7660 case 3:
7661 if ((vmcs12->cr3_target_count >= 1 &&
7662 vmcs12->cr3_target_value0 == val) ||
7663 (vmcs12->cr3_target_count >= 2 &&
7664 vmcs12->cr3_target_value1 == val) ||
7665 (vmcs12->cr3_target_count >= 3 &&
7666 vmcs12->cr3_target_value2 == val) ||
7667 (vmcs12->cr3_target_count >= 4 &&
7668 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07007669 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007670 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007671 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007672 break;
7673 case 4:
7674 if (vmcs12->cr4_guest_host_mask &
7675 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07007676 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007677 break;
7678 case 8:
7679 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007680 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007681 break;
7682 }
7683 break;
7684 case 2: /* clts */
7685 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
7686 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007687 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007688 break;
7689 case 1: /* mov from cr */
7690 switch (cr) {
7691 case 3:
7692 if (vmcs12->cpu_based_vm_exec_control &
7693 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007694 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007695 break;
7696 case 8:
7697 if (vmcs12->cpu_based_vm_exec_control &
7698 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007699 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007700 break;
7701 }
7702 break;
7703 case 3: /* lmsw */
7704 /*
7705 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
7706 * cr0. Other attempted changes are ignored, with no exit.
7707 */
7708 if (vmcs12->cr0_guest_host_mask & 0xe &
7709 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007710 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007711 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
7712 !(vmcs12->cr0_read_shadow & 0x1) &&
7713 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07007714 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007715 break;
7716 }
Joe Perches1d804d02015-03-30 16:46:09 -07007717 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007718}
7719
7720/*
7721 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
7722 * should handle it ourselves in L0 (and then continue L2). Only call this
7723 * when in is_guest_mode (L2).
7724 */
7725static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
7726{
Nadav Har'El644d7112011-05-25 23:12:35 +03007727 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7728 struct vcpu_vmx *vmx = to_vmx(vcpu);
7729 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01007730 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03007731
Jan Kiszka542060e2014-01-04 18:47:21 +01007732 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
7733 vmcs_readl(EXIT_QUALIFICATION),
7734 vmx->idt_vectoring_info,
7735 intr_info,
7736 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
7737 KVM_ISA_VMX);
7738
Nadav Har'El644d7112011-05-25 23:12:35 +03007739 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07007740 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007741
7742 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02007743 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
7744 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07007745 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007746 }
7747
7748 switch (exit_reason) {
7749 case EXIT_REASON_EXCEPTION_NMI:
7750 if (!is_exception(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07007751 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007752 else if (is_page_fault(intr_info))
7753 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01007754 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01007755 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007756 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01007757 else if (is_debug(intr_info) &&
7758 vcpu->guest_debug &
7759 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
7760 return false;
7761 else if (is_breakpoint(intr_info) &&
7762 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
7763 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007764 return vmcs12->exception_bitmap &
7765 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7766 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007767 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007768 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007769 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007770 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007771 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007772 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007773 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007774 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007775 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007776 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007777 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007778 return false;
7779 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007780 case EXIT_REASON_HLT:
7781 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7782 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007783 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007784 case EXIT_REASON_INVLPG:
7785 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7786 case EXIT_REASON_RDPMC:
7787 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007788 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007789 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7790 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7791 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7792 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7793 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7794 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007795 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007796 /*
7797 * VMX instructions trap unconditionally. This allows L1 to
7798 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7799 */
Joe Perches1d804d02015-03-30 16:46:09 -07007800 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007801 case EXIT_REASON_CR_ACCESS:
7802 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7803 case EXIT_REASON_DR_ACCESS:
7804 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7805 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007806 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007807 case EXIT_REASON_MSR_READ:
7808 case EXIT_REASON_MSR_WRITE:
7809 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7810 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007811 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007812 case EXIT_REASON_MWAIT_INSTRUCTION:
7813 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007814 case EXIT_REASON_MONITOR_TRAP_FLAG:
7815 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007816 case EXIT_REASON_MONITOR_INSTRUCTION:
7817 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7818 case EXIT_REASON_PAUSE_INSTRUCTION:
7819 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7820 nested_cpu_has2(vmcs12,
7821 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7822 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07007823 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007824 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007825 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03007826 case EXIT_REASON_APIC_ACCESS:
7827 return nested_cpu_has2(vmcs12,
7828 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08007829 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08007830 case EXIT_REASON_EOI_INDUCED:
7831 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07007832 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007833 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007834 /*
7835 * L0 always deals with the EPT violation. If nested EPT is
7836 * used, and the nested mmu code discovers that the address is
7837 * missing in the guest EPT table (EPT12), the EPT violation
7838 * will be injected with nested_ept_inject_page_fault()
7839 */
Joe Perches1d804d02015-03-30 16:46:09 -07007840 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007841 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007842 /*
7843 * L2 never uses directly L1's EPT, but rather L0's own EPT
7844 * table (shadow on EPT) or a merged EPT table that L0 built
7845 * (EPT on EPT). So any problems with the structure of the
7846 * table is L0's fault.
7847 */
Joe Perches1d804d02015-03-30 16:46:09 -07007848 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007849 case EXIT_REASON_WBINVD:
7850 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7851 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07007852 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08007853 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
7854 /*
7855 * This should never happen, since it is not possible to
7856 * set XSS to a non-zero value---neither in L1 nor in L2.
7857 * If if it were, XSS would have to be checked against
7858 * the XSS exit bitmap in vmcs12.
7859 */
7860 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007861 case EXIT_REASON_PCOMMIT:
7862 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03007863 default:
Joe Perches1d804d02015-03-30 16:46:09 -07007864 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007865 }
7866}
7867
Avi Kivity586f9602010-11-18 13:09:54 +02007868static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7869{
7870 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7871 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7872}
7873
Kai Huanga3eaa862015-11-04 13:46:05 +08007874static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007875{
7876 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08007877
7878 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
7879 if (!pml_pg)
7880 return -ENOMEM;
7881
7882 vmx->pml_pg = pml_pg;
7883
7884 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
7885 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7886
Kai Huang843e4332015-01-28 10:54:28 +08007887 return 0;
7888}
7889
Kai Huanga3eaa862015-11-04 13:46:05 +08007890static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007891{
Kai Huanga3eaa862015-11-04 13:46:05 +08007892 if (vmx->pml_pg) {
7893 __free_page(vmx->pml_pg);
7894 vmx->pml_pg = NULL;
7895 }
Kai Huang843e4332015-01-28 10:54:28 +08007896}
7897
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007898static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08007899{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007900 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08007901 u64 *pml_buf;
7902 u16 pml_idx;
7903
7904 pml_idx = vmcs_read16(GUEST_PML_INDEX);
7905
7906 /* Do nothing if PML buffer is empty */
7907 if (pml_idx == (PML_ENTITY_NUM - 1))
7908 return;
7909
7910 /* PML index always points to next available PML buffer entity */
7911 if (pml_idx >= PML_ENTITY_NUM)
7912 pml_idx = 0;
7913 else
7914 pml_idx++;
7915
7916 pml_buf = page_address(vmx->pml_pg);
7917 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
7918 u64 gpa;
7919
7920 gpa = pml_buf[pml_idx];
7921 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007922 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08007923 }
7924
7925 /* reset PML index */
7926 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7927}
7928
7929/*
7930 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
7931 * Called before reporting dirty_bitmap to userspace.
7932 */
7933static void kvm_flush_pml_buffers(struct kvm *kvm)
7934{
7935 int i;
7936 struct kvm_vcpu *vcpu;
7937 /*
7938 * We only need to kick vcpu out of guest mode here, as PML buffer
7939 * is flushed at beginning of all VMEXITs, and it's obvious that only
7940 * vcpus running in guest are possible to have unflushed GPAs in PML
7941 * buffer.
7942 */
7943 kvm_for_each_vcpu(i, vcpu, kvm)
7944 kvm_vcpu_kick(vcpu);
7945}
7946
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007947static void vmx_dump_sel(char *name, uint32_t sel)
7948{
7949 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
7950 name, vmcs_read32(sel),
7951 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
7952 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
7953 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
7954}
7955
7956static void vmx_dump_dtsel(char *name, uint32_t limit)
7957{
7958 pr_err("%s limit=0x%08x, base=0x%016lx\n",
7959 name, vmcs_read32(limit),
7960 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
7961}
7962
7963static void dump_vmcs(void)
7964{
7965 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
7966 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
7967 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7968 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
7969 u32 secondary_exec_control = 0;
7970 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01007971 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007972 int i, n;
7973
7974 if (cpu_has_secondary_exec_ctrls())
7975 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7976
7977 pr_err("*** Guest State ***\n");
7978 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7979 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
7980 vmcs_readl(CR0_GUEST_HOST_MASK));
7981 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7982 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
7983 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
7984 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
7985 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
7986 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01007987 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
7988 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
7989 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
7990 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007991 }
7992 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
7993 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
7994 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
7995 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
7996 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
7997 vmcs_readl(GUEST_SYSENTER_ESP),
7998 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
7999 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8000 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8001 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8002 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8003 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8004 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8005 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8006 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8007 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8008 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8009 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8010 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008011 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8012 efer, vmcs_read64(GUEST_IA32_PAT));
8013 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8014 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008015 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8016 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008017 pr_err("PerfGlobCtl = 0x%016llx\n",
8018 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008019 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008020 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008021 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8022 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8023 vmcs_read32(GUEST_ACTIVITY_STATE));
8024 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8025 pr_err("InterruptStatus = %04x\n",
8026 vmcs_read16(GUEST_INTR_STATUS));
8027
8028 pr_err("*** Host State ***\n");
8029 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8030 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8031 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8032 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8033 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8034 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8035 vmcs_read16(HOST_TR_SELECTOR));
8036 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8037 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8038 vmcs_readl(HOST_TR_BASE));
8039 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8040 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8041 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8042 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8043 vmcs_readl(HOST_CR4));
8044 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8045 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8046 vmcs_read32(HOST_IA32_SYSENTER_CS),
8047 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8048 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008049 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8050 vmcs_read64(HOST_IA32_EFER),
8051 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008052 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008053 pr_err("PerfGlobCtl = 0x%016llx\n",
8054 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008055
8056 pr_err("*** Control State ***\n");
8057 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8058 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8059 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8060 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8061 vmcs_read32(EXCEPTION_BITMAP),
8062 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8063 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8064 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8065 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8066 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8067 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8068 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8069 vmcs_read32(VM_EXIT_INTR_INFO),
8070 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8071 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8072 pr_err(" reason=%08x qualification=%016lx\n",
8073 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8074 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8075 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8076 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008077 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008078 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008079 pr_err("TSC Multiplier = 0x%016llx\n",
8080 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008081 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8082 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8083 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8084 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8085 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008086 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008087 n = vmcs_read32(CR3_TARGET_COUNT);
8088 for (i = 0; i + 1 < n; i += 4)
8089 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8090 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8091 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8092 if (i < n)
8093 pr_err("CR3 target%u=%016lx\n",
8094 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8095 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8096 pr_err("PLE Gap=%08x Window=%08x\n",
8097 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8098 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8099 pr_err("Virtual processor ID = 0x%04x\n",
8100 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8101}
8102
Avi Kivity6aa8b732006-12-10 02:21:36 -08008103/*
8104 * The guest has exited. See if we can fix it or if we need userspace
8105 * assistance.
8106 */
Avi Kivity851ba692009-08-24 11:10:17 +03008107static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008108{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008109 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008110 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008111 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008112
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008113 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8114
Kai Huang843e4332015-01-28 10:54:28 +08008115 /*
8116 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8117 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8118 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8119 * mode as if vcpus is in root mode, the PML buffer must has been
8120 * flushed already.
8121 */
8122 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008123 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008124
Mohammed Gamal80ced182009-09-01 12:48:18 +02008125 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008126 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008127 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008128
Nadav Har'El644d7112011-05-25 23:12:35 +03008129 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008130 nested_vmx_vmexit(vcpu, exit_reason,
8131 vmcs_read32(VM_EXIT_INTR_INFO),
8132 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008133 return 1;
8134 }
8135
Mohammed Gamal51207022010-05-31 22:40:54 +03008136 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008137 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008138 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8139 vcpu->run->fail_entry.hardware_entry_failure_reason
8140 = exit_reason;
8141 return 0;
8142 }
8143
Avi Kivity29bd8a72007-09-10 17:27:03 +03008144 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008145 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8146 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008147 = vmcs_read32(VM_INSTRUCTION_ERROR);
8148 return 0;
8149 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008150
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008151 /*
8152 * Note:
8153 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8154 * delivery event since it indicates guest is accessing MMIO.
8155 * The vm-exit can be triggered again after return to guest that
8156 * will cause infinite loop.
8157 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008158 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008159 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008160 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008161 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8162 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8163 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8164 vcpu->run->internal.ndata = 2;
8165 vcpu->run->internal.data[0] = vectoring_info;
8166 vcpu->run->internal.data[1] = exit_reason;
8167 return 0;
8168 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008169
Nadav Har'El644d7112011-05-25 23:12:35 +03008170 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8171 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008172 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008173 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008174 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008175 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008176 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008177 /*
8178 * This CPU don't support us in finding the end of an
8179 * NMI-blocked window if the guest runs with IRQs
8180 * disabled. So we pull the trigger after 1 s of
8181 * futile waiting, but inform the user about this.
8182 */
8183 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8184 "state on VCPU %d after 1 s timeout\n",
8185 __func__, vcpu->vcpu_id);
8186 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008187 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008188 }
8189
Avi Kivity6aa8b732006-12-10 02:21:36 -08008190 if (exit_reason < kvm_vmx_max_exit_handlers
8191 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008192 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008193 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008194 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8195 kvm_queue_exception(vcpu, UD_VECTOR);
8196 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008197 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008198}
8199
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008200static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008201{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008202 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8203
8204 if (is_guest_mode(vcpu) &&
8205 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8206 return;
8207
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008208 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008209 vmcs_write32(TPR_THRESHOLD, 0);
8210 return;
8211 }
8212
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008213 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008214}
8215
Yang Zhang8d146952013-01-25 10:18:50 +08008216static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8217{
8218 u32 sec_exec_control;
8219
8220 /*
8221 * There is not point to enable virtualize x2apic without enable
8222 * apicv
8223 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008224 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008225 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008226 return;
8227
Paolo Bonzini35754c92015-07-29 12:05:37 +02008228 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008229 return;
8230
8231 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8232
8233 if (set) {
8234 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8235 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8236 } else {
8237 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8238 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8239 }
8240 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8241
8242 vmx_set_msr_bitmap(vcpu);
8243}
8244
Tang Chen38b99172014-09-24 15:57:54 +08008245static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8246{
8247 struct vcpu_vmx *vmx = to_vmx(vcpu);
8248
8249 /*
8250 * Currently we do not handle the nested case where L2 has an
8251 * APIC access page of its own; that page is still pinned.
8252 * Hence, we skip the case where the VCPU is in guest mode _and_
8253 * L1 prepared an APIC access page for L2.
8254 *
8255 * For the case where L1 and L2 share the same APIC access page
8256 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8257 * in the vmcs12), this function will only update either the vmcs01
8258 * or the vmcs02. If the former, the vmcs02 will be updated by
8259 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8260 * the next L2->L1 exit.
8261 */
8262 if (!is_guest_mode(vcpu) ||
8263 !nested_cpu_has2(vmx->nested.current_vmcs12,
8264 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8265 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8266}
8267
Yang Zhangc7c9c562013-01-25 10:18:51 +08008268static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
8269{
8270 u16 status;
8271 u8 old;
8272
Yang Zhangc7c9c562013-01-25 10:18:51 +08008273 if (isr == -1)
8274 isr = 0;
8275
8276 status = vmcs_read16(GUEST_INTR_STATUS);
8277 old = status >> 8;
8278 if (isr != old) {
8279 status &= 0xff;
8280 status |= isr << 8;
8281 vmcs_write16(GUEST_INTR_STATUS, status);
8282 }
8283}
8284
8285static void vmx_set_rvi(int vector)
8286{
8287 u16 status;
8288 u8 old;
8289
Wei Wang4114c272014-11-05 10:53:43 +08008290 if (vector == -1)
8291 vector = 0;
8292
Yang Zhangc7c9c562013-01-25 10:18:51 +08008293 status = vmcs_read16(GUEST_INTR_STATUS);
8294 old = (u8)status & 0xff;
8295 if ((u8)vector != old) {
8296 status &= ~0xff;
8297 status |= (u8)vector;
8298 vmcs_write16(GUEST_INTR_STATUS, status);
8299 }
8300}
8301
8302static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8303{
Wanpeng Li963fee12014-07-17 19:03:00 +08008304 if (!is_guest_mode(vcpu)) {
8305 vmx_set_rvi(max_irr);
8306 return;
8307 }
8308
Wei Wang4114c272014-11-05 10:53:43 +08008309 if (max_irr == -1)
8310 return;
8311
Wanpeng Li963fee12014-07-17 19:03:00 +08008312 /*
Wei Wang4114c272014-11-05 10:53:43 +08008313 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8314 * handles it.
8315 */
8316 if (nested_exit_on_intr(vcpu))
8317 return;
8318
8319 /*
8320 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008321 * is run without virtual interrupt delivery.
8322 */
8323 if (!kvm_event_needs_reinjection(vcpu) &&
8324 vmx_interrupt_allowed(vcpu)) {
8325 kvm_queue_interrupt(vcpu, max_irr, false);
8326 vmx_inject_irq(vcpu);
8327 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008328}
8329
Andrey Smetanin63086302015-11-10 15:36:32 +03008330static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008331{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008332 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008333 return;
8334
Yang Zhangc7c9c562013-01-25 10:18:51 +08008335 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8336 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8337 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8338 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8339}
8340
Avi Kivity51aa01d2010-07-20 14:31:20 +03008341static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008342{
Avi Kivity00eba012011-03-07 17:24:54 +02008343 u32 exit_intr_info;
8344
8345 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8346 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8347 return;
8348
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008349 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008350 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008351
8352 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008353 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008354 kvm_machine_check();
8355
Gleb Natapov20f65982009-05-11 13:35:55 +03008356 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008357 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008358 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8359 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008360 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008361 kvm_after_handle_nmi(&vmx->vcpu);
8362 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008363}
Gleb Natapov20f65982009-05-11 13:35:55 +03008364
Yang Zhanga547c6d2013-04-11 19:25:10 +08008365static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8366{
8367 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8368
8369 /*
8370 * If external interrupt exists, IF bit is set in rflags/eflags on the
8371 * interrupt stack frame, and interrupt will be enabled on a return
8372 * from interrupt handler.
8373 */
8374 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8375 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8376 unsigned int vector;
8377 unsigned long entry;
8378 gate_desc *desc;
8379 struct vcpu_vmx *vmx = to_vmx(vcpu);
8380#ifdef CONFIG_X86_64
8381 unsigned long tmp;
8382#endif
8383
8384 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8385 desc = (gate_desc *)vmx->host_idt_base + vector;
8386 entry = gate_offset(*desc);
8387 asm volatile(
8388#ifdef CONFIG_X86_64
8389 "mov %%" _ASM_SP ", %[sp]\n\t"
8390 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8391 "push $%c[ss]\n\t"
8392 "push %[sp]\n\t"
8393#endif
8394 "pushf\n\t"
8395 "orl $0x200, (%%" _ASM_SP ")\n\t"
8396 __ASM_SIZE(push) " $%c[cs]\n\t"
8397 "call *%[entry]\n\t"
8398 :
8399#ifdef CONFIG_X86_64
8400 [sp]"=&r"(tmp)
8401#endif
8402 :
8403 [entry]"r"(entry),
8404 [ss]"i"(__KERNEL_DS),
8405 [cs]"i"(__KERNEL_CS)
8406 );
8407 } else
8408 local_irq_enable();
8409}
8410
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008411static bool vmx_has_high_real_mode_segbase(void)
8412{
8413 return enable_unrestricted_guest || emulate_invalid_guest_state;
8414}
8415
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008416static bool vmx_mpx_supported(void)
8417{
8418 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8419 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8420}
8421
Wanpeng Li55412b22014-12-02 19:21:30 +08008422static bool vmx_xsaves_supported(void)
8423{
8424 return vmcs_config.cpu_based_2nd_exec_ctrl &
8425 SECONDARY_EXEC_XSAVES;
8426}
8427
Avi Kivity51aa01d2010-07-20 14:31:20 +03008428static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8429{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008430 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008431 bool unblock_nmi;
8432 u8 vector;
8433 bool idtv_info_valid;
8434
8435 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008436
Avi Kivitycf393f72008-07-01 16:20:21 +03008437 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008438 if (vmx->nmi_known_unmasked)
8439 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008440 /*
8441 * Can't use vmx->exit_intr_info since we're not sure what
8442 * the exit reason is.
8443 */
8444 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008445 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8446 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8447 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008448 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008449 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8450 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008451 * SDM 3: 23.2.2 (September 2008)
8452 * Bit 12 is undefined in any of the following cases:
8453 * If the VM exit sets the valid bit in the IDT-vectoring
8454 * information field.
8455 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008456 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008457 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8458 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008459 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8460 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008461 else
8462 vmx->nmi_known_unmasked =
8463 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8464 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008465 } else if (unlikely(vmx->soft_vnmi_blocked))
8466 vmx->vnmi_blocked_time +=
8467 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008468}
8469
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008470static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008471 u32 idt_vectoring_info,
8472 int instr_len_field,
8473 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008474{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008475 u8 vector;
8476 int type;
8477 bool idtv_info_valid;
8478
8479 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008480
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008481 vcpu->arch.nmi_injected = false;
8482 kvm_clear_exception_queue(vcpu);
8483 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008484
8485 if (!idtv_info_valid)
8486 return;
8487
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008488 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008489
Avi Kivity668f6122008-07-02 09:28:55 +03008490 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8491 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008492
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008493 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008494 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008495 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008496 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008497 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008498 * Clear bit "block by NMI" before VM entry if a NMI
8499 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008500 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008501 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008502 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008503 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008504 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008505 /* fall through */
8506 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008507 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008508 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008509 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008510 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008511 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008512 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008513 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008514 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008515 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008516 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008517 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008518 break;
8519 default:
8520 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008521 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008522}
8523
Avi Kivity83422e12010-07-20 14:43:23 +03008524static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8525{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008526 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008527 VM_EXIT_INSTRUCTION_LEN,
8528 IDT_VECTORING_ERROR_CODE);
8529}
8530
Avi Kivityb463a6f2010-07-20 15:06:17 +03008531static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8532{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008533 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008534 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8535 VM_ENTRY_INSTRUCTION_LEN,
8536 VM_ENTRY_EXCEPTION_ERROR_CODE);
8537
8538 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8539}
8540
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008541static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8542{
8543 int i, nr_msrs;
8544 struct perf_guest_switch_msr *msrs;
8545
8546 msrs = perf_guest_get_msrs(&nr_msrs);
8547
8548 if (!msrs)
8549 return;
8550
8551 for (i = 0; i < nr_msrs; i++)
8552 if (msrs[i].host == msrs[i].guest)
8553 clear_atomic_switch_msr(vmx, msrs[i].msr);
8554 else
8555 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8556 msrs[i].host);
8557}
8558
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008559static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008560{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008561 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008562 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008563
8564 /* Record the guest's net vcpu time for enforced NMI injections. */
8565 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8566 vmx->entry_time = ktime_get();
8567
8568 /* Don't enter VMX if guest state is invalid, let the exit handler
8569 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008570 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008571 return;
8572
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008573 if (vmx->ple_window_dirty) {
8574 vmx->ple_window_dirty = false;
8575 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8576 }
8577
Abel Gordon012f83c2013-04-18 14:39:25 +03008578 if (vmx->nested.sync_shadow_vmcs) {
8579 copy_vmcs12_to_shadow(vmx);
8580 vmx->nested.sync_shadow_vmcs = false;
8581 }
8582
Avi Kivity104f2262010-11-18 13:12:52 +02008583 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8584 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8585 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8586 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8587
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008588 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008589 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8590 vmcs_writel(HOST_CR4, cr4);
8591 vmx->host_state.vmcs_host_cr4 = cr4;
8592 }
8593
Avi Kivity104f2262010-11-18 13:12:52 +02008594 /* When single-stepping over STI and MOV SS, we must clear the
8595 * corresponding interruptibility bits in the guest state. Otherwise
8596 * vmentry fails as it then expects bit 14 (BS) in pending debug
8597 * exceptions being set, but that's not correct for the guest debugging
8598 * case. */
8599 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8600 vmx_set_interrupt_shadow(vcpu, 0);
8601
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008602 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008603 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008604
Nadav Har'Eld462b812011-05-24 15:26:10 +03008605 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008606 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008607 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008608 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8609 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8610 "push %%" _ASM_CX " \n\t"
8611 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008612 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008613 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008614 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008615 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008616 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008617 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8618 "mov %%cr2, %%" _ASM_DX " \n\t"
8619 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008620 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008621 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008622 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008623 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008624 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008625 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008626 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8627 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8628 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8629 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8630 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8631 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008632#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008633 "mov %c[r8](%0), %%r8 \n\t"
8634 "mov %c[r9](%0), %%r9 \n\t"
8635 "mov %c[r10](%0), %%r10 \n\t"
8636 "mov %c[r11](%0), %%r11 \n\t"
8637 "mov %c[r12](%0), %%r12 \n\t"
8638 "mov %c[r13](%0), %%r13 \n\t"
8639 "mov %c[r14](%0), %%r14 \n\t"
8640 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008641#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008642 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008643
Avi Kivity6aa8b732006-12-10 02:21:36 -08008644 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008645 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008646 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008647 "jmp 2f \n\t"
8648 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8649 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008650 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008651 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008652 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008653 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8654 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8655 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8656 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8657 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8658 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8659 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008660#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008661 "mov %%r8, %c[r8](%0) \n\t"
8662 "mov %%r9, %c[r9](%0) \n\t"
8663 "mov %%r10, %c[r10](%0) \n\t"
8664 "mov %%r11, %c[r11](%0) \n\t"
8665 "mov %%r12, %c[r12](%0) \n\t"
8666 "mov %%r13, %c[r13](%0) \n\t"
8667 "mov %%r14, %c[r14](%0) \n\t"
8668 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008669#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008670 "mov %%cr2, %%" _ASM_AX " \n\t"
8671 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008672
Avi Kivityb188c81f2012-09-16 15:10:58 +03008673 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008674 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008675 ".pushsection .rodata \n\t"
8676 ".global vmx_return \n\t"
8677 "vmx_return: " _ASM_PTR " 2b \n\t"
8678 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008679 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008680 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008681 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03008682 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008683 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8684 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8685 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8686 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8687 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8688 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8689 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008690#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008691 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8692 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8693 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8694 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8695 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8696 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8697 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8698 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008699#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008700 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8701 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008702 : "cc", "memory"
8703#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008704 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008705 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008706#else
8707 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008708#endif
8709 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008710
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008711 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8712 if (debugctlmsr)
8713 update_debugctlmsr(debugctlmsr);
8714
Avi Kivityaa67f602012-08-01 16:48:03 +03008715#ifndef CONFIG_X86_64
8716 /*
8717 * The sysexit path does not restore ds/es, so we must set them to
8718 * a reasonable value ourselves.
8719 *
8720 * We can't defer this to vmx_load_host_state() since that function
8721 * may be executed in interrupt context, which saves and restore segments
8722 * around it, nullifying its effect.
8723 */
8724 loadsegment(ds, __USER_DS);
8725 loadsegment(es, __USER_DS);
8726#endif
8727
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008728 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008729 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008730 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008731 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008732 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008733 vcpu->arch.regs_dirty = 0;
8734
Avi Kivity1155f762007-11-22 11:30:47 +02008735 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8736
Nadav Har'Eld462b812011-05-24 15:26:10 +03008737 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008738
Avi Kivity51aa01d2010-07-20 14:31:20 +03008739 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008740
Gleb Natapove0b890d2013-09-25 12:51:33 +03008741 /*
8742 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8743 * we did not inject a still-pending event to L1 now because of
8744 * nested_run_pending, we need to re-enable this bit.
8745 */
8746 if (vmx->nested.nested_run_pending)
8747 kvm_make_request(KVM_REQ_EVENT, vcpu);
8748
8749 vmx->nested.nested_run_pending = 0;
8750
Avi Kivity51aa01d2010-07-20 14:31:20 +03008751 vmx_complete_atomic_exit(vmx);
8752 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008753 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008754}
8755
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008756static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8757{
8758 struct vcpu_vmx *vmx = to_vmx(vcpu);
8759 int cpu;
8760
8761 if (vmx->loaded_vmcs == &vmx->vmcs01)
8762 return;
8763
8764 cpu = get_cpu();
8765 vmx->loaded_vmcs = &vmx->vmcs01;
8766 vmx_vcpu_put(vcpu);
8767 vmx_vcpu_load(vcpu, cpu);
8768 vcpu->cpu = cpu;
8769 put_cpu();
8770}
8771
Avi Kivity6aa8b732006-12-10 02:21:36 -08008772static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8773{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008774 struct vcpu_vmx *vmx = to_vmx(vcpu);
8775
Kai Huang843e4332015-01-28 10:54:28 +08008776 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008777 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008778 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008779 leave_guest_mode(vcpu);
8780 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02008781 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008782 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008783 kfree(vmx->guest_msrs);
8784 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10008785 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008786}
8787
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008788static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008789{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008790 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10008791 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03008792 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008793
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008794 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008795 return ERR_PTR(-ENOMEM);
8796
Wanpeng Li991e7a02015-09-16 17:30:05 +08008797 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08008798
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008799 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
8800 if (err)
8801 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008802
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008803 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02008804 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
8805 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03008806
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008807 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008808 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008809 goto uninit_vcpu;
8810 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008811
Nadav Har'Eld462b812011-05-24 15:26:10 +03008812 vmx->loaded_vmcs = &vmx->vmcs01;
8813 vmx->loaded_vmcs->vmcs = alloc_vmcs();
8814 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008815 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03008816 if (!vmm_exclusive)
8817 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
8818 loaded_vmcs_init(vmx->loaded_vmcs);
8819 if (!vmm_exclusive)
8820 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008821
Avi Kivity15ad7142007-07-11 18:17:21 +03008822 cpu = get_cpu();
8823 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10008824 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10008825 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008826 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03008827 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008828 if (err)
8829 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008830 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008831 err = alloc_apic_access_page(kvm);
8832 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02008833 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02008834 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008835
Sheng Yangb927a3c2009-07-21 10:42:48 +08008836 if (enable_ept) {
8837 if (!kvm->arch.ept_identity_map_addr)
8838 kvm->arch.ept_identity_map_addr =
8839 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08008840 err = init_rmode_identity_map(kvm);
8841 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02008842 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08008843 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08008844
Wanpeng Li5c614b32015-10-13 09:18:36 -07008845 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08008846 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07008847 vmx->nested.vpid02 = allocate_vpid();
8848 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08008849
Wincy Van705699a2015-02-03 23:58:17 +08008850 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03008851 vmx->nested.current_vmptr = -1ull;
8852 vmx->nested.current_vmcs12 = NULL;
8853
Kai Huang843e4332015-01-28 10:54:28 +08008854 /*
8855 * If PML is turned on, failure on enabling PML just results in failure
8856 * of creating the vcpu, therefore we can simplify PML logic (by
8857 * avoiding dealing with cases, such as enabling PML partially on vcpus
8858 * for the guest, etc.
8859 */
8860 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08008861 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08008862 if (err)
8863 goto free_vmcs;
8864 }
8865
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008866 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008867
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008868free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07008869 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08008870 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008871free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008872 kfree(vmx->guest_msrs);
8873uninit_vcpu:
8874 kvm_vcpu_uninit(&vmx->vcpu);
8875free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08008876 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10008877 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008878 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008879}
8880
Yang, Sheng002c7f72007-07-31 14:23:01 +03008881static void __init vmx_check_processor_compat(void *rtn)
8882{
8883 struct vmcs_config vmcs_conf;
8884
8885 *(int *)rtn = 0;
8886 if (setup_vmcs_config(&vmcs_conf) < 0)
8887 *(int *)rtn = -EIO;
8888 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
8889 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
8890 smp_processor_id());
8891 *(int *)rtn = -EIO;
8892 }
8893}
8894
Sheng Yang67253af2008-04-25 10:20:22 +08008895static int get_ept_level(void)
8896{
8897 return VMX_EPT_DEFAULT_GAW + 1;
8898}
8899
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008900static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08008901{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008902 u8 cache;
8903 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008904
Sheng Yang522c68c2009-04-27 20:35:43 +08008905 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02008906 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08008907 * 2. EPT with VT-d:
8908 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02008909 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08008910 * b. VT-d with snooping control feature: snooping control feature of
8911 * VT-d engine can guarantee the cache correctness. Just set it
8912 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08008913 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08008914 * consistent with host MTRR
8915 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02008916 if (is_mmio) {
8917 cache = MTRR_TYPE_UNCACHABLE;
8918 goto exit;
8919 }
8920
8921 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008922 ipat = VMX_EPT_IPAT_BIT;
8923 cache = MTRR_TYPE_WRBACK;
8924 goto exit;
8925 }
8926
8927 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
8928 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02008929 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08008930 cache = MTRR_TYPE_WRBACK;
8931 else
8932 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008933 goto exit;
8934 }
8935
Xiao Guangrongff536042015-06-15 16:55:22 +08008936 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008937
8938exit:
8939 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08008940}
8941
Sheng Yang17cc3932010-01-05 19:02:27 +08008942static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02008943{
Sheng Yang878403b2010-01-05 19:02:29 +08008944 if (enable_ept && !cpu_has_vmx_ept_1g_page())
8945 return PT_DIRECTORY_LEVEL;
8946 else
8947 /* For shadow and EPT supported 1GB page */
8948 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02008949}
8950
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008951static void vmcs_set_secondary_exec_control(u32 new_ctl)
8952{
8953 /*
8954 * These bits in the secondary execution controls field
8955 * are dynamic, the others are mostly based on the hypervisor
8956 * architecture and the guest's CPUID. Do not touch the
8957 * dynamic bits.
8958 */
8959 u32 mask =
8960 SECONDARY_EXEC_SHADOW_VMCS |
8961 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
8962 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8963
8964 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8965
8966 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
8967 (new_ctl & ~mask) | (cur_ctl & mask));
8968}
8969
Sheng Yang0e851882009-12-18 16:48:46 +08008970static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
8971{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008972 struct kvm_cpuid_entry2 *best;
8973 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008974 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008975
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008976 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008977 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
8978 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008979 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08008980
Paolo Bonzini8b972652015-09-15 17:34:42 +02008981 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008982 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02008983 vmx->nested.nested_vmx_secondary_ctls_high |=
8984 SECONDARY_EXEC_RDTSCP;
8985 else
8986 vmx->nested.nested_vmx_secondary_ctls_high &=
8987 ~SECONDARY_EXEC_RDTSCP;
8988 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008989 }
Mao, Junjiead756a12012-07-02 01:18:48 +00008990
Mao, Junjiead756a12012-07-02 01:18:48 +00008991 /* Exposing INVPCID only when PCID is exposed */
8992 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
8993 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008994 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
8995 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008996 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008997
Mao, Junjiead756a12012-07-02 01:18:48 +00008998 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00008999 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00009000 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009001
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009002 if (cpu_has_secondary_exec_ctrls())
9003 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009004
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009005 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
9006 if (guest_cpuid_has_pcommit(vcpu))
9007 vmx->nested.nested_vmx_secondary_ctls_high |=
9008 SECONDARY_EXEC_PCOMMIT;
9009 else
9010 vmx->nested.nested_vmx_secondary_ctls_high &=
9011 ~SECONDARY_EXEC_PCOMMIT;
9012 }
Sheng Yang0e851882009-12-18 16:48:46 +08009013}
9014
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009015static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9016{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009017 if (func == 1 && nested)
9018 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009019}
9020
Yang Zhang25d92082013-08-06 12:00:32 +03009021static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9022 struct x86_exception *fault)
9023{
Jan Kiszka533558b2014-01-04 18:47:20 +01009024 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9025 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009026
9027 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009028 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009029 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009030 exit_reason = EXIT_REASON_EPT_VIOLATION;
9031 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009032 vmcs12->guest_physical_address = fault->address;
9033}
9034
Nadav Har'El155a97a2013-08-05 11:07:16 +03009035/* Callbacks for nested_ept_init_mmu_context: */
9036
9037static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9038{
9039 /* return the page table to be shadowed - in our case, EPT12 */
9040 return get_vmcs12(vcpu)->ept_pointer;
9041}
9042
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009043static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009044{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009045 WARN_ON(mmu_is_nested(vcpu));
9046 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009047 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9048 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009049 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9050 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9051 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9052
9053 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009054}
9055
9056static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9057{
9058 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9059}
9060
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009061static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9062 u16 error_code)
9063{
9064 bool inequality, bit;
9065
9066 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9067 inequality =
9068 (error_code & vmcs12->page_fault_error_code_mask) !=
9069 vmcs12->page_fault_error_code_match;
9070 return inequality ^ bit;
9071}
9072
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009073static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9074 struct x86_exception *fault)
9075{
9076 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9077
9078 WARN_ON(!is_guest_mode(vcpu));
9079
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009080 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009081 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9082 vmcs_read32(VM_EXIT_INTR_INFO),
9083 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009084 else
9085 kvm_inject_page_fault(vcpu, fault);
9086}
9087
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009088static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9089 struct vmcs12 *vmcs12)
9090{
9091 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009092 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009093
9094 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009095 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9096 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009097 return false;
9098
9099 /*
9100 * Translate L1 physical address to host physical
9101 * address for vmcs02. Keep the page pinned, so this
9102 * physical address remains valid. We keep a reference
9103 * to it so we can release it later.
9104 */
9105 if (vmx->nested.apic_access_page) /* shouldn't happen */
9106 nested_release_page(vmx->nested.apic_access_page);
9107 vmx->nested.apic_access_page =
9108 nested_get_page(vcpu, vmcs12->apic_access_addr);
9109 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009110
9111 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009112 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9113 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009114 return false;
9115
9116 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9117 nested_release_page(vmx->nested.virtual_apic_page);
9118 vmx->nested.virtual_apic_page =
9119 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9120
9121 /*
9122 * Failing the vm entry is _not_ what the processor does
9123 * but it's basically the only possibility we have.
9124 * We could still enter the guest if CR8 load exits are
9125 * enabled, CR8 store exits are enabled, and virtualize APIC
9126 * access is disabled; in this case the processor would never
9127 * use the TPR shadow and we could simply clear the bit from
9128 * the execution control. But such a configuration is useless,
9129 * so let's keep the code simple.
9130 */
9131 if (!vmx->nested.virtual_apic_page)
9132 return false;
9133 }
9134
Wincy Van705699a2015-02-03 23:58:17 +08009135 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009136 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9137 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009138 return false;
9139
9140 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9141 kunmap(vmx->nested.pi_desc_page);
9142 nested_release_page(vmx->nested.pi_desc_page);
9143 }
9144 vmx->nested.pi_desc_page =
9145 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9146 if (!vmx->nested.pi_desc_page)
9147 return false;
9148
9149 vmx->nested.pi_desc =
9150 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9151 if (!vmx->nested.pi_desc) {
9152 nested_release_page_clean(vmx->nested.pi_desc_page);
9153 return false;
9154 }
9155 vmx->nested.pi_desc =
9156 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9157 (unsigned long)(vmcs12->posted_intr_desc_addr &
9158 (PAGE_SIZE - 1)));
9159 }
9160
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009161 return true;
9162}
9163
Jan Kiszkaf4124502014-03-07 20:03:13 +01009164static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9165{
9166 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9167 struct vcpu_vmx *vmx = to_vmx(vcpu);
9168
9169 if (vcpu->arch.virtual_tsc_khz == 0)
9170 return;
9171
9172 /* Make sure short timeouts reliably trigger an immediate vmexit.
9173 * hrtimer_start does not guarantee this. */
9174 if (preemption_timeout <= 1) {
9175 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9176 return;
9177 }
9178
9179 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9180 preemption_timeout *= 1000000;
9181 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9182 hrtimer_start(&vmx->nested.preemption_timer,
9183 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9184}
9185
Wincy Van3af18d92015-02-03 23:49:31 +08009186static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9187 struct vmcs12 *vmcs12)
9188{
9189 int maxphyaddr;
9190 u64 addr;
9191
9192 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9193 return 0;
9194
9195 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9196 WARN_ON(1);
9197 return -EINVAL;
9198 }
9199 maxphyaddr = cpuid_maxphyaddr(vcpu);
9200
9201 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9202 ((addr + PAGE_SIZE) >> maxphyaddr))
9203 return -EINVAL;
9204
9205 return 0;
9206}
9207
9208/*
9209 * Merge L0's and L1's MSR bitmap, return false to indicate that
9210 * we do not use the hardware.
9211 */
9212static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9213 struct vmcs12 *vmcs12)
9214{
Wincy Van82f0dd42015-02-03 23:57:18 +08009215 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009216 struct page *page;
9217 unsigned long *msr_bitmap;
9218
9219 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9220 return false;
9221
9222 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9223 if (!page) {
9224 WARN_ON(1);
9225 return false;
9226 }
9227 msr_bitmap = (unsigned long *)kmap(page);
9228 if (!msr_bitmap) {
9229 nested_release_page_clean(page);
9230 WARN_ON(1);
9231 return false;
9232 }
9233
9234 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009235 if (nested_cpu_has_apic_reg_virt(vmcs12))
9236 for (msr = 0x800; msr <= 0x8ff; msr++)
9237 nested_vmx_disable_intercept_for_msr(
9238 msr_bitmap,
9239 vmx_msr_bitmap_nested,
9240 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009241 /* TPR is allowed */
9242 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9243 vmx_msr_bitmap_nested,
9244 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9245 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009246 if (nested_cpu_has_vid(vmcs12)) {
9247 /* EOI and self-IPI are allowed */
9248 nested_vmx_disable_intercept_for_msr(
9249 msr_bitmap,
9250 vmx_msr_bitmap_nested,
9251 APIC_BASE_MSR + (APIC_EOI >> 4),
9252 MSR_TYPE_W);
9253 nested_vmx_disable_intercept_for_msr(
9254 msr_bitmap,
9255 vmx_msr_bitmap_nested,
9256 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9257 MSR_TYPE_W);
9258 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009259 } else {
9260 /*
9261 * Enable reading intercept of all the x2apic
9262 * MSRs. We should not rely on vmcs12 to do any
9263 * optimizations here, it may have been modified
9264 * by L1.
9265 */
9266 for (msr = 0x800; msr <= 0x8ff; msr++)
9267 __vmx_enable_intercept_for_msr(
9268 vmx_msr_bitmap_nested,
9269 msr,
9270 MSR_TYPE_R);
9271
Wincy Vanf2b93282015-02-03 23:56:03 +08009272 __vmx_enable_intercept_for_msr(
9273 vmx_msr_bitmap_nested,
9274 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009275 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009276 __vmx_enable_intercept_for_msr(
9277 vmx_msr_bitmap_nested,
9278 APIC_BASE_MSR + (APIC_EOI >> 4),
9279 MSR_TYPE_W);
9280 __vmx_enable_intercept_for_msr(
9281 vmx_msr_bitmap_nested,
9282 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9283 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009284 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009285 kunmap(page);
9286 nested_release_page_clean(page);
9287
9288 return true;
9289}
9290
9291static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9292 struct vmcs12 *vmcs12)
9293{
Wincy Van82f0dd42015-02-03 23:57:18 +08009294 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009295 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009296 !nested_cpu_has_vid(vmcs12) &&
9297 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009298 return 0;
9299
9300 /*
9301 * If virtualize x2apic mode is enabled,
9302 * virtualize apic access must be disabled.
9303 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009304 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9305 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009306 return -EINVAL;
9307
Wincy Van608406e2015-02-03 23:57:51 +08009308 /*
9309 * If virtual interrupt delivery is enabled,
9310 * we must exit on external interrupts.
9311 */
9312 if (nested_cpu_has_vid(vmcs12) &&
9313 !nested_exit_on_intr(vcpu))
9314 return -EINVAL;
9315
Wincy Van705699a2015-02-03 23:58:17 +08009316 /*
9317 * bits 15:8 should be zero in posted_intr_nv,
9318 * the descriptor address has been already checked
9319 * in nested_get_vmcs12_pages.
9320 */
9321 if (nested_cpu_has_posted_intr(vmcs12) &&
9322 (!nested_cpu_has_vid(vmcs12) ||
9323 !nested_exit_intr_ack_set(vcpu) ||
9324 vmcs12->posted_intr_nv & 0xff00))
9325 return -EINVAL;
9326
Wincy Vanf2b93282015-02-03 23:56:03 +08009327 /* tpr shadow is needed by all apicv features. */
9328 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9329 return -EINVAL;
9330
9331 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009332}
9333
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009334static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9335 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009336 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009337{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009338 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009339 u64 count, addr;
9340
9341 if (vmcs12_read_any(vcpu, count_field, &count) ||
9342 vmcs12_read_any(vcpu, addr_field, &addr)) {
9343 WARN_ON(1);
9344 return -EINVAL;
9345 }
9346 if (count == 0)
9347 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009348 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009349 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9350 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9351 pr_warn_ratelimited(
9352 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9353 addr_field, maxphyaddr, count, addr);
9354 return -EINVAL;
9355 }
9356 return 0;
9357}
9358
9359static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9360 struct vmcs12 *vmcs12)
9361{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009362 if (vmcs12->vm_exit_msr_load_count == 0 &&
9363 vmcs12->vm_exit_msr_store_count == 0 &&
9364 vmcs12->vm_entry_msr_load_count == 0)
9365 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009366 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009367 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009368 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009369 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009370 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009371 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009372 return -EINVAL;
9373 return 0;
9374}
9375
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009376static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9377 struct vmx_msr_entry *e)
9378{
9379 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009380 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009381 return -EINVAL;
9382 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9383 e->index == MSR_IA32_UCODE_REV)
9384 return -EINVAL;
9385 if (e->reserved != 0)
9386 return -EINVAL;
9387 return 0;
9388}
9389
9390static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9391 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009392{
9393 if (e->index == MSR_FS_BASE ||
9394 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009395 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9396 nested_vmx_msr_check_common(vcpu, e))
9397 return -EINVAL;
9398 return 0;
9399}
9400
9401static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9402 struct vmx_msr_entry *e)
9403{
9404 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9405 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009406 return -EINVAL;
9407 return 0;
9408}
9409
9410/*
9411 * Load guest's/host's msr at nested entry/exit.
9412 * return 0 for success, entry index for failure.
9413 */
9414static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9415{
9416 u32 i;
9417 struct vmx_msr_entry e;
9418 struct msr_data msr;
9419
9420 msr.host_initiated = false;
9421 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009422 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9423 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009424 pr_warn_ratelimited(
9425 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9426 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009427 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009428 }
9429 if (nested_vmx_load_msr_check(vcpu, &e)) {
9430 pr_warn_ratelimited(
9431 "%s check failed (%u, 0x%x, 0x%x)\n",
9432 __func__, i, e.index, e.reserved);
9433 goto fail;
9434 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009435 msr.index = e.index;
9436 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009437 if (kvm_set_msr(vcpu, &msr)) {
9438 pr_warn_ratelimited(
9439 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9440 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009441 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009442 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009443 }
9444 return 0;
9445fail:
9446 return i + 1;
9447}
9448
9449static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9450{
9451 u32 i;
9452 struct vmx_msr_entry e;
9453
9454 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009455 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009456 if (kvm_vcpu_read_guest(vcpu,
9457 gpa + i * sizeof(e),
9458 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009459 pr_warn_ratelimited(
9460 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9461 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009462 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009463 }
9464 if (nested_vmx_store_msr_check(vcpu, &e)) {
9465 pr_warn_ratelimited(
9466 "%s check failed (%u, 0x%x, 0x%x)\n",
9467 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009468 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009469 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009470 msr_info.host_initiated = false;
9471 msr_info.index = e.index;
9472 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009473 pr_warn_ratelimited(
9474 "%s cannot read MSR (%u, 0x%x)\n",
9475 __func__, i, e.index);
9476 return -EINVAL;
9477 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009478 if (kvm_vcpu_write_guest(vcpu,
9479 gpa + i * sizeof(e) +
9480 offsetof(struct vmx_msr_entry, value),
9481 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009482 pr_warn_ratelimited(
9483 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009484 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009485 return -EINVAL;
9486 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009487 }
9488 return 0;
9489}
9490
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009491/*
9492 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9493 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009494 * 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 +03009495 * guest in a way that will both be appropriate to L1's requests, and our
9496 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9497 * function also has additional necessary side-effects, like setting various
9498 * vcpu->arch fields.
9499 */
9500static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9501{
9502 struct vcpu_vmx *vmx = to_vmx(vcpu);
9503 u32 exec_control;
9504
9505 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9506 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9507 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9508 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9509 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9510 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9511 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9512 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9513 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9514 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9515 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9516 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9517 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9518 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9519 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9520 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9521 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9522 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9523 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9524 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9525 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9526 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9527 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9528 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9529 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9530 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9531 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9532 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9533 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9534 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9535 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9536 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9537 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9538 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9539 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9540 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9541
Jan Kiszka2996fca2014-06-16 13:59:43 +02009542 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9543 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9544 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9545 } else {
9546 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9547 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9548 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009549 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9550 vmcs12->vm_entry_intr_info_field);
9551 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9552 vmcs12->vm_entry_exception_error_code);
9553 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9554 vmcs12->vm_entry_instruction_len);
9555 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9556 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009557 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009558 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009559 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9560 vmcs12->guest_pending_dbg_exceptions);
9561 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9562 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9563
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009564 if (nested_cpu_has_xsaves(vmcs12))
9565 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009566 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9567
Jan Kiszkaf4124502014-03-07 20:03:13 +01009568 exec_control = vmcs12->pin_based_vm_exec_control;
9569 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009570 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9571
9572 if (nested_cpu_has_posted_intr(vmcs12)) {
9573 /*
9574 * Note that we use L0's vector here and in
9575 * vmx_deliver_nested_posted_interrupt.
9576 */
9577 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9578 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009579 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009580 vmcs_write64(POSTED_INTR_DESC_ADDR,
9581 page_to_phys(vmx->nested.pi_desc_page) +
9582 (unsigned long)(vmcs12->posted_intr_desc_addr &
9583 (PAGE_SIZE - 1)));
9584 } else
9585 exec_control &= ~PIN_BASED_POSTED_INTR;
9586
Jan Kiszkaf4124502014-03-07 20:03:13 +01009587 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009588
Jan Kiszkaf4124502014-03-07 20:03:13 +01009589 vmx->nested.preemption_timer_expired = false;
9590 if (nested_cpu_has_preemption_timer(vmcs12))
9591 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009592
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009593 /*
9594 * Whether page-faults are trapped is determined by a combination of
9595 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9596 * If enable_ept, L0 doesn't care about page faults and we should
9597 * set all of these to L1's desires. However, if !enable_ept, L0 does
9598 * care about (at least some) page faults, and because it is not easy
9599 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9600 * to exit on each and every L2 page fault. This is done by setting
9601 * MASK=MATCH=0 and (see below) EB.PF=1.
9602 * Note that below we don't need special code to set EB.PF beyond the
9603 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9604 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9605 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9606 *
9607 * A problem with this approach (when !enable_ept) is that L1 may be
9608 * injected with more page faults than it asked for. This could have
9609 * caused problems, but in practice existing hypervisors don't care.
9610 * To fix this, we will need to emulate the PFEC checking (on the L1
9611 * page tables), using walk_addr(), when injecting PFs to L1.
9612 */
9613 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9614 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9615 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9616 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9617
9618 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf4124502014-03-07 20:03:13 +01009619 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009620
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009621 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009622 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009623 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009624 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009625 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9626 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009627 if (nested_cpu_has(vmcs12,
9628 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9629 exec_control |= vmcs12->secondary_vm_exec_control;
9630
9631 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9632 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009633 * If translation failed, no matter: This feature asks
9634 * to exit when accessing the given address, and if it
9635 * can never be accessed, this feature won't do
9636 * anything anyway.
9637 */
9638 if (!vmx->nested.apic_access_page)
9639 exec_control &=
9640 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9641 else
9642 vmcs_write64(APIC_ACCESS_ADDR,
9643 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009644 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009645 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009646 exec_control |=
9647 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009648 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009649 }
9650
Wincy Van608406e2015-02-03 23:57:51 +08009651 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9652 vmcs_write64(EOI_EXIT_BITMAP0,
9653 vmcs12->eoi_exit_bitmap0);
9654 vmcs_write64(EOI_EXIT_BITMAP1,
9655 vmcs12->eoi_exit_bitmap1);
9656 vmcs_write64(EOI_EXIT_BITMAP2,
9657 vmcs12->eoi_exit_bitmap2);
9658 vmcs_write64(EOI_EXIT_BITMAP3,
9659 vmcs12->eoi_exit_bitmap3);
9660 vmcs_write16(GUEST_INTR_STATUS,
9661 vmcs12->guest_intr_status);
9662 }
9663
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009664 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9665 }
9666
9667
9668 /*
9669 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9670 * Some constant fields are set here by vmx_set_constant_host_state().
9671 * Other fields are different per CPU, and will be set later when
9672 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9673 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009674 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009675
9676 /*
9677 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9678 * entry, but only if the current (host) sp changed from the value
9679 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9680 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9681 * here we just force the write to happen on entry.
9682 */
9683 vmx->host_rsp = 0;
9684
9685 exec_control = vmx_exec_control(vmx); /* L0's desires */
9686 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9687 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9688 exec_control &= ~CPU_BASED_TPR_SHADOW;
9689 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009690
9691 if (exec_control & CPU_BASED_TPR_SHADOW) {
9692 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9693 page_to_phys(vmx->nested.virtual_apic_page));
9694 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9695 }
9696
Wincy Van3af18d92015-02-03 23:49:31 +08009697 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009698 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9699 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9700 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009701 } else
9702 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9703
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009704 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009705 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009706 * Rather, exit every time.
9707 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009708 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9709 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9710
9711 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9712
9713 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9714 * bitwise-or of what L1 wants to trap for L2, and what we want to
9715 * trap. Note that CR0.TS also needs updating - we do this later.
9716 */
9717 update_exception_bitmap(vcpu);
9718 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9719 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9720
Nadav Har'El8049d652013-08-05 11:07:06 +03009721 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9722 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9723 * bits are further modified by vmx_set_efer() below.
9724 */
Jan Kiszkaf4124502014-03-07 20:03:13 +01009725 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009726
9727 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9728 * emulated by vmx_set_efer(), below.
9729 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009730 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009731 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9732 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009733 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9734
Jan Kiszka44811c02013-08-04 17:17:27 +02009735 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009736 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009737 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9738 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009739 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9740
9741
9742 set_cr4_guest_host_mask(vmx);
9743
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009744 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9745 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9746
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009747 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9748 vmcs_write64(TSC_OFFSET,
9749 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9750 else
9751 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009752
9753 if (enable_vpid) {
9754 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009755 * There is no direct mapping between vpid02 and vpid12, the
9756 * vpid02 is per-vCPU for L0 and reused while the value of
9757 * vpid12 is changed w/ one invvpid during nested vmentry.
9758 * The vpid12 is allocated by L1 for L2, so it will not
9759 * influence global bitmap(for vpid01 and vpid02 allocation)
9760 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009761 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009762 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9763 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9764 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9765 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9766 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9767 }
9768 } else {
9769 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9770 vmx_flush_tlb(vcpu);
9771 }
9772
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009773 }
9774
Nadav Har'El155a97a2013-08-05 11:07:16 +03009775 if (nested_cpu_has_ept(vmcs12)) {
9776 kvm_mmu_unload(vcpu);
9777 nested_ept_init_mmu_context(vcpu);
9778 }
9779
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009780 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
9781 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +02009782 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009783 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
9784 else
9785 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
9786 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
9787 vmx_set_efer(vcpu, vcpu->arch.efer);
9788
9789 /*
9790 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
9791 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
9792 * The CR0_READ_SHADOW is what L2 should have expected to read given
9793 * the specifications by L1; It's not enough to take
9794 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
9795 * have more bits than L1 expected.
9796 */
9797 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
9798 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
9799
9800 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
9801 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
9802
9803 /* shadow page tables on either EPT or shadow page tables */
9804 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
9805 kvm_mmu_reset_context(vcpu);
9806
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009807 if (!enable_ept)
9808 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
9809
Nadav Har'El3633cfc2013-08-05 11:07:07 +03009810 /*
9811 * L1 may access the L2's PDPTR, so save them to construct vmcs12
9812 */
9813 if (enable_ept) {
9814 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
9815 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
9816 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
9817 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
9818 }
9819
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009820 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
9821 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
9822}
9823
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009824/*
9825 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
9826 * for running an L2 nested guest.
9827 */
9828static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
9829{
9830 struct vmcs12 *vmcs12;
9831 struct vcpu_vmx *vmx = to_vmx(vcpu);
9832 int cpu;
9833 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +02009834 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +03009835 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009836
9837 if (!nested_vmx_check_permission(vcpu) ||
9838 !nested_vmx_check_vmcs12(vcpu))
9839 return 1;
9840
9841 skip_emulated_instruction(vcpu);
9842 vmcs12 = get_vmcs12(vcpu);
9843
Abel Gordon012f83c2013-04-18 14:39:25 +03009844 if (enable_shadow_vmcs)
9845 copy_shadow_to_vmcs12(vmx);
9846
Nadav Har'El7c177932011-05-25 23:12:04 +03009847 /*
9848 * The nested entry process starts with enforcing various prerequisites
9849 * on vmcs12 as required by the Intel SDM, and act appropriately when
9850 * they fail: As the SDM explains, some conditions should cause the
9851 * instruction to fail, while others will cause the instruction to seem
9852 * to succeed, but return an EXIT_REASON_INVALID_STATE.
9853 * To speed up the normal (success) code path, we should avoid checking
9854 * for misconfigurations which will anyway be caught by the processor
9855 * when using the merged vmcs02.
9856 */
9857 if (vmcs12->launch_state == launch) {
9858 nested_vmx_failValid(vcpu,
9859 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
9860 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
9861 return 1;
9862 }
9863
Jan Kiszka6dfacad2013-12-04 08:58:54 +01009864 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
9865 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +02009866 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9867 return 1;
9868 }
9869
Wincy Van3af18d92015-02-03 23:49:31 +08009870 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009871 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9872 return 1;
9873 }
9874
Wincy Van3af18d92015-02-03 23:49:31 +08009875 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009876 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9877 return 1;
9878 }
9879
Wincy Vanf2b93282015-02-03 23:56:03 +08009880 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
9881 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9882 return 1;
9883 }
9884
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009885 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
9886 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9887 return 1;
9888 }
9889
Nadav Har'El7c177932011-05-25 23:12:04 +03009890 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009891 vmx->nested.nested_vmx_true_procbased_ctls_low,
9892 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009893 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009894 vmx->nested.nested_vmx_secondary_ctls_low,
9895 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009896 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009897 vmx->nested.nested_vmx_pinbased_ctls_low,
9898 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009899 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009900 vmx->nested.nested_vmx_true_exit_ctls_low,
9901 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009902 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009903 vmx->nested.nested_vmx_true_entry_ctls_low,
9904 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +03009905 {
9906 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9907 return 1;
9908 }
9909
9910 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
9911 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9912 nested_vmx_failValid(vcpu,
9913 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
9914 return 1;
9915 }
9916
Wincy Vanb9c237b2015-02-03 23:56:30 +08009917 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009918 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9919 nested_vmx_entry_failure(vcpu, vmcs12,
9920 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9921 return 1;
9922 }
9923 if (vmcs12->vmcs_link_pointer != -1ull) {
9924 nested_vmx_entry_failure(vcpu, vmcs12,
9925 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
9926 return 1;
9927 }
9928
9929 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +02009930 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +02009931 * are performed on the field for the IA32_EFER MSR:
9932 * - Bits reserved in the IA32_EFER MSR must be 0.
9933 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
9934 * the IA-32e mode guest VM-exit control. It must also be identical
9935 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
9936 * CR0.PG) is 1.
9937 */
9938 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
9939 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
9940 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
9941 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
9942 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
9943 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
9944 nested_vmx_entry_failure(vcpu, vmcs12,
9945 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9946 return 1;
9947 }
9948 }
9949
9950 /*
9951 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
9952 * IA32_EFER MSR must be 0 in the field for that register. In addition,
9953 * the values of the LMA and LME bits in the field must each be that of
9954 * the host address-space size VM-exit control.
9955 */
9956 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
9957 ia32e = (vmcs12->vm_exit_controls &
9958 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
9959 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
9960 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
9961 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
9962 nested_vmx_entry_failure(vcpu, vmcs12,
9963 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9964 return 1;
9965 }
9966 }
9967
9968 /*
Nadav Har'El7c177932011-05-25 23:12:04 +03009969 * We're finally done with prerequisite checking, and can start with
9970 * the nested entry.
9971 */
9972
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009973 vmcs02 = nested_get_current_vmcs02(vmx);
9974 if (!vmcs02)
9975 return -ENOMEM;
9976
9977 enter_guest_mode(vcpu);
9978
9979 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
9980
Jan Kiszka2996fca2014-06-16 13:59:43 +02009981 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
9982 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
9983
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009984 cpu = get_cpu();
9985 vmx->loaded_vmcs = vmcs02;
9986 vmx_vcpu_put(vcpu);
9987 vmx_vcpu_load(vcpu, cpu);
9988 vcpu->cpu = cpu;
9989 put_cpu();
9990
Jan Kiszka36c3cc42013-02-23 22:35:37 +01009991 vmx_segment_cache_clear(vmx);
9992
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009993 prepare_vmcs02(vcpu, vmcs12);
9994
Wincy Vanff651cb2014-12-11 08:52:58 +03009995 msr_entry_idx = nested_vmx_load_msr(vcpu,
9996 vmcs12->vm_entry_msr_load_addr,
9997 vmcs12->vm_entry_msr_load_count);
9998 if (msr_entry_idx) {
9999 leave_guest_mode(vcpu);
10000 vmx_load_vmcs01(vcpu);
10001 nested_vmx_entry_failure(vcpu, vmcs12,
10002 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10003 return 1;
10004 }
10005
10006 vmcs12->launch_state = 1;
10007
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010008 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010009 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010010
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010011 vmx->nested.nested_run_pending = 1;
10012
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010013 /*
10014 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10015 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10016 * returned as far as L1 is concerned. It will only return (and set
10017 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10018 */
10019 return 1;
10020}
10021
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010022/*
10023 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10024 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10025 * This function returns the new value we should put in vmcs12.guest_cr0.
10026 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10027 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10028 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10029 * didn't trap the bit, because if L1 did, so would L0).
10030 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10031 * been modified by L2, and L1 knows it. So just leave the old value of
10032 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10033 * isn't relevant, because if L0 traps this bit it can set it to anything.
10034 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10035 * changed these bits, and therefore they need to be updated, but L0
10036 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10037 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10038 */
10039static inline unsigned long
10040vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10041{
10042 return
10043 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10044 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10045 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10046 vcpu->arch.cr0_guest_owned_bits));
10047}
10048
10049static inline unsigned long
10050vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10051{
10052 return
10053 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10054 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10055 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10056 vcpu->arch.cr4_guest_owned_bits));
10057}
10058
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010059static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10060 struct vmcs12 *vmcs12)
10061{
10062 u32 idt_vectoring;
10063 unsigned int nr;
10064
Gleb Natapov851eb6672013-09-25 12:51:34 +030010065 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010066 nr = vcpu->arch.exception.nr;
10067 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10068
10069 if (kvm_exception_is_soft(nr)) {
10070 vmcs12->vm_exit_instruction_len =
10071 vcpu->arch.event_exit_inst_len;
10072 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10073 } else
10074 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10075
10076 if (vcpu->arch.exception.has_error_code) {
10077 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10078 vmcs12->idt_vectoring_error_code =
10079 vcpu->arch.exception.error_code;
10080 }
10081
10082 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010083 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010084 vmcs12->idt_vectoring_info_field =
10085 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10086 } else if (vcpu->arch.interrupt.pending) {
10087 nr = vcpu->arch.interrupt.nr;
10088 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10089
10090 if (vcpu->arch.interrupt.soft) {
10091 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10092 vmcs12->vm_entry_instruction_len =
10093 vcpu->arch.event_exit_inst_len;
10094 } else
10095 idt_vectoring |= INTR_TYPE_EXT_INTR;
10096
10097 vmcs12->idt_vectoring_info_field = idt_vectoring;
10098 }
10099}
10100
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010101static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10102{
10103 struct vcpu_vmx *vmx = to_vmx(vcpu);
10104
Jan Kiszkaf4124502014-03-07 20:03:13 +010010105 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10106 vmx->nested.preemption_timer_expired) {
10107 if (vmx->nested.nested_run_pending)
10108 return -EBUSY;
10109 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10110 return 0;
10111 }
10112
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010113 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010114 if (vmx->nested.nested_run_pending ||
10115 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010116 return -EBUSY;
10117 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10118 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10119 INTR_INFO_VALID_MASK, 0);
10120 /*
10121 * The NMI-triggered VM exit counts as injection:
10122 * clear this one and block further NMIs.
10123 */
10124 vcpu->arch.nmi_pending = 0;
10125 vmx_set_nmi_mask(vcpu, true);
10126 return 0;
10127 }
10128
10129 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10130 nested_exit_on_intr(vcpu)) {
10131 if (vmx->nested.nested_run_pending)
10132 return -EBUSY;
10133 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010134 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010135 }
10136
Wincy Van705699a2015-02-03 23:58:17 +080010137 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010138}
10139
Jan Kiszkaf4124502014-03-07 20:03:13 +010010140static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10141{
10142 ktime_t remaining =
10143 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10144 u64 value;
10145
10146 if (ktime_to_ns(remaining) <= 0)
10147 return 0;
10148
10149 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10150 do_div(value, 1000000);
10151 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10152}
10153
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010154/*
10155 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10156 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10157 * and this function updates it to reflect the changes to the guest state while
10158 * L2 was running (and perhaps made some exits which were handled directly by L0
10159 * without going back to L1), and to reflect the exit reason.
10160 * Note that we do not have to copy here all VMCS fields, just those that
10161 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10162 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10163 * which already writes to vmcs12 directly.
10164 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010165static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10166 u32 exit_reason, u32 exit_intr_info,
10167 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010168{
10169 /* update guest state fields: */
10170 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10171 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10172
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010173 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10174 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10175 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10176
10177 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10178 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10179 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10180 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10181 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10182 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10183 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10184 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10185 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10186 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10187 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10188 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10189 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10190 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10191 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10192 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10193 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10194 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10195 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10196 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10197 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10198 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10199 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10200 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10201 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10202 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10203 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10204 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10205 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10206 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10207 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10208 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10209 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10210 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10211 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10212 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10213
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010214 vmcs12->guest_interruptibility_info =
10215 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10216 vmcs12->guest_pending_dbg_exceptions =
10217 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010218 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10219 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10220 else
10221 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010222
Jan Kiszkaf4124502014-03-07 20:03:13 +010010223 if (nested_cpu_has_preemption_timer(vmcs12)) {
10224 if (vmcs12->vm_exit_controls &
10225 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10226 vmcs12->vmx_preemption_timer_value =
10227 vmx_get_preemption_timer_value(vcpu);
10228 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10229 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010230
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010231 /*
10232 * In some cases (usually, nested EPT), L2 is allowed to change its
10233 * own CR3 without exiting. If it has changed it, we must keep it.
10234 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10235 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10236 *
10237 * Additionally, restore L2's PDPTR to vmcs12.
10238 */
10239 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010240 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010241 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10242 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10243 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10244 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10245 }
10246
Wincy Van608406e2015-02-03 23:57:51 +080010247 if (nested_cpu_has_vid(vmcs12))
10248 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10249
Jan Kiszkac18911a2013-03-13 16:06:41 +010010250 vmcs12->vm_entry_controls =
10251 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010252 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010253
Jan Kiszka2996fca2014-06-16 13:59:43 +020010254 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10255 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10256 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10257 }
10258
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010259 /* TODO: These cannot have changed unless we have MSR bitmaps and
10260 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010261 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010262 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010263 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10264 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010265 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10266 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10267 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010268 if (vmx_mpx_supported())
10269 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010270 if (nested_cpu_has_xsaves(vmcs12))
10271 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010272
10273 /* update exit information fields: */
10274
Jan Kiszka533558b2014-01-04 18:47:20 +010010275 vmcs12->vm_exit_reason = exit_reason;
10276 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010277
Jan Kiszka533558b2014-01-04 18:47:20 +010010278 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010279 if ((vmcs12->vm_exit_intr_info &
10280 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10281 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10282 vmcs12->vm_exit_intr_error_code =
10283 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010284 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010285 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10286 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10287
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010288 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10289 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10290 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010291 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010292
10293 /*
10294 * Transfer the event that L0 or L1 may wanted to inject into
10295 * L2 to IDT_VECTORING_INFO_FIELD.
10296 */
10297 vmcs12_save_pending_event(vcpu, vmcs12);
10298 }
10299
10300 /*
10301 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10302 * preserved above and would only end up incorrectly in L1.
10303 */
10304 vcpu->arch.nmi_injected = false;
10305 kvm_clear_exception_queue(vcpu);
10306 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010307}
10308
10309/*
10310 * A part of what we need to when the nested L2 guest exits and we want to
10311 * run its L1 parent, is to reset L1's guest state to the host state specified
10312 * in vmcs12.
10313 * This function is to be called not only on normal nested exit, but also on
10314 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10315 * Failures During or After Loading Guest State").
10316 * This function should be called when the active VMCS is L1's (vmcs01).
10317 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010318static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10319 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010320{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010321 struct kvm_segment seg;
10322
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010323 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10324 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010325 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010326 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10327 else
10328 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10329 vmx_set_efer(vcpu, vcpu->arch.efer);
10330
10331 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10332 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010333 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010334 /*
10335 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10336 * actually changed, because it depends on the current state of
10337 * fpu_active (which may have changed).
10338 * Note that vmx_set_cr0 refers to efer set above.
10339 */
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020010340 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010341 /*
10342 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10343 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10344 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10345 */
10346 update_exception_bitmap(vcpu);
10347 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10348 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10349
10350 /*
10351 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10352 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10353 */
10354 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10355 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10356
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010357 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010358
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010359 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10360 kvm_mmu_reset_context(vcpu);
10361
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010362 if (!enable_ept)
10363 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10364
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010365 if (enable_vpid) {
10366 /*
10367 * Trivially support vpid by letting L2s share their parent
10368 * L1's vpid. TODO: move to a more elaborate solution, giving
10369 * each L2 its own vpid and exposing the vpid feature to L1.
10370 */
10371 vmx_flush_tlb(vcpu);
10372 }
10373
10374
10375 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10376 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10377 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10378 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10379 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010380
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010381 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10382 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10383 vmcs_write64(GUEST_BNDCFGS, 0);
10384
Jan Kiszka44811c02013-08-04 17:17:27 +020010385 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010386 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010387 vcpu->arch.pat = vmcs12->host_ia32_pat;
10388 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010389 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10390 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10391 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010392
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010393 /* Set L1 segment info according to Intel SDM
10394 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10395 seg = (struct kvm_segment) {
10396 .base = 0,
10397 .limit = 0xFFFFFFFF,
10398 .selector = vmcs12->host_cs_selector,
10399 .type = 11,
10400 .present = 1,
10401 .s = 1,
10402 .g = 1
10403 };
10404 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10405 seg.l = 1;
10406 else
10407 seg.db = 1;
10408 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10409 seg = (struct kvm_segment) {
10410 .base = 0,
10411 .limit = 0xFFFFFFFF,
10412 .type = 3,
10413 .present = 1,
10414 .s = 1,
10415 .db = 1,
10416 .g = 1
10417 };
10418 seg.selector = vmcs12->host_ds_selector;
10419 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10420 seg.selector = vmcs12->host_es_selector;
10421 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10422 seg.selector = vmcs12->host_ss_selector;
10423 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10424 seg.selector = vmcs12->host_fs_selector;
10425 seg.base = vmcs12->host_fs_base;
10426 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10427 seg.selector = vmcs12->host_gs_selector;
10428 seg.base = vmcs12->host_gs_base;
10429 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10430 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010431 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010432 .limit = 0x67,
10433 .selector = vmcs12->host_tr_selector,
10434 .type = 11,
10435 .present = 1
10436 };
10437 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10438
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010439 kvm_set_dr(vcpu, 7, 0x400);
10440 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010441
Wincy Van3af18d92015-02-03 23:49:31 +080010442 if (cpu_has_vmx_msr_bitmap())
10443 vmx_set_msr_bitmap(vcpu);
10444
Wincy Vanff651cb2014-12-11 08:52:58 +030010445 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10446 vmcs12->vm_exit_msr_load_count))
10447 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010448}
10449
10450/*
10451 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10452 * and modify vmcs12 to make it see what it would expect to see there if
10453 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10454 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010455static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10456 u32 exit_intr_info,
10457 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010458{
10459 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010460 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10461
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010462 /* trying to cancel vmlaunch/vmresume is a bug */
10463 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10464
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010465 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010466 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10467 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010468
Wincy Vanff651cb2014-12-11 08:52:58 +030010469 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10470 vmcs12->vm_exit_msr_store_count))
10471 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10472
Wanpeng Lif3380ca2014-08-05 12:42:23 +080010473 vmx_load_vmcs01(vcpu);
10474
Bandan Das77b0f5d2014-04-19 18:17:45 -040010475 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10476 && nested_exit_intr_ack_set(vcpu)) {
10477 int irq = kvm_cpu_get_interrupt(vcpu);
10478 WARN_ON(irq < 0);
10479 vmcs12->vm_exit_intr_info = irq |
10480 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10481 }
10482
Jan Kiszka542060e2014-01-04 18:47:21 +010010483 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10484 vmcs12->exit_qualification,
10485 vmcs12->idt_vectoring_info_field,
10486 vmcs12->vm_exit_intr_info,
10487 vmcs12->vm_exit_intr_error_code,
10488 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010489
Gleb Natapov2961e8762013-11-25 15:37:13 +020010490 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10491 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010492 vmx_segment_cache_clear(vmx);
10493
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010494 /* if no vmcs02 cache requested, remove the one we used */
10495 if (VMCS02_POOL_SIZE == 0)
10496 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10497
10498 load_vmcs12_host_state(vcpu, vmcs12);
10499
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010500 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010501 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10502
10503 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10504 vmx->host_rsp = 0;
10505
10506 /* Unpin physical memory we referred to in vmcs02 */
10507 if (vmx->nested.apic_access_page) {
10508 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010509 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010510 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010511 if (vmx->nested.virtual_apic_page) {
10512 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010513 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010514 }
Wincy Van705699a2015-02-03 23:58:17 +080010515 if (vmx->nested.pi_desc_page) {
10516 kunmap(vmx->nested.pi_desc_page);
10517 nested_release_page(vmx->nested.pi_desc_page);
10518 vmx->nested.pi_desc_page = NULL;
10519 vmx->nested.pi_desc = NULL;
10520 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010521
10522 /*
Tang Chen38b99172014-09-24 15:57:54 +080010523 * We are now running in L2, mmu_notifier will force to reload the
10524 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10525 */
10526 kvm_vcpu_reload_apic_access_page(vcpu);
10527
10528 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010529 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10530 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10531 * success or failure flag accordingly.
10532 */
10533 if (unlikely(vmx->fail)) {
10534 vmx->fail = 0;
10535 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10536 } else
10537 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010538 if (enable_shadow_vmcs)
10539 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010540
10541 /* in case we halted in L2 */
10542 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010543}
10544
Nadav Har'El7c177932011-05-25 23:12:04 +030010545/*
Jan Kiszka42124922014-01-04 18:47:19 +010010546 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10547 */
10548static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10549{
10550 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010551 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010552 free_nested(to_vmx(vcpu));
10553}
10554
10555/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010556 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10557 * 23.7 "VM-entry failures during or after loading guest state" (this also
10558 * lists the acceptable exit-reason and exit-qualification parameters).
10559 * It should only be called before L2 actually succeeded to run, and when
10560 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10561 */
10562static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10563 struct vmcs12 *vmcs12,
10564 u32 reason, unsigned long qualification)
10565{
10566 load_vmcs12_host_state(vcpu, vmcs12);
10567 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10568 vmcs12->exit_qualification = qualification;
10569 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010570 if (enable_shadow_vmcs)
10571 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010572}
10573
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010574static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10575 struct x86_instruction_info *info,
10576 enum x86_intercept_stage stage)
10577{
10578 return X86EMUL_CONTINUE;
10579}
10580
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010581static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010582{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010583 if (ple_gap)
10584 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010585}
10586
Kai Huang843e4332015-01-28 10:54:28 +080010587static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10588 struct kvm_memory_slot *slot)
10589{
10590 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10591 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10592}
10593
10594static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10595 struct kvm_memory_slot *slot)
10596{
10597 kvm_mmu_slot_set_dirty(kvm, slot);
10598}
10599
10600static void vmx_flush_log_dirty(struct kvm *kvm)
10601{
10602 kvm_flush_pml_buffers(kvm);
10603}
10604
10605static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10606 struct kvm_memory_slot *memslot,
10607 gfn_t offset, unsigned long mask)
10608{
10609 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10610}
10611
Feng Wuefc64402015-09-18 22:29:51 +080010612/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010613 * This routine does the following things for vCPU which is going
10614 * to be blocked if VT-d PI is enabled.
10615 * - Store the vCPU to the wakeup list, so when interrupts happen
10616 * we can find the right vCPU to wake up.
10617 * - Change the Posted-interrupt descriptor as below:
10618 * 'NDST' <-- vcpu->pre_pcpu
10619 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10620 * - If 'ON' is set during this process, which means at least one
10621 * interrupt is posted for this vCPU, we cannot block it, in
10622 * this case, return 1, otherwise, return 0.
10623 *
10624 */
10625static int vmx_pre_block(struct kvm_vcpu *vcpu)
10626{
10627 unsigned long flags;
10628 unsigned int dest;
10629 struct pi_desc old, new;
10630 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10631
10632 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10633 !irq_remapping_cap(IRQ_POSTING_CAP))
10634 return 0;
10635
10636 vcpu->pre_pcpu = vcpu->cpu;
10637 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10638 vcpu->pre_pcpu), flags);
10639 list_add_tail(&vcpu->blocked_vcpu_list,
10640 &per_cpu(blocked_vcpu_on_cpu,
10641 vcpu->pre_pcpu));
10642 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10643 vcpu->pre_pcpu), flags);
10644
10645 do {
10646 old.control = new.control = pi_desc->control;
10647
10648 /*
10649 * We should not block the vCPU if
10650 * an interrupt is posted for it.
10651 */
10652 if (pi_test_on(pi_desc) == 1) {
10653 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10654 vcpu->pre_pcpu), flags);
10655 list_del(&vcpu->blocked_vcpu_list);
10656 spin_unlock_irqrestore(
10657 &per_cpu(blocked_vcpu_on_cpu_lock,
10658 vcpu->pre_pcpu), flags);
10659 vcpu->pre_pcpu = -1;
10660
10661 return 1;
10662 }
10663
10664 WARN((pi_desc->sn == 1),
10665 "Warning: SN field of posted-interrupts "
10666 "is set before blocking\n");
10667
10668 /*
10669 * Since vCPU can be preempted during this process,
10670 * vcpu->cpu could be different with pre_pcpu, we
10671 * need to set pre_pcpu as the destination of wakeup
10672 * notification event, then we can find the right vCPU
10673 * to wakeup in wakeup handler if interrupts happen
10674 * when the vCPU is in blocked state.
10675 */
10676 dest = cpu_physical_id(vcpu->pre_pcpu);
10677
10678 if (x2apic_enabled())
10679 new.ndst = dest;
10680 else
10681 new.ndst = (dest << 8) & 0xFF00;
10682
10683 /* set 'NV' to 'wakeup vector' */
10684 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10685 } while (cmpxchg(&pi_desc->control, old.control,
10686 new.control) != old.control);
10687
10688 return 0;
10689}
10690
10691static void vmx_post_block(struct kvm_vcpu *vcpu)
10692{
10693 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10694 struct pi_desc old, new;
10695 unsigned int dest;
10696 unsigned long flags;
10697
10698 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10699 !irq_remapping_cap(IRQ_POSTING_CAP))
10700 return;
10701
10702 do {
10703 old.control = new.control = pi_desc->control;
10704
10705 dest = cpu_physical_id(vcpu->cpu);
10706
10707 if (x2apic_enabled())
10708 new.ndst = dest;
10709 else
10710 new.ndst = (dest << 8) & 0xFF00;
10711
10712 /* Allow posting non-urgent interrupts */
10713 new.sn = 0;
10714
10715 /* set 'NV' to 'notification vector' */
10716 new.nv = POSTED_INTR_VECTOR;
10717 } while (cmpxchg(&pi_desc->control, old.control,
10718 new.control) != old.control);
10719
10720 if(vcpu->pre_pcpu != -1) {
10721 spin_lock_irqsave(
10722 &per_cpu(blocked_vcpu_on_cpu_lock,
10723 vcpu->pre_pcpu), flags);
10724 list_del(&vcpu->blocked_vcpu_list);
10725 spin_unlock_irqrestore(
10726 &per_cpu(blocked_vcpu_on_cpu_lock,
10727 vcpu->pre_pcpu), flags);
10728 vcpu->pre_pcpu = -1;
10729 }
10730}
10731
10732/*
Feng Wuefc64402015-09-18 22:29:51 +080010733 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
10734 *
10735 * @kvm: kvm
10736 * @host_irq: host irq of the interrupt
10737 * @guest_irq: gsi of the interrupt
10738 * @set: set or unset PI
10739 * returns 0 on success, < 0 on failure
10740 */
10741static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
10742 uint32_t guest_irq, bool set)
10743{
10744 struct kvm_kernel_irq_routing_entry *e;
10745 struct kvm_irq_routing_table *irq_rt;
10746 struct kvm_lapic_irq irq;
10747 struct kvm_vcpu *vcpu;
10748 struct vcpu_data vcpu_info;
10749 int idx, ret = -EINVAL;
10750
10751 if (!kvm_arch_has_assigned_device(kvm) ||
10752 !irq_remapping_cap(IRQ_POSTING_CAP))
10753 return 0;
10754
10755 idx = srcu_read_lock(&kvm->irq_srcu);
10756 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
10757 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
10758
10759 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
10760 if (e->type != KVM_IRQ_ROUTING_MSI)
10761 continue;
10762 /*
10763 * VT-d PI cannot support posting multicast/broadcast
10764 * interrupts to a vCPU, we still use interrupt remapping
10765 * for these kind of interrupts.
10766 *
10767 * For lowest-priority interrupts, we only support
10768 * those with single CPU as the destination, e.g. user
10769 * configures the interrupts via /proc/irq or uses
10770 * irqbalance to make the interrupts single-CPU.
10771 *
10772 * We will support full lowest-priority interrupt later.
10773 */
10774
10775 kvm_set_msi_irq(e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080010776 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
10777 /*
10778 * Make sure the IRTE is in remapped mode if
10779 * we don't handle it in posted mode.
10780 */
10781 ret = irq_set_vcpu_affinity(host_irq, NULL);
10782 if (ret < 0) {
10783 printk(KERN_INFO
10784 "failed to back to remapped mode, irq: %u\n",
10785 host_irq);
10786 goto out;
10787 }
10788
Feng Wuefc64402015-09-18 22:29:51 +080010789 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080010790 }
Feng Wuefc64402015-09-18 22:29:51 +080010791
10792 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
10793 vcpu_info.vector = irq.vector;
10794
Feng Wub6ce9782016-01-25 16:53:35 +080010795 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080010796 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
10797
10798 if (set)
10799 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
10800 else {
10801 /* suppress notification event before unposting */
10802 pi_set_sn(vcpu_to_pi_desc(vcpu));
10803 ret = irq_set_vcpu_affinity(host_irq, NULL);
10804 pi_clear_sn(vcpu_to_pi_desc(vcpu));
10805 }
10806
10807 if (ret < 0) {
10808 printk(KERN_INFO "%s: failed to update PI IRTE\n",
10809 __func__);
10810 goto out;
10811 }
10812 }
10813
10814 ret = 0;
10815out:
10816 srcu_read_unlock(&kvm->irq_srcu, idx);
10817 return ret;
10818}
10819
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030010820static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080010821 .cpu_has_kvm_support = cpu_has_kvm_support,
10822 .disabled_by_bios = vmx_disabled_by_bios,
10823 .hardware_setup = hardware_setup,
10824 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030010825 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010826 .hardware_enable = hardware_enable,
10827 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080010828 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010829 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010830
10831 .vcpu_create = vmx_create_vcpu,
10832 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030010833 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010834
Avi Kivity04d2cc72007-09-10 18:10:54 +030010835 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010836 .vcpu_load = vmx_vcpu_load,
10837 .vcpu_put = vmx_vcpu_put,
10838
Paolo Bonzinia96036b2015-11-10 11:55:36 +010010839 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010840 .get_msr = vmx_get_msr,
10841 .set_msr = vmx_set_msr,
10842 .get_segment_base = vmx_get_segment_base,
10843 .get_segment = vmx_get_segment,
10844 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020010845 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010846 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020010847 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020010848 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030010849 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010850 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010851 .set_cr3 = vmx_set_cr3,
10852 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010853 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010854 .get_idt = vmx_get_idt,
10855 .set_idt = vmx_set_idt,
10856 .get_gdt = vmx_get_gdt,
10857 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010010858 .get_dr6 = vmx_get_dr6,
10859 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030010860 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010010861 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010862 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010863 .get_rflags = vmx_get_rflags,
10864 .set_rflags = vmx_set_rflags,
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020010865 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020010866 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010867
10868 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010869
Avi Kivity6aa8b732006-12-10 02:21:36 -080010870 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020010871 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010872 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040010873 .set_interrupt_shadow = vmx_set_interrupt_shadow,
10874 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020010875 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030010876 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010877 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020010878 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010879 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020010880 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010881 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010010882 .get_nmi_mask = vmx_get_nmi_mask,
10883 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010884 .enable_nmi_window = enable_nmi_window,
10885 .enable_irq_window = enable_irq_window,
10886 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080010887 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080010888 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030010889 .get_enable_apicv = vmx_get_enable_apicv,
10890 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080010891 .load_eoi_exitmap = vmx_load_eoi_exitmap,
10892 .hwapic_irr_update = vmx_hwapic_irr_update,
10893 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080010894 .sync_pir_to_irr = vmx_sync_pir_to_irr,
10895 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010896
Izik Eiduscbc94022007-10-25 00:29:55 +020010897 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080010898 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010899 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010900
Avi Kivity586f9602010-11-18 13:09:54 +020010901 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020010902
Sheng Yang17cc3932010-01-05 19:02:27 +080010903 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080010904
10905 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010906
10907 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000010908 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010909
10910 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080010911
10912 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010913
Will Auldba904632012-11-29 12:42:50 -080010914 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010915 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080010916 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030010917 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020010918
10919 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010920
10921 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080010922 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010923 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080010924 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010925
10926 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010927
10928 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080010929
10930 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
10931 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
10932 .flush_log_dirty = vmx_flush_log_dirty,
10933 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020010934
Feng Wubf9f6ac2015-09-18 22:29:55 +080010935 .pre_block = vmx_pre_block,
10936 .post_block = vmx_post_block,
10937
Wei Huang25462f72015-06-19 15:45:05 +020010938 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080010939
10940 .update_pi_irte = vmx_update_pi_irte,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010941};
10942
10943static int __init vmx_init(void)
10944{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010945 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
10946 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030010947 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010948 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080010949
Dave Young2965faa2015-09-09 15:38:55 -070010950#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010951 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
10952 crash_vmclear_local_loaded_vmcss);
10953#endif
10954
He, Qingfdef3ad2007-04-30 09:45:24 +030010955 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010956}
10957
10958static void __exit vmx_exit(void)
10959{
Dave Young2965faa2015-09-09 15:38:55 -070010960#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053010961 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010962 synchronize_rcu();
10963#endif
10964
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080010965 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080010966}
10967
10968module_init(vmx_init)
10969module_exit(vmx_exit)