blob: e512aa7ed8748ff8de66c053348572ce574ac756 [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);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800864static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200865static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300866static void vmx_set_segment(struct kvm_vcpu *vcpu,
867 struct kvm_segment *var, int seg);
868static void vmx_get_segment(struct kvm_vcpu *vcpu,
869 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200870static bool guest_state_valid(struct kvm_vcpu *vcpu);
871static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300872static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300873static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800874static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300875
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876static DEFINE_PER_CPU(struct vmcs *, vmxarea);
877static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300878/*
879 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
880 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
881 */
882static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300883static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800884
Feng Wubf9f6ac2015-09-18 22:29:55 +0800885/*
886 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
887 * can find which vCPU should be waken up.
888 */
889static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
890static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
891
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200892static unsigned long *vmx_io_bitmap_a;
893static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200894static unsigned long *vmx_msr_bitmap_legacy;
895static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800896static unsigned long *vmx_msr_bitmap_legacy_x2apic;
897static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800898static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300899static unsigned long *vmx_vmread_bitmap;
900static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300901
Avi Kivity110312c2010-12-21 12:54:20 +0200902static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200903static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200904
Sheng Yang2384d2b2008-01-17 15:14:33 +0800905static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
906static DEFINE_SPINLOCK(vmx_vpid_lock);
907
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300908static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 int size;
910 int order;
911 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300912 u32 pin_based_exec_ctrl;
913 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800914 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300915 u32 vmexit_ctrl;
916 u32 vmentry_ctrl;
917} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918
Hannes Ederefff9e52008-11-28 17:02:06 +0100919static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800920 u32 ept;
921 u32 vpid;
922} vmx_capability;
923
Avi Kivity6aa8b732006-12-10 02:21:36 -0800924#define VMX_SEGMENT_FIELD(seg) \
925 [VCPU_SREG_##seg] = { \
926 .selector = GUEST_##seg##_SELECTOR, \
927 .base = GUEST_##seg##_BASE, \
928 .limit = GUEST_##seg##_LIMIT, \
929 .ar_bytes = GUEST_##seg##_AR_BYTES, \
930 }
931
Mathias Krause772e0312012-08-30 01:30:19 +0200932static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933 unsigned selector;
934 unsigned base;
935 unsigned limit;
936 unsigned ar_bytes;
937} kvm_vmx_segment_fields[] = {
938 VMX_SEGMENT_FIELD(CS),
939 VMX_SEGMENT_FIELD(DS),
940 VMX_SEGMENT_FIELD(ES),
941 VMX_SEGMENT_FIELD(FS),
942 VMX_SEGMENT_FIELD(GS),
943 VMX_SEGMENT_FIELD(SS),
944 VMX_SEGMENT_FIELD(TR),
945 VMX_SEGMENT_FIELD(LDTR),
946};
947
Avi Kivity26bb0982009-09-07 11:14:12 +0300948static u64 host_efer;
949
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300950static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
951
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300952/*
Brian Gerst8c065852010-07-17 09:03:26 -0400953 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300954 * away by decrementing the array size.
955 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800957#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300958 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400960 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962
Jan Kiszka5bb16012016-02-09 20:14:21 +0100963static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964{
965 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
966 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +0100967 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
968}
969
Jan Kiszka6f054852016-02-09 20:15:18 +0100970static inline bool is_debug(u32 intr_info)
971{
972 return is_exception_n(intr_info, DB_VECTOR);
973}
974
975static inline bool is_breakpoint(u32 intr_info)
976{
977 return is_exception_n(intr_info, BP_VECTOR);
978}
979
Jan Kiszka5bb16012016-02-09 20:14:21 +0100980static inline bool is_page_fault(u32 intr_info)
981{
982 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983}
984
Gui Jianfeng31299942010-03-15 17:29:09 +0800985static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300986{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100987 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300988}
989
Gui Jianfeng31299942010-03-15 17:29:09 +0800990static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500991{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100992 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500993}
994
Gui Jianfeng31299942010-03-15 17:29:09 +0800995static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996{
997 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
998 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
999}
1000
Gui Jianfeng31299942010-03-15 17:29:09 +08001001static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001002{
1003 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1004 INTR_INFO_VALID_MASK)) ==
1005 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1006}
1007
Gui Jianfeng31299942010-03-15 17:29:09 +08001008static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001009{
Sheng Yang04547152009-04-01 15:52:31 +08001010 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001011}
1012
Gui Jianfeng31299942010-03-15 17:29:09 +08001013static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001014{
Sheng Yang04547152009-04-01 15:52:31 +08001015 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001016}
1017
Paolo Bonzini35754c92015-07-29 12:05:37 +02001018static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001019{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001020 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001021}
1022
Gui Jianfeng31299942010-03-15 17:29:09 +08001023static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001024{
Sheng Yang04547152009-04-01 15:52:31 +08001025 return vmcs_config.cpu_based_exec_ctrl &
1026 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001027}
1028
Avi Kivity774ead32007-12-26 13:57:04 +02001029static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001030{
Sheng Yang04547152009-04-01 15:52:31 +08001031 return vmcs_config.cpu_based_2nd_exec_ctrl &
1032 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1033}
1034
Yang Zhang8d146952013-01-25 10:18:50 +08001035static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1036{
1037 return vmcs_config.cpu_based_2nd_exec_ctrl &
1038 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1039}
1040
Yang Zhang83d4c282013-01-25 10:18:49 +08001041static inline bool cpu_has_vmx_apic_register_virt(void)
1042{
1043 return vmcs_config.cpu_based_2nd_exec_ctrl &
1044 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1045}
1046
Yang Zhangc7c9c562013-01-25 10:18:51 +08001047static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1048{
1049 return vmcs_config.cpu_based_2nd_exec_ctrl &
1050 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1051}
1052
Yang Zhang01e439b2013-04-11 19:25:12 +08001053static inline bool cpu_has_vmx_posted_intr(void)
1054{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001055 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1056 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001057}
1058
1059static inline bool cpu_has_vmx_apicv(void)
1060{
1061 return cpu_has_vmx_apic_register_virt() &&
1062 cpu_has_vmx_virtual_intr_delivery() &&
1063 cpu_has_vmx_posted_intr();
1064}
1065
Sheng Yang04547152009-04-01 15:52:31 +08001066static inline bool cpu_has_vmx_flexpriority(void)
1067{
1068 return cpu_has_vmx_tpr_shadow() &&
1069 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001070}
1071
Marcelo Tosattie7997942009-06-11 12:07:40 -03001072static inline bool cpu_has_vmx_ept_execute_only(void)
1073{
Gui Jianfeng31299942010-03-15 17:29:09 +08001074 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001075}
1076
Marcelo Tosattie7997942009-06-11 12:07:40 -03001077static inline bool cpu_has_vmx_ept_2m_page(void)
1078{
Gui Jianfeng31299942010-03-15 17:29:09 +08001079 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001080}
1081
Sheng Yang878403b2010-01-05 19:02:29 +08001082static inline bool cpu_has_vmx_ept_1g_page(void)
1083{
Gui Jianfeng31299942010-03-15 17:29:09 +08001084 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001085}
1086
Sheng Yang4bc9b982010-06-02 14:05:24 +08001087static inline bool cpu_has_vmx_ept_4levels(void)
1088{
1089 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1090}
1091
Xudong Hao83c3a332012-05-28 19:33:35 +08001092static inline bool cpu_has_vmx_ept_ad_bits(void)
1093{
1094 return vmx_capability.ept & VMX_EPT_AD_BIT;
1095}
1096
Gui Jianfeng31299942010-03-15 17:29:09 +08001097static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001098{
Gui Jianfeng31299942010-03-15 17:29:09 +08001099 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001100}
1101
Gui Jianfeng31299942010-03-15 17:29:09 +08001102static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001103{
Gui Jianfeng31299942010-03-15 17:29:09 +08001104 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001105}
1106
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001107static inline bool cpu_has_vmx_invvpid_single(void)
1108{
1109 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1110}
1111
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001112static inline bool cpu_has_vmx_invvpid_global(void)
1113{
1114 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1115}
1116
Gui Jianfeng31299942010-03-15 17:29:09 +08001117static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001118{
Sheng Yang04547152009-04-01 15:52:31 +08001119 return vmcs_config.cpu_based_2nd_exec_ctrl &
1120 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001121}
1122
Gui Jianfeng31299942010-03-15 17:29:09 +08001123static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001124{
1125 return vmcs_config.cpu_based_2nd_exec_ctrl &
1126 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1127}
1128
Gui Jianfeng31299942010-03-15 17:29:09 +08001129static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001130{
1131 return vmcs_config.cpu_based_2nd_exec_ctrl &
1132 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1133}
1134
Paolo Bonzini35754c92015-07-29 12:05:37 +02001135static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001136{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001137 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001138}
1139
Gui Jianfeng31299942010-03-15 17:29:09 +08001140static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001141{
Sheng Yang04547152009-04-01 15:52:31 +08001142 return vmcs_config.cpu_based_2nd_exec_ctrl &
1143 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001144}
1145
Gui Jianfeng31299942010-03-15 17:29:09 +08001146static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001147{
1148 return vmcs_config.cpu_based_2nd_exec_ctrl &
1149 SECONDARY_EXEC_RDTSCP;
1150}
1151
Mao, Junjiead756a12012-07-02 01:18:48 +00001152static inline bool cpu_has_vmx_invpcid(void)
1153{
1154 return vmcs_config.cpu_based_2nd_exec_ctrl &
1155 SECONDARY_EXEC_ENABLE_INVPCID;
1156}
1157
Gui Jianfeng31299942010-03-15 17:29:09 +08001158static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001159{
1160 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1161}
1162
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001163static inline bool cpu_has_vmx_wbinvd_exit(void)
1164{
1165 return vmcs_config.cpu_based_2nd_exec_ctrl &
1166 SECONDARY_EXEC_WBINVD_EXITING;
1167}
1168
Abel Gordonabc4fc52013-04-18 14:35:25 +03001169static inline bool cpu_has_vmx_shadow_vmcs(void)
1170{
1171 u64 vmx_msr;
1172 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1173 /* check if the cpu supports writing r/o exit information fields */
1174 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1175 return false;
1176
1177 return vmcs_config.cpu_based_2nd_exec_ctrl &
1178 SECONDARY_EXEC_SHADOW_VMCS;
1179}
1180
Kai Huang843e4332015-01-28 10:54:28 +08001181static inline bool cpu_has_vmx_pml(void)
1182{
1183 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1184}
1185
Haozhong Zhang64903d62015-10-20 15:39:09 +08001186static inline bool cpu_has_vmx_tsc_scaling(void)
1187{
1188 return vmcs_config.cpu_based_2nd_exec_ctrl &
1189 SECONDARY_EXEC_TSC_SCALING;
1190}
1191
Sheng Yang04547152009-04-01 15:52:31 +08001192static inline bool report_flexpriority(void)
1193{
1194 return flexpriority_enabled;
1195}
1196
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001197static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1198{
1199 return vmcs12->cpu_based_vm_exec_control & bit;
1200}
1201
1202static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1203{
1204 return (vmcs12->cpu_based_vm_exec_control &
1205 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1206 (vmcs12->secondary_vm_exec_control & bit);
1207}
1208
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001209static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001210{
1211 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1212}
1213
Jan Kiszkaf4124502014-03-07 20:03:13 +01001214static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1215{
1216 return vmcs12->pin_based_vm_exec_control &
1217 PIN_BASED_VMX_PREEMPTION_TIMER;
1218}
1219
Nadav Har'El155a97a2013-08-05 11:07:16 +03001220static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1221{
1222 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1223}
1224
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001225static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1226{
1227 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1228 vmx_xsaves_supported();
1229}
1230
Wincy Vanf2b93282015-02-03 23:56:03 +08001231static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1232{
1233 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1234}
1235
Wanpeng Li5c614b32015-10-13 09:18:36 -07001236static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1237{
1238 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1239}
1240
Wincy Van82f0dd42015-02-03 23:57:18 +08001241static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1242{
1243 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1244}
1245
Wincy Van608406e2015-02-03 23:57:51 +08001246static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1247{
1248 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1249}
1250
Wincy Van705699a2015-02-03 23:58:17 +08001251static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1252{
1253 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1254}
1255
Nadav Har'El644d7112011-05-25 23:12:35 +03001256static inline bool is_exception(u32 intr_info)
1257{
1258 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1259 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1260}
1261
Jan Kiszka533558b2014-01-04 18:47:20 +01001262static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1263 u32 exit_intr_info,
1264 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001265static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1266 struct vmcs12 *vmcs12,
1267 u32 reason, unsigned long qualification);
1268
Rusty Russell8b9cf982007-07-30 16:31:43 +10001269static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001270{
1271 int i;
1272
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001273 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001274 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001275 return i;
1276 return -1;
1277}
1278
Sheng Yang2384d2b2008-01-17 15:14:33 +08001279static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1280{
1281 struct {
1282 u64 vpid : 16;
1283 u64 rsvd : 48;
1284 u64 gva;
1285 } operand = { vpid, 0, gva };
1286
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001287 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001288 /* CF==1 or ZF==1 --> rc = -1 */
1289 "; ja 1f ; ud2 ; 1:"
1290 : : "a"(&operand), "c"(ext) : "cc", "memory");
1291}
1292
Sheng Yang14394422008-04-28 12:24:45 +08001293static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1294{
1295 struct {
1296 u64 eptp, gpa;
1297 } operand = {eptp, gpa};
1298
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001299 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001300 /* CF==1 or ZF==1 --> rc = -1 */
1301 "; ja 1f ; ud2 ; 1:\n"
1302 : : "a" (&operand), "c" (ext) : "cc", "memory");
1303}
1304
Avi Kivity26bb0982009-09-07 11:14:12 +03001305static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001306{
1307 int i;
1308
Rusty Russell8b9cf982007-07-30 16:31:43 +10001309 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001310 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001311 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001312 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001313}
1314
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315static void vmcs_clear(struct vmcs *vmcs)
1316{
1317 u64 phys_addr = __pa(vmcs);
1318 u8 error;
1319
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001320 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001321 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322 : "cc", "memory");
1323 if (error)
1324 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1325 vmcs, phys_addr);
1326}
1327
Nadav Har'Eld462b812011-05-24 15:26:10 +03001328static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1329{
1330 vmcs_clear(loaded_vmcs->vmcs);
1331 loaded_vmcs->cpu = -1;
1332 loaded_vmcs->launched = 0;
1333}
1334
Dongxiao Xu7725b892010-05-11 18:29:38 +08001335static void vmcs_load(struct vmcs *vmcs)
1336{
1337 u64 phys_addr = __pa(vmcs);
1338 u8 error;
1339
1340 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001341 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001342 : "cc", "memory");
1343 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001344 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001345 vmcs, phys_addr);
1346}
1347
Dave Young2965faa2015-09-09 15:38:55 -07001348#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001349/*
1350 * This bitmap is used to indicate whether the vmclear
1351 * operation is enabled on all cpus. All disabled by
1352 * default.
1353 */
1354static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1355
1356static inline void crash_enable_local_vmclear(int cpu)
1357{
1358 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1359}
1360
1361static inline void crash_disable_local_vmclear(int cpu)
1362{
1363 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1364}
1365
1366static inline int crash_local_vmclear_enabled(int cpu)
1367{
1368 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1369}
1370
1371static void crash_vmclear_local_loaded_vmcss(void)
1372{
1373 int cpu = raw_smp_processor_id();
1374 struct loaded_vmcs *v;
1375
1376 if (!crash_local_vmclear_enabled(cpu))
1377 return;
1378
1379 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1380 loaded_vmcss_on_cpu_link)
1381 vmcs_clear(v->vmcs);
1382}
1383#else
1384static inline void crash_enable_local_vmclear(int cpu) { }
1385static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001386#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001387
Nadav Har'Eld462b812011-05-24 15:26:10 +03001388static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001389{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001390 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001391 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392
Nadav Har'Eld462b812011-05-24 15:26:10 +03001393 if (loaded_vmcs->cpu != cpu)
1394 return; /* vcpu migration can race with cpu offline */
1395 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001397 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001398 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001399
1400 /*
1401 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1402 * is before setting loaded_vmcs->vcpu to -1 which is done in
1403 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1404 * then adds the vmcs into percpu list before it is deleted.
1405 */
1406 smp_wmb();
1407
Nadav Har'Eld462b812011-05-24 15:26:10 +03001408 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001409 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001410}
1411
Nadav Har'Eld462b812011-05-24 15:26:10 +03001412static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001413{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001414 int cpu = loaded_vmcs->cpu;
1415
1416 if (cpu != -1)
1417 smp_call_function_single(cpu,
1418 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001419}
1420
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001421static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001422{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001423 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001424 return;
1425
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001426 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001427 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001428}
1429
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001430static inline void vpid_sync_vcpu_global(void)
1431{
1432 if (cpu_has_vmx_invvpid_global())
1433 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1434}
1435
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001436static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001437{
1438 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001439 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001440 else
1441 vpid_sync_vcpu_global();
1442}
1443
Sheng Yang14394422008-04-28 12:24:45 +08001444static inline void ept_sync_global(void)
1445{
1446 if (cpu_has_vmx_invept_global())
1447 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1448}
1449
1450static inline void ept_sync_context(u64 eptp)
1451{
Avi Kivity089d0342009-03-23 18:26:32 +02001452 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001453 if (cpu_has_vmx_invept_context())
1454 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1455 else
1456 ept_sync_global();
1457 }
1458}
1459
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001460static __always_inline void vmcs_check16(unsigned long field)
1461{
1462 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1463 "16-bit accessor invalid for 64-bit field");
1464 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1465 "16-bit accessor invalid for 64-bit high field");
1466 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1467 "16-bit accessor invalid for 32-bit high field");
1468 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1469 "16-bit accessor invalid for natural width field");
1470}
1471
1472static __always_inline void vmcs_check32(unsigned long field)
1473{
1474 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1475 "32-bit accessor invalid for 16-bit field");
1476 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1477 "32-bit accessor invalid for natural width field");
1478}
1479
1480static __always_inline void vmcs_check64(unsigned long field)
1481{
1482 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1483 "64-bit accessor invalid for 16-bit field");
1484 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1485 "64-bit accessor invalid for 64-bit high field");
1486 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1487 "64-bit accessor invalid for 32-bit field");
1488 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1489 "64-bit accessor invalid for natural width field");
1490}
1491
1492static __always_inline void vmcs_checkl(unsigned long field)
1493{
1494 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1495 "Natural width accessor invalid for 16-bit field");
1496 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1497 "Natural width accessor invalid for 64-bit field");
1498 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1499 "Natural width accessor invalid for 64-bit high field");
1500 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1501 "Natural width accessor invalid for 32-bit field");
1502}
1503
1504static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505{
Avi Kivity5e520e62011-05-15 10:13:12 -04001506 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507
Avi Kivity5e520e62011-05-15 10:13:12 -04001508 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1509 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 return value;
1511}
1512
Avi Kivity96304212011-05-15 10:13:13 -04001513static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001515 vmcs_check16(field);
1516 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517}
1518
Avi Kivity96304212011-05-15 10:13:13 -04001519static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001521 vmcs_check32(field);
1522 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001523}
1524
Avi Kivity96304212011-05-15 10:13:13 -04001525static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001527 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001528#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001529 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001531 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001532#endif
1533}
1534
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001535static __always_inline unsigned long vmcs_readl(unsigned long field)
1536{
1537 vmcs_checkl(field);
1538 return __vmcs_readl(field);
1539}
1540
Avi Kivitye52de1b2007-01-05 16:36:56 -08001541static noinline void vmwrite_error(unsigned long field, unsigned long value)
1542{
1543 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1544 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1545 dump_stack();
1546}
1547
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001548static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549{
1550 u8 error;
1551
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001552 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001553 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001554 if (unlikely(error))
1555 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556}
1557
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001558static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001560 vmcs_check16(field);
1561 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562}
1563
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001564static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001566 vmcs_check32(field);
1567 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568}
1569
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001570static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001572 vmcs_check64(field);
1573 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001574#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001576 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577#endif
1578}
1579
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001580static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001581{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001582 vmcs_checkl(field);
1583 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001584}
1585
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001586static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001587{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001588 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1589 "vmcs_clear_bits does not support 64-bit fields");
1590 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1591}
1592
1593static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1594{
1595 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1596 "vmcs_set_bits does not support 64-bit fields");
1597 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001598}
1599
Gleb Natapov2961e8762013-11-25 15:37:13 +02001600static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1601{
1602 vmcs_write32(VM_ENTRY_CONTROLS, val);
1603 vmx->vm_entry_controls_shadow = val;
1604}
1605
1606static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1607{
1608 if (vmx->vm_entry_controls_shadow != val)
1609 vm_entry_controls_init(vmx, val);
1610}
1611
1612static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1613{
1614 return vmx->vm_entry_controls_shadow;
1615}
1616
1617
1618static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1619{
1620 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1621}
1622
1623static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1624{
1625 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1626}
1627
1628static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1629{
1630 vmcs_write32(VM_EXIT_CONTROLS, val);
1631 vmx->vm_exit_controls_shadow = val;
1632}
1633
1634static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1635{
1636 if (vmx->vm_exit_controls_shadow != val)
1637 vm_exit_controls_init(vmx, val);
1638}
1639
1640static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1641{
1642 return vmx->vm_exit_controls_shadow;
1643}
1644
1645
1646static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1647{
1648 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1649}
1650
1651static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1652{
1653 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1654}
1655
Avi Kivity2fb92db2011-04-27 19:42:18 +03001656static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1657{
1658 vmx->segment_cache.bitmask = 0;
1659}
1660
1661static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1662 unsigned field)
1663{
1664 bool ret;
1665 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1666
1667 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1668 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1669 vmx->segment_cache.bitmask = 0;
1670 }
1671 ret = vmx->segment_cache.bitmask & mask;
1672 vmx->segment_cache.bitmask |= mask;
1673 return ret;
1674}
1675
1676static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1677{
1678 u16 *p = &vmx->segment_cache.seg[seg].selector;
1679
1680 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1681 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1682 return *p;
1683}
1684
1685static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1686{
1687 ulong *p = &vmx->segment_cache.seg[seg].base;
1688
1689 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1690 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1691 return *p;
1692}
1693
1694static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1695{
1696 u32 *p = &vmx->segment_cache.seg[seg].limit;
1697
1698 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1699 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1700 return *p;
1701}
1702
1703static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1704{
1705 u32 *p = &vmx->segment_cache.seg[seg].ar;
1706
1707 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1708 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1709 return *p;
1710}
1711
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001712static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1713{
1714 u32 eb;
1715
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001716 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001717 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001718 if ((vcpu->guest_debug &
1719 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1720 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1721 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001722 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001723 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001724 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001725 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001726 if (vcpu->fpu_active)
1727 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001728
1729 /* When we are running a nested L2 guest and L1 specified for it a
1730 * certain exception bitmap, we must trap the same exceptions and pass
1731 * them to L1. When running L2, we will only handle the exceptions
1732 * specified above if L1 did not want them.
1733 */
1734 if (is_guest_mode(vcpu))
1735 eb |= get_vmcs12(vcpu)->exception_bitmap;
1736
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001737 vmcs_write32(EXCEPTION_BITMAP, eb);
1738}
1739
Gleb Natapov2961e8762013-11-25 15:37:13 +02001740static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1741 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001742{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001743 vm_entry_controls_clearbit(vmx, entry);
1744 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001745}
1746
Avi Kivity61d2ef22010-04-28 16:40:38 +03001747static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1748{
1749 unsigned i;
1750 struct msr_autoload *m = &vmx->msr_autoload;
1751
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001752 switch (msr) {
1753 case MSR_EFER:
1754 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001755 clear_atomic_switch_msr_special(vmx,
1756 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001757 VM_EXIT_LOAD_IA32_EFER);
1758 return;
1759 }
1760 break;
1761 case MSR_CORE_PERF_GLOBAL_CTRL:
1762 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001763 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001764 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1765 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1766 return;
1767 }
1768 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001769 }
1770
Avi Kivity61d2ef22010-04-28 16:40:38 +03001771 for (i = 0; i < m->nr; ++i)
1772 if (m->guest[i].index == msr)
1773 break;
1774
1775 if (i == m->nr)
1776 return;
1777 --m->nr;
1778 m->guest[i] = m->guest[m->nr];
1779 m->host[i] = m->host[m->nr];
1780 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1781 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1782}
1783
Gleb Natapov2961e8762013-11-25 15:37:13 +02001784static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1785 unsigned long entry, unsigned long exit,
1786 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1787 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001788{
1789 vmcs_write64(guest_val_vmcs, guest_val);
1790 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001791 vm_entry_controls_setbit(vmx, entry);
1792 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001793}
1794
Avi Kivity61d2ef22010-04-28 16:40:38 +03001795static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1796 u64 guest_val, u64 host_val)
1797{
1798 unsigned i;
1799 struct msr_autoload *m = &vmx->msr_autoload;
1800
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001801 switch (msr) {
1802 case MSR_EFER:
1803 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001804 add_atomic_switch_msr_special(vmx,
1805 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001806 VM_EXIT_LOAD_IA32_EFER,
1807 GUEST_IA32_EFER,
1808 HOST_IA32_EFER,
1809 guest_val, host_val);
1810 return;
1811 }
1812 break;
1813 case MSR_CORE_PERF_GLOBAL_CTRL:
1814 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001815 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001816 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1817 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1818 GUEST_IA32_PERF_GLOBAL_CTRL,
1819 HOST_IA32_PERF_GLOBAL_CTRL,
1820 guest_val, host_val);
1821 return;
1822 }
1823 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001824 }
1825
Avi Kivity61d2ef22010-04-28 16:40:38 +03001826 for (i = 0; i < m->nr; ++i)
1827 if (m->guest[i].index == msr)
1828 break;
1829
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001830 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001831 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001832 "Can't add msr %x\n", msr);
1833 return;
1834 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001835 ++m->nr;
1836 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1837 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1838 }
1839
1840 m->guest[i].index = msr;
1841 m->guest[i].value = guest_val;
1842 m->host[i].index = msr;
1843 m->host[i].value = host_val;
1844}
1845
Avi Kivity33ed6322007-05-02 16:54:03 +03001846static void reload_tss(void)
1847{
Avi Kivity33ed6322007-05-02 16:54:03 +03001848 /*
1849 * VT restores TR but not its size. Useless.
1850 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001851 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001852 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001853
Avi Kivityd3591922010-07-26 18:32:39 +03001854 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001855 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1856 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001857}
1858
Avi Kivity92c0d902009-10-29 11:00:16 +02001859static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001860{
Roel Kluin3a34a882009-08-04 02:08:45 -07001861 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001862 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001863
Avi Kivityf6801df2010-01-21 15:31:50 +02001864 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001865
Avi Kivity51c6cf62007-08-29 03:48:05 +03001866 /*
Guo Chao0fa06072012-06-28 15:16:19 +08001867 * NX is emulated; LMA and LME handled by hardware; SCE meaningless
Avi Kivity51c6cf62007-08-29 03:48:05 +03001868 * outside long mode
1869 */
1870 ignore_bits = EFER_NX | EFER_SCE;
1871#ifdef CONFIG_X86_64
1872 ignore_bits |= EFER_LMA | EFER_LME;
1873 /* SCE is meaningful only in long mode on Intel */
1874 if (guest_efer & EFER_LMA)
1875 ignore_bits &= ~(u64)EFER_SCE;
1876#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001877 guest_efer &= ~ignore_bits;
1878 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001879 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001880 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001881
1882 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001883
1884 /*
1885 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1886 * On CPUs that support "load IA32_EFER", always switch EFER
1887 * atomically, since it's faster than switching it manually.
1888 */
1889 if (cpu_has_load_ia32_efer ||
1890 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001891 guest_efer = vmx->vcpu.arch.efer;
1892 if (!(guest_efer & EFER_LMA))
1893 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001894 if (guest_efer != host_efer)
1895 add_atomic_switch_msr(vmx, MSR_EFER,
1896 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001897 return false;
1898 }
1899
Avi Kivity26bb0982009-09-07 11:14:12 +03001900 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001901}
1902
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001903static unsigned long segment_base(u16 selector)
1904{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001905 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001906 struct desc_struct *d;
1907 unsigned long table_base;
1908 unsigned long v;
1909
1910 if (!(selector & ~3))
1911 return 0;
1912
Avi Kivityd3591922010-07-26 18:32:39 +03001913 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001914
1915 if (selector & 4) { /* from ldt */
1916 u16 ldt_selector = kvm_read_ldt();
1917
1918 if (!(ldt_selector & ~3))
1919 return 0;
1920
1921 table_base = segment_base(ldt_selector);
1922 }
1923 d = (struct desc_struct *)(table_base + (selector & ~7));
1924 v = get_desc_base(d);
1925#ifdef CONFIG_X86_64
1926 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1927 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1928#endif
1929 return v;
1930}
1931
1932static inline unsigned long kvm_read_tr_base(void)
1933{
1934 u16 tr;
1935 asm("str %0" : "=g"(tr));
1936 return segment_base(tr);
1937}
1938
Avi Kivity04d2cc72007-09-10 18:10:54 +03001939static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001940{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001941 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001942 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001943
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001944 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001945 return;
1946
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001947 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001948 /*
1949 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1950 * allow segment selectors with cpl > 0 or ti == 1.
1951 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001952 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001953 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001954 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001955 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001956 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001957 vmx->host_state.fs_reload_needed = 0;
1958 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001959 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001960 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001961 }
Avi Kivity9581d442010-10-19 16:46:55 +02001962 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001963 if (!(vmx->host_state.gs_sel & 7))
1964 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001965 else {
1966 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001967 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001968 }
1969
1970#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03001971 savesegment(ds, vmx->host_state.ds_sel);
1972 savesegment(es, vmx->host_state.es_sel);
1973#endif
1974
1975#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03001976 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1977 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1978#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001979 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1980 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001981#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001982
1983#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001984 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1985 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001986 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001987#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00001988 if (boot_cpu_has(X86_FEATURE_MPX))
1989 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03001990 for (i = 0; i < vmx->save_nmsrs; ++i)
1991 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001992 vmx->guest_msrs[i].data,
1993 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001994}
1995
Avi Kivitya9b21b62008-06-24 11:48:49 +03001996static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001997{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001998 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001999 return;
2000
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002001 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002002 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002003#ifdef CONFIG_X86_64
2004 if (is_long_mode(&vmx->vcpu))
2005 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2006#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002007 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002008 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002009#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002010 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002011#else
2012 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002013#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002014 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002015 if (vmx->host_state.fs_reload_needed)
2016 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002017#ifdef CONFIG_X86_64
2018 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2019 loadsegment(ds, vmx->host_state.ds_sel);
2020 loadsegment(es, vmx->host_state.es_sel);
2021 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002022#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002023 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002024#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002025 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002026#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002027 if (vmx->host_state.msr_host_bndcfgs)
2028 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002029 /*
2030 * If the FPU is not active (through the host task or
2031 * the guest vcpu), then restore the cr0.TS bit.
2032 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002033 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002034 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002035 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002036}
2037
Avi Kivitya9b21b62008-06-24 11:48:49 +03002038static void vmx_load_host_state(struct vcpu_vmx *vmx)
2039{
2040 preempt_disable();
2041 __vmx_load_host_state(vmx);
2042 preempt_enable();
2043}
2044
Feng Wu28b835d2015-09-18 22:29:54 +08002045static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2046{
2047 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2048 struct pi_desc old, new;
2049 unsigned int dest;
2050
2051 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2052 !irq_remapping_cap(IRQ_POSTING_CAP))
2053 return;
2054
2055 do {
2056 old.control = new.control = pi_desc->control;
2057
2058 /*
2059 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2060 * are two possible cases:
2061 * 1. After running 'pre_block', context switch
2062 * happened. For this case, 'sn' was set in
2063 * vmx_vcpu_put(), so we need to clear it here.
2064 * 2. After running 'pre_block', we were blocked,
2065 * and woken up by some other guy. For this case,
2066 * we don't need to do anything, 'pi_post_block'
2067 * will do everything for us. However, we cannot
2068 * check whether it is case #1 or case #2 here
2069 * (maybe, not needed), so we also clear sn here,
2070 * I think it is not a big deal.
2071 */
2072 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2073 if (vcpu->cpu != cpu) {
2074 dest = cpu_physical_id(cpu);
2075
2076 if (x2apic_enabled())
2077 new.ndst = dest;
2078 else
2079 new.ndst = (dest << 8) & 0xFF00;
2080 }
2081
2082 /* set 'NV' to 'notification vector' */
2083 new.nv = POSTED_INTR_VECTOR;
2084 }
2085
2086 /* Allow posting non-urgent interrupts */
2087 new.sn = 0;
2088 } while (cmpxchg(&pi_desc->control, old.control,
2089 new.control) != old.control);
2090}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091/*
2092 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2093 * vcpu mutex is already taken.
2094 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002095static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002097 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002098 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002100 if (!vmm_exclusive)
2101 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002102 else if (vmx->loaded_vmcs->cpu != cpu)
2103 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002104
Nadav Har'Eld462b812011-05-24 15:26:10 +03002105 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2106 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2107 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002108 }
2109
Nadav Har'Eld462b812011-05-24 15:26:10 +03002110 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002111 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002112 unsigned long sysenter_esp;
2113
Avi Kivitya8eeb042010-05-10 12:34:53 +03002114 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002115 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002116 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002117
2118 /*
2119 * Read loaded_vmcs->cpu should be before fetching
2120 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2121 * See the comments in __loaded_vmcs_clear().
2122 */
2123 smp_rmb();
2124
Nadav Har'Eld462b812011-05-24 15:26:10 +03002125 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2126 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002127 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002128 local_irq_enable();
2129
Avi Kivity6aa8b732006-12-10 02:21:36 -08002130 /*
2131 * Linux uses per-cpu TSS and GDT, so set these when switching
2132 * processors.
2133 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002134 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002135 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136
2137 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2138 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002139
2140 /* Setup TSC multiplier */
2141 if (cpu_has_vmx_tsc_scaling())
2142 vmcs_write64(TSC_MULTIPLIER,
2143 vcpu->arch.tsc_scaling_ratio);
2144
Nadav Har'Eld462b812011-05-24 15:26:10 +03002145 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146 }
Feng Wu28b835d2015-09-18 22:29:54 +08002147
2148 vmx_vcpu_pi_load(vcpu, cpu);
2149}
2150
2151static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2152{
2153 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2154
2155 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2156 !irq_remapping_cap(IRQ_POSTING_CAP))
2157 return;
2158
2159 /* Set SN when the vCPU is preempted */
2160 if (vcpu->preempted)
2161 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162}
2163
2164static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2165{
Feng Wu28b835d2015-09-18 22:29:54 +08002166 vmx_vcpu_pi_put(vcpu);
2167
Avi Kivitya9b21b62008-06-24 11:48:49 +03002168 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002169 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002170 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2171 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002172 kvm_cpu_vmxoff();
2173 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174}
2175
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002176static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2177{
Avi Kivity81231c62010-01-24 16:26:40 +02002178 ulong cr0;
2179
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002180 if (vcpu->fpu_active)
2181 return;
2182 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002183 cr0 = vmcs_readl(GUEST_CR0);
2184 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2185 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2186 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002187 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002188 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002189 if (is_guest_mode(vcpu))
2190 vcpu->arch.cr0_guest_owned_bits &=
2191 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002192 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002193}
2194
Avi Kivityedcafe32009-12-30 18:07:40 +02002195static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2196
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002197/*
2198 * Return the cr0 value that a nested guest would read. This is a combination
2199 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2200 * its hypervisor (cr0_read_shadow).
2201 */
2202static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2203{
2204 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2205 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2206}
2207static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2208{
2209 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2210 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2211}
2212
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002213static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2214{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002215 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2216 * set this *before* calling this function.
2217 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002218 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002219 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002220 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002221 vcpu->arch.cr0_guest_owned_bits = 0;
2222 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002223 if (is_guest_mode(vcpu)) {
2224 /*
2225 * L1's specified read shadow might not contain the TS bit,
2226 * so now that we turned on shadowing of this bit, we need to
2227 * set this bit of the shadow. Like in nested_vmx_run we need
2228 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2229 * up-to-date here because we just decached cr0.TS (and we'll
2230 * only update vmcs12->guest_cr0 on nested exit).
2231 */
2232 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2233 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2234 (vcpu->arch.cr0 & X86_CR0_TS);
2235 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2236 } else
2237 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002238}
2239
Avi Kivity6aa8b732006-12-10 02:21:36 -08002240static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2241{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002242 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002243
Avi Kivity6de12732011-03-07 12:51:22 +02002244 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2245 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2246 rflags = vmcs_readl(GUEST_RFLAGS);
2247 if (to_vmx(vcpu)->rmode.vm86_active) {
2248 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2249 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2250 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2251 }
2252 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002253 }
Avi Kivity6de12732011-03-07 12:51:22 +02002254 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255}
2256
2257static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2258{
Avi Kivity6de12732011-03-07 12:51:22 +02002259 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2260 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002261 if (to_vmx(vcpu)->rmode.vm86_active) {
2262 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002263 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002264 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002265 vmcs_writel(GUEST_RFLAGS, rflags);
2266}
2267
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002268static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002269{
2270 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2271 int ret = 0;
2272
2273 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002274 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002275 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002276 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002277
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002278 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002279}
2280
2281static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2282{
2283 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2284 u32 interruptibility = interruptibility_old;
2285
2286 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2287
Jan Kiszka48005f62010-02-19 19:38:07 +01002288 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002289 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002290 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002291 interruptibility |= GUEST_INTR_STATE_STI;
2292
2293 if ((interruptibility != interruptibility_old))
2294 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2295}
2296
Avi Kivity6aa8b732006-12-10 02:21:36 -08002297static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2298{
2299 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002301 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002303 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002304
Glauber Costa2809f5d2009-05-12 16:21:05 -04002305 /* skipping an emulated instruction also counts */
2306 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002307}
2308
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002309/*
2310 * KVM wants to inject page-faults which it got to the guest. This function
2311 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002312 */
Gleb Natapove011c662013-09-25 12:51:35 +03002313static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002314{
2315 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2316
Gleb Natapove011c662013-09-25 12:51:35 +03002317 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002318 return 0;
2319
Jan Kiszka533558b2014-01-04 18:47:20 +01002320 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2321 vmcs_read32(VM_EXIT_INTR_INFO),
2322 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002323 return 1;
2324}
2325
Avi Kivity298101d2007-11-25 13:41:11 +02002326static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002327 bool has_error_code, u32 error_code,
2328 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002329{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002330 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002331 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002332
Gleb Natapove011c662013-09-25 12:51:35 +03002333 if (!reinject && is_guest_mode(vcpu) &&
2334 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002335 return;
2336
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002337 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002338 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002339 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2340 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002341
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002342 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002343 int inc_eip = 0;
2344 if (kvm_exception_is_soft(nr))
2345 inc_eip = vcpu->arch.event_exit_inst_len;
2346 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002347 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002348 return;
2349 }
2350
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002351 if (kvm_exception_is_soft(nr)) {
2352 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2353 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002354 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2355 } else
2356 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2357
2358 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002359}
2360
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002361static bool vmx_rdtscp_supported(void)
2362{
2363 return cpu_has_vmx_rdtscp();
2364}
2365
Mao, Junjiead756a12012-07-02 01:18:48 +00002366static bool vmx_invpcid_supported(void)
2367{
2368 return cpu_has_vmx_invpcid() && enable_ept;
2369}
2370
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371/*
Eddie Donga75beee2007-05-17 18:55:15 +03002372 * Swap MSR entry in host/guest MSR entry array.
2373 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002374static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002375{
Avi Kivity26bb0982009-09-07 11:14:12 +03002376 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002377
2378 tmp = vmx->guest_msrs[to];
2379 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2380 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002381}
2382
Yang Zhang8d146952013-01-25 10:18:50 +08002383static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2384{
2385 unsigned long *msr_bitmap;
2386
Wincy Van670125b2015-03-04 14:31:56 +08002387 if (is_guest_mode(vcpu))
2388 msr_bitmap = vmx_msr_bitmap_nested;
Jan Kiszka8a9781f2015-05-04 08:32:32 +02002389 else if (vcpu->arch.apic_base & X2APIC_ENABLE) {
Yang Zhang8d146952013-01-25 10:18:50 +08002390 if (is_long_mode(vcpu))
2391 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2392 else
2393 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2394 } else {
2395 if (is_long_mode(vcpu))
2396 msr_bitmap = vmx_msr_bitmap_longmode;
2397 else
2398 msr_bitmap = vmx_msr_bitmap_legacy;
2399 }
2400
2401 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2402}
2403
Eddie Donga75beee2007-05-17 18:55:15 +03002404/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002405 * Set up the vmcs to automatically save and restore system
2406 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2407 * mode, as fiddling with msrs is very expensive.
2408 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002409static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002410{
Avi Kivity26bb0982009-09-07 11:14:12 +03002411 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002412
Eddie Donga75beee2007-05-17 18:55:15 +03002413 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002414#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002415 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002416 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002417 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002418 move_msr_up(vmx, index, save_nmsrs++);
2419 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002420 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002421 move_msr_up(vmx, index, save_nmsrs++);
2422 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002423 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002424 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002425 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002426 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002427 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002428 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002429 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002430 * if efer.sce is enabled.
2431 */
Brian Gerst8c065852010-07-17 09:03:26 -04002432 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002433 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002434 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002435 }
Eddie Donga75beee2007-05-17 18:55:15 +03002436#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002437 index = __find_msr_index(vmx, MSR_EFER);
2438 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002439 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002440
Avi Kivity26bb0982009-09-07 11:14:12 +03002441 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002442
Yang Zhang8d146952013-01-25 10:18:50 +08002443 if (cpu_has_vmx_msr_bitmap())
2444 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002445}
2446
2447/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002449 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2450 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002452static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002453{
2454 u64 host_tsc, tsc_offset;
2455
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002456 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002458 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002459}
2460
2461/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002462 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2463 * counter, even if a nested guest (L2) is currently running.
2464 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002465static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002466{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002467 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002468
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002469 tsc_offset = is_guest_mode(vcpu) ?
2470 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2471 vmcs_read64(TSC_OFFSET);
2472 return host_tsc + tsc_offset;
2473}
2474
Will Auldba904632012-11-29 12:42:50 -08002475static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2476{
2477 return vmcs_read64(TSC_OFFSET);
2478}
2479
Joerg Roedel4051b182011-03-25 09:44:49 +01002480/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002481 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002482 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002483static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002484{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002485 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002486 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002487 * We're here if L1 chose not to trap WRMSR to TSC. According
2488 * to the spec, this should set L1's TSC; The offset that L1
2489 * set for L2 remains unchanged, and still needs to be added
2490 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002491 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002492 struct vmcs12 *vmcs12;
2493 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2494 /* recalculate vmcs02.TSC_OFFSET: */
2495 vmcs12 = get_vmcs12(vcpu);
2496 vmcs_write64(TSC_OFFSET, offset +
2497 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2498 vmcs12->tsc_offset : 0));
2499 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002500 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2501 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002502 vmcs_write64(TSC_OFFSET, offset);
2503 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504}
2505
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002506static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002507{
2508 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002509
Zachary Amsdene48672f2010-08-19 22:07:23 -10002510 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002511 if (is_guest_mode(vcpu)) {
2512 /* Even when running L2, the adjustment needs to apply to L1 */
2513 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002514 } else
2515 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2516 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002517}
2518
Nadav Har'El801d3422011-05-25 23:02:23 +03002519static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2520{
2521 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2522 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2523}
2524
2525/*
2526 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2527 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2528 * all guests if the "nested" module option is off, and can also be disabled
2529 * for a single guest by disabling its VMX cpuid bit.
2530 */
2531static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2532{
2533 return nested && guest_cpuid_has_vmx(vcpu);
2534}
2535
Avi Kivity6aa8b732006-12-10 02:21:36 -08002536/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002537 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2538 * returned for the various VMX controls MSRs when nested VMX is enabled.
2539 * The same values should also be used to verify that vmcs12 control fields are
2540 * valid during nested entry from L1 to L2.
2541 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2542 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2543 * bit in the high half is on if the corresponding bit in the control field
2544 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002545 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002546static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002547{
2548 /*
2549 * Note that as a general rule, the high half of the MSRs (bits in
2550 * the control fields which may be 1) should be initialized by the
2551 * intersection of the underlying hardware's MSR (i.e., features which
2552 * can be supported) and the list of features we want to expose -
2553 * because they are known to be properly supported in our code.
2554 * Also, usually, the low half of the MSRs (bits which must be 1) can
2555 * be set to 0, meaning that L1 may turn off any of these bits. The
2556 * reason is that if one of these bits is necessary, it will appear
2557 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2558 * fields of vmcs01 and vmcs02, will turn these bits off - and
2559 * nested_vmx_exit_handled() will not pass related exits to L1.
2560 * These rules have exceptions below.
2561 */
2562
2563 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002564 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002565 vmx->nested.nested_vmx_pinbased_ctls_low,
2566 vmx->nested.nested_vmx_pinbased_ctls_high);
2567 vmx->nested.nested_vmx_pinbased_ctls_low |=
2568 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2569 vmx->nested.nested_vmx_pinbased_ctls_high &=
2570 PIN_BASED_EXT_INTR_MASK |
2571 PIN_BASED_NMI_EXITING |
2572 PIN_BASED_VIRTUAL_NMIS;
2573 vmx->nested.nested_vmx_pinbased_ctls_high |=
2574 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002575 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002576 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002577 vmx->nested.nested_vmx_pinbased_ctls_high |=
2578 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002579
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002580 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002581 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002582 vmx->nested.nested_vmx_exit_ctls_low,
2583 vmx->nested.nested_vmx_exit_ctls_high);
2584 vmx->nested.nested_vmx_exit_ctls_low =
2585 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002586
Wincy Vanb9c237b2015-02-03 23:56:30 +08002587 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002588#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002589 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002590#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002591 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002592 vmx->nested.nested_vmx_exit_ctls_high |=
2593 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002594 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002595 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2596
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002597 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002598 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002599
Jan Kiszka2996fca2014-06-16 13:59:43 +02002600 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002601 vmx->nested.nested_vmx_true_exit_ctls_low =
2602 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002603 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2604
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002605 /* entry controls */
2606 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002607 vmx->nested.nested_vmx_entry_ctls_low,
2608 vmx->nested.nested_vmx_entry_ctls_high);
2609 vmx->nested.nested_vmx_entry_ctls_low =
2610 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2611 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002612#ifdef CONFIG_X86_64
2613 VM_ENTRY_IA32E_MODE |
2614#endif
2615 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002616 vmx->nested.nested_vmx_entry_ctls_high |=
2617 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002618 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002619 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002620
Jan Kiszka2996fca2014-06-16 13:59:43 +02002621 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002622 vmx->nested.nested_vmx_true_entry_ctls_low =
2623 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002624 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2625
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002626 /* cpu-based controls */
2627 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002628 vmx->nested.nested_vmx_procbased_ctls_low,
2629 vmx->nested.nested_vmx_procbased_ctls_high);
2630 vmx->nested.nested_vmx_procbased_ctls_low =
2631 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2632 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002633 CPU_BASED_VIRTUAL_INTR_PENDING |
2634 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002635 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2636 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2637 CPU_BASED_CR3_STORE_EXITING |
2638#ifdef CONFIG_X86_64
2639 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2640#endif
2641 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002642 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2643 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2644 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2645 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002646 /*
2647 * We can allow some features even when not supported by the
2648 * hardware. For example, L1 can specify an MSR bitmap - and we
2649 * can use it to avoid exits to L1 - even when L0 runs L2
2650 * without MSR bitmaps.
2651 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002652 vmx->nested.nested_vmx_procbased_ctls_high |=
2653 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002654 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002655
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002656 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002657 vmx->nested.nested_vmx_true_procbased_ctls_low =
2658 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002659 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2660
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002661 /* secondary cpu-based controls */
2662 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002663 vmx->nested.nested_vmx_secondary_ctls_low,
2664 vmx->nested.nested_vmx_secondary_ctls_high);
2665 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2666 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002667 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002668 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002669 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002670 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002671 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002672 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002673 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002674 SECONDARY_EXEC_XSAVES |
2675 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002676
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002677 if (enable_ept) {
2678 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002679 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002680 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002681 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002682 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2683 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002684 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002685 /*
Bandan Das4b855072014-04-19 18:17:44 -04002686 * For nested guests, we don't do anything specific
2687 * for single context invalidation. Hence, only advertise
2688 * support for global context invalidation.
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002689 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002690 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002691 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002692 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002693
Wanpeng Li089d7b62015-10-13 09:18:37 -07002694 if (enable_vpid)
2695 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
2696 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2697 else
2698 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002699
Radim Krčmář0790ec12015-03-17 14:02:32 +01002700 if (enable_unrestricted_guest)
2701 vmx->nested.nested_vmx_secondary_ctls_high |=
2702 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2703
Jan Kiszkac18911a2013-03-13 16:06:41 +01002704 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002705 rdmsr(MSR_IA32_VMX_MISC,
2706 vmx->nested.nested_vmx_misc_low,
2707 vmx->nested.nested_vmx_misc_high);
2708 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2709 vmx->nested.nested_vmx_misc_low |=
2710 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002711 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002712 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002713}
2714
2715static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2716{
2717 /*
2718 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2719 */
2720 return ((control & high) | low) == control;
2721}
2722
2723static inline u64 vmx_control_msr(u32 low, u32 high)
2724{
2725 return low | ((u64)high << 32);
2726}
2727
Jan Kiszkacae50132014-01-04 18:47:22 +01002728/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002729static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2730{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002731 struct vcpu_vmx *vmx = to_vmx(vcpu);
2732
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002733 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002734 case MSR_IA32_VMX_BASIC:
2735 /*
2736 * This MSR reports some information about VMX support. We
2737 * should return information about the VMX we emulate for the
2738 * guest, and the VMCS structure we give it - not about the
2739 * VMX support of the underlying hardware.
2740 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002741 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002742 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2743 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2744 break;
2745 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2746 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002747 *pdata = vmx_control_msr(
2748 vmx->nested.nested_vmx_pinbased_ctls_low,
2749 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002750 break;
2751 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002752 *pdata = vmx_control_msr(
2753 vmx->nested.nested_vmx_true_procbased_ctls_low,
2754 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3e2014-06-16 13:59:41 +02002755 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002756 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002757 *pdata = vmx_control_msr(
2758 vmx->nested.nested_vmx_procbased_ctls_low,
2759 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002760 break;
2761 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002762 *pdata = vmx_control_msr(
2763 vmx->nested.nested_vmx_true_exit_ctls_low,
2764 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002765 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002766 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002767 *pdata = vmx_control_msr(
2768 vmx->nested.nested_vmx_exit_ctls_low,
2769 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002770 break;
2771 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002772 *pdata = vmx_control_msr(
2773 vmx->nested.nested_vmx_true_entry_ctls_low,
2774 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002775 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002776 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002777 *pdata = vmx_control_msr(
2778 vmx->nested.nested_vmx_entry_ctls_low,
2779 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002780 break;
2781 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002782 *pdata = vmx_control_msr(
2783 vmx->nested.nested_vmx_misc_low,
2784 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002785 break;
2786 /*
2787 * These MSRs specify bits which the guest must keep fixed (on or off)
2788 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2789 * We picked the standard core2 setting.
2790 */
2791#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2792#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2793 case MSR_IA32_VMX_CR0_FIXED0:
2794 *pdata = VMXON_CR0_ALWAYSON;
2795 break;
2796 case MSR_IA32_VMX_CR0_FIXED1:
2797 *pdata = -1ULL;
2798 break;
2799 case MSR_IA32_VMX_CR4_FIXED0:
2800 *pdata = VMXON_CR4_ALWAYSON;
2801 break;
2802 case MSR_IA32_VMX_CR4_FIXED1:
2803 *pdata = -1ULL;
2804 break;
2805 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002806 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002807 break;
2808 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002809 *pdata = vmx_control_msr(
2810 vmx->nested.nested_vmx_secondary_ctls_low,
2811 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002812 break;
2813 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002814 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002815 *pdata = vmx->nested.nested_vmx_ept_caps |
2816 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002817 break;
2818 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002819 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002820 }
2821
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002822 return 0;
2823}
2824
2825/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826 * Reads an msr value (of 'msr_index') into 'pdata'.
2827 * Returns 0 on success, non-0 otherwise.
2828 * Assumes vcpu_load() was already called.
2829 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002830static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002831{
Avi Kivity26bb0982009-09-07 11:14:12 +03002832 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002833
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002834 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002835#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002837 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838 break;
2839 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002840 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002842 case MSR_KERNEL_GS_BASE:
2843 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002844 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002845 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002846#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002848 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302849 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002850 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 break;
2852 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002853 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854 break;
2855 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002856 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857 break;
2858 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002859 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002861 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002862 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002863 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002864 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002865 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002866 case MSR_IA32_FEATURE_CONTROL:
2867 if (!nested_vmx_allowed(vcpu))
2868 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002869 msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002870 break;
2871 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2872 if (!nested_vmx_allowed(vcpu))
2873 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002874 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08002875 case MSR_IA32_XSS:
2876 if (!vmx_xsaves_supported())
2877 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002878 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08002879 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002880 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002881 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002882 return 1;
2883 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002885 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002886 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002887 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002888 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002890 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891 }
2892
Avi Kivity6aa8b732006-12-10 02:21:36 -08002893 return 0;
2894}
2895
Jan Kiszkacae50132014-01-04 18:47:22 +01002896static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2897
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898/*
2899 * Writes msr value into into the appropriate "register".
2900 * Returns 0 on success, non-0 otherwise.
2901 * Assumes vcpu_load() was already called.
2902 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002903static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002905 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002906 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002907 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002908 u32 msr_index = msr_info->index;
2909 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03002910
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002912 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002913 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002914 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002915#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002917 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 vmcs_writel(GUEST_FS_BASE, data);
2919 break;
2920 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002921 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 vmcs_writel(GUEST_GS_BASE, data);
2923 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002924 case MSR_KERNEL_GS_BASE:
2925 vmx_load_host_state(vmx);
2926 vmx->msr_guest_kernel_gs_base = data;
2927 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928#endif
2929 case MSR_IA32_SYSENTER_CS:
2930 vmcs_write32(GUEST_SYSENTER_CS, data);
2931 break;
2932 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002933 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002934 break;
2935 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002936 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002937 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002938 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002939 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002940 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002941 vmcs_write64(GUEST_BNDCFGS, data);
2942 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302943 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08002944 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002945 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002946 case MSR_IA32_CR_PAT:
2947 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03002948 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2949 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002950 vmcs_write64(GUEST_IA32_PAT, data);
2951 vcpu->arch.pat = data;
2952 break;
2953 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002954 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002955 break;
Will Auldba904632012-11-29 12:42:50 -08002956 case MSR_IA32_TSC_ADJUST:
2957 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002958 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002959 case MSR_IA32_FEATURE_CONTROL:
2960 if (!nested_vmx_allowed(vcpu) ||
2961 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2962 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2963 return 1;
2964 vmx->nested.msr_ia32_feature_control = data;
2965 if (msr_info->host_initiated && data == 0)
2966 vmx_leave_nested(vcpu);
2967 break;
2968 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2969 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08002970 case MSR_IA32_XSS:
2971 if (!vmx_xsaves_supported())
2972 return 1;
2973 /*
2974 * The only supported bit as of Skylake is bit 8, but
2975 * it is not supported on KVM.
2976 */
2977 if (data != 0)
2978 return 1;
2979 vcpu->arch.ia32_xss = data;
2980 if (vcpu->arch.ia32_xss != host_xss)
2981 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
2982 vcpu->arch.ia32_xss, host_xss);
2983 else
2984 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
2985 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002986 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002987 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002988 return 1;
2989 /* Check reserved bit, higher 32 bits should be zero */
2990 if ((data >> 32) != 0)
2991 return 1;
2992 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002994 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002995 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07002996 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002997 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002998 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
2999 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003000 ret = kvm_set_shared_msr(msr->index, msr->data,
3001 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003002 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003003 if (ret)
3004 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003005 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003006 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003007 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003008 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003009 }
3010
Eddie Dong2cc51562007-05-21 07:28:09 +03003011 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003012}
3013
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003014static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003016 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3017 switch (reg) {
3018 case VCPU_REGS_RSP:
3019 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3020 break;
3021 case VCPU_REGS_RIP:
3022 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3023 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003024 case VCPU_EXREG_PDPTR:
3025 if (enable_ept)
3026 ept_save_pdptrs(vcpu);
3027 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003028 default:
3029 break;
3030 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031}
3032
Avi Kivity6aa8b732006-12-10 02:21:36 -08003033static __init int cpu_has_kvm_support(void)
3034{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003035 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003036}
3037
3038static __init int vmx_disabled_by_bios(void)
3039{
3040 u64 msr;
3041
3042 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003043 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003044 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003045 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3046 && tboot_enabled())
3047 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003048 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003049 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003050 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003051 && !tboot_enabled()) {
3052 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003053 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003054 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003055 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003056 /* launched w/o TXT and VMX disabled */
3057 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3058 && !tboot_enabled())
3059 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003060 }
3061
3062 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003063}
3064
Dongxiao Xu7725b892010-05-11 18:29:38 +08003065static void kvm_cpu_vmxon(u64 addr)
3066{
3067 asm volatile (ASM_VMX_VMXON_RAX
3068 : : "a"(&addr), "m"(addr)
3069 : "memory", "cc");
3070}
3071
Radim Krčmář13a34e02014-08-28 15:13:03 +02003072static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003073{
3074 int cpu = raw_smp_processor_id();
3075 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003076 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003077
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003078 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003079 return -EBUSY;
3080
Nadav Har'Eld462b812011-05-24 15:26:10 +03003081 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003082 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3083 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003084
3085 /*
3086 * Now we can enable the vmclear operation in kdump
3087 * since the loaded_vmcss_on_cpu list on this cpu
3088 * has been initialized.
3089 *
3090 * Though the cpu is not in VMX operation now, there
3091 * is no problem to enable the vmclear operation
3092 * for the loaded_vmcss_on_cpu list is empty!
3093 */
3094 crash_enable_local_vmclear(cpu);
3095
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003097
3098 test_bits = FEATURE_CONTROL_LOCKED;
3099 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3100 if (tboot_enabled())
3101 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3102
3103 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003104 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003105 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3106 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003107 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003108
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003109 if (vmm_exclusive) {
3110 kvm_cpu_vmxon(phys_addr);
3111 ept_sync_global();
3112 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003113
Christoph Lameter89cbc762014-08-17 12:30:40 -05003114 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003115
Alexander Graf10474ae2009-09-15 11:37:46 +02003116 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003117}
3118
Nadav Har'Eld462b812011-05-24 15:26:10 +03003119static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003120{
3121 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003122 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003123
Nadav Har'Eld462b812011-05-24 15:26:10 +03003124 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3125 loaded_vmcss_on_cpu_link)
3126 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003127}
3128
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003129
3130/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3131 * tricks.
3132 */
3133static void kvm_cpu_vmxoff(void)
3134{
3135 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003136}
3137
Radim Krčmář13a34e02014-08-28 15:13:03 +02003138static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003139{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003140 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003141 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003142 kvm_cpu_vmxoff();
3143 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003144 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003145}
3146
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003147static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003148 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003149{
3150 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003151 u32 ctl = ctl_min | ctl_opt;
3152
3153 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3154
3155 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3156 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3157
3158 /* Ensure minimum (required) set of control bits are supported. */
3159 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003160 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003161
3162 *result = ctl;
3163 return 0;
3164}
3165
Avi Kivity110312c2010-12-21 12:54:20 +02003166static __init bool allow_1_setting(u32 msr, u32 ctl)
3167{
3168 u32 vmx_msr_low, vmx_msr_high;
3169
3170 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3171 return vmx_msr_high & ctl;
3172}
3173
Yang, Sheng002c7f72007-07-31 14:23:01 +03003174static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003175{
3176 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003177 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003178 u32 _pin_based_exec_control = 0;
3179 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003180 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003181 u32 _vmexit_control = 0;
3182 u32 _vmentry_control = 0;
3183
Raghavendra K T10166742012-02-07 23:19:20 +05303184 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003185#ifdef CONFIG_X86_64
3186 CPU_BASED_CR8_LOAD_EXITING |
3187 CPU_BASED_CR8_STORE_EXITING |
3188#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003189 CPU_BASED_CR3_LOAD_EXITING |
3190 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003191 CPU_BASED_USE_IO_BITMAPS |
3192 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003193 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003194 CPU_BASED_MWAIT_EXITING |
3195 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003196 CPU_BASED_INVLPG_EXITING |
3197 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003198
Sheng Yangf78e0e22007-10-29 09:40:42 +08003199 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003200 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003201 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003202 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3203 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003204 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003205#ifdef CONFIG_X86_64
3206 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3207 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3208 ~CPU_BASED_CR8_STORE_EXITING;
3209#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003210 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003211 min2 = 0;
3212 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003213 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003214 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003215 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003216 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003217 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003218 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003219 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003220 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003221 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003222 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003223 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003224 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003225 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003226 SECONDARY_EXEC_PCOMMIT |
3227 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003228 if (adjust_vmx_controls(min2, opt2,
3229 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003230 &_cpu_based_2nd_exec_control) < 0)
3231 return -EIO;
3232 }
3233#ifndef CONFIG_X86_64
3234 if (!(_cpu_based_2nd_exec_control &
3235 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3236 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3237#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003238
3239 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3240 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003241 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003242 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3243 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003244
Sheng Yangd56f5462008-04-25 10:13:16 +08003245 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003246 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3247 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003248 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3249 CPU_BASED_CR3_STORE_EXITING |
3250 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003251 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3252 vmx_capability.ept, vmx_capability.vpid);
3253 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003254
Paolo Bonzini81908bf2014-02-21 10:32:27 +01003255 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003256#ifdef CONFIG_X86_64
3257 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3258#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003259 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003260 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003261 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3262 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003263 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003264
Yang Zhang01e439b2013-04-11 19:25:12 +08003265 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3266 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
3267 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3268 &_pin_based_exec_control) < 0)
3269 return -EIO;
3270
3271 if (!(_cpu_based_2nd_exec_control &
3272 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
3273 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
3274 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3275
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003276 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003277 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003278 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3279 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003280 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003282 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003283
3284 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3285 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003286 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003287
3288#ifdef CONFIG_X86_64
3289 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3290 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003291 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003292#endif
3293
3294 /* Require Write-Back (WB) memory type for VMCS accesses. */
3295 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003296 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003297
Yang, Sheng002c7f72007-07-31 14:23:01 +03003298 vmcs_conf->size = vmx_msr_high & 0x1fff;
3299 vmcs_conf->order = get_order(vmcs_config.size);
3300 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003301
Yang, Sheng002c7f72007-07-31 14:23:01 +03003302 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3303 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003304 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003305 vmcs_conf->vmexit_ctrl = _vmexit_control;
3306 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003307
Avi Kivity110312c2010-12-21 12:54:20 +02003308 cpu_has_load_ia32_efer =
3309 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3310 VM_ENTRY_LOAD_IA32_EFER)
3311 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3312 VM_EXIT_LOAD_IA32_EFER);
3313
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003314 cpu_has_load_perf_global_ctrl =
3315 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3316 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3317 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3318 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3319
3320 /*
3321 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
3322 * but due to arrata below it can't be used. Workaround is to use
3323 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3324 *
3325 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3326 *
3327 * AAK155 (model 26)
3328 * AAP115 (model 30)
3329 * AAT100 (model 37)
3330 * BC86,AAY89,BD102 (model 44)
3331 * BA97 (model 46)
3332 *
3333 */
3334 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3335 switch (boot_cpu_data.x86_model) {
3336 case 26:
3337 case 30:
3338 case 37:
3339 case 44:
3340 case 46:
3341 cpu_has_load_perf_global_ctrl = false;
3342 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3343 "does not work properly. Using workaround\n");
3344 break;
3345 default:
3346 break;
3347 }
3348 }
3349
Wanpeng Li20300092014-12-02 19:14:59 +08003350 if (cpu_has_xsaves)
3351 rdmsrl(MSR_IA32_XSS, host_xss);
3352
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003353 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003354}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003355
3356static struct vmcs *alloc_vmcs_cpu(int cpu)
3357{
3358 int node = cpu_to_node(cpu);
3359 struct page *pages;
3360 struct vmcs *vmcs;
3361
Vlastimil Babka96db8002015-09-08 15:03:50 -07003362 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363 if (!pages)
3364 return NULL;
3365 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003366 memset(vmcs, 0, vmcs_config.size);
3367 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368 return vmcs;
3369}
3370
3371static struct vmcs *alloc_vmcs(void)
3372{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003373 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374}
3375
3376static void free_vmcs(struct vmcs *vmcs)
3377{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003378 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003379}
3380
Nadav Har'Eld462b812011-05-24 15:26:10 +03003381/*
3382 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3383 */
3384static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3385{
3386 if (!loaded_vmcs->vmcs)
3387 return;
3388 loaded_vmcs_clear(loaded_vmcs);
3389 free_vmcs(loaded_vmcs->vmcs);
3390 loaded_vmcs->vmcs = NULL;
3391}
3392
Sam Ravnborg39959582007-06-01 00:47:13 -07003393static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003394{
3395 int cpu;
3396
Zachary Amsden3230bb42009-09-29 11:38:37 -10003397 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003399 per_cpu(vmxarea, cpu) = NULL;
3400 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003401}
3402
Bandan Dasfe2b2012014-04-21 15:20:14 -04003403static void init_vmcs_shadow_fields(void)
3404{
3405 int i, j;
3406
3407 /* No checks for read only fields yet */
3408
3409 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3410 switch (shadow_read_write_fields[i]) {
3411 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003412 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003413 continue;
3414 break;
3415 default:
3416 break;
3417 }
3418
3419 if (j < i)
3420 shadow_read_write_fields[j] =
3421 shadow_read_write_fields[i];
3422 j++;
3423 }
3424 max_shadow_read_write_fields = j;
3425
3426 /* shadowed fields guest access without vmexit */
3427 for (i = 0; i < max_shadow_read_write_fields; i++) {
3428 clear_bit(shadow_read_write_fields[i],
3429 vmx_vmwrite_bitmap);
3430 clear_bit(shadow_read_write_fields[i],
3431 vmx_vmread_bitmap);
3432 }
3433 for (i = 0; i < max_shadow_read_only_fields; i++)
3434 clear_bit(shadow_read_only_fields[i],
3435 vmx_vmread_bitmap);
3436}
3437
Avi Kivity6aa8b732006-12-10 02:21:36 -08003438static __init int alloc_kvm_area(void)
3439{
3440 int cpu;
3441
Zachary Amsden3230bb42009-09-29 11:38:37 -10003442 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003443 struct vmcs *vmcs;
3444
3445 vmcs = alloc_vmcs_cpu(cpu);
3446 if (!vmcs) {
3447 free_kvm_area();
3448 return -ENOMEM;
3449 }
3450
3451 per_cpu(vmxarea, cpu) = vmcs;
3452 }
3453 return 0;
3454}
3455
Gleb Natapov14168782013-01-21 15:36:49 +02003456static bool emulation_required(struct kvm_vcpu *vcpu)
3457{
3458 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3459}
3460
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003461static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003462 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003463{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003464 if (!emulate_invalid_guest_state) {
3465 /*
3466 * CS and SS RPL should be equal during guest entry according
3467 * to VMX spec, but in reality it is not always so. Since vcpu
3468 * is in the middle of the transition from real mode to
3469 * protected mode it is safe to assume that RPL 0 is a good
3470 * default value.
3471 */
3472 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003473 save->selector &= ~SEGMENT_RPL_MASK;
3474 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003475 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003476 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003477 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478}
3479
3480static void enter_pmode(struct kvm_vcpu *vcpu)
3481{
3482 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003483 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003484
Gleb Natapovd99e4152012-12-20 16:57:45 +02003485 /*
3486 * Update real mode segment cache. It may be not up-to-date if sement
3487 * register was written while vcpu was in a guest mode.
3488 */
3489 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3490 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3491 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3492 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3493 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3494 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3495
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003496 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003497
Avi Kivity2fb92db2011-04-27 19:42:18 +03003498 vmx_segment_cache_clear(vmx);
3499
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003500 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003501
3502 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003503 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3504 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003505 vmcs_writel(GUEST_RFLAGS, flags);
3506
Rusty Russell66aee912007-07-17 23:34:16 +10003507 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3508 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509
3510 update_exception_bitmap(vcpu);
3511
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003512 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3513 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3514 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3515 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3516 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3517 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003518}
3519
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003520static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521{
Mathias Krause772e0312012-08-30 01:30:19 +02003522 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003523 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003524
Gleb Natapovd99e4152012-12-20 16:57:45 +02003525 var.dpl = 0x3;
3526 if (seg == VCPU_SREG_CS)
3527 var.type = 0x3;
3528
3529 if (!emulate_invalid_guest_state) {
3530 var.selector = var.base >> 4;
3531 var.base = var.base & 0xffff0;
3532 var.limit = 0xffff;
3533 var.g = 0;
3534 var.db = 0;
3535 var.present = 1;
3536 var.s = 1;
3537 var.l = 0;
3538 var.unusable = 0;
3539 var.type = 0x3;
3540 var.avl = 0;
3541 if (save->base & 0xf)
3542 printk_once(KERN_WARNING "kvm: segment base is not "
3543 "paragraph aligned when entering "
3544 "protected mode (seg=%d)", seg);
3545 }
3546
3547 vmcs_write16(sf->selector, var.selector);
3548 vmcs_write32(sf->base, var.base);
3549 vmcs_write32(sf->limit, var.limit);
3550 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003551}
3552
3553static void enter_rmode(struct kvm_vcpu *vcpu)
3554{
3555 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003556 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003557
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003558 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3559 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3560 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3561 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3562 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003563 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3564 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003565
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003566 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003567
Gleb Natapov776e58e2011-03-13 12:34:27 +02003568 /*
3569 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003570 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003571 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003572 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003573 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3574 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003575
Avi Kivity2fb92db2011-04-27 19:42:18 +03003576 vmx_segment_cache_clear(vmx);
3577
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003578 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003579 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3581
3582 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003583 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003585 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003586
3587 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003588 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003589 update_exception_bitmap(vcpu);
3590
Gleb Natapovd99e4152012-12-20 16:57:45 +02003591 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3592 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3593 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3594 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3595 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3596 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003597
Eddie Dong8668a3c2007-10-10 14:26:45 +08003598 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003599}
3600
Amit Shah401d10d2009-02-20 22:53:37 +05303601static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3602{
3603 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003604 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3605
3606 if (!msr)
3607 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303608
Avi Kivity44ea2b12009-09-06 15:55:37 +03003609 /*
3610 * Force kernel_gs_base reloading before EFER changes, as control
3611 * of this msr depends on is_long_mode().
3612 */
3613 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003614 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303615 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003616 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303617 msr->data = efer;
3618 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003619 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303620
3621 msr->data = efer & ~EFER_LME;
3622 }
3623 setup_msrs(vmx);
3624}
3625
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003626#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627
3628static void enter_lmode(struct kvm_vcpu *vcpu)
3629{
3630 u32 guest_tr_ar;
3631
Avi Kivity2fb92db2011-04-27 19:42:18 +03003632 vmx_segment_cache_clear(to_vmx(vcpu));
3633
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003635 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003636 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3637 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003638 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003639 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3640 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003641 }
Avi Kivityda38f432010-07-06 11:30:49 +03003642 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003643}
3644
3645static void exit_lmode(struct kvm_vcpu *vcpu)
3646{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003647 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003648 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003649}
3650
3651#endif
3652
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003653static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003654{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003655 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003656 if (enable_ept) {
3657 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3658 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003659 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003660 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003661}
3662
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003663static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3664{
3665 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3666}
3667
Avi Kivitye8467fd2009-12-29 18:43:06 +02003668static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3669{
3670 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3671
3672 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3673 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3674}
3675
Avi Kivityaff48ba2010-12-05 18:56:11 +02003676static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3677{
3678 if (enable_ept && is_paging(vcpu))
3679 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3680 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3681}
3682
Anthony Liguori25c4c272007-04-27 09:29:21 +03003683static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003684{
Avi Kivityfc78f512009-12-07 12:16:48 +02003685 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3686
3687 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3688 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003689}
3690
Sheng Yang14394422008-04-28 12:24:45 +08003691static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3692{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003693 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3694
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003695 if (!test_bit(VCPU_EXREG_PDPTR,
3696 (unsigned long *)&vcpu->arch.regs_dirty))
3697 return;
3698
Sheng Yang14394422008-04-28 12:24:45 +08003699 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003700 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3701 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3702 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3703 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003704 }
3705}
3706
Avi Kivity8f5d5492009-05-31 18:41:29 +03003707static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3708{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003709 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3710
Avi Kivity8f5d5492009-05-31 18:41:29 +03003711 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003712 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3713 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3714 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3715 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003716 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003717
3718 __set_bit(VCPU_EXREG_PDPTR,
3719 (unsigned long *)&vcpu->arch.regs_avail);
3720 __set_bit(VCPU_EXREG_PDPTR,
3721 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003722}
3723
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003724static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003725
3726static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3727 unsigned long cr0,
3728 struct kvm_vcpu *vcpu)
3729{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003730 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3731 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003732 if (!(cr0 & X86_CR0_PG)) {
3733 /* From paging/starting to nonpaging */
3734 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003735 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003736 (CPU_BASED_CR3_LOAD_EXITING |
3737 CPU_BASED_CR3_STORE_EXITING));
3738 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003739 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003740 } else if (!is_paging(vcpu)) {
3741 /* From nonpaging to paging */
3742 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003743 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003744 ~(CPU_BASED_CR3_LOAD_EXITING |
3745 CPU_BASED_CR3_STORE_EXITING));
3746 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003747 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003748 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003749
3750 if (!(cr0 & X86_CR0_WP))
3751 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003752}
3753
Avi Kivity6aa8b732006-12-10 02:21:36 -08003754static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3755{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003756 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003757 unsigned long hw_cr0;
3758
Gleb Natapov50378782013-02-04 16:00:28 +02003759 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003760 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003761 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003762 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003763 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003764
Gleb Natapov218e7632013-01-21 15:36:45 +02003765 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3766 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003767
Gleb Natapov218e7632013-01-21 15:36:45 +02003768 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3769 enter_rmode(vcpu);
3770 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003771
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003772#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003773 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003774 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003775 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003776 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777 exit_lmode(vcpu);
3778 }
3779#endif
3780
Avi Kivity089d0342009-03-23 18:26:32 +02003781 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003782 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3783
Avi Kivity02daab22009-12-30 12:40:26 +02003784 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003785 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003786
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003788 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003789 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003790
3791 /* depends on vcpu->arch.cr0 to be set to a new value */
3792 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003793}
3794
Sheng Yang14394422008-04-28 12:24:45 +08003795static u64 construct_eptp(unsigned long root_hpa)
3796{
3797 u64 eptp;
3798
3799 /* TODO write the value reading from MSR */
3800 eptp = VMX_EPT_DEFAULT_MT |
3801 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003802 if (enable_ept_ad_bits)
3803 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003804 eptp |= (root_hpa & PAGE_MASK);
3805
3806 return eptp;
3807}
3808
Avi Kivity6aa8b732006-12-10 02:21:36 -08003809static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3810{
Sheng Yang14394422008-04-28 12:24:45 +08003811 unsigned long guest_cr3;
3812 u64 eptp;
3813
3814 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003815 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003816 eptp = construct_eptp(cr3);
3817 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003818 if (is_paging(vcpu) || is_guest_mode(vcpu))
3819 guest_cr3 = kvm_read_cr3(vcpu);
3820 else
3821 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02003822 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003823 }
3824
Sheng Yang2384d2b2008-01-17 15:14:33 +08003825 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003826 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827}
3828
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003829static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003830{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003831 /*
3832 * Pass through host's Machine Check Enable value to hw_cr4, which
3833 * is in force while we are in guest mode. Do not let guests control
3834 * this bit, even if host CR4.MCE == 0.
3835 */
3836 unsigned long hw_cr4 =
3837 (cr4_read_shadow() & X86_CR4_MCE) |
3838 (cr4 & ~X86_CR4_MCE) |
3839 (to_vmx(vcpu)->rmode.vm86_active ?
3840 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003841
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003842 if (cr4 & X86_CR4_VMXE) {
3843 /*
3844 * To use VMXON (and later other VMX instructions), a guest
3845 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3846 * So basically the check on whether to allow nested VMX
3847 * is here.
3848 */
3849 if (!nested_vmx_allowed(vcpu))
3850 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003851 }
3852 if (to_vmx(vcpu)->nested.vmxon &&
3853 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003854 return 1;
3855
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003856 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003857 if (enable_ept) {
3858 if (!is_paging(vcpu)) {
3859 hw_cr4 &= ~X86_CR4_PAE;
3860 hw_cr4 |= X86_CR4_PSE;
3861 } else if (!(cr4 & X86_CR4_PAE)) {
3862 hw_cr4 &= ~X86_CR4_PAE;
3863 }
3864 }
Sheng Yang14394422008-04-28 12:24:45 +08003865
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003866 if (!enable_unrestricted_guest && !is_paging(vcpu))
3867 /*
3868 * SMEP/SMAP is disabled if CPU is in non-paging mode in
3869 * hardware. However KVM always uses paging mode without
3870 * unrestricted guest.
3871 * To emulate this behavior, SMEP/SMAP needs to be manually
3872 * disabled when guest switches to non-paging mode.
3873 */
3874 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP);
3875
Sheng Yang14394422008-04-28 12:24:45 +08003876 vmcs_writel(CR4_READ_SHADOW, cr4);
3877 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003878 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003879}
3880
Avi Kivity6aa8b732006-12-10 02:21:36 -08003881static void vmx_get_segment(struct kvm_vcpu *vcpu,
3882 struct kvm_segment *var, int seg)
3883{
Avi Kivitya9179492011-01-03 14:28:52 +02003884 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003885 u32 ar;
3886
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003887 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003888 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003889 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003890 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003891 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003892 var->base = vmx_read_guest_seg_base(vmx, seg);
3893 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3894 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003895 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003896 var->base = vmx_read_guest_seg_base(vmx, seg);
3897 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3898 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3899 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003900 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003901 var->type = ar & 15;
3902 var->s = (ar >> 4) & 1;
3903 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003904 /*
3905 * Some userspaces do not preserve unusable property. Since usable
3906 * segment has to be present according to VMX spec we can use present
3907 * property to amend userspace bug by making unusable segment always
3908 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3909 * segment as unusable.
3910 */
3911 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003912 var->avl = (ar >> 12) & 1;
3913 var->l = (ar >> 13) & 1;
3914 var->db = (ar >> 14) & 1;
3915 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003916}
3917
Avi Kivitya9179492011-01-03 14:28:52 +02003918static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3919{
Avi Kivitya9179492011-01-03 14:28:52 +02003920 struct kvm_segment s;
3921
3922 if (to_vmx(vcpu)->rmode.vm86_active) {
3923 vmx_get_segment(vcpu, &s, seg);
3924 return s.base;
3925 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003926 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003927}
3928
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003929static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003930{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003931 struct vcpu_vmx *vmx = to_vmx(vcpu);
3932
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003933 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003934 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003935 else {
3936 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003937 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003938 }
Avi Kivity69c73022011-03-07 15:26:44 +02003939}
3940
Avi Kivity653e3102007-05-07 10:55:37 +03003941static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003942{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943 u32 ar;
3944
Avi Kivityf0495f92012-06-07 17:06:10 +03003945 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946 ar = 1 << 16;
3947 else {
3948 ar = var->type & 15;
3949 ar |= (var->s & 1) << 4;
3950 ar |= (var->dpl & 3) << 5;
3951 ar |= (var->present & 1) << 7;
3952 ar |= (var->avl & 1) << 12;
3953 ar |= (var->l & 1) << 13;
3954 ar |= (var->db & 1) << 14;
3955 ar |= (var->g & 1) << 15;
3956 }
Avi Kivity653e3102007-05-07 10:55:37 +03003957
3958 return ar;
3959}
3960
3961static void vmx_set_segment(struct kvm_vcpu *vcpu,
3962 struct kvm_segment *var, int seg)
3963{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003964 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003965 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003966
Avi Kivity2fb92db2011-04-27 19:42:18 +03003967 vmx_segment_cache_clear(vmx);
3968
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003969 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3970 vmx->rmode.segs[seg] = *var;
3971 if (seg == VCPU_SREG_TR)
3972 vmcs_write16(sf->selector, var->selector);
3973 else if (var->s)
3974 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003975 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003976 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003977
Avi Kivity653e3102007-05-07 10:55:37 +03003978 vmcs_writel(sf->base, var->base);
3979 vmcs_write32(sf->limit, var->limit);
3980 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003981
3982 /*
3983 * Fix the "Accessed" bit in AR field of segment registers for older
3984 * qemu binaries.
3985 * IA32 arch specifies that at the time of processor reset the
3986 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003987 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003988 * state vmexit when "unrestricted guest" mode is turned on.
3989 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3990 * tree. Newer qemu binaries with that qemu fix would not need this
3991 * kvm hack.
3992 */
3993 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003994 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003995
Gleb Natapovf924d662012-12-12 19:10:55 +02003996 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003997
3998out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003999 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004000}
4001
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4003{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004004 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004005
4006 *db = (ar >> 14) & 1;
4007 *l = (ar >> 13) & 1;
4008}
4009
Gleb Natapov89a27f42010-02-16 10:51:48 +02004010static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004011{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004012 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4013 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004014}
4015
Gleb Natapov89a27f42010-02-16 10:51:48 +02004016static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004018 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4019 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004020}
4021
Gleb Natapov89a27f42010-02-16 10:51:48 +02004022static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004024 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4025 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004026}
4027
Gleb Natapov89a27f42010-02-16 10:51:48 +02004028static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004029{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004030 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4031 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032}
4033
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004034static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4035{
4036 struct kvm_segment var;
4037 u32 ar;
4038
4039 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004040 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004041 if (seg == VCPU_SREG_CS)
4042 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004043 ar = vmx_segment_access_rights(&var);
4044
4045 if (var.base != (var.selector << 4))
4046 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004047 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004048 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004049 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004050 return false;
4051
4052 return true;
4053}
4054
4055static bool code_segment_valid(struct kvm_vcpu *vcpu)
4056{
4057 struct kvm_segment cs;
4058 unsigned int cs_rpl;
4059
4060 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004061 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004062
Avi Kivity1872a3f2009-01-04 23:26:52 +02004063 if (cs.unusable)
4064 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004065 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004066 return false;
4067 if (!cs.s)
4068 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004069 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004070 if (cs.dpl > cs_rpl)
4071 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004072 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004073 if (cs.dpl != cs_rpl)
4074 return false;
4075 }
4076 if (!cs.present)
4077 return false;
4078
4079 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4080 return true;
4081}
4082
4083static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4084{
4085 struct kvm_segment ss;
4086 unsigned int ss_rpl;
4087
4088 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004089 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004090
Avi Kivity1872a3f2009-01-04 23:26:52 +02004091 if (ss.unusable)
4092 return true;
4093 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004094 return false;
4095 if (!ss.s)
4096 return false;
4097 if (ss.dpl != ss_rpl) /* DPL != RPL */
4098 return false;
4099 if (!ss.present)
4100 return false;
4101
4102 return true;
4103}
4104
4105static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4106{
4107 struct kvm_segment var;
4108 unsigned int rpl;
4109
4110 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004111 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004112
Avi Kivity1872a3f2009-01-04 23:26:52 +02004113 if (var.unusable)
4114 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004115 if (!var.s)
4116 return false;
4117 if (!var.present)
4118 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004119 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004120 if (var.dpl < rpl) /* DPL < RPL */
4121 return false;
4122 }
4123
4124 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4125 * rights flags
4126 */
4127 return true;
4128}
4129
4130static bool tr_valid(struct kvm_vcpu *vcpu)
4131{
4132 struct kvm_segment tr;
4133
4134 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4135
Avi Kivity1872a3f2009-01-04 23:26:52 +02004136 if (tr.unusable)
4137 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004138 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004139 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004140 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004141 return false;
4142 if (!tr.present)
4143 return false;
4144
4145 return true;
4146}
4147
4148static bool ldtr_valid(struct kvm_vcpu *vcpu)
4149{
4150 struct kvm_segment ldtr;
4151
4152 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4153
Avi Kivity1872a3f2009-01-04 23:26:52 +02004154 if (ldtr.unusable)
4155 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004156 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004157 return false;
4158 if (ldtr.type != 2)
4159 return false;
4160 if (!ldtr.present)
4161 return false;
4162
4163 return true;
4164}
4165
4166static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4167{
4168 struct kvm_segment cs, ss;
4169
4170 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4171 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4172
Nadav Amitb32a9912015-03-29 16:33:04 +03004173 return ((cs.selector & SEGMENT_RPL_MASK) ==
4174 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004175}
4176
4177/*
4178 * Check if guest state is valid. Returns true if valid, false if
4179 * not.
4180 * We assume that registers are always usable
4181 */
4182static bool guest_state_valid(struct kvm_vcpu *vcpu)
4183{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004184 if (enable_unrestricted_guest)
4185 return true;
4186
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004187 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004188 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004189 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4190 return false;
4191 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4192 return false;
4193 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4194 return false;
4195 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4196 return false;
4197 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4198 return false;
4199 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4200 return false;
4201 } else {
4202 /* protected mode guest state checks */
4203 if (!cs_ss_rpl_check(vcpu))
4204 return false;
4205 if (!code_segment_valid(vcpu))
4206 return false;
4207 if (!stack_segment_valid(vcpu))
4208 return false;
4209 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4210 return false;
4211 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4212 return false;
4213 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4214 return false;
4215 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4216 return false;
4217 if (!tr_valid(vcpu))
4218 return false;
4219 if (!ldtr_valid(vcpu))
4220 return false;
4221 }
4222 /* TODO:
4223 * - Add checks on RIP
4224 * - Add checks on RFLAGS
4225 */
4226
4227 return true;
4228}
4229
Mike Dayd77c26f2007-10-08 09:02:08 -04004230static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004231{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004232 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004233 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004234 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004235
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004236 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004237 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004238 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4239 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004240 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004241 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004242 r = kvm_write_guest_page(kvm, fn++, &data,
4243 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004244 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004245 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004246 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4247 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004248 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004249 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4250 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004251 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004252 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004253 r = kvm_write_guest_page(kvm, fn, &data,
4254 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4255 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004256out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004257 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004258 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004259}
4260
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004261static int init_rmode_identity_map(struct kvm *kvm)
4262{
Tang Chenf51770e2014-09-16 18:41:59 +08004263 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004264 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004265 u32 tmp;
4266
Avi Kivity089d0342009-03-23 18:26:32 +02004267 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004268 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004269
4270 /* Protect kvm->arch.ept_identity_pagetable_done. */
4271 mutex_lock(&kvm->slots_lock);
4272
Tang Chenf51770e2014-09-16 18:41:59 +08004273 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004274 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004275
Sheng Yangb927a3c2009-07-21 10:42:48 +08004276 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004277
4278 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004279 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004280 goto out2;
4281
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004282 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004283 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4284 if (r < 0)
4285 goto out;
4286 /* Set up identity-mapping pagetable for EPT in real mode */
4287 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4288 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4289 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4290 r = kvm_write_guest_page(kvm, identity_map_pfn,
4291 &tmp, i * sizeof(tmp), sizeof(tmp));
4292 if (r < 0)
4293 goto out;
4294 }
4295 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004296
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004297out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004298 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004299
4300out2:
4301 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004302 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004303}
4304
Avi Kivity6aa8b732006-12-10 02:21:36 -08004305static void seg_setup(int seg)
4306{
Mathias Krause772e0312012-08-30 01:30:19 +02004307 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004308 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004309
4310 vmcs_write16(sf->selector, 0);
4311 vmcs_writel(sf->base, 0);
4312 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004313 ar = 0x93;
4314 if (seg == VCPU_SREG_CS)
4315 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004316
4317 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004318}
4319
Sheng Yangf78e0e22007-10-29 09:40:42 +08004320static int alloc_apic_access_page(struct kvm *kvm)
4321{
Xiao Guangrong44841412012-09-07 14:14:20 +08004322 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004323 int r = 0;
4324
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004325 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004326 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004327 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004328 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4329 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004330 if (r)
4331 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004332
Tang Chen73a6d942014-09-11 13:38:00 +08004333 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004334 if (is_error_page(page)) {
4335 r = -EFAULT;
4336 goto out;
4337 }
4338
Tang Chenc24ae0d2014-09-24 15:57:58 +08004339 /*
4340 * Do not pin the page in memory, so that memory hot-unplug
4341 * is able to migrate it.
4342 */
4343 put_page(page);
4344 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004345out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004346 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004347 return r;
4348}
4349
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004350static int alloc_identity_pagetable(struct kvm *kvm)
4351{
Tang Chena255d472014-09-16 18:41:58 +08004352 /* Called with kvm->slots_lock held. */
4353
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004354 int r = 0;
4355
Tang Chena255d472014-09-16 18:41:58 +08004356 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4357
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004358 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4359 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004360
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004361 return r;
4362}
4363
Wanpeng Li991e7a02015-09-16 17:30:05 +08004364static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004365{
4366 int vpid;
4367
Avi Kivity919818a2009-03-23 18:01:29 +02004368 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004369 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004370 spin_lock(&vmx_vpid_lock);
4371 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004372 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004373 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004374 else
4375 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004376 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004377 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004378}
4379
Wanpeng Li991e7a02015-09-16 17:30:05 +08004380static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004381{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004382 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004383 return;
4384 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004385 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004386 spin_unlock(&vmx_vpid_lock);
4387}
4388
Yang Zhang8d146952013-01-25 10:18:50 +08004389#define MSR_TYPE_R 1
4390#define MSR_TYPE_W 2
4391static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4392 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004393{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004394 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004395
4396 if (!cpu_has_vmx_msr_bitmap())
4397 return;
4398
4399 /*
4400 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4401 * have the write-low and read-high bitmap offsets the wrong way round.
4402 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4403 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004404 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004405 if (type & MSR_TYPE_R)
4406 /* read-low */
4407 __clear_bit(msr, msr_bitmap + 0x000 / f);
4408
4409 if (type & MSR_TYPE_W)
4410 /* write-low */
4411 __clear_bit(msr, msr_bitmap + 0x800 / f);
4412
Sheng Yang25c5f222008-03-28 13:18:56 +08004413 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4414 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004415 if (type & MSR_TYPE_R)
4416 /* read-high */
4417 __clear_bit(msr, msr_bitmap + 0x400 / f);
4418
4419 if (type & MSR_TYPE_W)
4420 /* write-high */
4421 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4422
4423 }
4424}
4425
4426static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4427 u32 msr, int type)
4428{
4429 int f = sizeof(unsigned long);
4430
4431 if (!cpu_has_vmx_msr_bitmap())
4432 return;
4433
4434 /*
4435 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4436 * have the write-low and read-high bitmap offsets the wrong way round.
4437 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4438 */
4439 if (msr <= 0x1fff) {
4440 if (type & MSR_TYPE_R)
4441 /* read-low */
4442 __set_bit(msr, msr_bitmap + 0x000 / f);
4443
4444 if (type & MSR_TYPE_W)
4445 /* write-low */
4446 __set_bit(msr, msr_bitmap + 0x800 / f);
4447
4448 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4449 msr &= 0x1fff;
4450 if (type & MSR_TYPE_R)
4451 /* read-high */
4452 __set_bit(msr, msr_bitmap + 0x400 / f);
4453
4454 if (type & MSR_TYPE_W)
4455 /* write-high */
4456 __set_bit(msr, msr_bitmap + 0xc00 / f);
4457
Sheng Yang25c5f222008-03-28 13:18:56 +08004458 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004459}
4460
Wincy Vanf2b93282015-02-03 23:56:03 +08004461/*
4462 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4463 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4464 */
4465static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4466 unsigned long *msr_bitmap_nested,
4467 u32 msr, int type)
4468{
4469 int f = sizeof(unsigned long);
4470
4471 if (!cpu_has_vmx_msr_bitmap()) {
4472 WARN_ON(1);
4473 return;
4474 }
4475
4476 /*
4477 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4478 * have the write-low and read-high bitmap offsets the wrong way round.
4479 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4480 */
4481 if (msr <= 0x1fff) {
4482 if (type & MSR_TYPE_R &&
4483 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4484 /* read-low */
4485 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4486
4487 if (type & MSR_TYPE_W &&
4488 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4489 /* write-low */
4490 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4491
4492 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4493 msr &= 0x1fff;
4494 if (type & MSR_TYPE_R &&
4495 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4496 /* read-high */
4497 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4498
4499 if (type & MSR_TYPE_W &&
4500 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4501 /* write-high */
4502 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4503
4504 }
4505}
4506
Avi Kivity58972972009-02-24 22:26:47 +02004507static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4508{
4509 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004510 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4511 msr, MSR_TYPE_R | MSR_TYPE_W);
4512 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4513 msr, MSR_TYPE_R | MSR_TYPE_W);
4514}
4515
4516static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4517{
4518 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4519 msr, MSR_TYPE_R);
4520 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4521 msr, MSR_TYPE_R);
4522}
4523
4524static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4525{
4526 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4527 msr, MSR_TYPE_R);
4528 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4529 msr, MSR_TYPE_R);
4530}
4531
4532static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4533{
4534 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4535 msr, MSR_TYPE_W);
4536 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4537 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004538}
4539
Andrey Smetanind62caab2015-11-10 15:36:33 +03004540static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004541{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004542 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004543}
4544
Wincy Van705699a2015-02-03 23:58:17 +08004545static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4546{
4547 struct vcpu_vmx *vmx = to_vmx(vcpu);
4548 int max_irr;
4549 void *vapic_page;
4550 u16 status;
4551
4552 if (vmx->nested.pi_desc &&
4553 vmx->nested.pi_pending) {
4554 vmx->nested.pi_pending = false;
4555 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4556 return 0;
4557
4558 max_irr = find_last_bit(
4559 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4560
4561 if (max_irr == 256)
4562 return 0;
4563
4564 vapic_page = kmap(vmx->nested.virtual_apic_page);
4565 if (!vapic_page) {
4566 WARN_ON(1);
4567 return -ENOMEM;
4568 }
4569 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4570 kunmap(vmx->nested.virtual_apic_page);
4571
4572 status = vmcs_read16(GUEST_INTR_STATUS);
4573 if ((u8)max_irr > ((u8)status & 0xff)) {
4574 status &= ~0xff;
4575 status |= (u8)max_irr;
4576 vmcs_write16(GUEST_INTR_STATUS, status);
4577 }
4578 }
4579 return 0;
4580}
4581
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004582static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4583{
4584#ifdef CONFIG_SMP
4585 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004586 struct vcpu_vmx *vmx = to_vmx(vcpu);
4587
4588 /*
4589 * Currently, we don't support urgent interrupt,
4590 * all interrupts are recognized as non-urgent
4591 * interrupt, so we cannot post interrupts when
4592 * 'SN' is set.
4593 *
4594 * If the vcpu is in guest mode, it means it is
4595 * running instead of being scheduled out and
4596 * waiting in the run queue, and that's the only
4597 * case when 'SN' is set currently, warning if
4598 * 'SN' is set.
4599 */
4600 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4601
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004602 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4603 POSTED_INTR_VECTOR);
4604 return true;
4605 }
4606#endif
4607 return false;
4608}
4609
Wincy Van705699a2015-02-03 23:58:17 +08004610static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4611 int vector)
4612{
4613 struct vcpu_vmx *vmx = to_vmx(vcpu);
4614
4615 if (is_guest_mode(vcpu) &&
4616 vector == vmx->nested.posted_intr_nv) {
4617 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004618 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004619 /*
4620 * If a posted intr is not recognized by hardware,
4621 * we will accomplish it in the next vmentry.
4622 */
4623 vmx->nested.pi_pending = true;
4624 kvm_make_request(KVM_REQ_EVENT, vcpu);
4625 return 0;
4626 }
4627 return -1;
4628}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004629/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004630 * Send interrupt to vcpu via posted interrupt way.
4631 * 1. If target vcpu is running(non-root mode), send posted interrupt
4632 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4633 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4634 * interrupt from PIR in next vmentry.
4635 */
4636static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4637{
4638 struct vcpu_vmx *vmx = to_vmx(vcpu);
4639 int r;
4640
Wincy Van705699a2015-02-03 23:58:17 +08004641 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4642 if (!r)
4643 return;
4644
Yang Zhanga20ed542013-04-11 19:25:15 +08004645 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4646 return;
4647
4648 r = pi_test_and_set_on(&vmx->pi_desc);
4649 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004650 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004651 kvm_vcpu_kick(vcpu);
4652}
4653
4654static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4655{
4656 struct vcpu_vmx *vmx = to_vmx(vcpu);
4657
4658 if (!pi_test_and_clear_on(&vmx->pi_desc))
4659 return;
4660
4661 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4662}
4663
Avi Kivity6aa8b732006-12-10 02:21:36 -08004664/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004665 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4666 * will not change in the lifetime of the guest.
4667 * Note that host-state that does change is set elsewhere. E.g., host-state
4668 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4669 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004670static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004671{
4672 u32 low32, high32;
4673 unsigned long tmpl;
4674 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004675 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004676
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004677 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004678 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4679
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004680 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004681 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004682 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4683 vmx->host_state.vmcs_host_cr4 = cr4;
4684
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004685 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004686#ifdef CONFIG_X86_64
4687 /*
4688 * Load null selectors, so we can avoid reloading them in
4689 * __vmx_load_host_state(), in case userspace uses the null selectors
4690 * too (the expected case).
4691 */
4692 vmcs_write16(HOST_DS_SELECTOR, 0);
4693 vmcs_write16(HOST_ES_SELECTOR, 0);
4694#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004695 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4696 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004697#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004698 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4699 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4700
4701 native_store_idt(&dt);
4702 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004703 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004704
Avi Kivity83287ea422012-09-16 15:10:57 +03004705 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004706
4707 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4708 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4709 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4710 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4711
4712 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4713 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4714 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4715 }
4716}
4717
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004718static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4719{
4720 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4721 if (enable_ept)
4722 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004723 if (is_guest_mode(&vmx->vcpu))
4724 vmx->vcpu.arch.cr4_guest_owned_bits &=
4725 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004726 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4727}
4728
Yang Zhang01e439b2013-04-11 19:25:12 +08004729static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4730{
4731 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4732
Andrey Smetanind62caab2015-11-10 15:36:33 +03004733 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004734 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4735 return pin_based_exec_ctrl;
4736}
4737
Andrey Smetanind62caab2015-11-10 15:36:33 +03004738static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4739{
4740 struct vcpu_vmx *vmx = to_vmx(vcpu);
4741
4742 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
4743}
4744
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004745static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4746{
4747 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004748
4749 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4750 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4751
Paolo Bonzini35754c92015-07-29 12:05:37 +02004752 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004753 exec_control &= ~CPU_BASED_TPR_SHADOW;
4754#ifdef CONFIG_X86_64
4755 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4756 CPU_BASED_CR8_LOAD_EXITING;
4757#endif
4758 }
4759 if (!enable_ept)
4760 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4761 CPU_BASED_CR3_LOAD_EXITING |
4762 CPU_BASED_INVLPG_EXITING;
4763 return exec_control;
4764}
4765
4766static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4767{
4768 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004769 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004770 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4771 if (vmx->vpid == 0)
4772 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4773 if (!enable_ept) {
4774 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4775 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004776 /* Enable INVPCID for non-ept guests may cause performance regression. */
4777 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004778 }
4779 if (!enable_unrestricted_guest)
4780 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4781 if (!ple_gap)
4782 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004783 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004784 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4785 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004786 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004787 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4788 (handle_vmptrld).
4789 We can NOT enable shadow_vmcs here because we don't have yet
4790 a current VMCS12
4791 */
4792 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004793
4794 if (!enable_pml)
4795 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004796
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004797 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4798 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4799
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004800 return exec_control;
4801}
4802
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004803static void ept_set_mmio_spte_mask(void)
4804{
4805 /*
4806 * EPT Misconfigurations can be generated if the value of bits 2:0
4807 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004808 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004809 * spte.
4810 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004811 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004812}
4813
Wanpeng Lif53cd632014-12-02 19:14:58 +08004814#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004815/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004816 * Sets up the vmcs for emulated real mode.
4817 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004818static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004819{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004820#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004821 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004822#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004823 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004826 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4827 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004828
Abel Gordon4607c2d2013-04-18 14:35:55 +03004829 if (enable_shadow_vmcs) {
4830 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4831 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4832 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004833 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004834 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004835
Avi Kivity6aa8b732006-12-10 02:21:36 -08004836 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4837
Avi Kivity6aa8b732006-12-10 02:21:36 -08004838 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004839 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004840
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004841 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004842
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004843 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004844 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4845 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004846
Andrey Smetanind62caab2015-11-10 15:36:33 +03004847 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004848 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4849 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4850 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4851 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4852
4853 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004854
Li RongQing0bcf2612015-12-03 13:29:34 +08004855 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004856 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004857 }
4858
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004859 if (ple_gap) {
4860 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004861 vmx->ple_window = ple_window;
4862 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004863 }
4864
Xiao Guangrongc3707952011-07-12 03:28:04 +08004865 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4866 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004867 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4868
Avi Kivity9581d442010-10-19 16:46:55 +02004869 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4870 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004871 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004872#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004873 rdmsrl(MSR_FS_BASE, a);
4874 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4875 rdmsrl(MSR_GS_BASE, a);
4876 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4877#else
4878 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4879 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4880#endif
4881
Eddie Dong2cc51562007-05-21 07:28:09 +03004882 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4883 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004884 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03004885 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004886 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004887
Radim Krčmář74545702015-04-27 15:11:25 +02004888 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4889 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004890
Paolo Bonzini03916db2014-07-24 14:21:57 +02004891 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004892 u32 index = vmx_msr_index[i];
4893 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004894 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004895
4896 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4897 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004898 if (wrmsr_safe(index, data_low, data_high) < 0)
4899 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004900 vmx->guest_msrs[j].index = i;
4901 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004902 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004903 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004904 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004905
Gleb Natapov2961e8762013-11-25 15:37:13 +02004906
4907 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004908
4909 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02004910 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004911
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004912 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004913 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004914
Wanpeng Lif53cd632014-12-02 19:14:58 +08004915 if (vmx_xsaves_supported())
4916 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4917
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004918 return 0;
4919}
4920
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004921static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004922{
4923 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004924 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004925 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004926
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004927 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004928
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004929 vmx->soft_vnmi_blocked = 0;
4930
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004931 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004932 kvm_set_cr8(vcpu, 0);
4933
4934 if (!init_event) {
4935 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4936 MSR_IA32_APICBASE_ENABLE;
4937 if (kvm_vcpu_is_reset_bsp(vcpu))
4938 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4939 apic_base_msr.host_initiated = true;
4940 kvm_set_apic_base(vcpu, &apic_base_msr);
4941 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004942
Avi Kivity2fb92db2011-04-27 19:42:18 +03004943 vmx_segment_cache_clear(vmx);
4944
Avi Kivity5706be02008-08-20 15:07:31 +03004945 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004946 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004947 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004948
4949 seg_setup(VCPU_SREG_DS);
4950 seg_setup(VCPU_SREG_ES);
4951 seg_setup(VCPU_SREG_FS);
4952 seg_setup(VCPU_SREG_GS);
4953 seg_setup(VCPU_SREG_SS);
4954
4955 vmcs_write16(GUEST_TR_SELECTOR, 0);
4956 vmcs_writel(GUEST_TR_BASE, 0);
4957 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4958 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4959
4960 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4961 vmcs_writel(GUEST_LDTR_BASE, 0);
4962 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4963 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4964
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004965 if (!init_event) {
4966 vmcs_write32(GUEST_SYSENTER_CS, 0);
4967 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4968 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4969 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4970 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004971
4972 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01004973 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004974
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004975 vmcs_writel(GUEST_GDTR_BASE, 0);
4976 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4977
4978 vmcs_writel(GUEST_IDTR_BASE, 0);
4979 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4980
Anthony Liguori443381a2010-12-06 10:53:38 -06004981 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004982 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004983 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004984
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004985 setup_msrs(vmx);
4986
Avi Kivity6aa8b732006-12-10 02:21:36 -08004987 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4988
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004989 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004990 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004991 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004992 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004993 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004994 vmcs_write32(TPR_THRESHOLD, 0);
4995 }
4996
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004997 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004998
Andrey Smetanind62caab2015-11-10 15:36:33 +03004999 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005000 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5001
Sheng Yang2384d2b2008-01-17 15:14:33 +08005002 if (vmx->vpid != 0)
5003 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5004
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005005 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
5006 vmx_set_cr0(vcpu, cr0); /* enter rmode */
5007 vmx->vcpu.arch.cr0 = cr0;
5008 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005009 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005010 vmx_fpu_activate(vcpu);
5011 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005012
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005013 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005014}
5015
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005016/*
5017 * In nested virtualization, check if L1 asked to exit on external interrupts.
5018 * For most existing hypervisors, this will always return true.
5019 */
5020static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5021{
5022 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5023 PIN_BASED_EXT_INTR_MASK;
5024}
5025
Bandan Das77b0f5d2014-04-19 18:17:45 -04005026/*
5027 * In nested virtualization, check if L1 has set
5028 * VM_EXIT_ACK_INTR_ON_EXIT
5029 */
5030static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5031{
5032 return get_vmcs12(vcpu)->vm_exit_controls &
5033 VM_EXIT_ACK_INTR_ON_EXIT;
5034}
5035
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005036static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5037{
5038 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5039 PIN_BASED_NMI_EXITING;
5040}
5041
Jan Kiszkac9a79532014-03-07 20:03:15 +01005042static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005043{
5044 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005045
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005046 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5047 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5048 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5049}
5050
Jan Kiszkac9a79532014-03-07 20:03:15 +01005051static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005052{
5053 u32 cpu_based_vm_exec_control;
5054
Jan Kiszkac9a79532014-03-07 20:03:15 +01005055 if (!cpu_has_virtual_nmis() ||
5056 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5057 enable_irq_window(vcpu);
5058 return;
5059 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005060
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005061 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5062 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5063 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5064}
5065
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005066static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005067{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005068 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005069 uint32_t intr;
5070 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005071
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005072 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005073
Avi Kivityfa89a812008-09-01 15:57:51 +03005074 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005075 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005076 int inc_eip = 0;
5077 if (vcpu->arch.interrupt.soft)
5078 inc_eip = vcpu->arch.event_exit_inst_len;
5079 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005080 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005081 return;
5082 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005083 intr = irq | INTR_INFO_VALID_MASK;
5084 if (vcpu->arch.interrupt.soft) {
5085 intr |= INTR_TYPE_SOFT_INTR;
5086 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5087 vmx->vcpu.arch.event_exit_inst_len);
5088 } else
5089 intr |= INTR_TYPE_EXT_INTR;
5090 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005091}
5092
Sheng Yangf08864b2008-05-15 18:23:25 +08005093static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5094{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005095 struct vcpu_vmx *vmx = to_vmx(vcpu);
5096
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005097 if (is_guest_mode(vcpu))
5098 return;
5099
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005100 if (!cpu_has_virtual_nmis()) {
5101 /*
5102 * Tracking the NMI-blocked state in software is built upon
5103 * finding the next open IRQ window. This, in turn, depends on
5104 * well-behaving guests: They have to keep IRQs disabled at
5105 * least as long as the NMI handler runs. Otherwise we may
5106 * cause NMI nesting, maybe breaking the guest. But as this is
5107 * highly unlikely, we can live with the residual risk.
5108 */
5109 vmx->soft_vnmi_blocked = 1;
5110 vmx->vnmi_blocked_time = 0;
5111 }
5112
Jan Kiszka487b3912008-09-26 09:30:56 +02005113 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005114 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005115 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005116 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005117 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005118 return;
5119 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005120 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5121 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005122}
5123
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005124static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5125{
5126 if (!cpu_has_virtual_nmis())
5127 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005128 if (to_vmx(vcpu)->nmi_known_unmasked)
5129 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005130 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005131}
5132
5133static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5134{
5135 struct vcpu_vmx *vmx = to_vmx(vcpu);
5136
5137 if (!cpu_has_virtual_nmis()) {
5138 if (vmx->soft_vnmi_blocked != masked) {
5139 vmx->soft_vnmi_blocked = masked;
5140 vmx->vnmi_blocked_time = 0;
5141 }
5142 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005143 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005144 if (masked)
5145 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5146 GUEST_INTR_STATE_NMI);
5147 else
5148 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5149 GUEST_INTR_STATE_NMI);
5150 }
5151}
5152
Jan Kiszka2505dc92013-04-14 12:12:47 +02005153static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5154{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005155 if (to_vmx(vcpu)->nested.nested_run_pending)
5156 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005157
Jan Kiszka2505dc92013-04-14 12:12:47 +02005158 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5159 return 0;
5160
5161 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5162 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5163 | GUEST_INTR_STATE_NMI));
5164}
5165
Gleb Natapov78646122009-03-23 12:12:11 +02005166static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5167{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005168 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5169 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005170 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5171 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005172}
5173
Izik Eiduscbc94022007-10-25 00:29:55 +02005174static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5175{
5176 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005177
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005178 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5179 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005180 if (ret)
5181 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005182 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005183 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005184}
5185
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005186static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005187{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005188 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005189 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005190 /*
5191 * Update instruction length as we may reinject the exception
5192 * from user space while in guest debugging mode.
5193 */
5194 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5195 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005196 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005197 return false;
5198 /* fall through */
5199 case DB_VECTOR:
5200 if (vcpu->guest_debug &
5201 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5202 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005203 /* fall through */
5204 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005205 case OF_VECTOR:
5206 case BR_VECTOR:
5207 case UD_VECTOR:
5208 case DF_VECTOR:
5209 case SS_VECTOR:
5210 case GP_VECTOR:
5211 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005212 return true;
5213 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005214 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005215 return false;
5216}
5217
5218static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5219 int vec, u32 err_code)
5220{
5221 /*
5222 * Instruction with address size override prefix opcode 0x67
5223 * Cause the #SS fault with 0 error code in VM86 mode.
5224 */
5225 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5226 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5227 if (vcpu->arch.halt_request) {
5228 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005229 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005230 }
5231 return 1;
5232 }
5233 return 0;
5234 }
5235
5236 /*
5237 * Forward all other exceptions that are valid in real mode.
5238 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5239 * the required debugging infrastructure rework.
5240 */
5241 kvm_queue_exception(vcpu, vec);
5242 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005243}
5244
Andi Kleena0861c02009-06-08 17:37:09 +08005245/*
5246 * Trigger machine check on the host. We assume all the MSRs are already set up
5247 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5248 * We pass a fake environment to the machine check handler because we want
5249 * the guest to be always treated like user space, no matter what context
5250 * it used internally.
5251 */
5252static void kvm_machine_check(void)
5253{
5254#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5255 struct pt_regs regs = {
5256 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5257 .flags = X86_EFLAGS_IF,
5258 };
5259
5260 do_machine_check(&regs, 0);
5261#endif
5262}
5263
Avi Kivity851ba692009-08-24 11:10:17 +03005264static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005265{
5266 /* already handled by vcpu_run */
5267 return 1;
5268}
5269
Avi Kivity851ba692009-08-24 11:10:17 +03005270static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005271{
Avi Kivity1155f762007-11-22 11:30:47 +02005272 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005273 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005274 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005275 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005276 u32 vect_info;
5277 enum emulation_result er;
5278
Avi Kivity1155f762007-11-22 11:30:47 +02005279 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005280 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005281
Andi Kleena0861c02009-06-08 17:37:09 +08005282 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005283 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005284
Jan Kiszkae4a41882008-09-26 09:30:46 +02005285 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005286 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005287
5288 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005289 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005290 return 1;
5291 }
5292
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005293 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005294 if (is_guest_mode(vcpu)) {
5295 kvm_queue_exception(vcpu, UD_VECTOR);
5296 return 1;
5297 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005298 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005299 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005300 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005301 return 1;
5302 }
5303
Avi Kivity6aa8b732006-12-10 02:21:36 -08005304 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005305 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005306 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005307
5308 /*
5309 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5310 * MMIO, it is better to report an internal error.
5311 * See the comments in vmx_handle_exit.
5312 */
5313 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5314 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5315 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5316 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005317 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005318 vcpu->run->internal.data[0] = vect_info;
5319 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005320 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005321 return 0;
5322 }
5323
Avi Kivity6aa8b732006-12-10 02:21:36 -08005324 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005325 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005326 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005327 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005328 trace_kvm_page_fault(cr2, error_code);
5329
Gleb Natapov3298b752009-05-11 13:35:46 +03005330 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005331 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005332 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005333 }
5334
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005335 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005336
5337 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5338 return handle_rmode_exception(vcpu, ex_no, error_code);
5339
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005340 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005341 case AC_VECTOR:
5342 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5343 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005344 case DB_VECTOR:
5345 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5346 if (!(vcpu->guest_debug &
5347 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005348 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005349 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005350 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5351 skip_emulated_instruction(vcpu);
5352
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005353 kvm_queue_exception(vcpu, DB_VECTOR);
5354 return 1;
5355 }
5356 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5357 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5358 /* fall through */
5359 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005360 /*
5361 * Update instruction length as we may reinject #BP from
5362 * user space while in guest debugging mode. Reading it for
5363 * #DB as well causes no harm, it is not used in that case.
5364 */
5365 vmx->vcpu.arch.event_exit_inst_len =
5366 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005367 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005368 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005369 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5370 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005371 break;
5372 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005373 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5374 kvm_run->ex.exception = ex_no;
5375 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005376 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005377 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005378 return 0;
5379}
5380
Avi Kivity851ba692009-08-24 11:10:17 +03005381static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005382{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005383 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005384 return 1;
5385}
5386
Avi Kivity851ba692009-08-24 11:10:17 +03005387static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005388{
Avi Kivity851ba692009-08-24 11:10:17 +03005389 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005390 return 0;
5391}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005392
Avi Kivity851ba692009-08-24 11:10:17 +03005393static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005394{
He, Qingbfdaab02007-09-12 14:18:28 +08005395 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005396 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005397 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005398
He, Qingbfdaab02007-09-12 14:18:28 +08005399 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005400 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005401 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005402
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005403 ++vcpu->stat.io_exits;
5404
5405 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005406 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005407
5408 port = exit_qualification >> 16;
5409 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005410 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005411
5412 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005413}
5414
Ingo Molnar102d8322007-02-19 14:37:47 +02005415static void
5416vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5417{
5418 /*
5419 * Patch in the VMCALL instruction:
5420 */
5421 hypercall[0] = 0x0f;
5422 hypercall[1] = 0x01;
5423 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005424}
5425
Wincy Vanb9c237b2015-02-03 23:56:30 +08005426static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005427{
5428 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005429 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005430
Wincy Vanb9c237b2015-02-03 23:56:30 +08005431 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005432 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5433 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5434 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5435 return (val & always_on) == always_on;
5436}
5437
Guo Chao0fa06072012-06-28 15:16:19 +08005438/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005439static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5440{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005441 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005442 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5443 unsigned long orig_val = val;
5444
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005445 /*
5446 * We get here when L2 changed cr0 in a way that did not change
5447 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005448 * but did change L0 shadowed bits. So we first calculate the
5449 * effective cr0 value that L1 would like to write into the
5450 * hardware. It consists of the L2-owned bits from the new
5451 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005452 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005453 val = (val & ~vmcs12->cr0_guest_host_mask) |
5454 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5455
Wincy Vanb9c237b2015-02-03 23:56:30 +08005456 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005457 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005458
5459 if (kvm_set_cr0(vcpu, val))
5460 return 1;
5461 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005462 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005463 } else {
5464 if (to_vmx(vcpu)->nested.vmxon &&
5465 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5466 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005467 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005468 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005469}
5470
5471static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5472{
5473 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005474 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5475 unsigned long orig_val = val;
5476
5477 /* analogously to handle_set_cr0 */
5478 val = (val & ~vmcs12->cr4_guest_host_mask) |
5479 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5480 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005481 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005482 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005483 return 0;
5484 } else
5485 return kvm_set_cr4(vcpu, val);
5486}
5487
5488/* called to set cr0 as approriate for clts instruction exit. */
5489static void handle_clts(struct kvm_vcpu *vcpu)
5490{
5491 if (is_guest_mode(vcpu)) {
5492 /*
5493 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5494 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5495 * just pretend it's off (also in arch.cr0 for fpu_activate).
5496 */
5497 vmcs_writel(CR0_READ_SHADOW,
5498 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5499 vcpu->arch.cr0 &= ~X86_CR0_TS;
5500 } else
5501 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5502}
5503
Avi Kivity851ba692009-08-24 11:10:17 +03005504static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005505{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005506 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005507 int cr;
5508 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005509 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005510
He, Qingbfdaab02007-09-12 14:18:28 +08005511 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005512 cr = exit_qualification & 15;
5513 reg = (exit_qualification >> 8) & 15;
5514 switch ((exit_qualification >> 4) & 3) {
5515 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005516 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005517 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005518 switch (cr) {
5519 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005520 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005521 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005522 return 1;
5523 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005524 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005525 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005526 return 1;
5527 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005528 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005529 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005530 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005531 case 8: {
5532 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005533 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005534 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005535 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005536 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005537 return 1;
5538 if (cr8_prev <= cr8)
5539 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005540 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005541 return 0;
5542 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005543 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005544 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005545 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005546 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005547 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005548 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005549 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005550 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551 case 1: /*mov from cr*/
5552 switch (cr) {
5553 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005554 val = kvm_read_cr3(vcpu);
5555 kvm_register_write(vcpu, reg, val);
5556 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005557 skip_emulated_instruction(vcpu);
5558 return 1;
5559 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005560 val = kvm_get_cr8(vcpu);
5561 kvm_register_write(vcpu, reg, val);
5562 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005563 skip_emulated_instruction(vcpu);
5564 return 1;
5565 }
5566 break;
5567 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005568 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005569 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005570 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005571
5572 skip_emulated_instruction(vcpu);
5573 return 1;
5574 default:
5575 break;
5576 }
Avi Kivity851ba692009-08-24 11:10:17 +03005577 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005578 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005579 (int)(exit_qualification >> 4) & 3, cr);
5580 return 0;
5581}
5582
Avi Kivity851ba692009-08-24 11:10:17 +03005583static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005584{
He, Qingbfdaab02007-09-12 14:18:28 +08005585 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005586 int dr, dr7, reg;
5587
5588 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5589 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5590
5591 /* First, if DR does not exist, trigger UD */
5592 if (!kvm_require_dr(vcpu, dr))
5593 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005594
Jan Kiszkaf2483412010-01-20 18:20:20 +01005595 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005596 if (!kvm_require_cpl(vcpu, 0))
5597 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005598 dr7 = vmcs_readl(GUEST_DR7);
5599 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005600 /*
5601 * As the vm-exit takes precedence over the debug trap, we
5602 * need to emulate the latter, either for the host or the
5603 * guest debugging itself.
5604 */
5605 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005606 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005607 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005608 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005609 vcpu->run->debug.arch.exception = DB_VECTOR;
5610 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005611 return 0;
5612 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005613 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005614 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005615 kvm_queue_exception(vcpu, DB_VECTOR);
5616 return 1;
5617 }
5618 }
5619
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005620 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01005621 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5622 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005623
5624 /*
5625 * No more DR vmexits; force a reload of the debug registers
5626 * and reenter on this instruction. The next vmexit will
5627 * retrieve the full state of the debug registers.
5628 */
5629 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5630 return 1;
5631 }
5632
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005633 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5634 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005635 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005636
5637 if (kvm_get_dr(vcpu, dr, &val))
5638 return 1;
5639 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005640 } else
Nadav Amit57773922014-06-18 17:19:23 +03005641 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005642 return 1;
5643
Avi Kivity6aa8b732006-12-10 02:21:36 -08005644 skip_emulated_instruction(vcpu);
5645 return 1;
5646}
5647
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005648static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5649{
5650 return vcpu->arch.dr6;
5651}
5652
5653static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5654{
5655}
5656
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005657static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5658{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005659 get_debugreg(vcpu->arch.db[0], 0);
5660 get_debugreg(vcpu->arch.db[1], 1);
5661 get_debugreg(vcpu->arch.db[2], 2);
5662 get_debugreg(vcpu->arch.db[3], 3);
5663 get_debugreg(vcpu->arch.dr6, 6);
5664 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5665
5666 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01005667 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005668}
5669
Gleb Natapov020df072010-04-13 10:05:23 +03005670static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5671{
5672 vmcs_writel(GUEST_DR7, val);
5673}
5674
Avi Kivity851ba692009-08-24 11:10:17 +03005675static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005676{
Avi Kivity06465c52007-02-28 20:46:53 +02005677 kvm_emulate_cpuid(vcpu);
5678 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005679}
5680
Avi Kivity851ba692009-08-24 11:10:17 +03005681static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005682{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005683 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005684 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005685
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005686 msr_info.index = ecx;
5687 msr_info.host_initiated = false;
5688 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005689 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005690 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005691 return 1;
5692 }
5693
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005694 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005695
Avi Kivity6aa8b732006-12-10 02:21:36 -08005696 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005697 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5698 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005699 skip_emulated_instruction(vcpu);
5700 return 1;
5701}
5702
Avi Kivity851ba692009-08-24 11:10:17 +03005703static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005704{
Will Auld8fe8ab42012-11-29 12:42:12 -08005705 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005706 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5707 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5708 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005709
Will Auld8fe8ab42012-11-29 12:42:12 -08005710 msr.data = data;
5711 msr.index = ecx;
5712 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005713 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005714 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005715 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005716 return 1;
5717 }
5718
Avi Kivity59200272010-01-25 19:47:02 +02005719 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005720 skip_emulated_instruction(vcpu);
5721 return 1;
5722}
5723
Avi Kivity851ba692009-08-24 11:10:17 +03005724static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005725{
Avi Kivity3842d132010-07-27 12:30:24 +03005726 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005727 return 1;
5728}
5729
Avi Kivity851ba692009-08-24 11:10:17 +03005730static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005731{
Eddie Dong85f455f2007-07-06 12:20:49 +03005732 u32 cpu_based_vm_exec_control;
5733
5734 /* clear pending irq */
5735 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5736 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5737 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005738
Avi Kivity3842d132010-07-27 12:30:24 +03005739 kvm_make_request(KVM_REQ_EVENT, vcpu);
5740
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005741 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005742 return 1;
5743}
5744
Avi Kivity851ba692009-08-24 11:10:17 +03005745static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005746{
Avi Kivityd3bef152007-06-05 15:53:05 +03005747 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005748}
5749
Avi Kivity851ba692009-08-24 11:10:17 +03005750static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005751{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005752 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005753}
5754
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005755static int handle_invd(struct kvm_vcpu *vcpu)
5756{
Andre Przywara51d8b662010-12-21 11:12:02 +01005757 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005758}
5759
Avi Kivity851ba692009-08-24 11:10:17 +03005760static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005761{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005762 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005763
5764 kvm_mmu_invlpg(vcpu, exit_qualification);
5765 skip_emulated_instruction(vcpu);
5766 return 1;
5767}
5768
Avi Kivityfee84b02011-11-10 14:57:25 +02005769static int handle_rdpmc(struct kvm_vcpu *vcpu)
5770{
5771 int err;
5772
5773 err = kvm_rdpmc(vcpu);
5774 kvm_complete_insn_gp(vcpu, err);
5775
5776 return 1;
5777}
5778
Avi Kivity851ba692009-08-24 11:10:17 +03005779static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005780{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005781 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005782 return 1;
5783}
5784
Dexuan Cui2acf9232010-06-10 11:27:12 +08005785static int handle_xsetbv(struct kvm_vcpu *vcpu)
5786{
5787 u64 new_bv = kvm_read_edx_eax(vcpu);
5788 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5789
5790 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5791 skip_emulated_instruction(vcpu);
5792 return 1;
5793}
5794
Wanpeng Lif53cd632014-12-02 19:14:58 +08005795static int handle_xsaves(struct kvm_vcpu *vcpu)
5796{
5797 skip_emulated_instruction(vcpu);
5798 WARN(1, "this should never happen\n");
5799 return 1;
5800}
5801
5802static int handle_xrstors(struct kvm_vcpu *vcpu)
5803{
5804 skip_emulated_instruction(vcpu);
5805 WARN(1, "this should never happen\n");
5806 return 1;
5807}
5808
Avi Kivity851ba692009-08-24 11:10:17 +03005809static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005810{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005811 if (likely(fasteoi)) {
5812 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5813 int access_type, offset;
5814
5815 access_type = exit_qualification & APIC_ACCESS_TYPE;
5816 offset = exit_qualification & APIC_ACCESS_OFFSET;
5817 /*
5818 * Sane guest uses MOV to write EOI, with written value
5819 * not cared. So make a short-circuit here by avoiding
5820 * heavy instruction emulation.
5821 */
5822 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5823 (offset == APIC_EOI)) {
5824 kvm_lapic_set_eoi(vcpu);
5825 skip_emulated_instruction(vcpu);
5826 return 1;
5827 }
5828 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005829 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005830}
5831
Yang Zhangc7c9c562013-01-25 10:18:51 +08005832static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5833{
5834 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5835 int vector = exit_qualification & 0xff;
5836
5837 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5838 kvm_apic_set_eoi_accelerated(vcpu, vector);
5839 return 1;
5840}
5841
Yang Zhang83d4c282013-01-25 10:18:49 +08005842static int handle_apic_write(struct kvm_vcpu *vcpu)
5843{
5844 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5845 u32 offset = exit_qualification & 0xfff;
5846
5847 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5848 kvm_apic_write_nodecode(vcpu, offset);
5849 return 1;
5850}
5851
Avi Kivity851ba692009-08-24 11:10:17 +03005852static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005853{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005854 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005855 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005856 bool has_error_code = false;
5857 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005858 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005859 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005860
5861 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005862 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005863 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005864
5865 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5866
5867 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005868 if (reason == TASK_SWITCH_GATE && idt_v) {
5869 switch (type) {
5870 case INTR_TYPE_NMI_INTR:
5871 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005872 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005873 break;
5874 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005875 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005876 kvm_clear_interrupt_queue(vcpu);
5877 break;
5878 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005879 if (vmx->idt_vectoring_info &
5880 VECTORING_INFO_DELIVER_CODE_MASK) {
5881 has_error_code = true;
5882 error_code =
5883 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5884 }
5885 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005886 case INTR_TYPE_SOFT_EXCEPTION:
5887 kvm_clear_exception_queue(vcpu);
5888 break;
5889 default:
5890 break;
5891 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005892 }
Izik Eidus37817f22008-03-24 23:14:53 +02005893 tss_selector = exit_qualification;
5894
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005895 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5896 type != INTR_TYPE_EXT_INTR &&
5897 type != INTR_TYPE_NMI_INTR))
5898 skip_emulated_instruction(vcpu);
5899
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005900 if (kvm_task_switch(vcpu, tss_selector,
5901 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5902 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03005903 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5904 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5905 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005906 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03005907 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005908
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005909 /*
5910 * TODO: What about debug traps on tss switch?
5911 * Are we supposed to inject them and update dr6?
5912 */
5913
5914 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02005915}
5916
Avi Kivity851ba692009-08-24 11:10:17 +03005917static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005918{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005919 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005920 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005921 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005922 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08005923
Sheng Yangf9c617f2009-03-25 10:08:52 +08005924 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08005925
Sheng Yang14394422008-04-28 12:24:45 +08005926 gla_validity = (exit_qualification >> 7) & 0x3;
5927 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
5928 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
5929 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
5930 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08005931 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08005932 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
5933 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03005934 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5935 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03005936 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08005937 }
5938
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005939 /*
5940 * EPT violation happened while executing iret from NMI,
5941 * "blocked by NMI" bit has to be set before next VM entry.
5942 * There are errata that may cause this bit to not be set:
5943 * AAK134, BY25.
5944 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005945 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
5946 cpu_has_virtual_nmis() &&
5947 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005948 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5949
Sheng Yang14394422008-04-28 12:24:45 +08005950 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005951 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005952
5953 /* It is a write fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005954 error_code = exit_qualification & PFERR_WRITE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005955 /* It is a fetch fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005956 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005957 /* ept page table is present? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005958 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005959
Yang Zhang25d92082013-08-06 12:00:32 +03005960 vcpu->arch.exit_qualification = exit_qualification;
5961
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005962 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005963}
5964
Avi Kivity851ba692009-08-24 11:10:17 +03005965static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005966{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005967 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005968 gpa_t gpa;
5969
5970 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005971 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005972 skip_emulated_instruction(vcpu);
Jason Wang931c33b2015-09-15 14:41:58 +08005973 trace_kvm_fast_mmio(gpa);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005974 return 1;
5975 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005976
Paolo Bonzini450869d2015-11-04 13:41:21 +01005977 ret = handle_mmio_page_fault(vcpu, gpa, true);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005978 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005979 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
5980 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005981
5982 if (unlikely(ret == RET_MMIO_PF_INVALID))
5983 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
5984
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005985 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005986 return 1;
5987
5988 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005989 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005990
Avi Kivity851ba692009-08-24 11:10:17 +03005991 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5992 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005993
5994 return 0;
5995}
5996
Avi Kivity851ba692009-08-24 11:10:17 +03005997static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08005998{
5999 u32 cpu_based_vm_exec_control;
6000
6001 /* clear pending NMI */
6002 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6003 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6004 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6005 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006006 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006007
6008 return 1;
6009}
6010
Mohammed Gamal80ced182009-09-01 12:48:18 +02006011static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006012{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006013 struct vcpu_vmx *vmx = to_vmx(vcpu);
6014 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006015 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006016 u32 cpu_exec_ctrl;
6017 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006018 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006019
6020 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6021 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006022
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006023 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006024 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006025 return handle_interrupt_window(&vmx->vcpu);
6026
Avi Kivityde87dcd2012-06-12 20:21:38 +03006027 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6028 return 1;
6029
Gleb Natapov991eebf2013-04-11 12:10:51 +03006030 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006031
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006032 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006033 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006034 ret = 0;
6035 goto out;
6036 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006037
Avi Kivityde5f70e2012-06-12 20:22:28 +03006038 if (err != EMULATE_DONE) {
6039 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6040 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6041 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006042 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006043 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006044
Gleb Natapov8d76c492013-05-08 18:38:44 +03006045 if (vcpu->arch.halt_request) {
6046 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006047 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006048 goto out;
6049 }
6050
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006051 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006052 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006053 if (need_resched())
6054 schedule();
6055 }
6056
Mohammed Gamal80ced182009-09-01 12:48:18 +02006057out:
6058 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006059}
6060
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006061static int __grow_ple_window(int val)
6062{
6063 if (ple_window_grow < 1)
6064 return ple_window;
6065
6066 val = min(val, ple_window_actual_max);
6067
6068 if (ple_window_grow < ple_window)
6069 val *= ple_window_grow;
6070 else
6071 val += ple_window_grow;
6072
6073 return val;
6074}
6075
6076static int __shrink_ple_window(int val, int modifier, int minimum)
6077{
6078 if (modifier < 1)
6079 return ple_window;
6080
6081 if (modifier < ple_window)
6082 val /= modifier;
6083 else
6084 val -= modifier;
6085
6086 return max(val, minimum);
6087}
6088
6089static void grow_ple_window(struct kvm_vcpu *vcpu)
6090{
6091 struct vcpu_vmx *vmx = to_vmx(vcpu);
6092 int old = vmx->ple_window;
6093
6094 vmx->ple_window = __grow_ple_window(old);
6095
6096 if (vmx->ple_window != old)
6097 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006098
6099 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006100}
6101
6102static void shrink_ple_window(struct kvm_vcpu *vcpu)
6103{
6104 struct vcpu_vmx *vmx = to_vmx(vcpu);
6105 int old = vmx->ple_window;
6106
6107 vmx->ple_window = __shrink_ple_window(old,
6108 ple_window_shrink, ple_window);
6109
6110 if (vmx->ple_window != old)
6111 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006112
6113 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006114}
6115
6116/*
6117 * ple_window_actual_max is computed to be one grow_ple_window() below
6118 * ple_window_max. (See __grow_ple_window for the reason.)
6119 * This prevents overflows, because ple_window_max is int.
6120 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6121 * this process.
6122 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6123 */
6124static void update_ple_window_actual_max(void)
6125{
6126 ple_window_actual_max =
6127 __shrink_ple_window(max(ple_window_max, ple_window),
6128 ple_window_grow, INT_MIN);
6129}
6130
Feng Wubf9f6ac2015-09-18 22:29:55 +08006131/*
6132 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6133 */
6134static void wakeup_handler(void)
6135{
6136 struct kvm_vcpu *vcpu;
6137 int cpu = smp_processor_id();
6138
6139 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6140 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6141 blocked_vcpu_list) {
6142 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6143
6144 if (pi_test_on(pi_desc) == 1)
6145 kvm_vcpu_kick(vcpu);
6146 }
6147 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6148}
6149
Tiejun Chenf2c76482014-10-28 10:14:47 +08006150static __init int hardware_setup(void)
6151{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006152 int r = -ENOMEM, i, msr;
6153
6154 rdmsrl_safe(MSR_EFER, &host_efer);
6155
6156 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6157 kvm_define_shared_msr(i, vmx_msr_index[i]);
6158
6159 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
6160 if (!vmx_io_bitmap_a)
6161 return r;
6162
6163 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
6164 if (!vmx_io_bitmap_b)
6165 goto out;
6166
6167 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6168 if (!vmx_msr_bitmap_legacy)
6169 goto out1;
6170
6171 vmx_msr_bitmap_legacy_x2apic =
6172 (unsigned long *)__get_free_page(GFP_KERNEL);
6173 if (!vmx_msr_bitmap_legacy_x2apic)
6174 goto out2;
6175
6176 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6177 if (!vmx_msr_bitmap_longmode)
6178 goto out3;
6179
6180 vmx_msr_bitmap_longmode_x2apic =
6181 (unsigned long *)__get_free_page(GFP_KERNEL);
6182 if (!vmx_msr_bitmap_longmode_x2apic)
6183 goto out4;
Wincy Van3af18d92015-02-03 23:49:31 +08006184
6185 if (nested) {
6186 vmx_msr_bitmap_nested =
6187 (unsigned long *)__get_free_page(GFP_KERNEL);
6188 if (!vmx_msr_bitmap_nested)
6189 goto out5;
6190 }
6191
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006192 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6193 if (!vmx_vmread_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006194 goto out6;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006195
6196 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6197 if (!vmx_vmwrite_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006198 goto out7;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006199
6200 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6201 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6202
6203 /*
6204 * Allow direct access to the PC debug port (it is often used for I/O
6205 * delays, but the vmexits simply slow things down).
6206 */
6207 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6208 clear_bit(0x80, vmx_io_bitmap_a);
6209
6210 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6211
6212 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6213 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Wincy Van3af18d92015-02-03 23:49:31 +08006214 if (nested)
6215 memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006216
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006217 if (setup_vmcs_config(&vmcs_config) < 0) {
6218 r = -EIO;
Wincy Van3af18d92015-02-03 23:49:31 +08006219 goto out8;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006220 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006221
6222 if (boot_cpu_has(X86_FEATURE_NX))
6223 kvm_enable_efer_bits(EFER_NX);
6224
6225 if (!cpu_has_vmx_vpid())
6226 enable_vpid = 0;
6227 if (!cpu_has_vmx_shadow_vmcs())
6228 enable_shadow_vmcs = 0;
6229 if (enable_shadow_vmcs)
6230 init_vmcs_shadow_fields();
6231
6232 if (!cpu_has_vmx_ept() ||
6233 !cpu_has_vmx_ept_4levels()) {
6234 enable_ept = 0;
6235 enable_unrestricted_guest = 0;
6236 enable_ept_ad_bits = 0;
6237 }
6238
6239 if (!cpu_has_vmx_ept_ad_bits())
6240 enable_ept_ad_bits = 0;
6241
6242 if (!cpu_has_vmx_unrestricted_guest())
6243 enable_unrestricted_guest = 0;
6244
Paolo Bonziniad15a292015-01-30 16:18:49 +01006245 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006246 flexpriority_enabled = 0;
6247
Paolo Bonziniad15a292015-01-30 16:18:49 +01006248 /*
6249 * set_apic_access_page_addr() is used to reload apic access
6250 * page upon invalidation. No need to do anything if not
6251 * using the APIC_ACCESS_ADDR VMCS field.
6252 */
6253 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006254 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006255
6256 if (!cpu_has_vmx_tpr_shadow())
6257 kvm_x86_ops->update_cr8_intercept = NULL;
6258
6259 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6260 kvm_disable_largepages();
6261
6262 if (!cpu_has_vmx_ple())
6263 ple_gap = 0;
6264
6265 if (!cpu_has_vmx_apicv())
6266 enable_apicv = 0;
6267
Haozhong Zhang64903d62015-10-20 15:39:09 +08006268 if (cpu_has_vmx_tsc_scaling()) {
6269 kvm_has_tsc_control = true;
6270 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6271 kvm_tsc_scaling_ratio_frac_bits = 48;
6272 }
6273
Tiejun Chenbaa03522014-12-23 16:21:11 +08006274 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6275 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6276 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6277 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6278 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6279 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6280 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6281
6282 memcpy(vmx_msr_bitmap_legacy_x2apic,
6283 vmx_msr_bitmap_legacy, PAGE_SIZE);
6284 memcpy(vmx_msr_bitmap_longmode_x2apic,
6285 vmx_msr_bitmap_longmode, PAGE_SIZE);
6286
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006287 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6288
Tiejun Chenbaa03522014-12-23 16:21:11 +08006289 if (enable_apicv) {
6290 for (msr = 0x800; msr <= 0x8ff; msr++)
6291 vmx_disable_intercept_msr_read_x2apic(msr);
6292
6293 /* According SDM, in x2apic mode, the whole id reg is used.
6294 * But in KVM, it only use the highest eight bits. Need to
6295 * intercept it */
6296 vmx_enable_intercept_msr_read_x2apic(0x802);
6297 /* TMCCT */
6298 vmx_enable_intercept_msr_read_x2apic(0x839);
6299 /* TPR */
6300 vmx_disable_intercept_msr_write_x2apic(0x808);
6301 /* EOI */
6302 vmx_disable_intercept_msr_write_x2apic(0x80b);
6303 /* SELF-IPI */
6304 vmx_disable_intercept_msr_write_x2apic(0x83f);
6305 }
6306
6307 if (enable_ept) {
6308 kvm_mmu_set_mask_ptes(0ull,
6309 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
6310 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
6311 0ull, VMX_EPT_EXECUTABLE_MASK);
6312 ept_set_mmio_spte_mask();
6313 kvm_enable_tdp();
6314 } else
6315 kvm_disable_tdp();
6316
6317 update_ple_window_actual_max();
6318
Kai Huang843e4332015-01-28 10:54:28 +08006319 /*
6320 * Only enable PML when hardware supports PML feature, and both EPT
6321 * and EPT A/D bit features are enabled -- PML depends on them to work.
6322 */
6323 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6324 enable_pml = 0;
6325
6326 if (!enable_pml) {
6327 kvm_x86_ops->slot_enable_log_dirty = NULL;
6328 kvm_x86_ops->slot_disable_log_dirty = NULL;
6329 kvm_x86_ops->flush_log_dirty = NULL;
6330 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6331 }
6332
Feng Wubf9f6ac2015-09-18 22:29:55 +08006333 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6334
Tiejun Chenf2c76482014-10-28 10:14:47 +08006335 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006336
Wincy Van3af18d92015-02-03 23:49:31 +08006337out8:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006338 free_page((unsigned long)vmx_vmwrite_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006339out7:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006340 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006341out6:
6342 if (nested)
6343 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006344out5:
6345 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6346out4:
6347 free_page((unsigned long)vmx_msr_bitmap_longmode);
6348out3:
6349 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6350out2:
6351 free_page((unsigned long)vmx_msr_bitmap_legacy);
6352out1:
6353 free_page((unsigned long)vmx_io_bitmap_b);
6354out:
6355 free_page((unsigned long)vmx_io_bitmap_a);
6356
6357 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006358}
6359
6360static __exit void hardware_unsetup(void)
6361{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006362 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6363 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6364 free_page((unsigned long)vmx_msr_bitmap_legacy);
6365 free_page((unsigned long)vmx_msr_bitmap_longmode);
6366 free_page((unsigned long)vmx_io_bitmap_b);
6367 free_page((unsigned long)vmx_io_bitmap_a);
6368 free_page((unsigned long)vmx_vmwrite_bitmap);
6369 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006370 if (nested)
6371 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006372
Tiejun Chenf2c76482014-10-28 10:14:47 +08006373 free_kvm_area();
6374}
6375
Avi Kivity6aa8b732006-12-10 02:21:36 -08006376/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006377 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6378 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6379 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006380static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006381{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006382 if (ple_gap)
6383 grow_ple_window(vcpu);
6384
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006385 skip_emulated_instruction(vcpu);
6386 kvm_vcpu_on_spin(vcpu);
6387
6388 return 1;
6389}
6390
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006391static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006392{
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006393 skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006394 return 1;
6395}
6396
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006397static int handle_mwait(struct kvm_vcpu *vcpu)
6398{
6399 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6400 return handle_nop(vcpu);
6401}
6402
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006403static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6404{
6405 return 1;
6406}
6407
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006408static int handle_monitor(struct kvm_vcpu *vcpu)
6409{
6410 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6411 return handle_nop(vcpu);
6412}
6413
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006414/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006415 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6416 * We could reuse a single VMCS for all the L2 guests, but we also want the
6417 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6418 * allows keeping them loaded on the processor, and in the future will allow
6419 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6420 * every entry if they never change.
6421 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6422 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6423 *
6424 * The following functions allocate and free a vmcs02 in this pool.
6425 */
6426
6427/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6428static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6429{
6430 struct vmcs02_list *item;
6431 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6432 if (item->vmptr == vmx->nested.current_vmptr) {
6433 list_move(&item->list, &vmx->nested.vmcs02_pool);
6434 return &item->vmcs02;
6435 }
6436
6437 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6438 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006439 item = list_last_entry(&vmx->nested.vmcs02_pool,
6440 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006441 item->vmptr = vmx->nested.current_vmptr;
6442 list_move(&item->list, &vmx->nested.vmcs02_pool);
6443 return &item->vmcs02;
6444 }
6445
6446 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006447 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006448 if (!item)
6449 return NULL;
6450 item->vmcs02.vmcs = alloc_vmcs();
6451 if (!item->vmcs02.vmcs) {
6452 kfree(item);
6453 return NULL;
6454 }
6455 loaded_vmcs_init(&item->vmcs02);
6456 item->vmptr = vmx->nested.current_vmptr;
6457 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6458 vmx->nested.vmcs02_num++;
6459 return &item->vmcs02;
6460}
6461
6462/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6463static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6464{
6465 struct vmcs02_list *item;
6466 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6467 if (item->vmptr == vmptr) {
6468 free_loaded_vmcs(&item->vmcs02);
6469 list_del(&item->list);
6470 kfree(item);
6471 vmx->nested.vmcs02_num--;
6472 return;
6473 }
6474}
6475
6476/*
6477 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006478 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6479 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006480 */
6481static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6482{
6483 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006484
6485 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006486 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006487 /*
6488 * Something will leak if the above WARN triggers. Better than
6489 * a use-after-free.
6490 */
6491 if (vmx->loaded_vmcs == &item->vmcs02)
6492 continue;
6493
6494 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006495 list_del(&item->list);
6496 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006497 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006498 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006499}
6500
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006501/*
6502 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6503 * set the success or error code of an emulated VMX instruction, as specified
6504 * by Vol 2B, VMX Instruction Reference, "Conventions".
6505 */
6506static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6507{
6508 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6509 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6510 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6511}
6512
6513static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6514{
6515 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6516 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6517 X86_EFLAGS_SF | X86_EFLAGS_OF))
6518 | X86_EFLAGS_CF);
6519}
6520
Abel Gordon145c28d2013-04-18 14:36:55 +03006521static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006522 u32 vm_instruction_error)
6523{
6524 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6525 /*
6526 * failValid writes the error number to the current VMCS, which
6527 * can't be done there isn't a current VMCS.
6528 */
6529 nested_vmx_failInvalid(vcpu);
6530 return;
6531 }
6532 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6533 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6534 X86_EFLAGS_SF | X86_EFLAGS_OF))
6535 | X86_EFLAGS_ZF);
6536 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6537 /*
6538 * We don't need to force a shadow sync because
6539 * VM_INSTRUCTION_ERROR is not shadowed
6540 */
6541}
Abel Gordon145c28d2013-04-18 14:36:55 +03006542
Wincy Vanff651cb2014-12-11 08:52:58 +03006543static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6544{
6545 /* TODO: not to reset guest simply here. */
6546 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6547 pr_warn("kvm: nested vmx abort, indicator %d\n", indicator);
6548}
6549
Jan Kiszkaf4124502014-03-07 20:03:13 +01006550static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6551{
6552 struct vcpu_vmx *vmx =
6553 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6554
6555 vmx->nested.preemption_timer_expired = true;
6556 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6557 kvm_vcpu_kick(&vmx->vcpu);
6558
6559 return HRTIMER_NORESTART;
6560}
6561
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006562/*
Bandan Das19677e32014-05-06 02:19:15 -04006563 * Decode the memory-address operand of a vmx instruction, as recorded on an
6564 * exit caused by such an instruction (run by a guest hypervisor).
6565 * On success, returns 0. When the operand is invalid, returns 1 and throws
6566 * #UD or #GP.
6567 */
6568static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6569 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006570 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006571{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006572 gva_t off;
6573 bool exn;
6574 struct kvm_segment s;
6575
Bandan Das19677e32014-05-06 02:19:15 -04006576 /*
6577 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6578 * Execution", on an exit, vmx_instruction_info holds most of the
6579 * addressing components of the operand. Only the displacement part
6580 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6581 * For how an actual address is calculated from all these components,
6582 * refer to Vol. 1, "Operand Addressing".
6583 */
6584 int scaling = vmx_instruction_info & 3;
6585 int addr_size = (vmx_instruction_info >> 7) & 7;
6586 bool is_reg = vmx_instruction_info & (1u << 10);
6587 int seg_reg = (vmx_instruction_info >> 15) & 7;
6588 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6589 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6590 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6591 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6592
6593 if (is_reg) {
6594 kvm_queue_exception(vcpu, UD_VECTOR);
6595 return 1;
6596 }
6597
6598 /* Addr = segment_base + offset */
6599 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006600 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006601 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006602 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006603 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006604 off += kvm_register_read(vcpu, index_reg)<<scaling;
6605 vmx_get_segment(vcpu, &s, seg_reg);
6606 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006607
6608 if (addr_size == 1) /* 32 bit */
6609 *ret &= 0xffffffff;
6610
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006611 /* Checks for #GP/#SS exceptions. */
6612 exn = false;
6613 if (is_protmode(vcpu)) {
6614 /* Protected mode: apply checks for segment validity in the
6615 * following order:
6616 * - segment type check (#GP(0) may be thrown)
6617 * - usability check (#GP(0)/#SS(0))
6618 * - limit check (#GP(0)/#SS(0))
6619 */
6620 if (wr)
6621 /* #GP(0) if the destination operand is located in a
6622 * read-only data segment or any code segment.
6623 */
6624 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6625 else
6626 /* #GP(0) if the source operand is located in an
6627 * execute-only code segment
6628 */
6629 exn = ((s.type & 0xa) == 8);
6630 }
6631 if (exn) {
6632 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6633 return 1;
6634 }
6635 if (is_long_mode(vcpu)) {
6636 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6637 * non-canonical form. This is an only check for long mode.
6638 */
6639 exn = is_noncanonical_address(*ret);
6640 } else if (is_protmode(vcpu)) {
6641 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6642 */
6643 exn = (s.unusable != 0);
6644 /* Protected mode: #GP(0)/#SS(0) if the memory
6645 * operand is outside the segment limit.
6646 */
6647 exn = exn || (off + sizeof(u64) > s.limit);
6648 }
6649 if (exn) {
6650 kvm_queue_exception_e(vcpu,
6651 seg_reg == VCPU_SREG_SS ?
6652 SS_VECTOR : GP_VECTOR,
6653 0);
6654 return 1;
6655 }
6656
Bandan Das19677e32014-05-06 02:19:15 -04006657 return 0;
6658}
6659
6660/*
Bandan Das3573e222014-05-06 02:19:16 -04006661 * This function performs the various checks including
6662 * - if it's 4KB aligned
6663 * - No bits beyond the physical address width are set
6664 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006665 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006666 */
Bandan Das4291b582014-05-06 02:19:18 -04006667static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6668 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006669{
6670 gva_t gva;
6671 gpa_t vmptr;
6672 struct x86_exception e;
6673 struct page *page;
6674 struct vcpu_vmx *vmx = to_vmx(vcpu);
6675 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6676
6677 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006678 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006679 return 1;
6680
6681 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6682 sizeof(vmptr), &e)) {
6683 kvm_inject_page_fault(vcpu, &e);
6684 return 1;
6685 }
6686
6687 switch (exit_reason) {
6688 case EXIT_REASON_VMON:
6689 /*
6690 * SDM 3: 24.11.5
6691 * The first 4 bytes of VMXON region contain the supported
6692 * VMCS revision identifier
6693 *
6694 * Note - IA32_VMX_BASIC[48] will never be 1
6695 * for the nested case;
6696 * which replaces physical address width with 32
6697 *
6698 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006699 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006700 nested_vmx_failInvalid(vcpu);
6701 skip_emulated_instruction(vcpu);
6702 return 1;
6703 }
6704
6705 page = nested_get_page(vcpu, vmptr);
6706 if (page == NULL ||
6707 *(u32 *)kmap(page) != VMCS12_REVISION) {
6708 nested_vmx_failInvalid(vcpu);
6709 kunmap(page);
6710 skip_emulated_instruction(vcpu);
6711 return 1;
6712 }
6713 kunmap(page);
6714 vmx->nested.vmxon_ptr = vmptr;
6715 break;
Bandan Das4291b582014-05-06 02:19:18 -04006716 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006717 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006718 nested_vmx_failValid(vcpu,
6719 VMXERR_VMCLEAR_INVALID_ADDRESS);
6720 skip_emulated_instruction(vcpu);
6721 return 1;
6722 }
Bandan Das3573e222014-05-06 02:19:16 -04006723
Bandan Das4291b582014-05-06 02:19:18 -04006724 if (vmptr == vmx->nested.vmxon_ptr) {
6725 nested_vmx_failValid(vcpu,
6726 VMXERR_VMCLEAR_VMXON_POINTER);
6727 skip_emulated_instruction(vcpu);
6728 return 1;
6729 }
6730 break;
6731 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006732 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006733 nested_vmx_failValid(vcpu,
6734 VMXERR_VMPTRLD_INVALID_ADDRESS);
6735 skip_emulated_instruction(vcpu);
6736 return 1;
6737 }
6738
6739 if (vmptr == vmx->nested.vmxon_ptr) {
6740 nested_vmx_failValid(vcpu,
6741 VMXERR_VMCLEAR_VMXON_POINTER);
6742 skip_emulated_instruction(vcpu);
6743 return 1;
6744 }
6745 break;
Bandan Das3573e222014-05-06 02:19:16 -04006746 default:
6747 return 1; /* shouldn't happen */
6748 }
6749
Bandan Das4291b582014-05-06 02:19:18 -04006750 if (vmpointer)
6751 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04006752 return 0;
6753}
6754
6755/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006756 * Emulate the VMXON instruction.
6757 * Currently, we just remember that VMX is active, and do not save or even
6758 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6759 * do not currently need to store anything in that guest-allocated memory
6760 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6761 * argument is different from the VMXON pointer (which the spec says they do).
6762 */
6763static int handle_vmon(struct kvm_vcpu *vcpu)
6764{
6765 struct kvm_segment cs;
6766 struct vcpu_vmx *vmx = to_vmx(vcpu);
Abel Gordon8de48832013-04-18 14:37:25 +03006767 struct vmcs *shadow_vmcs;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006768 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6769 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006770
6771 /* The Intel VMX Instruction Reference lists a bunch of bits that
6772 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6773 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6774 * Otherwise, we should fail with #UD. We test these now:
6775 */
6776 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6777 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6778 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6779 kvm_queue_exception(vcpu, UD_VECTOR);
6780 return 1;
6781 }
6782
6783 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6784 if (is_long_mode(vcpu) && !cs.l) {
6785 kvm_queue_exception(vcpu, UD_VECTOR);
6786 return 1;
6787 }
6788
6789 if (vmx_get_cpl(vcpu)) {
6790 kvm_inject_gp(vcpu, 0);
6791 return 1;
6792 }
Bandan Das3573e222014-05-06 02:19:16 -04006793
Bandan Das4291b582014-05-06 02:19:18 -04006794 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
Bandan Das3573e222014-05-06 02:19:16 -04006795 return 1;
6796
Abel Gordon145c28d2013-04-18 14:36:55 +03006797 if (vmx->nested.vmxon) {
6798 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6799 skip_emulated_instruction(vcpu);
6800 return 1;
6801 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006802
6803 if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
6804 != VMXON_NEEDED_FEATURES) {
6805 kvm_inject_gp(vcpu, 0);
6806 return 1;
6807 }
6808
Abel Gordon8de48832013-04-18 14:37:25 +03006809 if (enable_shadow_vmcs) {
6810 shadow_vmcs = alloc_vmcs();
6811 if (!shadow_vmcs)
6812 return -ENOMEM;
6813 /* mark vmcs as shadow */
6814 shadow_vmcs->revision_id |= (1u << 31);
6815 /* init shadow vmcs */
6816 vmcs_clear(shadow_vmcs);
6817 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6818 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006819
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006820 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6821 vmx->nested.vmcs02_num = 0;
6822
Jan Kiszkaf4124502014-03-07 20:03:13 +01006823 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6824 HRTIMER_MODE_REL);
6825 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6826
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006827 vmx->nested.vmxon = true;
6828
6829 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006830 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006831 return 1;
6832}
6833
6834/*
6835 * Intel's VMX Instruction Reference specifies a common set of prerequisites
6836 * for running VMX instructions (except VMXON, whose prerequisites are
6837 * slightly different). It also specifies what exception to inject otherwise.
6838 */
6839static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
6840{
6841 struct kvm_segment cs;
6842 struct vcpu_vmx *vmx = to_vmx(vcpu);
6843
6844 if (!vmx->nested.vmxon) {
6845 kvm_queue_exception(vcpu, UD_VECTOR);
6846 return 0;
6847 }
6848
6849 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6850 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
6851 (is_long_mode(vcpu) && !cs.l)) {
6852 kvm_queue_exception(vcpu, UD_VECTOR);
6853 return 0;
6854 }
6855
6856 if (vmx_get_cpl(vcpu)) {
6857 kvm_inject_gp(vcpu, 0);
6858 return 0;
6859 }
6860
6861 return 1;
6862}
6863
Abel Gordone7953d72013-04-18 14:37:55 +03006864static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
6865{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006866 if (vmx->nested.current_vmptr == -1ull)
6867 return;
6868
6869 /* current_vmptr and current_vmcs12 are always set/reset together */
6870 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
6871 return;
6872
Abel Gordon012f83c2013-04-18 14:39:25 +03006873 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006874 /* copy to memory all shadowed fields in case
6875 they were modified */
6876 copy_shadow_to_vmcs12(vmx);
6877 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08006878 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6879 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006880 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03006881 }
Wincy Van705699a2015-02-03 23:58:17 +08006882 vmx->nested.posted_intr_nv = -1;
Abel Gordone7953d72013-04-18 14:37:55 +03006883 kunmap(vmx->nested.current_vmcs12_page);
6884 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006885 vmx->nested.current_vmptr = -1ull;
6886 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03006887}
6888
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006889/*
6890 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
6891 * just stops using VMX.
6892 */
6893static void free_nested(struct vcpu_vmx *vmx)
6894{
6895 if (!vmx->nested.vmxon)
6896 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006897
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006898 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07006899 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006900 nested_release_vmcs12(vmx);
Abel Gordone7953d72013-04-18 14:37:55 +03006901 if (enable_shadow_vmcs)
6902 free_vmcs(vmx->nested.current_shadow_vmcs);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006903 /* Unpin physical memory we referred to in current vmcs02 */
6904 if (vmx->nested.apic_access_page) {
6905 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006906 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006907 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006908 if (vmx->nested.virtual_apic_page) {
6909 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006910 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006911 }
Wincy Van705699a2015-02-03 23:58:17 +08006912 if (vmx->nested.pi_desc_page) {
6913 kunmap(vmx->nested.pi_desc_page);
6914 nested_release_page(vmx->nested.pi_desc_page);
6915 vmx->nested.pi_desc_page = NULL;
6916 vmx->nested.pi_desc = NULL;
6917 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006918
6919 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006920}
6921
6922/* Emulate the VMXOFF instruction */
6923static int handle_vmoff(struct kvm_vcpu *vcpu)
6924{
6925 if (!nested_vmx_check_permission(vcpu))
6926 return 1;
6927 free_nested(to_vmx(vcpu));
6928 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006929 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006930 return 1;
6931}
6932
Nadav Har'El27d6c862011-05-25 23:06:59 +03006933/* Emulate the VMCLEAR instruction */
6934static int handle_vmclear(struct kvm_vcpu *vcpu)
6935{
6936 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006937 gpa_t vmptr;
6938 struct vmcs12 *vmcs12;
6939 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03006940
6941 if (!nested_vmx_check_permission(vcpu))
6942 return 1;
6943
Bandan Das4291b582014-05-06 02:19:18 -04006944 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03006945 return 1;
6946
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006947 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03006948 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006949
6950 page = nested_get_page(vcpu, vmptr);
6951 if (page == NULL) {
6952 /*
6953 * For accurate processor emulation, VMCLEAR beyond available
6954 * physical memory should do nothing at all. However, it is
6955 * possible that a nested vmx bug, not a guest hypervisor bug,
6956 * resulted in this case, so let's shut down before doing any
6957 * more damage:
6958 */
6959 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6960 return 1;
6961 }
6962 vmcs12 = kmap(page);
6963 vmcs12->launch_state = 0;
6964 kunmap(page);
6965 nested_release_page(page);
6966
6967 nested_free_vmcs02(vmx, vmptr);
6968
6969 skip_emulated_instruction(vcpu);
6970 nested_vmx_succeed(vcpu);
6971 return 1;
6972}
6973
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006974static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
6975
6976/* Emulate the VMLAUNCH instruction */
6977static int handle_vmlaunch(struct kvm_vcpu *vcpu)
6978{
6979 return nested_vmx_run(vcpu, true);
6980}
6981
6982/* Emulate the VMRESUME instruction */
6983static int handle_vmresume(struct kvm_vcpu *vcpu)
6984{
6985
6986 return nested_vmx_run(vcpu, false);
6987}
6988
Nadav Har'El49f705c2011-05-25 23:08:30 +03006989enum vmcs_field_type {
6990 VMCS_FIELD_TYPE_U16 = 0,
6991 VMCS_FIELD_TYPE_U64 = 1,
6992 VMCS_FIELD_TYPE_U32 = 2,
6993 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
6994};
6995
6996static inline int vmcs_field_type(unsigned long field)
6997{
6998 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
6999 return VMCS_FIELD_TYPE_U32;
7000 return (field >> 13) & 0x3 ;
7001}
7002
7003static inline int vmcs_field_readonly(unsigned long field)
7004{
7005 return (((field >> 10) & 0x3) == 1);
7006}
7007
7008/*
7009 * Read a vmcs12 field. Since these can have varying lengths and we return
7010 * one type, we chose the biggest type (u64) and zero-extend the return value
7011 * to that size. Note that the caller, handle_vmread, might need to use only
7012 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7013 * 64-bit fields are to be returned).
7014 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007015static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7016 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007017{
7018 short offset = vmcs_field_to_offset(field);
7019 char *p;
7020
7021 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007022 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007023
7024 p = ((char *)(get_vmcs12(vcpu))) + offset;
7025
7026 switch (vmcs_field_type(field)) {
7027 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7028 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007029 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007030 case VMCS_FIELD_TYPE_U16:
7031 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007032 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007033 case VMCS_FIELD_TYPE_U32:
7034 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007035 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007036 case VMCS_FIELD_TYPE_U64:
7037 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007038 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007039 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007040 WARN_ON(1);
7041 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007042 }
7043}
7044
Abel Gordon20b97fe2013-04-18 14:36:25 +03007045
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007046static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7047 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007048 short offset = vmcs_field_to_offset(field);
7049 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7050 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007051 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007052
7053 switch (vmcs_field_type(field)) {
7054 case VMCS_FIELD_TYPE_U16:
7055 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007056 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007057 case VMCS_FIELD_TYPE_U32:
7058 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007059 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007060 case VMCS_FIELD_TYPE_U64:
7061 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007062 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007063 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7064 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007065 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007066 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007067 WARN_ON(1);
7068 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007069 }
7070
7071}
7072
Abel Gordon16f5b902013-04-18 14:38:25 +03007073static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7074{
7075 int i;
7076 unsigned long field;
7077 u64 field_value;
7078 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007079 const unsigned long *fields = shadow_read_write_fields;
7080 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007081
Jan Kiszka282da872014-10-08 18:05:39 +02007082 preempt_disable();
7083
Abel Gordon16f5b902013-04-18 14:38:25 +03007084 vmcs_load(shadow_vmcs);
7085
7086 for (i = 0; i < num_fields; i++) {
7087 field = fields[i];
7088 switch (vmcs_field_type(field)) {
7089 case VMCS_FIELD_TYPE_U16:
7090 field_value = vmcs_read16(field);
7091 break;
7092 case VMCS_FIELD_TYPE_U32:
7093 field_value = vmcs_read32(field);
7094 break;
7095 case VMCS_FIELD_TYPE_U64:
7096 field_value = vmcs_read64(field);
7097 break;
7098 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7099 field_value = vmcs_readl(field);
7100 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007101 default:
7102 WARN_ON(1);
7103 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007104 }
7105 vmcs12_write_any(&vmx->vcpu, field, field_value);
7106 }
7107
7108 vmcs_clear(shadow_vmcs);
7109 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007110
7111 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007112}
7113
Abel Gordonc3114422013-04-18 14:38:55 +03007114static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7115{
Mathias Krausec2bae892013-06-26 20:36:21 +02007116 const unsigned long *fields[] = {
7117 shadow_read_write_fields,
7118 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007119 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007120 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007121 max_shadow_read_write_fields,
7122 max_shadow_read_only_fields
7123 };
7124 int i, q;
7125 unsigned long field;
7126 u64 field_value = 0;
7127 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
7128
7129 vmcs_load(shadow_vmcs);
7130
Mathias Krausec2bae892013-06-26 20:36:21 +02007131 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007132 for (i = 0; i < max_fields[q]; i++) {
7133 field = fields[q][i];
7134 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7135
7136 switch (vmcs_field_type(field)) {
7137 case VMCS_FIELD_TYPE_U16:
7138 vmcs_write16(field, (u16)field_value);
7139 break;
7140 case VMCS_FIELD_TYPE_U32:
7141 vmcs_write32(field, (u32)field_value);
7142 break;
7143 case VMCS_FIELD_TYPE_U64:
7144 vmcs_write64(field, (u64)field_value);
7145 break;
7146 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7147 vmcs_writel(field, (long)field_value);
7148 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007149 default:
7150 WARN_ON(1);
7151 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007152 }
7153 }
7154 }
7155
7156 vmcs_clear(shadow_vmcs);
7157 vmcs_load(vmx->loaded_vmcs->vmcs);
7158}
7159
Nadav Har'El49f705c2011-05-25 23:08:30 +03007160/*
7161 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7162 * used before) all generate the same failure when it is missing.
7163 */
7164static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7165{
7166 struct vcpu_vmx *vmx = to_vmx(vcpu);
7167 if (vmx->nested.current_vmptr == -1ull) {
7168 nested_vmx_failInvalid(vcpu);
7169 skip_emulated_instruction(vcpu);
7170 return 0;
7171 }
7172 return 1;
7173}
7174
7175static int handle_vmread(struct kvm_vcpu *vcpu)
7176{
7177 unsigned long field;
7178 u64 field_value;
7179 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7180 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7181 gva_t gva = 0;
7182
7183 if (!nested_vmx_check_permission(vcpu) ||
7184 !nested_vmx_check_vmcs12(vcpu))
7185 return 1;
7186
7187 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007188 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007189 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007190 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007191 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7192 skip_emulated_instruction(vcpu);
7193 return 1;
7194 }
7195 /*
7196 * Now copy part of this value to register or memory, as requested.
7197 * Note that the number of bits actually copied is 32 or 64 depending
7198 * on the guest's mode (32 or 64 bit), not on the given field's length.
7199 */
7200 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007201 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007202 field_value);
7203 } else {
7204 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007205 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007206 return 1;
7207 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7208 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7209 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7210 }
7211
7212 nested_vmx_succeed(vcpu);
7213 skip_emulated_instruction(vcpu);
7214 return 1;
7215}
7216
7217
7218static int handle_vmwrite(struct kvm_vcpu *vcpu)
7219{
7220 unsigned long field;
7221 gva_t gva;
7222 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7223 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007224 /* The value to write might be 32 or 64 bits, depending on L1's long
7225 * mode, and eventually we need to write that into a field of several
7226 * possible lengths. The code below first zero-extends the value to 64
7227 * bit (field_value), and then copies only the approriate number of
7228 * bits into the vmcs12 field.
7229 */
7230 u64 field_value = 0;
7231 struct x86_exception e;
7232
7233 if (!nested_vmx_check_permission(vcpu) ||
7234 !nested_vmx_check_vmcs12(vcpu))
7235 return 1;
7236
7237 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007238 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007239 (((vmx_instruction_info) >> 3) & 0xf));
7240 else {
7241 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007242 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007243 return 1;
7244 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007245 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007246 kvm_inject_page_fault(vcpu, &e);
7247 return 1;
7248 }
7249 }
7250
7251
Nadav Amit27e6fb52014-06-18 17:19:26 +03007252 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007253 if (vmcs_field_readonly(field)) {
7254 nested_vmx_failValid(vcpu,
7255 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
7256 skip_emulated_instruction(vcpu);
7257 return 1;
7258 }
7259
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007260 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007261 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7262 skip_emulated_instruction(vcpu);
7263 return 1;
7264 }
7265
7266 nested_vmx_succeed(vcpu);
7267 skip_emulated_instruction(vcpu);
7268 return 1;
7269}
7270
Nadav Har'El63846662011-05-25 23:07:29 +03007271/* Emulate the VMPTRLD instruction */
7272static int handle_vmptrld(struct kvm_vcpu *vcpu)
7273{
7274 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007275 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007276
7277 if (!nested_vmx_check_permission(vcpu))
7278 return 1;
7279
Bandan Das4291b582014-05-06 02:19:18 -04007280 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007281 return 1;
7282
Nadav Har'El63846662011-05-25 23:07:29 +03007283 if (vmx->nested.current_vmptr != vmptr) {
7284 struct vmcs12 *new_vmcs12;
7285 struct page *page;
7286 page = nested_get_page(vcpu, vmptr);
7287 if (page == NULL) {
7288 nested_vmx_failInvalid(vcpu);
7289 skip_emulated_instruction(vcpu);
7290 return 1;
7291 }
7292 new_vmcs12 = kmap(page);
7293 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7294 kunmap(page);
7295 nested_release_page_clean(page);
7296 nested_vmx_failValid(vcpu,
7297 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
7298 skip_emulated_instruction(vcpu);
7299 return 1;
7300 }
Nadav Har'El63846662011-05-25 23:07:29 +03007301
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007302 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007303 vmx->nested.current_vmptr = vmptr;
7304 vmx->nested.current_vmcs12 = new_vmcs12;
7305 vmx->nested.current_vmcs12_page = page;
Abel Gordon012f83c2013-04-18 14:39:25 +03007306 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007307 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7308 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007309 vmcs_write64(VMCS_LINK_POINTER,
7310 __pa(vmx->nested.current_shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007311 vmx->nested.sync_shadow_vmcs = true;
7312 }
Nadav Har'El63846662011-05-25 23:07:29 +03007313 }
7314
7315 nested_vmx_succeed(vcpu);
7316 skip_emulated_instruction(vcpu);
7317 return 1;
7318}
7319
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007320/* Emulate the VMPTRST instruction */
7321static int handle_vmptrst(struct kvm_vcpu *vcpu)
7322{
7323 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7324 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7325 gva_t vmcs_gva;
7326 struct x86_exception e;
7327
7328 if (!nested_vmx_check_permission(vcpu))
7329 return 1;
7330
7331 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007332 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007333 return 1;
7334 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7335 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7336 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7337 sizeof(u64), &e)) {
7338 kvm_inject_page_fault(vcpu, &e);
7339 return 1;
7340 }
7341 nested_vmx_succeed(vcpu);
7342 skip_emulated_instruction(vcpu);
7343 return 1;
7344}
7345
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007346/* Emulate the INVEPT instruction */
7347static int handle_invept(struct kvm_vcpu *vcpu)
7348{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007349 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007350 u32 vmx_instruction_info, types;
7351 unsigned long type;
7352 gva_t gva;
7353 struct x86_exception e;
7354 struct {
7355 u64 eptp, gpa;
7356 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007357
Wincy Vanb9c237b2015-02-03 23:56:30 +08007358 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7359 SECONDARY_EXEC_ENABLE_EPT) ||
7360 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007361 kvm_queue_exception(vcpu, UD_VECTOR);
7362 return 1;
7363 }
7364
7365 if (!nested_vmx_check_permission(vcpu))
7366 return 1;
7367
7368 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7369 kvm_queue_exception(vcpu, UD_VECTOR);
7370 return 1;
7371 }
7372
7373 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007374 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007375
Wincy Vanb9c237b2015-02-03 23:56:30 +08007376 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007377
7378 if (!(types & (1UL << type))) {
7379 nested_vmx_failValid(vcpu,
7380 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7381 return 1;
7382 }
7383
7384 /* According to the Intel VMX instruction reference, the memory
7385 * operand is read even if it isn't needed (e.g., for type==global)
7386 */
7387 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007388 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007389 return 1;
7390 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7391 sizeof(operand), &e)) {
7392 kvm_inject_page_fault(vcpu, &e);
7393 return 1;
7394 }
7395
7396 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007397 case VMX_EPT_EXTENT_GLOBAL:
7398 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007399 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007400 nested_vmx_succeed(vcpu);
7401 break;
7402 default:
Bandan Das4b855072014-04-19 18:17:44 -04007403 /* Trap single context invalidation invept calls */
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007404 BUG_ON(1);
7405 break;
7406 }
7407
7408 skip_emulated_instruction(vcpu);
7409 return 1;
7410}
7411
Petr Matouseka642fc32014-09-23 20:22:30 +02007412static int handle_invvpid(struct kvm_vcpu *vcpu)
7413{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007414 struct vcpu_vmx *vmx = to_vmx(vcpu);
7415 u32 vmx_instruction_info;
7416 unsigned long type, types;
7417 gva_t gva;
7418 struct x86_exception e;
7419 int vpid;
7420
7421 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7422 SECONDARY_EXEC_ENABLE_VPID) ||
7423 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7424 kvm_queue_exception(vcpu, UD_VECTOR);
7425 return 1;
7426 }
7427
7428 if (!nested_vmx_check_permission(vcpu))
7429 return 1;
7430
7431 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7432 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7433
7434 types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7;
7435
7436 if (!(types & (1UL << type))) {
7437 nested_vmx_failValid(vcpu,
7438 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7439 return 1;
7440 }
7441
7442 /* according to the intel vmx instruction reference, the memory
7443 * operand is read even if it isn't needed (e.g., for type==global)
7444 */
7445 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7446 vmx_instruction_info, false, &gva))
7447 return 1;
7448 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7449 sizeof(u32), &e)) {
7450 kvm_inject_page_fault(vcpu, &e);
7451 return 1;
7452 }
7453
7454 switch (type) {
7455 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li5c614b32015-10-13 09:18:36 -07007456 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007457 nested_vmx_succeed(vcpu);
7458 break;
7459 default:
7460 /* Trap single context invalidation invvpid calls */
7461 BUG_ON(1);
7462 break;
7463 }
7464
7465 skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007466 return 1;
7467}
7468
Kai Huang843e4332015-01-28 10:54:28 +08007469static int handle_pml_full(struct kvm_vcpu *vcpu)
7470{
7471 unsigned long exit_qualification;
7472
7473 trace_kvm_pml_full(vcpu->vcpu_id);
7474
7475 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7476
7477 /*
7478 * PML buffer FULL happened while executing iret from NMI,
7479 * "blocked by NMI" bit has to be set before next VM entry.
7480 */
7481 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7482 cpu_has_virtual_nmis() &&
7483 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7484 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7485 GUEST_INTR_STATE_NMI);
7486
7487 /*
7488 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7489 * here.., and there's no userspace involvement needed for PML.
7490 */
7491 return 1;
7492}
7493
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007494static int handle_pcommit(struct kvm_vcpu *vcpu)
7495{
7496 /* we never catch pcommit instruct for L1 guest. */
7497 WARN_ON(1);
7498 return 1;
7499}
7500
Nadav Har'El0140cae2011-05-25 23:06:28 +03007501/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007502 * The exit handlers return 1 if the exit was handled fully and guest execution
7503 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7504 * to be done to userspace and return 0.
7505 */
Mathias Krause772e0312012-08-30 01:30:19 +02007506static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007507 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7508 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007509 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007510 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007511 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007512 [EXIT_REASON_CR_ACCESS] = handle_cr,
7513 [EXIT_REASON_DR_ACCESS] = handle_dr,
7514 [EXIT_REASON_CPUID] = handle_cpuid,
7515 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7516 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7517 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7518 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007519 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007520 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007521 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007522 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007523 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007524 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007525 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007526 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007527 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007528 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007529 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007530 [EXIT_REASON_VMOFF] = handle_vmoff,
7531 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007532 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7533 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007534 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007535 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007536 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007537 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007538 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007539 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007540 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7541 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007542 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007543 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007544 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007545 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007546 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007547 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007548 [EXIT_REASON_XSAVES] = handle_xsaves,
7549 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007550 [EXIT_REASON_PML_FULL] = handle_pml_full,
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007551 [EXIT_REASON_PCOMMIT] = handle_pcommit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007552};
7553
7554static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007555 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007556
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007557static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7558 struct vmcs12 *vmcs12)
7559{
7560 unsigned long exit_qualification;
7561 gpa_t bitmap, last_bitmap;
7562 unsigned int port;
7563 int size;
7564 u8 b;
7565
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007566 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007567 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007568
7569 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7570
7571 port = exit_qualification >> 16;
7572 size = (exit_qualification & 7) + 1;
7573
7574 last_bitmap = (gpa_t)-1;
7575 b = -1;
7576
7577 while (size > 0) {
7578 if (port < 0x8000)
7579 bitmap = vmcs12->io_bitmap_a;
7580 else if (port < 0x10000)
7581 bitmap = vmcs12->io_bitmap_b;
7582 else
Joe Perches1d804d02015-03-30 16:46:09 -07007583 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007584 bitmap += (port & 0x7fff) / 8;
7585
7586 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007587 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007588 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007589 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007590 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007591
7592 port++;
7593 size--;
7594 last_bitmap = bitmap;
7595 }
7596
Joe Perches1d804d02015-03-30 16:46:09 -07007597 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007598}
7599
Nadav Har'El644d7112011-05-25 23:12:35 +03007600/*
7601 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7602 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7603 * disinterest in the current event (read or write a specific MSR) by using an
7604 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7605 */
7606static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7607 struct vmcs12 *vmcs12, u32 exit_reason)
7608{
7609 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7610 gpa_t bitmap;
7611
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007612 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007613 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007614
7615 /*
7616 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7617 * for the four combinations of read/write and low/high MSR numbers.
7618 * First we need to figure out which of the four to use:
7619 */
7620 bitmap = vmcs12->msr_bitmap;
7621 if (exit_reason == EXIT_REASON_MSR_WRITE)
7622 bitmap += 2048;
7623 if (msr_index >= 0xc0000000) {
7624 msr_index -= 0xc0000000;
7625 bitmap += 1024;
7626 }
7627
7628 /* Then read the msr_index'th bit from this bitmap: */
7629 if (msr_index < 1024*8) {
7630 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007631 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007632 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007633 return 1 & (b >> (msr_index & 7));
7634 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007635 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007636}
7637
7638/*
7639 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7640 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7641 * intercept (via guest_host_mask etc.) the current event.
7642 */
7643static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7644 struct vmcs12 *vmcs12)
7645{
7646 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7647 int cr = exit_qualification & 15;
7648 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007649 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007650
7651 switch ((exit_qualification >> 4) & 3) {
7652 case 0: /* mov to cr */
7653 switch (cr) {
7654 case 0:
7655 if (vmcs12->cr0_guest_host_mask &
7656 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007657 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007658 break;
7659 case 3:
7660 if ((vmcs12->cr3_target_count >= 1 &&
7661 vmcs12->cr3_target_value0 == val) ||
7662 (vmcs12->cr3_target_count >= 2 &&
7663 vmcs12->cr3_target_value1 == val) ||
7664 (vmcs12->cr3_target_count >= 3 &&
7665 vmcs12->cr3_target_value2 == val) ||
7666 (vmcs12->cr3_target_count >= 4 &&
7667 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07007668 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007669 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007670 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007671 break;
7672 case 4:
7673 if (vmcs12->cr4_guest_host_mask &
7674 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07007675 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007676 break;
7677 case 8:
7678 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007679 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007680 break;
7681 }
7682 break;
7683 case 2: /* clts */
7684 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
7685 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007686 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007687 break;
7688 case 1: /* mov from cr */
7689 switch (cr) {
7690 case 3:
7691 if (vmcs12->cpu_based_vm_exec_control &
7692 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007693 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007694 break;
7695 case 8:
7696 if (vmcs12->cpu_based_vm_exec_control &
7697 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007698 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007699 break;
7700 }
7701 break;
7702 case 3: /* lmsw */
7703 /*
7704 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
7705 * cr0. Other attempted changes are ignored, with no exit.
7706 */
7707 if (vmcs12->cr0_guest_host_mask & 0xe &
7708 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007709 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007710 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
7711 !(vmcs12->cr0_read_shadow & 0x1) &&
7712 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07007713 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007714 break;
7715 }
Joe Perches1d804d02015-03-30 16:46:09 -07007716 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007717}
7718
7719/*
7720 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
7721 * should handle it ourselves in L0 (and then continue L2). Only call this
7722 * when in is_guest_mode (L2).
7723 */
7724static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
7725{
Nadav Har'El644d7112011-05-25 23:12:35 +03007726 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7727 struct vcpu_vmx *vmx = to_vmx(vcpu);
7728 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01007729 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03007730
Jan Kiszka542060e2014-01-04 18:47:21 +01007731 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
7732 vmcs_readl(EXIT_QUALIFICATION),
7733 vmx->idt_vectoring_info,
7734 intr_info,
7735 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
7736 KVM_ISA_VMX);
7737
Nadav Har'El644d7112011-05-25 23:12:35 +03007738 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07007739 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007740
7741 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02007742 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
7743 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07007744 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007745 }
7746
7747 switch (exit_reason) {
7748 case EXIT_REASON_EXCEPTION_NMI:
7749 if (!is_exception(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07007750 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007751 else if (is_page_fault(intr_info))
7752 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01007753 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01007754 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007755 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01007756 else if (is_debug(intr_info) &&
7757 vcpu->guest_debug &
7758 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
7759 return false;
7760 else if (is_breakpoint(intr_info) &&
7761 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
7762 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007763 return vmcs12->exception_bitmap &
7764 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7765 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007766 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007767 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007768 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007769 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007770 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007771 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007772 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007773 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007774 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007775 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007776 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007777 return false;
7778 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007779 case EXIT_REASON_HLT:
7780 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7781 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007782 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007783 case EXIT_REASON_INVLPG:
7784 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7785 case EXIT_REASON_RDPMC:
7786 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007787 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007788 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7789 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7790 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7791 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7792 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7793 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007794 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007795 /*
7796 * VMX instructions trap unconditionally. This allows L1 to
7797 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7798 */
Joe Perches1d804d02015-03-30 16:46:09 -07007799 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007800 case EXIT_REASON_CR_ACCESS:
7801 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7802 case EXIT_REASON_DR_ACCESS:
7803 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7804 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007805 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007806 case EXIT_REASON_MSR_READ:
7807 case EXIT_REASON_MSR_WRITE:
7808 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7809 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007810 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007811 case EXIT_REASON_MWAIT_INSTRUCTION:
7812 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007813 case EXIT_REASON_MONITOR_TRAP_FLAG:
7814 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007815 case EXIT_REASON_MONITOR_INSTRUCTION:
7816 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7817 case EXIT_REASON_PAUSE_INSTRUCTION:
7818 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7819 nested_cpu_has2(vmcs12,
7820 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7821 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07007822 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007823 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007824 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03007825 case EXIT_REASON_APIC_ACCESS:
7826 return nested_cpu_has2(vmcs12,
7827 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08007828 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08007829 case EXIT_REASON_EOI_INDUCED:
7830 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07007831 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007832 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007833 /*
7834 * L0 always deals with the EPT violation. If nested EPT is
7835 * used, and the nested mmu code discovers that the address is
7836 * missing in the guest EPT table (EPT12), the EPT violation
7837 * will be injected with nested_ept_inject_page_fault()
7838 */
Joe Perches1d804d02015-03-30 16:46:09 -07007839 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007840 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007841 /*
7842 * L2 never uses directly L1's EPT, but rather L0's own EPT
7843 * table (shadow on EPT) or a merged EPT table that L0 built
7844 * (EPT on EPT). So any problems with the structure of the
7845 * table is L0's fault.
7846 */
Joe Perches1d804d02015-03-30 16:46:09 -07007847 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007848 case EXIT_REASON_WBINVD:
7849 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7850 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07007851 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08007852 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
7853 /*
7854 * This should never happen, since it is not possible to
7855 * set XSS to a non-zero value---neither in L1 nor in L2.
7856 * If if it were, XSS would have to be checked against
7857 * the XSS exit bitmap in vmcs12.
7858 */
7859 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007860 case EXIT_REASON_PCOMMIT:
7861 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03007862 default:
Joe Perches1d804d02015-03-30 16:46:09 -07007863 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007864 }
7865}
7866
Avi Kivity586f9602010-11-18 13:09:54 +02007867static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7868{
7869 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7870 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7871}
7872
Kai Huanga3eaa862015-11-04 13:46:05 +08007873static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007874{
7875 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08007876
7877 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
7878 if (!pml_pg)
7879 return -ENOMEM;
7880
7881 vmx->pml_pg = pml_pg;
7882
7883 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
7884 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7885
Kai Huang843e4332015-01-28 10:54:28 +08007886 return 0;
7887}
7888
Kai Huanga3eaa862015-11-04 13:46:05 +08007889static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007890{
Kai Huanga3eaa862015-11-04 13:46:05 +08007891 if (vmx->pml_pg) {
7892 __free_page(vmx->pml_pg);
7893 vmx->pml_pg = NULL;
7894 }
Kai Huang843e4332015-01-28 10:54:28 +08007895}
7896
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007897static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08007898{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007899 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08007900 u64 *pml_buf;
7901 u16 pml_idx;
7902
7903 pml_idx = vmcs_read16(GUEST_PML_INDEX);
7904
7905 /* Do nothing if PML buffer is empty */
7906 if (pml_idx == (PML_ENTITY_NUM - 1))
7907 return;
7908
7909 /* PML index always points to next available PML buffer entity */
7910 if (pml_idx >= PML_ENTITY_NUM)
7911 pml_idx = 0;
7912 else
7913 pml_idx++;
7914
7915 pml_buf = page_address(vmx->pml_pg);
7916 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
7917 u64 gpa;
7918
7919 gpa = pml_buf[pml_idx];
7920 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007921 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08007922 }
7923
7924 /* reset PML index */
7925 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7926}
7927
7928/*
7929 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
7930 * Called before reporting dirty_bitmap to userspace.
7931 */
7932static void kvm_flush_pml_buffers(struct kvm *kvm)
7933{
7934 int i;
7935 struct kvm_vcpu *vcpu;
7936 /*
7937 * We only need to kick vcpu out of guest mode here, as PML buffer
7938 * is flushed at beginning of all VMEXITs, and it's obvious that only
7939 * vcpus running in guest are possible to have unflushed GPAs in PML
7940 * buffer.
7941 */
7942 kvm_for_each_vcpu(i, vcpu, kvm)
7943 kvm_vcpu_kick(vcpu);
7944}
7945
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007946static void vmx_dump_sel(char *name, uint32_t sel)
7947{
7948 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
7949 name, vmcs_read32(sel),
7950 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
7951 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
7952 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
7953}
7954
7955static void vmx_dump_dtsel(char *name, uint32_t limit)
7956{
7957 pr_err("%s limit=0x%08x, base=0x%016lx\n",
7958 name, vmcs_read32(limit),
7959 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
7960}
7961
7962static void dump_vmcs(void)
7963{
7964 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
7965 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
7966 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7967 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
7968 u32 secondary_exec_control = 0;
7969 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01007970 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007971 int i, n;
7972
7973 if (cpu_has_secondary_exec_ctrls())
7974 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7975
7976 pr_err("*** Guest State ***\n");
7977 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7978 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
7979 vmcs_readl(CR0_GUEST_HOST_MASK));
7980 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7981 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
7982 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
7983 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
7984 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
7985 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01007986 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
7987 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
7988 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
7989 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007990 }
7991 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
7992 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
7993 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
7994 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
7995 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
7996 vmcs_readl(GUEST_SYSENTER_ESP),
7997 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
7998 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
7999 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8000 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8001 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8002 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8003 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8004 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8005 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8006 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8007 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8008 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8009 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008010 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8011 efer, vmcs_read64(GUEST_IA32_PAT));
8012 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8013 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008014 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8015 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008016 pr_err("PerfGlobCtl = 0x%016llx\n",
8017 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008018 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008019 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008020 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8021 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8022 vmcs_read32(GUEST_ACTIVITY_STATE));
8023 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8024 pr_err("InterruptStatus = %04x\n",
8025 vmcs_read16(GUEST_INTR_STATUS));
8026
8027 pr_err("*** Host State ***\n");
8028 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8029 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8030 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8031 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8032 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8033 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8034 vmcs_read16(HOST_TR_SELECTOR));
8035 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8036 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8037 vmcs_readl(HOST_TR_BASE));
8038 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8039 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8040 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8041 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8042 vmcs_readl(HOST_CR4));
8043 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8044 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8045 vmcs_read32(HOST_IA32_SYSENTER_CS),
8046 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8047 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008048 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8049 vmcs_read64(HOST_IA32_EFER),
8050 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008051 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008052 pr_err("PerfGlobCtl = 0x%016llx\n",
8053 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008054
8055 pr_err("*** Control State ***\n");
8056 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8057 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8058 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8059 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8060 vmcs_read32(EXCEPTION_BITMAP),
8061 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8062 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8063 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8064 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8065 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8066 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8067 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8068 vmcs_read32(VM_EXIT_INTR_INFO),
8069 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8070 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8071 pr_err(" reason=%08x qualification=%016lx\n",
8072 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8073 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8074 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8075 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008076 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008077 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008078 pr_err("TSC Multiplier = 0x%016llx\n",
8079 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008080 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8081 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8082 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8083 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8084 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008085 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008086 n = vmcs_read32(CR3_TARGET_COUNT);
8087 for (i = 0; i + 1 < n; i += 4)
8088 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8089 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8090 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8091 if (i < n)
8092 pr_err("CR3 target%u=%016lx\n",
8093 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8094 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8095 pr_err("PLE Gap=%08x Window=%08x\n",
8096 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8097 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8098 pr_err("Virtual processor ID = 0x%04x\n",
8099 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8100}
8101
Avi Kivity6aa8b732006-12-10 02:21:36 -08008102/*
8103 * The guest has exited. See if we can fix it or if we need userspace
8104 * assistance.
8105 */
Avi Kivity851ba692009-08-24 11:10:17 +03008106static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008107{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008108 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008109 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008110 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008111
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008112 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8113
Kai Huang843e4332015-01-28 10:54:28 +08008114 /*
8115 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8116 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8117 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8118 * mode as if vcpus is in root mode, the PML buffer must has been
8119 * flushed already.
8120 */
8121 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008122 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008123
Mohammed Gamal80ced182009-09-01 12:48:18 +02008124 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008125 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008126 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008127
Nadav Har'El644d7112011-05-25 23:12:35 +03008128 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008129 nested_vmx_vmexit(vcpu, exit_reason,
8130 vmcs_read32(VM_EXIT_INTR_INFO),
8131 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008132 return 1;
8133 }
8134
Mohammed Gamal51207022010-05-31 22:40:54 +03008135 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008136 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008137 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8138 vcpu->run->fail_entry.hardware_entry_failure_reason
8139 = exit_reason;
8140 return 0;
8141 }
8142
Avi Kivity29bd8a72007-09-10 17:27:03 +03008143 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008144 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8145 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008146 = vmcs_read32(VM_INSTRUCTION_ERROR);
8147 return 0;
8148 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008149
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008150 /*
8151 * Note:
8152 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8153 * delivery event since it indicates guest is accessing MMIO.
8154 * The vm-exit can be triggered again after return to guest that
8155 * will cause infinite loop.
8156 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008157 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008158 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008159 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008160 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8161 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8162 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8163 vcpu->run->internal.ndata = 2;
8164 vcpu->run->internal.data[0] = vectoring_info;
8165 vcpu->run->internal.data[1] = exit_reason;
8166 return 0;
8167 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008168
Nadav Har'El644d7112011-05-25 23:12:35 +03008169 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8170 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008171 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008172 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008173 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008174 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008175 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008176 /*
8177 * This CPU don't support us in finding the end of an
8178 * NMI-blocked window if the guest runs with IRQs
8179 * disabled. So we pull the trigger after 1 s of
8180 * futile waiting, but inform the user about this.
8181 */
8182 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8183 "state on VCPU %d after 1 s timeout\n",
8184 __func__, vcpu->vcpu_id);
8185 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008186 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008187 }
8188
Avi Kivity6aa8b732006-12-10 02:21:36 -08008189 if (exit_reason < kvm_vmx_max_exit_handlers
8190 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008191 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008192 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008193 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8194 kvm_queue_exception(vcpu, UD_VECTOR);
8195 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008196 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008197}
8198
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008199static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008200{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008201 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8202
8203 if (is_guest_mode(vcpu) &&
8204 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8205 return;
8206
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008207 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008208 vmcs_write32(TPR_THRESHOLD, 0);
8209 return;
8210 }
8211
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008212 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008213}
8214
Yang Zhang8d146952013-01-25 10:18:50 +08008215static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8216{
8217 u32 sec_exec_control;
8218
8219 /*
8220 * There is not point to enable virtualize x2apic without enable
8221 * apicv
8222 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008223 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008224 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008225 return;
8226
Paolo Bonzini35754c92015-07-29 12:05:37 +02008227 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008228 return;
8229
8230 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8231
8232 if (set) {
8233 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8234 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8235 } else {
8236 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8237 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8238 }
8239 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8240
8241 vmx_set_msr_bitmap(vcpu);
8242}
8243
Tang Chen38b99172014-09-24 15:57:54 +08008244static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8245{
8246 struct vcpu_vmx *vmx = to_vmx(vcpu);
8247
8248 /*
8249 * Currently we do not handle the nested case where L2 has an
8250 * APIC access page of its own; that page is still pinned.
8251 * Hence, we skip the case where the VCPU is in guest mode _and_
8252 * L1 prepared an APIC access page for L2.
8253 *
8254 * For the case where L1 and L2 share the same APIC access page
8255 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8256 * in the vmcs12), this function will only update either the vmcs01
8257 * or the vmcs02. If the former, the vmcs02 will be updated by
8258 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8259 * the next L2->L1 exit.
8260 */
8261 if (!is_guest_mode(vcpu) ||
8262 !nested_cpu_has2(vmx->nested.current_vmcs12,
8263 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8264 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8265}
8266
Yang Zhangc7c9c562013-01-25 10:18:51 +08008267static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
8268{
8269 u16 status;
8270 u8 old;
8271
Yang Zhangc7c9c562013-01-25 10:18:51 +08008272 if (isr == -1)
8273 isr = 0;
8274
8275 status = vmcs_read16(GUEST_INTR_STATUS);
8276 old = status >> 8;
8277 if (isr != old) {
8278 status &= 0xff;
8279 status |= isr << 8;
8280 vmcs_write16(GUEST_INTR_STATUS, status);
8281 }
8282}
8283
8284static void vmx_set_rvi(int vector)
8285{
8286 u16 status;
8287 u8 old;
8288
Wei Wang4114c272014-11-05 10:53:43 +08008289 if (vector == -1)
8290 vector = 0;
8291
Yang Zhangc7c9c562013-01-25 10:18:51 +08008292 status = vmcs_read16(GUEST_INTR_STATUS);
8293 old = (u8)status & 0xff;
8294 if ((u8)vector != old) {
8295 status &= ~0xff;
8296 status |= (u8)vector;
8297 vmcs_write16(GUEST_INTR_STATUS, status);
8298 }
8299}
8300
8301static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8302{
Wanpeng Li963fee12014-07-17 19:03:00 +08008303 if (!is_guest_mode(vcpu)) {
8304 vmx_set_rvi(max_irr);
8305 return;
8306 }
8307
Wei Wang4114c272014-11-05 10:53:43 +08008308 if (max_irr == -1)
8309 return;
8310
Wanpeng Li963fee12014-07-17 19:03:00 +08008311 /*
Wei Wang4114c272014-11-05 10:53:43 +08008312 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8313 * handles it.
8314 */
8315 if (nested_exit_on_intr(vcpu))
8316 return;
8317
8318 /*
8319 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008320 * is run without virtual interrupt delivery.
8321 */
8322 if (!kvm_event_needs_reinjection(vcpu) &&
8323 vmx_interrupt_allowed(vcpu)) {
8324 kvm_queue_interrupt(vcpu, max_irr, false);
8325 vmx_inject_irq(vcpu);
8326 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008327}
8328
Andrey Smetanin63086302015-11-10 15:36:32 +03008329static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008330{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008331 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008332 return;
8333
Yang Zhangc7c9c562013-01-25 10:18:51 +08008334 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8335 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8336 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8337 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8338}
8339
Avi Kivity51aa01d2010-07-20 14:31:20 +03008340static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008341{
Avi Kivity00eba012011-03-07 17:24:54 +02008342 u32 exit_intr_info;
8343
8344 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8345 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8346 return;
8347
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008348 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008349 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008350
8351 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008352 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008353 kvm_machine_check();
8354
Gleb Natapov20f65982009-05-11 13:35:55 +03008355 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008356 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008357 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8358 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008359 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008360 kvm_after_handle_nmi(&vmx->vcpu);
8361 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008362}
Gleb Natapov20f65982009-05-11 13:35:55 +03008363
Yang Zhanga547c6d2013-04-11 19:25:10 +08008364static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8365{
8366 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8367
8368 /*
8369 * If external interrupt exists, IF bit is set in rflags/eflags on the
8370 * interrupt stack frame, and interrupt will be enabled on a return
8371 * from interrupt handler.
8372 */
8373 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8374 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8375 unsigned int vector;
8376 unsigned long entry;
8377 gate_desc *desc;
8378 struct vcpu_vmx *vmx = to_vmx(vcpu);
8379#ifdef CONFIG_X86_64
8380 unsigned long tmp;
8381#endif
8382
8383 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8384 desc = (gate_desc *)vmx->host_idt_base + vector;
8385 entry = gate_offset(*desc);
8386 asm volatile(
8387#ifdef CONFIG_X86_64
8388 "mov %%" _ASM_SP ", %[sp]\n\t"
8389 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8390 "push $%c[ss]\n\t"
8391 "push %[sp]\n\t"
8392#endif
8393 "pushf\n\t"
8394 "orl $0x200, (%%" _ASM_SP ")\n\t"
8395 __ASM_SIZE(push) " $%c[cs]\n\t"
8396 "call *%[entry]\n\t"
8397 :
8398#ifdef CONFIG_X86_64
8399 [sp]"=&r"(tmp)
8400#endif
8401 :
8402 [entry]"r"(entry),
8403 [ss]"i"(__KERNEL_DS),
8404 [cs]"i"(__KERNEL_CS)
8405 );
8406 } else
8407 local_irq_enable();
8408}
8409
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008410static bool vmx_has_high_real_mode_segbase(void)
8411{
8412 return enable_unrestricted_guest || emulate_invalid_guest_state;
8413}
8414
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008415static bool vmx_mpx_supported(void)
8416{
8417 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8418 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8419}
8420
Wanpeng Li55412b22014-12-02 19:21:30 +08008421static bool vmx_xsaves_supported(void)
8422{
8423 return vmcs_config.cpu_based_2nd_exec_ctrl &
8424 SECONDARY_EXEC_XSAVES;
8425}
8426
Avi Kivity51aa01d2010-07-20 14:31:20 +03008427static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8428{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008429 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008430 bool unblock_nmi;
8431 u8 vector;
8432 bool idtv_info_valid;
8433
8434 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008435
Avi Kivitycf393f72008-07-01 16:20:21 +03008436 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008437 if (vmx->nmi_known_unmasked)
8438 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008439 /*
8440 * Can't use vmx->exit_intr_info since we're not sure what
8441 * the exit reason is.
8442 */
8443 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008444 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8445 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8446 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008447 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008448 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8449 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008450 * SDM 3: 23.2.2 (September 2008)
8451 * Bit 12 is undefined in any of the following cases:
8452 * If the VM exit sets the valid bit in the IDT-vectoring
8453 * information field.
8454 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008455 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008456 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8457 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008458 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8459 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008460 else
8461 vmx->nmi_known_unmasked =
8462 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8463 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008464 } else if (unlikely(vmx->soft_vnmi_blocked))
8465 vmx->vnmi_blocked_time +=
8466 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008467}
8468
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008469static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008470 u32 idt_vectoring_info,
8471 int instr_len_field,
8472 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008473{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008474 u8 vector;
8475 int type;
8476 bool idtv_info_valid;
8477
8478 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008479
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008480 vcpu->arch.nmi_injected = false;
8481 kvm_clear_exception_queue(vcpu);
8482 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008483
8484 if (!idtv_info_valid)
8485 return;
8486
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008487 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008488
Avi Kivity668f6122008-07-02 09:28:55 +03008489 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8490 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008491
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008492 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008493 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008494 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008495 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008496 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008497 * Clear bit "block by NMI" before VM entry if a NMI
8498 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008499 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008500 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008501 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008502 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008503 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008504 /* fall through */
8505 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008506 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008507 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008508 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008509 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008510 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008511 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008512 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008513 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008514 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008515 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008516 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008517 break;
8518 default:
8519 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008520 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008521}
8522
Avi Kivity83422e12010-07-20 14:43:23 +03008523static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8524{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008525 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008526 VM_EXIT_INSTRUCTION_LEN,
8527 IDT_VECTORING_ERROR_CODE);
8528}
8529
Avi Kivityb463a6f2010-07-20 15:06:17 +03008530static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8531{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008532 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008533 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8534 VM_ENTRY_INSTRUCTION_LEN,
8535 VM_ENTRY_EXCEPTION_ERROR_CODE);
8536
8537 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8538}
8539
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008540static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8541{
8542 int i, nr_msrs;
8543 struct perf_guest_switch_msr *msrs;
8544
8545 msrs = perf_guest_get_msrs(&nr_msrs);
8546
8547 if (!msrs)
8548 return;
8549
8550 for (i = 0; i < nr_msrs; i++)
8551 if (msrs[i].host == msrs[i].guest)
8552 clear_atomic_switch_msr(vmx, msrs[i].msr);
8553 else
8554 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8555 msrs[i].host);
8556}
8557
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008558static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008559{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008560 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008561 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008562
8563 /* Record the guest's net vcpu time for enforced NMI injections. */
8564 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8565 vmx->entry_time = ktime_get();
8566
8567 /* Don't enter VMX if guest state is invalid, let the exit handler
8568 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008569 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008570 return;
8571
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008572 if (vmx->ple_window_dirty) {
8573 vmx->ple_window_dirty = false;
8574 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8575 }
8576
Abel Gordon012f83c2013-04-18 14:39:25 +03008577 if (vmx->nested.sync_shadow_vmcs) {
8578 copy_vmcs12_to_shadow(vmx);
8579 vmx->nested.sync_shadow_vmcs = false;
8580 }
8581
Avi Kivity104f2262010-11-18 13:12:52 +02008582 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8583 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8584 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8585 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8586
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008587 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008588 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8589 vmcs_writel(HOST_CR4, cr4);
8590 vmx->host_state.vmcs_host_cr4 = cr4;
8591 }
8592
Avi Kivity104f2262010-11-18 13:12:52 +02008593 /* When single-stepping over STI and MOV SS, we must clear the
8594 * corresponding interruptibility bits in the guest state. Otherwise
8595 * vmentry fails as it then expects bit 14 (BS) in pending debug
8596 * exceptions being set, but that's not correct for the guest debugging
8597 * case. */
8598 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8599 vmx_set_interrupt_shadow(vcpu, 0);
8600
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008601 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008602 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008603
Nadav Har'Eld462b812011-05-24 15:26:10 +03008604 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008605 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008606 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008607 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8608 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8609 "push %%" _ASM_CX " \n\t"
8610 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008611 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008612 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008613 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008614 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008615 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008616 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8617 "mov %%cr2, %%" _ASM_DX " \n\t"
8618 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008619 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008620 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008621 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008622 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008623 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008624 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008625 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8626 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8627 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8628 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8629 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8630 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008631#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008632 "mov %c[r8](%0), %%r8 \n\t"
8633 "mov %c[r9](%0), %%r9 \n\t"
8634 "mov %c[r10](%0), %%r10 \n\t"
8635 "mov %c[r11](%0), %%r11 \n\t"
8636 "mov %c[r12](%0), %%r12 \n\t"
8637 "mov %c[r13](%0), %%r13 \n\t"
8638 "mov %c[r14](%0), %%r14 \n\t"
8639 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008640#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008641 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008642
Avi Kivity6aa8b732006-12-10 02:21:36 -08008643 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008644 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008645 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008646 "jmp 2f \n\t"
8647 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8648 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008649 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008650 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008651 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008652 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8653 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8654 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8655 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8656 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8657 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8658 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008659#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008660 "mov %%r8, %c[r8](%0) \n\t"
8661 "mov %%r9, %c[r9](%0) \n\t"
8662 "mov %%r10, %c[r10](%0) \n\t"
8663 "mov %%r11, %c[r11](%0) \n\t"
8664 "mov %%r12, %c[r12](%0) \n\t"
8665 "mov %%r13, %c[r13](%0) \n\t"
8666 "mov %%r14, %c[r14](%0) \n\t"
8667 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008668#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008669 "mov %%cr2, %%" _ASM_AX " \n\t"
8670 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008671
Avi Kivityb188c81f2012-09-16 15:10:58 +03008672 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008673 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008674 ".pushsection .rodata \n\t"
8675 ".global vmx_return \n\t"
8676 "vmx_return: " _ASM_PTR " 2b \n\t"
8677 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008678 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008679 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008680 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03008681 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008682 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8683 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8684 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8685 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8686 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8687 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8688 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008689#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008690 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8691 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8692 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8693 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8694 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8695 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8696 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8697 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008698#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008699 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8700 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008701 : "cc", "memory"
8702#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008703 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008704 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008705#else
8706 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008707#endif
8708 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008709
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008710 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8711 if (debugctlmsr)
8712 update_debugctlmsr(debugctlmsr);
8713
Avi Kivityaa67f602012-08-01 16:48:03 +03008714#ifndef CONFIG_X86_64
8715 /*
8716 * The sysexit path does not restore ds/es, so we must set them to
8717 * a reasonable value ourselves.
8718 *
8719 * We can't defer this to vmx_load_host_state() since that function
8720 * may be executed in interrupt context, which saves and restore segments
8721 * around it, nullifying its effect.
8722 */
8723 loadsegment(ds, __USER_DS);
8724 loadsegment(es, __USER_DS);
8725#endif
8726
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008727 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008728 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008729 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008730 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008731 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008732 vcpu->arch.regs_dirty = 0;
8733
Avi Kivity1155f762007-11-22 11:30:47 +02008734 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8735
Nadav Har'Eld462b812011-05-24 15:26:10 +03008736 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008737
Avi Kivity51aa01d2010-07-20 14:31:20 +03008738 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008739
Gleb Natapove0b890d2013-09-25 12:51:33 +03008740 /*
8741 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8742 * we did not inject a still-pending event to L1 now because of
8743 * nested_run_pending, we need to re-enable this bit.
8744 */
8745 if (vmx->nested.nested_run_pending)
8746 kvm_make_request(KVM_REQ_EVENT, vcpu);
8747
8748 vmx->nested.nested_run_pending = 0;
8749
Avi Kivity51aa01d2010-07-20 14:31:20 +03008750 vmx_complete_atomic_exit(vmx);
8751 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008752 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008753}
8754
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008755static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8756{
8757 struct vcpu_vmx *vmx = to_vmx(vcpu);
8758 int cpu;
8759
8760 if (vmx->loaded_vmcs == &vmx->vmcs01)
8761 return;
8762
8763 cpu = get_cpu();
8764 vmx->loaded_vmcs = &vmx->vmcs01;
8765 vmx_vcpu_put(vcpu);
8766 vmx_vcpu_load(vcpu, cpu);
8767 vcpu->cpu = cpu;
8768 put_cpu();
8769}
8770
Avi Kivity6aa8b732006-12-10 02:21:36 -08008771static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8772{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008773 struct vcpu_vmx *vmx = to_vmx(vcpu);
8774
Kai Huang843e4332015-01-28 10:54:28 +08008775 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008776 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008777 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008778 leave_guest_mode(vcpu);
8779 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02008780 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008781 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008782 kfree(vmx->guest_msrs);
8783 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10008784 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008785}
8786
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008787static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008788{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008789 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10008790 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03008791 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008792
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008793 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008794 return ERR_PTR(-ENOMEM);
8795
Wanpeng Li991e7a02015-09-16 17:30:05 +08008796 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08008797
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008798 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
8799 if (err)
8800 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008801
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008802 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02008803 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
8804 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03008805
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008806 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008807 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008808 goto uninit_vcpu;
8809 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008810
Nadav Har'Eld462b812011-05-24 15:26:10 +03008811 vmx->loaded_vmcs = &vmx->vmcs01;
8812 vmx->loaded_vmcs->vmcs = alloc_vmcs();
8813 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008814 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03008815 if (!vmm_exclusive)
8816 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
8817 loaded_vmcs_init(vmx->loaded_vmcs);
8818 if (!vmm_exclusive)
8819 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008820
Avi Kivity15ad7142007-07-11 18:17:21 +03008821 cpu = get_cpu();
8822 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10008823 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10008824 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008825 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03008826 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008827 if (err)
8828 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008829 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008830 err = alloc_apic_access_page(kvm);
8831 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02008832 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02008833 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008834
Sheng Yangb927a3c2009-07-21 10:42:48 +08008835 if (enable_ept) {
8836 if (!kvm->arch.ept_identity_map_addr)
8837 kvm->arch.ept_identity_map_addr =
8838 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08008839 err = init_rmode_identity_map(kvm);
8840 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02008841 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08008842 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08008843
Wanpeng Li5c614b32015-10-13 09:18:36 -07008844 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08008845 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07008846 vmx->nested.vpid02 = allocate_vpid();
8847 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08008848
Wincy Van705699a2015-02-03 23:58:17 +08008849 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03008850 vmx->nested.current_vmptr = -1ull;
8851 vmx->nested.current_vmcs12 = NULL;
8852
Kai Huang843e4332015-01-28 10:54:28 +08008853 /*
8854 * If PML is turned on, failure on enabling PML just results in failure
8855 * of creating the vcpu, therefore we can simplify PML logic (by
8856 * avoiding dealing with cases, such as enabling PML partially on vcpus
8857 * for the guest, etc.
8858 */
8859 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08008860 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08008861 if (err)
8862 goto free_vmcs;
8863 }
8864
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008865 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008866
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008867free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07008868 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08008869 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008870free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008871 kfree(vmx->guest_msrs);
8872uninit_vcpu:
8873 kvm_vcpu_uninit(&vmx->vcpu);
8874free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08008875 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10008876 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008877 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008878}
8879
Yang, Sheng002c7f72007-07-31 14:23:01 +03008880static void __init vmx_check_processor_compat(void *rtn)
8881{
8882 struct vmcs_config vmcs_conf;
8883
8884 *(int *)rtn = 0;
8885 if (setup_vmcs_config(&vmcs_conf) < 0)
8886 *(int *)rtn = -EIO;
8887 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
8888 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
8889 smp_processor_id());
8890 *(int *)rtn = -EIO;
8891 }
8892}
8893
Sheng Yang67253af2008-04-25 10:20:22 +08008894static int get_ept_level(void)
8895{
8896 return VMX_EPT_DEFAULT_GAW + 1;
8897}
8898
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008899static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08008900{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008901 u8 cache;
8902 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008903
Sheng Yang522c68c2009-04-27 20:35:43 +08008904 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02008905 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08008906 * 2. EPT with VT-d:
8907 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02008908 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08008909 * b. VT-d with snooping control feature: snooping control feature of
8910 * VT-d engine can guarantee the cache correctness. Just set it
8911 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08008912 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08008913 * consistent with host MTRR
8914 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02008915 if (is_mmio) {
8916 cache = MTRR_TYPE_UNCACHABLE;
8917 goto exit;
8918 }
8919
8920 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008921 ipat = VMX_EPT_IPAT_BIT;
8922 cache = MTRR_TYPE_WRBACK;
8923 goto exit;
8924 }
8925
8926 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
8927 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02008928 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08008929 cache = MTRR_TYPE_WRBACK;
8930 else
8931 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008932 goto exit;
8933 }
8934
Xiao Guangrongff536042015-06-15 16:55:22 +08008935 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008936
8937exit:
8938 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08008939}
8940
Sheng Yang17cc3932010-01-05 19:02:27 +08008941static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02008942{
Sheng Yang878403b2010-01-05 19:02:29 +08008943 if (enable_ept && !cpu_has_vmx_ept_1g_page())
8944 return PT_DIRECTORY_LEVEL;
8945 else
8946 /* For shadow and EPT supported 1GB page */
8947 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02008948}
8949
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008950static void vmcs_set_secondary_exec_control(u32 new_ctl)
8951{
8952 /*
8953 * These bits in the secondary execution controls field
8954 * are dynamic, the others are mostly based on the hypervisor
8955 * architecture and the guest's CPUID. Do not touch the
8956 * dynamic bits.
8957 */
8958 u32 mask =
8959 SECONDARY_EXEC_SHADOW_VMCS |
8960 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
8961 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8962
8963 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8964
8965 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
8966 (new_ctl & ~mask) | (cur_ctl & mask));
8967}
8968
Sheng Yang0e851882009-12-18 16:48:46 +08008969static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
8970{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008971 struct kvm_cpuid_entry2 *best;
8972 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008973 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008974
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008975 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008976 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
8977 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008978 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08008979
Paolo Bonzini8b972652015-09-15 17:34:42 +02008980 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008981 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02008982 vmx->nested.nested_vmx_secondary_ctls_high |=
8983 SECONDARY_EXEC_RDTSCP;
8984 else
8985 vmx->nested.nested_vmx_secondary_ctls_high &=
8986 ~SECONDARY_EXEC_RDTSCP;
8987 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008988 }
Mao, Junjiead756a12012-07-02 01:18:48 +00008989
Mao, Junjiead756a12012-07-02 01:18:48 +00008990 /* Exposing INVPCID only when PCID is exposed */
8991 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
8992 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008993 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
8994 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008995 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008996
Mao, Junjiead756a12012-07-02 01:18:48 +00008997 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00008998 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00008999 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009000
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009001 if (cpu_has_secondary_exec_ctrls())
9002 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009003
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009004 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
9005 if (guest_cpuid_has_pcommit(vcpu))
9006 vmx->nested.nested_vmx_secondary_ctls_high |=
9007 SECONDARY_EXEC_PCOMMIT;
9008 else
9009 vmx->nested.nested_vmx_secondary_ctls_high &=
9010 ~SECONDARY_EXEC_PCOMMIT;
9011 }
Sheng Yang0e851882009-12-18 16:48:46 +08009012}
9013
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009014static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9015{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009016 if (func == 1 && nested)
9017 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009018}
9019
Yang Zhang25d92082013-08-06 12:00:32 +03009020static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9021 struct x86_exception *fault)
9022{
Jan Kiszka533558b2014-01-04 18:47:20 +01009023 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9024 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009025
9026 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009027 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009028 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009029 exit_reason = EXIT_REASON_EPT_VIOLATION;
9030 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009031 vmcs12->guest_physical_address = fault->address;
9032}
9033
Nadav Har'El155a97a2013-08-05 11:07:16 +03009034/* Callbacks for nested_ept_init_mmu_context: */
9035
9036static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9037{
9038 /* return the page table to be shadowed - in our case, EPT12 */
9039 return get_vmcs12(vcpu)->ept_pointer;
9040}
9041
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009042static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009043{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009044 WARN_ON(mmu_is_nested(vcpu));
9045 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009046 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9047 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009048 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9049 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9050 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9051
9052 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009053}
9054
9055static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9056{
9057 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9058}
9059
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009060static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9061 u16 error_code)
9062{
9063 bool inequality, bit;
9064
9065 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9066 inequality =
9067 (error_code & vmcs12->page_fault_error_code_mask) !=
9068 vmcs12->page_fault_error_code_match;
9069 return inequality ^ bit;
9070}
9071
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009072static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9073 struct x86_exception *fault)
9074{
9075 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9076
9077 WARN_ON(!is_guest_mode(vcpu));
9078
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009079 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009080 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9081 vmcs_read32(VM_EXIT_INTR_INFO),
9082 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009083 else
9084 kvm_inject_page_fault(vcpu, fault);
9085}
9086
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009087static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9088 struct vmcs12 *vmcs12)
9089{
9090 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009091 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009092
9093 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009094 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9095 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009096 return false;
9097
9098 /*
9099 * Translate L1 physical address to host physical
9100 * address for vmcs02. Keep the page pinned, so this
9101 * physical address remains valid. We keep a reference
9102 * to it so we can release it later.
9103 */
9104 if (vmx->nested.apic_access_page) /* shouldn't happen */
9105 nested_release_page(vmx->nested.apic_access_page);
9106 vmx->nested.apic_access_page =
9107 nested_get_page(vcpu, vmcs12->apic_access_addr);
9108 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009109
9110 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009111 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9112 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009113 return false;
9114
9115 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9116 nested_release_page(vmx->nested.virtual_apic_page);
9117 vmx->nested.virtual_apic_page =
9118 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9119
9120 /*
9121 * Failing the vm entry is _not_ what the processor does
9122 * but it's basically the only possibility we have.
9123 * We could still enter the guest if CR8 load exits are
9124 * enabled, CR8 store exits are enabled, and virtualize APIC
9125 * access is disabled; in this case the processor would never
9126 * use the TPR shadow and we could simply clear the bit from
9127 * the execution control. But such a configuration is useless,
9128 * so let's keep the code simple.
9129 */
9130 if (!vmx->nested.virtual_apic_page)
9131 return false;
9132 }
9133
Wincy Van705699a2015-02-03 23:58:17 +08009134 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009135 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9136 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009137 return false;
9138
9139 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9140 kunmap(vmx->nested.pi_desc_page);
9141 nested_release_page(vmx->nested.pi_desc_page);
9142 }
9143 vmx->nested.pi_desc_page =
9144 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9145 if (!vmx->nested.pi_desc_page)
9146 return false;
9147
9148 vmx->nested.pi_desc =
9149 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9150 if (!vmx->nested.pi_desc) {
9151 nested_release_page_clean(vmx->nested.pi_desc_page);
9152 return false;
9153 }
9154 vmx->nested.pi_desc =
9155 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9156 (unsigned long)(vmcs12->posted_intr_desc_addr &
9157 (PAGE_SIZE - 1)));
9158 }
9159
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009160 return true;
9161}
9162
Jan Kiszkaf4124502014-03-07 20:03:13 +01009163static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9164{
9165 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9166 struct vcpu_vmx *vmx = to_vmx(vcpu);
9167
9168 if (vcpu->arch.virtual_tsc_khz == 0)
9169 return;
9170
9171 /* Make sure short timeouts reliably trigger an immediate vmexit.
9172 * hrtimer_start does not guarantee this. */
9173 if (preemption_timeout <= 1) {
9174 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9175 return;
9176 }
9177
9178 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9179 preemption_timeout *= 1000000;
9180 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9181 hrtimer_start(&vmx->nested.preemption_timer,
9182 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9183}
9184
Wincy Van3af18d92015-02-03 23:49:31 +08009185static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9186 struct vmcs12 *vmcs12)
9187{
9188 int maxphyaddr;
9189 u64 addr;
9190
9191 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9192 return 0;
9193
9194 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9195 WARN_ON(1);
9196 return -EINVAL;
9197 }
9198 maxphyaddr = cpuid_maxphyaddr(vcpu);
9199
9200 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9201 ((addr + PAGE_SIZE) >> maxphyaddr))
9202 return -EINVAL;
9203
9204 return 0;
9205}
9206
9207/*
9208 * Merge L0's and L1's MSR bitmap, return false to indicate that
9209 * we do not use the hardware.
9210 */
9211static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9212 struct vmcs12 *vmcs12)
9213{
Wincy Van82f0dd42015-02-03 23:57:18 +08009214 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009215 struct page *page;
9216 unsigned long *msr_bitmap;
9217
9218 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9219 return false;
9220
9221 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9222 if (!page) {
9223 WARN_ON(1);
9224 return false;
9225 }
9226 msr_bitmap = (unsigned long *)kmap(page);
9227 if (!msr_bitmap) {
9228 nested_release_page_clean(page);
9229 WARN_ON(1);
9230 return false;
9231 }
9232
9233 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009234 if (nested_cpu_has_apic_reg_virt(vmcs12))
9235 for (msr = 0x800; msr <= 0x8ff; msr++)
9236 nested_vmx_disable_intercept_for_msr(
9237 msr_bitmap,
9238 vmx_msr_bitmap_nested,
9239 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009240 /* TPR is allowed */
9241 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9242 vmx_msr_bitmap_nested,
9243 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9244 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009245 if (nested_cpu_has_vid(vmcs12)) {
9246 /* EOI and self-IPI are allowed */
9247 nested_vmx_disable_intercept_for_msr(
9248 msr_bitmap,
9249 vmx_msr_bitmap_nested,
9250 APIC_BASE_MSR + (APIC_EOI >> 4),
9251 MSR_TYPE_W);
9252 nested_vmx_disable_intercept_for_msr(
9253 msr_bitmap,
9254 vmx_msr_bitmap_nested,
9255 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9256 MSR_TYPE_W);
9257 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009258 } else {
9259 /*
9260 * Enable reading intercept of all the x2apic
9261 * MSRs. We should not rely on vmcs12 to do any
9262 * optimizations here, it may have been modified
9263 * by L1.
9264 */
9265 for (msr = 0x800; msr <= 0x8ff; msr++)
9266 __vmx_enable_intercept_for_msr(
9267 vmx_msr_bitmap_nested,
9268 msr,
9269 MSR_TYPE_R);
9270
Wincy Vanf2b93282015-02-03 23:56:03 +08009271 __vmx_enable_intercept_for_msr(
9272 vmx_msr_bitmap_nested,
9273 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009274 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009275 __vmx_enable_intercept_for_msr(
9276 vmx_msr_bitmap_nested,
9277 APIC_BASE_MSR + (APIC_EOI >> 4),
9278 MSR_TYPE_W);
9279 __vmx_enable_intercept_for_msr(
9280 vmx_msr_bitmap_nested,
9281 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9282 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009283 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009284 kunmap(page);
9285 nested_release_page_clean(page);
9286
9287 return true;
9288}
9289
9290static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9291 struct vmcs12 *vmcs12)
9292{
Wincy Van82f0dd42015-02-03 23:57:18 +08009293 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009294 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009295 !nested_cpu_has_vid(vmcs12) &&
9296 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009297 return 0;
9298
9299 /*
9300 * If virtualize x2apic mode is enabled,
9301 * virtualize apic access must be disabled.
9302 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009303 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9304 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009305 return -EINVAL;
9306
Wincy Van608406e2015-02-03 23:57:51 +08009307 /*
9308 * If virtual interrupt delivery is enabled,
9309 * we must exit on external interrupts.
9310 */
9311 if (nested_cpu_has_vid(vmcs12) &&
9312 !nested_exit_on_intr(vcpu))
9313 return -EINVAL;
9314
Wincy Van705699a2015-02-03 23:58:17 +08009315 /*
9316 * bits 15:8 should be zero in posted_intr_nv,
9317 * the descriptor address has been already checked
9318 * in nested_get_vmcs12_pages.
9319 */
9320 if (nested_cpu_has_posted_intr(vmcs12) &&
9321 (!nested_cpu_has_vid(vmcs12) ||
9322 !nested_exit_intr_ack_set(vcpu) ||
9323 vmcs12->posted_intr_nv & 0xff00))
9324 return -EINVAL;
9325
Wincy Vanf2b93282015-02-03 23:56:03 +08009326 /* tpr shadow is needed by all apicv features. */
9327 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9328 return -EINVAL;
9329
9330 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009331}
9332
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009333static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9334 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009335 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009336{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009337 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009338 u64 count, addr;
9339
9340 if (vmcs12_read_any(vcpu, count_field, &count) ||
9341 vmcs12_read_any(vcpu, addr_field, &addr)) {
9342 WARN_ON(1);
9343 return -EINVAL;
9344 }
9345 if (count == 0)
9346 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009347 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009348 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9349 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9350 pr_warn_ratelimited(
9351 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9352 addr_field, maxphyaddr, count, addr);
9353 return -EINVAL;
9354 }
9355 return 0;
9356}
9357
9358static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9359 struct vmcs12 *vmcs12)
9360{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009361 if (vmcs12->vm_exit_msr_load_count == 0 &&
9362 vmcs12->vm_exit_msr_store_count == 0 &&
9363 vmcs12->vm_entry_msr_load_count == 0)
9364 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009365 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009366 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009367 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009368 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009369 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009370 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009371 return -EINVAL;
9372 return 0;
9373}
9374
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009375static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9376 struct vmx_msr_entry *e)
9377{
9378 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009379 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009380 return -EINVAL;
9381 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9382 e->index == MSR_IA32_UCODE_REV)
9383 return -EINVAL;
9384 if (e->reserved != 0)
9385 return -EINVAL;
9386 return 0;
9387}
9388
9389static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9390 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009391{
9392 if (e->index == MSR_FS_BASE ||
9393 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009394 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9395 nested_vmx_msr_check_common(vcpu, e))
9396 return -EINVAL;
9397 return 0;
9398}
9399
9400static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9401 struct vmx_msr_entry *e)
9402{
9403 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9404 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009405 return -EINVAL;
9406 return 0;
9407}
9408
9409/*
9410 * Load guest's/host's msr at nested entry/exit.
9411 * return 0 for success, entry index for failure.
9412 */
9413static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9414{
9415 u32 i;
9416 struct vmx_msr_entry e;
9417 struct msr_data msr;
9418
9419 msr.host_initiated = false;
9420 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009421 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9422 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009423 pr_warn_ratelimited(
9424 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9425 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009426 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009427 }
9428 if (nested_vmx_load_msr_check(vcpu, &e)) {
9429 pr_warn_ratelimited(
9430 "%s check failed (%u, 0x%x, 0x%x)\n",
9431 __func__, i, e.index, e.reserved);
9432 goto fail;
9433 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009434 msr.index = e.index;
9435 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009436 if (kvm_set_msr(vcpu, &msr)) {
9437 pr_warn_ratelimited(
9438 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9439 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009440 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009441 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009442 }
9443 return 0;
9444fail:
9445 return i + 1;
9446}
9447
9448static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9449{
9450 u32 i;
9451 struct vmx_msr_entry e;
9452
9453 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009454 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009455 if (kvm_vcpu_read_guest(vcpu,
9456 gpa + i * sizeof(e),
9457 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009458 pr_warn_ratelimited(
9459 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9460 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009461 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009462 }
9463 if (nested_vmx_store_msr_check(vcpu, &e)) {
9464 pr_warn_ratelimited(
9465 "%s check failed (%u, 0x%x, 0x%x)\n",
9466 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009467 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009468 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009469 msr_info.host_initiated = false;
9470 msr_info.index = e.index;
9471 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009472 pr_warn_ratelimited(
9473 "%s cannot read MSR (%u, 0x%x)\n",
9474 __func__, i, e.index);
9475 return -EINVAL;
9476 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009477 if (kvm_vcpu_write_guest(vcpu,
9478 gpa + i * sizeof(e) +
9479 offsetof(struct vmx_msr_entry, value),
9480 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009481 pr_warn_ratelimited(
9482 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009483 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009484 return -EINVAL;
9485 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009486 }
9487 return 0;
9488}
9489
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009490/*
9491 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9492 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009493 * 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 +03009494 * guest in a way that will both be appropriate to L1's requests, and our
9495 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9496 * function also has additional necessary side-effects, like setting various
9497 * vcpu->arch fields.
9498 */
9499static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9500{
9501 struct vcpu_vmx *vmx = to_vmx(vcpu);
9502 u32 exec_control;
9503
9504 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9505 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9506 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9507 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9508 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9509 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9510 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9511 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9512 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9513 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9514 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9515 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9516 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9517 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9518 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9519 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9520 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9521 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9522 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9523 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9524 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9525 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9526 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9527 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9528 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9529 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9530 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9531 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9532 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9533 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9534 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9535 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9536 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9537 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9538 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9539 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9540
Jan Kiszka2996fca2014-06-16 13:59:43 +02009541 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9542 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9543 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9544 } else {
9545 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9546 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9547 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009548 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9549 vmcs12->vm_entry_intr_info_field);
9550 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9551 vmcs12->vm_entry_exception_error_code);
9552 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9553 vmcs12->vm_entry_instruction_len);
9554 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9555 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009556 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009557 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009558 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9559 vmcs12->guest_pending_dbg_exceptions);
9560 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9561 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9562
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009563 if (nested_cpu_has_xsaves(vmcs12))
9564 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009565 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9566
Jan Kiszkaf4124502014-03-07 20:03:13 +01009567 exec_control = vmcs12->pin_based_vm_exec_control;
9568 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009569 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9570
9571 if (nested_cpu_has_posted_intr(vmcs12)) {
9572 /*
9573 * Note that we use L0's vector here and in
9574 * vmx_deliver_nested_posted_interrupt.
9575 */
9576 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9577 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009578 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009579 vmcs_write64(POSTED_INTR_DESC_ADDR,
9580 page_to_phys(vmx->nested.pi_desc_page) +
9581 (unsigned long)(vmcs12->posted_intr_desc_addr &
9582 (PAGE_SIZE - 1)));
9583 } else
9584 exec_control &= ~PIN_BASED_POSTED_INTR;
9585
Jan Kiszkaf4124502014-03-07 20:03:13 +01009586 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009587
Jan Kiszkaf4124502014-03-07 20:03:13 +01009588 vmx->nested.preemption_timer_expired = false;
9589 if (nested_cpu_has_preemption_timer(vmcs12))
9590 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009591
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009592 /*
9593 * Whether page-faults are trapped is determined by a combination of
9594 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9595 * If enable_ept, L0 doesn't care about page faults and we should
9596 * set all of these to L1's desires. However, if !enable_ept, L0 does
9597 * care about (at least some) page faults, and because it is not easy
9598 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9599 * to exit on each and every L2 page fault. This is done by setting
9600 * MASK=MATCH=0 and (see below) EB.PF=1.
9601 * Note that below we don't need special code to set EB.PF beyond the
9602 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9603 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9604 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9605 *
9606 * A problem with this approach (when !enable_ept) is that L1 may be
9607 * injected with more page faults than it asked for. This could have
9608 * caused problems, but in practice existing hypervisors don't care.
9609 * To fix this, we will need to emulate the PFEC checking (on the L1
9610 * page tables), using walk_addr(), when injecting PFs to L1.
9611 */
9612 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9613 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9614 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9615 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9616
9617 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf4124502014-03-07 20:03:13 +01009618 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009619
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009620 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009621 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009622 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009623 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009624 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9625 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009626 if (nested_cpu_has(vmcs12,
9627 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9628 exec_control |= vmcs12->secondary_vm_exec_control;
9629
9630 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9631 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009632 * If translation failed, no matter: This feature asks
9633 * to exit when accessing the given address, and if it
9634 * can never be accessed, this feature won't do
9635 * anything anyway.
9636 */
9637 if (!vmx->nested.apic_access_page)
9638 exec_control &=
9639 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9640 else
9641 vmcs_write64(APIC_ACCESS_ADDR,
9642 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009643 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009644 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009645 exec_control |=
9646 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009647 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009648 }
9649
Wincy Van608406e2015-02-03 23:57:51 +08009650 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9651 vmcs_write64(EOI_EXIT_BITMAP0,
9652 vmcs12->eoi_exit_bitmap0);
9653 vmcs_write64(EOI_EXIT_BITMAP1,
9654 vmcs12->eoi_exit_bitmap1);
9655 vmcs_write64(EOI_EXIT_BITMAP2,
9656 vmcs12->eoi_exit_bitmap2);
9657 vmcs_write64(EOI_EXIT_BITMAP3,
9658 vmcs12->eoi_exit_bitmap3);
9659 vmcs_write16(GUEST_INTR_STATUS,
9660 vmcs12->guest_intr_status);
9661 }
9662
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009663 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9664 }
9665
9666
9667 /*
9668 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9669 * Some constant fields are set here by vmx_set_constant_host_state().
9670 * Other fields are different per CPU, and will be set later when
9671 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9672 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009673 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009674
9675 /*
9676 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9677 * entry, but only if the current (host) sp changed from the value
9678 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9679 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9680 * here we just force the write to happen on entry.
9681 */
9682 vmx->host_rsp = 0;
9683
9684 exec_control = vmx_exec_control(vmx); /* L0's desires */
9685 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9686 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9687 exec_control &= ~CPU_BASED_TPR_SHADOW;
9688 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009689
9690 if (exec_control & CPU_BASED_TPR_SHADOW) {
9691 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9692 page_to_phys(vmx->nested.virtual_apic_page));
9693 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9694 }
9695
Wincy Van3af18d92015-02-03 23:49:31 +08009696 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009697 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9698 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9699 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009700 } else
9701 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9702
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009703 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009704 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009705 * Rather, exit every time.
9706 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009707 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9708 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9709
9710 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9711
9712 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9713 * bitwise-or of what L1 wants to trap for L2, and what we want to
9714 * trap. Note that CR0.TS also needs updating - we do this later.
9715 */
9716 update_exception_bitmap(vcpu);
9717 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9718 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9719
Nadav Har'El8049d652013-08-05 11:07:06 +03009720 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9721 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9722 * bits are further modified by vmx_set_efer() below.
9723 */
Jan Kiszkaf4124502014-03-07 20:03:13 +01009724 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009725
9726 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9727 * emulated by vmx_set_efer(), below.
9728 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009729 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009730 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9731 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009732 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9733
Jan Kiszka44811c02013-08-04 17:17:27 +02009734 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009735 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009736 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9737 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009738 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9739
9740
9741 set_cr4_guest_host_mask(vmx);
9742
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009743 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9744 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9745
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009746 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9747 vmcs_write64(TSC_OFFSET,
9748 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9749 else
9750 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009751
9752 if (enable_vpid) {
9753 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009754 * There is no direct mapping between vpid02 and vpid12, the
9755 * vpid02 is per-vCPU for L0 and reused while the value of
9756 * vpid12 is changed w/ one invvpid during nested vmentry.
9757 * The vpid12 is allocated by L1 for L2, so it will not
9758 * influence global bitmap(for vpid01 and vpid02 allocation)
9759 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009760 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009761 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9762 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9763 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9764 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9765 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9766 }
9767 } else {
9768 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9769 vmx_flush_tlb(vcpu);
9770 }
9771
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009772 }
9773
Nadav Har'El155a97a2013-08-05 11:07:16 +03009774 if (nested_cpu_has_ept(vmcs12)) {
9775 kvm_mmu_unload(vcpu);
9776 nested_ept_init_mmu_context(vcpu);
9777 }
9778
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009779 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
9780 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +02009781 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009782 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
9783 else
9784 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
9785 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
9786 vmx_set_efer(vcpu, vcpu->arch.efer);
9787
9788 /*
9789 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
9790 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
9791 * The CR0_READ_SHADOW is what L2 should have expected to read given
9792 * the specifications by L1; It's not enough to take
9793 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
9794 * have more bits than L1 expected.
9795 */
9796 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
9797 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
9798
9799 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
9800 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
9801
9802 /* shadow page tables on either EPT or shadow page tables */
9803 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
9804 kvm_mmu_reset_context(vcpu);
9805
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009806 if (!enable_ept)
9807 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
9808
Nadav Har'El3633cfc2013-08-05 11:07:07 +03009809 /*
9810 * L1 may access the L2's PDPTR, so save them to construct vmcs12
9811 */
9812 if (enable_ept) {
9813 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
9814 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
9815 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
9816 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
9817 }
9818
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009819 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
9820 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
9821}
9822
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009823/*
9824 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
9825 * for running an L2 nested guest.
9826 */
9827static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
9828{
9829 struct vmcs12 *vmcs12;
9830 struct vcpu_vmx *vmx = to_vmx(vcpu);
9831 int cpu;
9832 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +02009833 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +03009834 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009835
9836 if (!nested_vmx_check_permission(vcpu) ||
9837 !nested_vmx_check_vmcs12(vcpu))
9838 return 1;
9839
9840 skip_emulated_instruction(vcpu);
9841 vmcs12 = get_vmcs12(vcpu);
9842
Abel Gordon012f83c2013-04-18 14:39:25 +03009843 if (enable_shadow_vmcs)
9844 copy_shadow_to_vmcs12(vmx);
9845
Nadav Har'El7c177932011-05-25 23:12:04 +03009846 /*
9847 * The nested entry process starts with enforcing various prerequisites
9848 * on vmcs12 as required by the Intel SDM, and act appropriately when
9849 * they fail: As the SDM explains, some conditions should cause the
9850 * instruction to fail, while others will cause the instruction to seem
9851 * to succeed, but return an EXIT_REASON_INVALID_STATE.
9852 * To speed up the normal (success) code path, we should avoid checking
9853 * for misconfigurations which will anyway be caught by the processor
9854 * when using the merged vmcs02.
9855 */
9856 if (vmcs12->launch_state == launch) {
9857 nested_vmx_failValid(vcpu,
9858 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
9859 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
9860 return 1;
9861 }
9862
Jan Kiszka6dfacad2013-12-04 08:58:54 +01009863 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
9864 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +02009865 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9866 return 1;
9867 }
9868
Wincy Van3af18d92015-02-03 23:49:31 +08009869 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009870 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9871 return 1;
9872 }
9873
Wincy Van3af18d92015-02-03 23:49:31 +08009874 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009875 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9876 return 1;
9877 }
9878
Wincy Vanf2b93282015-02-03 23:56:03 +08009879 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
9880 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9881 return 1;
9882 }
9883
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009884 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
9885 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9886 return 1;
9887 }
9888
Nadav Har'El7c177932011-05-25 23:12:04 +03009889 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009890 vmx->nested.nested_vmx_true_procbased_ctls_low,
9891 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009892 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009893 vmx->nested.nested_vmx_secondary_ctls_low,
9894 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009895 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009896 vmx->nested.nested_vmx_pinbased_ctls_low,
9897 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009898 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009899 vmx->nested.nested_vmx_true_exit_ctls_low,
9900 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009901 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009902 vmx->nested.nested_vmx_true_entry_ctls_low,
9903 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +03009904 {
9905 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9906 return 1;
9907 }
9908
9909 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
9910 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9911 nested_vmx_failValid(vcpu,
9912 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
9913 return 1;
9914 }
9915
Wincy Vanb9c237b2015-02-03 23:56:30 +08009916 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009917 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9918 nested_vmx_entry_failure(vcpu, vmcs12,
9919 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9920 return 1;
9921 }
9922 if (vmcs12->vmcs_link_pointer != -1ull) {
9923 nested_vmx_entry_failure(vcpu, vmcs12,
9924 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
9925 return 1;
9926 }
9927
9928 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +02009929 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +02009930 * are performed on the field for the IA32_EFER MSR:
9931 * - Bits reserved in the IA32_EFER MSR must be 0.
9932 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
9933 * the IA-32e mode guest VM-exit control. It must also be identical
9934 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
9935 * CR0.PG) is 1.
9936 */
9937 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
9938 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
9939 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
9940 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
9941 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
9942 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
9943 nested_vmx_entry_failure(vcpu, vmcs12,
9944 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9945 return 1;
9946 }
9947 }
9948
9949 /*
9950 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
9951 * IA32_EFER MSR must be 0 in the field for that register. In addition,
9952 * the values of the LMA and LME bits in the field must each be that of
9953 * the host address-space size VM-exit control.
9954 */
9955 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
9956 ia32e = (vmcs12->vm_exit_controls &
9957 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
9958 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
9959 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
9960 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
9961 nested_vmx_entry_failure(vcpu, vmcs12,
9962 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9963 return 1;
9964 }
9965 }
9966
9967 /*
Nadav Har'El7c177932011-05-25 23:12:04 +03009968 * We're finally done with prerequisite checking, and can start with
9969 * the nested entry.
9970 */
9971
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009972 vmcs02 = nested_get_current_vmcs02(vmx);
9973 if (!vmcs02)
9974 return -ENOMEM;
9975
9976 enter_guest_mode(vcpu);
9977
9978 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
9979
Jan Kiszka2996fca2014-06-16 13:59:43 +02009980 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
9981 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
9982
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009983 cpu = get_cpu();
9984 vmx->loaded_vmcs = vmcs02;
9985 vmx_vcpu_put(vcpu);
9986 vmx_vcpu_load(vcpu, cpu);
9987 vcpu->cpu = cpu;
9988 put_cpu();
9989
Jan Kiszka36c3cc42013-02-23 22:35:37 +01009990 vmx_segment_cache_clear(vmx);
9991
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009992 prepare_vmcs02(vcpu, vmcs12);
9993
Wincy Vanff651cb2014-12-11 08:52:58 +03009994 msr_entry_idx = nested_vmx_load_msr(vcpu,
9995 vmcs12->vm_entry_msr_load_addr,
9996 vmcs12->vm_entry_msr_load_count);
9997 if (msr_entry_idx) {
9998 leave_guest_mode(vcpu);
9999 vmx_load_vmcs01(vcpu);
10000 nested_vmx_entry_failure(vcpu, vmcs12,
10001 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10002 return 1;
10003 }
10004
10005 vmcs12->launch_state = 1;
10006
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010007 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010008 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010009
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010010 vmx->nested.nested_run_pending = 1;
10011
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010012 /*
10013 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10014 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10015 * returned as far as L1 is concerned. It will only return (and set
10016 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10017 */
10018 return 1;
10019}
10020
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010021/*
10022 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10023 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10024 * This function returns the new value we should put in vmcs12.guest_cr0.
10025 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10026 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10027 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10028 * didn't trap the bit, because if L1 did, so would L0).
10029 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10030 * been modified by L2, and L1 knows it. So just leave the old value of
10031 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10032 * isn't relevant, because if L0 traps this bit it can set it to anything.
10033 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10034 * changed these bits, and therefore they need to be updated, but L0
10035 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10036 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10037 */
10038static inline unsigned long
10039vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10040{
10041 return
10042 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10043 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10044 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10045 vcpu->arch.cr0_guest_owned_bits));
10046}
10047
10048static inline unsigned long
10049vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10050{
10051 return
10052 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10053 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10054 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10055 vcpu->arch.cr4_guest_owned_bits));
10056}
10057
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010058static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10059 struct vmcs12 *vmcs12)
10060{
10061 u32 idt_vectoring;
10062 unsigned int nr;
10063
Gleb Natapov851eb6672013-09-25 12:51:34 +030010064 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010065 nr = vcpu->arch.exception.nr;
10066 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10067
10068 if (kvm_exception_is_soft(nr)) {
10069 vmcs12->vm_exit_instruction_len =
10070 vcpu->arch.event_exit_inst_len;
10071 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10072 } else
10073 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10074
10075 if (vcpu->arch.exception.has_error_code) {
10076 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10077 vmcs12->idt_vectoring_error_code =
10078 vcpu->arch.exception.error_code;
10079 }
10080
10081 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010082 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010083 vmcs12->idt_vectoring_info_field =
10084 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10085 } else if (vcpu->arch.interrupt.pending) {
10086 nr = vcpu->arch.interrupt.nr;
10087 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10088
10089 if (vcpu->arch.interrupt.soft) {
10090 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10091 vmcs12->vm_entry_instruction_len =
10092 vcpu->arch.event_exit_inst_len;
10093 } else
10094 idt_vectoring |= INTR_TYPE_EXT_INTR;
10095
10096 vmcs12->idt_vectoring_info_field = idt_vectoring;
10097 }
10098}
10099
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010100static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10101{
10102 struct vcpu_vmx *vmx = to_vmx(vcpu);
10103
Jan Kiszkaf4124502014-03-07 20:03:13 +010010104 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10105 vmx->nested.preemption_timer_expired) {
10106 if (vmx->nested.nested_run_pending)
10107 return -EBUSY;
10108 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10109 return 0;
10110 }
10111
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010112 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010113 if (vmx->nested.nested_run_pending ||
10114 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010115 return -EBUSY;
10116 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10117 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10118 INTR_INFO_VALID_MASK, 0);
10119 /*
10120 * The NMI-triggered VM exit counts as injection:
10121 * clear this one and block further NMIs.
10122 */
10123 vcpu->arch.nmi_pending = 0;
10124 vmx_set_nmi_mask(vcpu, true);
10125 return 0;
10126 }
10127
10128 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10129 nested_exit_on_intr(vcpu)) {
10130 if (vmx->nested.nested_run_pending)
10131 return -EBUSY;
10132 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010133 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010134 }
10135
Wincy Van705699a2015-02-03 23:58:17 +080010136 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010137}
10138
Jan Kiszkaf4124502014-03-07 20:03:13 +010010139static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10140{
10141 ktime_t remaining =
10142 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10143 u64 value;
10144
10145 if (ktime_to_ns(remaining) <= 0)
10146 return 0;
10147
10148 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10149 do_div(value, 1000000);
10150 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10151}
10152
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010153/*
10154 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10155 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10156 * and this function updates it to reflect the changes to the guest state while
10157 * L2 was running (and perhaps made some exits which were handled directly by L0
10158 * without going back to L1), and to reflect the exit reason.
10159 * Note that we do not have to copy here all VMCS fields, just those that
10160 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10161 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10162 * which already writes to vmcs12 directly.
10163 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010164static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10165 u32 exit_reason, u32 exit_intr_info,
10166 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010167{
10168 /* update guest state fields: */
10169 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10170 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10171
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010172 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10173 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10174 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10175
10176 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10177 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10178 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10179 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10180 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10181 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10182 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10183 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10184 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10185 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10186 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10187 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10188 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10189 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10190 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10191 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10192 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10193 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10194 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10195 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10196 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10197 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10198 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10199 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10200 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10201 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10202 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10203 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10204 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10205 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10206 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10207 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10208 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10209 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10210 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10211 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10212
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010213 vmcs12->guest_interruptibility_info =
10214 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10215 vmcs12->guest_pending_dbg_exceptions =
10216 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010217 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10218 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10219 else
10220 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010221
Jan Kiszkaf4124502014-03-07 20:03:13 +010010222 if (nested_cpu_has_preemption_timer(vmcs12)) {
10223 if (vmcs12->vm_exit_controls &
10224 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10225 vmcs12->vmx_preemption_timer_value =
10226 vmx_get_preemption_timer_value(vcpu);
10227 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10228 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010229
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010230 /*
10231 * In some cases (usually, nested EPT), L2 is allowed to change its
10232 * own CR3 without exiting. If it has changed it, we must keep it.
10233 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10234 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10235 *
10236 * Additionally, restore L2's PDPTR to vmcs12.
10237 */
10238 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010239 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010240 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10241 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10242 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10243 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10244 }
10245
Wincy Van608406e2015-02-03 23:57:51 +080010246 if (nested_cpu_has_vid(vmcs12))
10247 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10248
Jan Kiszkac18911a2013-03-13 16:06:41 +010010249 vmcs12->vm_entry_controls =
10250 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010251 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010252
Jan Kiszka2996fca2014-06-16 13:59:43 +020010253 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10254 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10255 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10256 }
10257
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010258 /* TODO: These cannot have changed unless we have MSR bitmaps and
10259 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010260 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010261 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010262 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10263 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010264 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10265 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10266 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010010267 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010268 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010269 if (nested_cpu_has_xsaves(vmcs12))
10270 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010271
10272 /* update exit information fields: */
10273
Jan Kiszka533558b2014-01-04 18:47:20 +010010274 vmcs12->vm_exit_reason = exit_reason;
10275 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010276
Jan Kiszka533558b2014-01-04 18:47:20 +010010277 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010278 if ((vmcs12->vm_exit_intr_info &
10279 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10280 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10281 vmcs12->vm_exit_intr_error_code =
10282 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010283 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010284 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10285 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10286
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010287 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10288 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10289 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010290 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010291
10292 /*
10293 * Transfer the event that L0 or L1 may wanted to inject into
10294 * L2 to IDT_VECTORING_INFO_FIELD.
10295 */
10296 vmcs12_save_pending_event(vcpu, vmcs12);
10297 }
10298
10299 /*
10300 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10301 * preserved above and would only end up incorrectly in L1.
10302 */
10303 vcpu->arch.nmi_injected = false;
10304 kvm_clear_exception_queue(vcpu);
10305 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010306}
10307
10308/*
10309 * A part of what we need to when the nested L2 guest exits and we want to
10310 * run its L1 parent, is to reset L1's guest state to the host state specified
10311 * in vmcs12.
10312 * This function is to be called not only on normal nested exit, but also on
10313 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10314 * Failures During or After Loading Guest State").
10315 * This function should be called when the active VMCS is L1's (vmcs01).
10316 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010317static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10318 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010319{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010320 struct kvm_segment seg;
10321
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010322 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10323 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010324 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010325 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10326 else
10327 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10328 vmx_set_efer(vcpu, vcpu->arch.efer);
10329
10330 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10331 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010332 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010333 /*
10334 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10335 * actually changed, because it depends on the current state of
10336 * fpu_active (which may have changed).
10337 * Note that vmx_set_cr0 refers to efer set above.
10338 */
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020010339 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010340 /*
10341 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10342 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10343 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10344 */
10345 update_exception_bitmap(vcpu);
10346 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10347 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10348
10349 /*
10350 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10351 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10352 */
10353 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10354 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10355
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010356 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010357
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010358 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10359 kvm_mmu_reset_context(vcpu);
10360
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010361 if (!enable_ept)
10362 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10363
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010364 if (enable_vpid) {
10365 /*
10366 * Trivially support vpid by letting L2s share their parent
10367 * L1's vpid. TODO: move to a more elaborate solution, giving
10368 * each L2 its own vpid and exposing the vpid feature to L1.
10369 */
10370 vmx_flush_tlb(vcpu);
10371 }
10372
10373
10374 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10375 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10376 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10377 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10378 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010379
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010380 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10381 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10382 vmcs_write64(GUEST_BNDCFGS, 0);
10383
Jan Kiszka44811c02013-08-04 17:17:27 +020010384 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010385 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010386 vcpu->arch.pat = vmcs12->host_ia32_pat;
10387 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010388 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10389 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10390 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010391
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010392 /* Set L1 segment info according to Intel SDM
10393 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10394 seg = (struct kvm_segment) {
10395 .base = 0,
10396 .limit = 0xFFFFFFFF,
10397 .selector = vmcs12->host_cs_selector,
10398 .type = 11,
10399 .present = 1,
10400 .s = 1,
10401 .g = 1
10402 };
10403 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10404 seg.l = 1;
10405 else
10406 seg.db = 1;
10407 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10408 seg = (struct kvm_segment) {
10409 .base = 0,
10410 .limit = 0xFFFFFFFF,
10411 .type = 3,
10412 .present = 1,
10413 .s = 1,
10414 .db = 1,
10415 .g = 1
10416 };
10417 seg.selector = vmcs12->host_ds_selector;
10418 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10419 seg.selector = vmcs12->host_es_selector;
10420 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10421 seg.selector = vmcs12->host_ss_selector;
10422 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10423 seg.selector = vmcs12->host_fs_selector;
10424 seg.base = vmcs12->host_fs_base;
10425 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10426 seg.selector = vmcs12->host_gs_selector;
10427 seg.base = vmcs12->host_gs_base;
10428 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10429 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010430 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010431 .limit = 0x67,
10432 .selector = vmcs12->host_tr_selector,
10433 .type = 11,
10434 .present = 1
10435 };
10436 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10437
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010438 kvm_set_dr(vcpu, 7, 0x400);
10439 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010440
Wincy Van3af18d92015-02-03 23:49:31 +080010441 if (cpu_has_vmx_msr_bitmap())
10442 vmx_set_msr_bitmap(vcpu);
10443
Wincy Vanff651cb2014-12-11 08:52:58 +030010444 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10445 vmcs12->vm_exit_msr_load_count))
10446 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010447}
10448
10449/*
10450 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10451 * and modify vmcs12 to make it see what it would expect to see there if
10452 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10453 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010454static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10455 u32 exit_intr_info,
10456 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010457{
10458 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010459 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10460
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010461 /* trying to cancel vmlaunch/vmresume is a bug */
10462 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10463
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010464 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010465 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10466 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010467
Wincy Vanff651cb2014-12-11 08:52:58 +030010468 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10469 vmcs12->vm_exit_msr_store_count))
10470 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10471
Wanpeng Lif3380ca2014-08-05 12:42:23 +080010472 vmx_load_vmcs01(vcpu);
10473
Bandan Das77b0f5d2014-04-19 18:17:45 -040010474 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10475 && nested_exit_intr_ack_set(vcpu)) {
10476 int irq = kvm_cpu_get_interrupt(vcpu);
10477 WARN_ON(irq < 0);
10478 vmcs12->vm_exit_intr_info = irq |
10479 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10480 }
10481
Jan Kiszka542060e2014-01-04 18:47:21 +010010482 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10483 vmcs12->exit_qualification,
10484 vmcs12->idt_vectoring_info_field,
10485 vmcs12->vm_exit_intr_info,
10486 vmcs12->vm_exit_intr_error_code,
10487 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010488
Gleb Natapov2961e8762013-11-25 15:37:13 +020010489 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10490 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010491 vmx_segment_cache_clear(vmx);
10492
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010493 /* if no vmcs02 cache requested, remove the one we used */
10494 if (VMCS02_POOL_SIZE == 0)
10495 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10496
10497 load_vmcs12_host_state(vcpu, vmcs12);
10498
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010499 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010500 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10501
10502 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10503 vmx->host_rsp = 0;
10504
10505 /* Unpin physical memory we referred to in vmcs02 */
10506 if (vmx->nested.apic_access_page) {
10507 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010508 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010509 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010510 if (vmx->nested.virtual_apic_page) {
10511 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010512 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010513 }
Wincy Van705699a2015-02-03 23:58:17 +080010514 if (vmx->nested.pi_desc_page) {
10515 kunmap(vmx->nested.pi_desc_page);
10516 nested_release_page(vmx->nested.pi_desc_page);
10517 vmx->nested.pi_desc_page = NULL;
10518 vmx->nested.pi_desc = NULL;
10519 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010520
10521 /*
Tang Chen38b99172014-09-24 15:57:54 +080010522 * We are now running in L2, mmu_notifier will force to reload the
10523 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10524 */
10525 kvm_vcpu_reload_apic_access_page(vcpu);
10526
10527 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010528 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10529 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10530 * success or failure flag accordingly.
10531 */
10532 if (unlikely(vmx->fail)) {
10533 vmx->fail = 0;
10534 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10535 } else
10536 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010537 if (enable_shadow_vmcs)
10538 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010539
10540 /* in case we halted in L2 */
10541 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010542}
10543
Nadav Har'El7c177932011-05-25 23:12:04 +030010544/*
Jan Kiszka42124922014-01-04 18:47:19 +010010545 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10546 */
10547static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10548{
10549 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010550 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010551 free_nested(to_vmx(vcpu));
10552}
10553
10554/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010555 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10556 * 23.7 "VM-entry failures during or after loading guest state" (this also
10557 * lists the acceptable exit-reason and exit-qualification parameters).
10558 * It should only be called before L2 actually succeeded to run, and when
10559 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10560 */
10561static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10562 struct vmcs12 *vmcs12,
10563 u32 reason, unsigned long qualification)
10564{
10565 load_vmcs12_host_state(vcpu, vmcs12);
10566 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10567 vmcs12->exit_qualification = qualification;
10568 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010569 if (enable_shadow_vmcs)
10570 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010571}
10572
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010573static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10574 struct x86_instruction_info *info,
10575 enum x86_intercept_stage stage)
10576{
10577 return X86EMUL_CONTINUE;
10578}
10579
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010580static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010581{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010582 if (ple_gap)
10583 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010584}
10585
Kai Huang843e4332015-01-28 10:54:28 +080010586static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10587 struct kvm_memory_slot *slot)
10588{
10589 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10590 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10591}
10592
10593static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10594 struct kvm_memory_slot *slot)
10595{
10596 kvm_mmu_slot_set_dirty(kvm, slot);
10597}
10598
10599static void vmx_flush_log_dirty(struct kvm *kvm)
10600{
10601 kvm_flush_pml_buffers(kvm);
10602}
10603
10604static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10605 struct kvm_memory_slot *memslot,
10606 gfn_t offset, unsigned long mask)
10607{
10608 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10609}
10610
Feng Wuefc64402015-09-18 22:29:51 +080010611/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010612 * This routine does the following things for vCPU which is going
10613 * to be blocked if VT-d PI is enabled.
10614 * - Store the vCPU to the wakeup list, so when interrupts happen
10615 * we can find the right vCPU to wake up.
10616 * - Change the Posted-interrupt descriptor as below:
10617 * 'NDST' <-- vcpu->pre_pcpu
10618 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10619 * - If 'ON' is set during this process, which means at least one
10620 * interrupt is posted for this vCPU, we cannot block it, in
10621 * this case, return 1, otherwise, return 0.
10622 *
10623 */
10624static int vmx_pre_block(struct kvm_vcpu *vcpu)
10625{
10626 unsigned long flags;
10627 unsigned int dest;
10628 struct pi_desc old, new;
10629 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10630
10631 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10632 !irq_remapping_cap(IRQ_POSTING_CAP))
10633 return 0;
10634
10635 vcpu->pre_pcpu = vcpu->cpu;
10636 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10637 vcpu->pre_pcpu), flags);
10638 list_add_tail(&vcpu->blocked_vcpu_list,
10639 &per_cpu(blocked_vcpu_on_cpu,
10640 vcpu->pre_pcpu));
10641 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10642 vcpu->pre_pcpu), flags);
10643
10644 do {
10645 old.control = new.control = pi_desc->control;
10646
10647 /*
10648 * We should not block the vCPU if
10649 * an interrupt is posted for it.
10650 */
10651 if (pi_test_on(pi_desc) == 1) {
10652 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10653 vcpu->pre_pcpu), flags);
10654 list_del(&vcpu->blocked_vcpu_list);
10655 spin_unlock_irqrestore(
10656 &per_cpu(blocked_vcpu_on_cpu_lock,
10657 vcpu->pre_pcpu), flags);
10658 vcpu->pre_pcpu = -1;
10659
10660 return 1;
10661 }
10662
10663 WARN((pi_desc->sn == 1),
10664 "Warning: SN field of posted-interrupts "
10665 "is set before blocking\n");
10666
10667 /*
10668 * Since vCPU can be preempted during this process,
10669 * vcpu->cpu could be different with pre_pcpu, we
10670 * need to set pre_pcpu as the destination of wakeup
10671 * notification event, then we can find the right vCPU
10672 * to wakeup in wakeup handler if interrupts happen
10673 * when the vCPU is in blocked state.
10674 */
10675 dest = cpu_physical_id(vcpu->pre_pcpu);
10676
10677 if (x2apic_enabled())
10678 new.ndst = dest;
10679 else
10680 new.ndst = (dest << 8) & 0xFF00;
10681
10682 /* set 'NV' to 'wakeup vector' */
10683 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10684 } while (cmpxchg(&pi_desc->control, old.control,
10685 new.control) != old.control);
10686
10687 return 0;
10688}
10689
10690static void vmx_post_block(struct kvm_vcpu *vcpu)
10691{
10692 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10693 struct pi_desc old, new;
10694 unsigned int dest;
10695 unsigned long flags;
10696
10697 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10698 !irq_remapping_cap(IRQ_POSTING_CAP))
10699 return;
10700
10701 do {
10702 old.control = new.control = pi_desc->control;
10703
10704 dest = cpu_physical_id(vcpu->cpu);
10705
10706 if (x2apic_enabled())
10707 new.ndst = dest;
10708 else
10709 new.ndst = (dest << 8) & 0xFF00;
10710
10711 /* Allow posting non-urgent interrupts */
10712 new.sn = 0;
10713
10714 /* set 'NV' to 'notification vector' */
10715 new.nv = POSTED_INTR_VECTOR;
10716 } while (cmpxchg(&pi_desc->control, old.control,
10717 new.control) != old.control);
10718
10719 if(vcpu->pre_pcpu != -1) {
10720 spin_lock_irqsave(
10721 &per_cpu(blocked_vcpu_on_cpu_lock,
10722 vcpu->pre_pcpu), flags);
10723 list_del(&vcpu->blocked_vcpu_list);
10724 spin_unlock_irqrestore(
10725 &per_cpu(blocked_vcpu_on_cpu_lock,
10726 vcpu->pre_pcpu), flags);
10727 vcpu->pre_pcpu = -1;
10728 }
10729}
10730
10731/*
Feng Wuefc64402015-09-18 22:29:51 +080010732 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
10733 *
10734 * @kvm: kvm
10735 * @host_irq: host irq of the interrupt
10736 * @guest_irq: gsi of the interrupt
10737 * @set: set or unset PI
10738 * returns 0 on success, < 0 on failure
10739 */
10740static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
10741 uint32_t guest_irq, bool set)
10742{
10743 struct kvm_kernel_irq_routing_entry *e;
10744 struct kvm_irq_routing_table *irq_rt;
10745 struct kvm_lapic_irq irq;
10746 struct kvm_vcpu *vcpu;
10747 struct vcpu_data vcpu_info;
10748 int idx, ret = -EINVAL;
10749
10750 if (!kvm_arch_has_assigned_device(kvm) ||
10751 !irq_remapping_cap(IRQ_POSTING_CAP))
10752 return 0;
10753
10754 idx = srcu_read_lock(&kvm->irq_srcu);
10755 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
10756 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
10757
10758 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
10759 if (e->type != KVM_IRQ_ROUTING_MSI)
10760 continue;
10761 /*
10762 * VT-d PI cannot support posting multicast/broadcast
10763 * interrupts to a vCPU, we still use interrupt remapping
10764 * for these kind of interrupts.
10765 *
10766 * For lowest-priority interrupts, we only support
10767 * those with single CPU as the destination, e.g. user
10768 * configures the interrupts via /proc/irq or uses
10769 * irqbalance to make the interrupts single-CPU.
10770 *
10771 * We will support full lowest-priority interrupt later.
10772 */
10773
10774 kvm_set_msi_irq(e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080010775 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
10776 /*
10777 * Make sure the IRTE is in remapped mode if
10778 * we don't handle it in posted mode.
10779 */
10780 ret = irq_set_vcpu_affinity(host_irq, NULL);
10781 if (ret < 0) {
10782 printk(KERN_INFO
10783 "failed to back to remapped mode, irq: %u\n",
10784 host_irq);
10785 goto out;
10786 }
10787
Feng Wuefc64402015-09-18 22:29:51 +080010788 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080010789 }
Feng Wuefc64402015-09-18 22:29:51 +080010790
10791 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
10792 vcpu_info.vector = irq.vector;
10793
Feng Wub6ce9782016-01-25 16:53:35 +080010794 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080010795 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
10796
10797 if (set)
10798 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
10799 else {
10800 /* suppress notification event before unposting */
10801 pi_set_sn(vcpu_to_pi_desc(vcpu));
10802 ret = irq_set_vcpu_affinity(host_irq, NULL);
10803 pi_clear_sn(vcpu_to_pi_desc(vcpu));
10804 }
10805
10806 if (ret < 0) {
10807 printk(KERN_INFO "%s: failed to update PI IRTE\n",
10808 __func__);
10809 goto out;
10810 }
10811 }
10812
10813 ret = 0;
10814out:
10815 srcu_read_unlock(&kvm->irq_srcu, idx);
10816 return ret;
10817}
10818
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030010819static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080010820 .cpu_has_kvm_support = cpu_has_kvm_support,
10821 .disabled_by_bios = vmx_disabled_by_bios,
10822 .hardware_setup = hardware_setup,
10823 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030010824 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010825 .hardware_enable = hardware_enable,
10826 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080010827 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010828 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010829
10830 .vcpu_create = vmx_create_vcpu,
10831 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030010832 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010833
Avi Kivity04d2cc72007-09-10 18:10:54 +030010834 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010835 .vcpu_load = vmx_vcpu_load,
10836 .vcpu_put = vmx_vcpu_put,
10837
Paolo Bonzinia96036b2015-11-10 11:55:36 +010010838 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010839 .get_msr = vmx_get_msr,
10840 .set_msr = vmx_set_msr,
10841 .get_segment_base = vmx_get_segment_base,
10842 .get_segment = vmx_get_segment,
10843 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020010844 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010845 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020010846 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020010847 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030010848 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010849 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010850 .set_cr3 = vmx_set_cr3,
10851 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010852 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010853 .get_idt = vmx_get_idt,
10854 .set_idt = vmx_set_idt,
10855 .get_gdt = vmx_get_gdt,
10856 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010010857 .get_dr6 = vmx_get_dr6,
10858 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030010859 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010010860 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010861 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010862 .get_rflags = vmx_get_rflags,
10863 .set_rflags = vmx_set_rflags,
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020010864 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020010865 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010866
10867 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010868
Avi Kivity6aa8b732006-12-10 02:21:36 -080010869 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020010870 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010871 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040010872 .set_interrupt_shadow = vmx_set_interrupt_shadow,
10873 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020010874 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030010875 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010876 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020010877 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010878 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020010879 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010880 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010010881 .get_nmi_mask = vmx_get_nmi_mask,
10882 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010883 .enable_nmi_window = enable_nmi_window,
10884 .enable_irq_window = enable_irq_window,
10885 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080010886 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080010887 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030010888 .get_enable_apicv = vmx_get_enable_apicv,
10889 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080010890 .load_eoi_exitmap = vmx_load_eoi_exitmap,
10891 .hwapic_irr_update = vmx_hwapic_irr_update,
10892 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080010893 .sync_pir_to_irr = vmx_sync_pir_to_irr,
10894 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010895
Izik Eiduscbc94022007-10-25 00:29:55 +020010896 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080010897 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010898 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010899
Avi Kivity586f9602010-11-18 13:09:54 +020010900 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020010901
Sheng Yang17cc3932010-01-05 19:02:27 +080010902 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080010903
10904 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010905
10906 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000010907 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010908
10909 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080010910
10911 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010912
Will Auldba904632012-11-29 12:42:50 -080010913 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010914 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080010915 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030010916 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020010917
10918 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010919
10920 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080010921 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010922 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080010923 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010924
10925 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010926
10927 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080010928
10929 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
10930 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
10931 .flush_log_dirty = vmx_flush_log_dirty,
10932 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020010933
Feng Wubf9f6ac2015-09-18 22:29:55 +080010934 .pre_block = vmx_pre_block,
10935 .post_block = vmx_post_block,
10936
Wei Huang25462f72015-06-19 15:45:05 +020010937 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080010938
10939 .update_pi_irte = vmx_update_pi_irte,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010940};
10941
10942static int __init vmx_init(void)
10943{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010944 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
10945 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030010946 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010947 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080010948
Dave Young2965faa2015-09-09 15:38:55 -070010949#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010950 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
10951 crash_vmclear_local_loaded_vmcss);
10952#endif
10953
He, Qingfdef3ad2007-04-30 09:45:24 +030010954 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010955}
10956
10957static void __exit vmx_exit(void)
10958{
Dave Young2965faa2015-09-09 15:38:55 -070010959#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053010960 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010961 synchronize_rcu();
10962#endif
10963
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080010964 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080010965}
10966
10967module_init(vmx_init)
10968module_exit(vmx_exit)