blob: 7852092b82aea2d8d11d96d30180f2d559c3bccd [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf41245002014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030036#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030037#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040038
Feng Wu28b835d2015-09-18 22:29:54 +080039#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080040#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080041#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020042#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020043#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080044#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020045#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020046#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010047#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080048#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010049#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080050#include <asm/irq_remapping.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Marcelo Tosatti229456f2009-06-17 09:22:14 -030052#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020053#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054
Avi Kivity4ecac3f2008-05-13 13:23:38 +030055#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040056#define __ex_clear(x, reg) \
57 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030058
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplette9bda3b2012-03-20 23:33:51 -070062static const struct x86_cpu_id vmx_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_VMX),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
67
Rusty Russell476bc002012-01-13 09:32:18 +103068static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020069module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080070
Rusty Russell476bc002012-01-13 09:32:18 +103071static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020072module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020073
Rusty Russell476bc002012-01-13 09:32:18 +103074static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020075module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080076
Rusty Russell476bc002012-01-13 09:32:18 +103077static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070078module_param_named(unrestricted_guest,
79 enable_unrestricted_guest, bool, S_IRUGO);
80
Xudong Hao83c3a332012-05-28 19:33:35 +080081static bool __read_mostly enable_ept_ad_bits = 1;
82module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
83
Avi Kivitya27685c2012-06-12 20:30:18 +030084static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020085module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly vmm_exclusive = 1;
Dongxiao Xub923e622010-05-11 18:29:45 +080088module_param(vmm_exclusive, bool, S_IRUGO);
89
Rusty Russell476bc002012-01-13 09:32:18 +103090static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030091module_param(fasteoi, bool, S_IRUGO);
92
Yang Zhang5a717852013-04-11 19:25:16 +080093static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080094module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080095
Abel Gordonabc4fc52013-04-18 14:35:25 +030096static bool __read_mostly enable_shadow_vmcs = 1;
97module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030098/*
99 * If nested=1, nested virtualization is supported, i.e., guests may use
100 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
101 * use VMX instructions.
102 */
Rusty Russell476bc002012-01-13 09:32:18 +1030103static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300104module_param(nested, bool, S_IRUGO);
105
Wanpeng Li20300092014-12-02 19:14:59 +0800106static u64 __read_mostly host_xss;
107
Kai Huang843e4332015-01-28 10:54:28 +0800108static bool __read_mostly enable_pml = 1;
109module_param_named(pml, enable_pml, bool, S_IRUGO);
110
Haozhong Zhang64903d62015-10-20 15:39:09 +0800111#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
112
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 Kiszkaf41245002014-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 Kiszkaf41245002014-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 Kivity313dbd492008-07-17 18:04:30 +0300523 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300524 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200525 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300526 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200527 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200528 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300529 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400530 int nmsrs;
531 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800532 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400533#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300534 u64 msr_host_kernel_gs_base;
535 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200537 u32 vm_entry_controls_shadow;
538 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300539 /*
540 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
541 * non-nested (L1) guest, it always points to vmcs01. For a nested
542 * guest (L2), it points to a different VMCS.
543 */
544 struct loaded_vmcs vmcs01;
545 struct loaded_vmcs *loaded_vmcs;
546 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300547 struct msr_autoload {
548 unsigned nr;
549 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
550 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
551 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400552 struct {
553 int loaded;
554 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300555#ifdef CONFIG_X86_64
556 u16 ds_sel, es_sel;
557#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200558 int gs_ldt_reload_needed;
559 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000560 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700561 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400562 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200563 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300564 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300565 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300566 struct kvm_segment segs[8];
567 } rmode;
568 struct {
569 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300570 struct kvm_save_segment {
571 u16 selector;
572 unsigned long base;
573 u32 limit;
574 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300575 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300576 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800577 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300578 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200579
580 /* Support for vnmi-less CPUs */
581 int soft_vnmi_blocked;
582 ktime_t entry_time;
583 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800584 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800585
Yang Zhang01e439b2013-04-11 19:25:12 +0800586 /* Posted interrupt descriptor */
587 struct pi_desc pi_desc;
588
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300589 /* Support for a guest hypervisor (nested VMX) */
590 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200591
592 /* Dynamic PLE window. */
593 int ple_window;
594 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800595
596 /* Support for PML */
597#define PML_ENTITY_NUM 512
598 struct page *pml_pg;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400599};
600
Avi Kivity2fb92db2011-04-27 19:42:18 +0300601enum segment_cache_field {
602 SEG_FIELD_SEL = 0,
603 SEG_FIELD_BASE = 1,
604 SEG_FIELD_LIMIT = 2,
605 SEG_FIELD_AR = 3,
606
607 SEG_FIELD_NR = 4
608};
609
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400610static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
611{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000612 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400613}
614
Feng Wuefc64402015-09-18 22:29:51 +0800615static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
616{
617 return &(to_vmx(vcpu)->pi_desc);
618}
619
Nadav Har'El22bd0352011-05-25 23:05:57 +0300620#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
621#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
622#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
623 [number##_HIGH] = VMCS12_OFFSET(name)+4
624
Abel Gordon4607c2d2013-04-18 14:35:55 +0300625
Bandan Dasfe2b2012014-04-21 15:20:14 -0400626static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300627 /*
628 * We do NOT shadow fields that are modified when L0
629 * traps and emulates any vmx instruction (e.g. VMPTRLD,
630 * VMXON...) executed by L1.
631 * For example, VM_INSTRUCTION_ERROR is read
632 * by L1 if a vmx instruction fails (part of the error path).
633 * Note the code assumes this logic. If for some reason
634 * we start shadowing these fields then we need to
635 * force a shadow sync when L0 emulates vmx instructions
636 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
637 * by nested_vmx_failValid)
638 */
639 VM_EXIT_REASON,
640 VM_EXIT_INTR_INFO,
641 VM_EXIT_INSTRUCTION_LEN,
642 IDT_VECTORING_INFO_FIELD,
643 IDT_VECTORING_ERROR_CODE,
644 VM_EXIT_INTR_ERROR_CODE,
645 EXIT_QUALIFICATION,
646 GUEST_LINEAR_ADDRESS,
647 GUEST_PHYSICAL_ADDRESS
648};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400649static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300650 ARRAY_SIZE(shadow_read_only_fields);
651
Bandan Dasfe2b2012014-04-21 15:20:14 -0400652static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800653 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300654 GUEST_RIP,
655 GUEST_RSP,
656 GUEST_CR0,
657 GUEST_CR3,
658 GUEST_CR4,
659 GUEST_INTERRUPTIBILITY_INFO,
660 GUEST_RFLAGS,
661 GUEST_CS_SELECTOR,
662 GUEST_CS_AR_BYTES,
663 GUEST_CS_LIMIT,
664 GUEST_CS_BASE,
665 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100666 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300667 CR0_GUEST_HOST_MASK,
668 CR0_READ_SHADOW,
669 CR4_READ_SHADOW,
670 TSC_OFFSET,
671 EXCEPTION_BITMAP,
672 CPU_BASED_VM_EXEC_CONTROL,
673 VM_ENTRY_EXCEPTION_ERROR_CODE,
674 VM_ENTRY_INTR_INFO_FIELD,
675 VM_ENTRY_INSTRUCTION_LEN,
676 VM_ENTRY_EXCEPTION_ERROR_CODE,
677 HOST_FS_BASE,
678 HOST_GS_BASE,
679 HOST_FS_SELECTOR,
680 HOST_GS_SELECTOR
681};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400682static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300683 ARRAY_SIZE(shadow_read_write_fields);
684
Mathias Krause772e0312012-08-30 01:30:19 +0200685static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300686 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800687 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300688 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
689 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
690 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
691 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
692 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
693 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
694 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
695 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800696 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300697 FIELD(HOST_ES_SELECTOR, host_es_selector),
698 FIELD(HOST_CS_SELECTOR, host_cs_selector),
699 FIELD(HOST_SS_SELECTOR, host_ss_selector),
700 FIELD(HOST_DS_SELECTOR, host_ds_selector),
701 FIELD(HOST_FS_SELECTOR, host_fs_selector),
702 FIELD(HOST_GS_SELECTOR, host_gs_selector),
703 FIELD(HOST_TR_SELECTOR, host_tr_selector),
704 FIELD64(IO_BITMAP_A, io_bitmap_a),
705 FIELD64(IO_BITMAP_B, io_bitmap_b),
706 FIELD64(MSR_BITMAP, msr_bitmap),
707 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
708 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
709 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
710 FIELD64(TSC_OFFSET, tsc_offset),
711 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
712 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800713 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300714 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800715 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
716 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
717 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
718 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800719 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300720 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
721 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
722 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
723 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
724 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
725 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
726 FIELD64(GUEST_PDPTR0, guest_pdptr0),
727 FIELD64(GUEST_PDPTR1, guest_pdptr1),
728 FIELD64(GUEST_PDPTR2, guest_pdptr2),
729 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100730 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300731 FIELD64(HOST_IA32_PAT, host_ia32_pat),
732 FIELD64(HOST_IA32_EFER, host_ia32_efer),
733 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
734 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
735 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
736 FIELD(EXCEPTION_BITMAP, exception_bitmap),
737 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
738 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
739 FIELD(CR3_TARGET_COUNT, cr3_target_count),
740 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
741 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
742 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
743 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
744 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
745 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
746 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
747 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
748 FIELD(TPR_THRESHOLD, tpr_threshold),
749 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
750 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
751 FIELD(VM_EXIT_REASON, vm_exit_reason),
752 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
753 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
754 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
755 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
756 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
757 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
758 FIELD(GUEST_ES_LIMIT, guest_es_limit),
759 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
760 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
761 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
762 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
763 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
764 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
765 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
766 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
767 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
768 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
769 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
770 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
771 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
772 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
773 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
774 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
775 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
776 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
777 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
778 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
779 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100780 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300781 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
782 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
783 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
784 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
785 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
786 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
787 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
788 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
789 FIELD(EXIT_QUALIFICATION, exit_qualification),
790 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
791 FIELD(GUEST_CR0, guest_cr0),
792 FIELD(GUEST_CR3, guest_cr3),
793 FIELD(GUEST_CR4, guest_cr4),
794 FIELD(GUEST_ES_BASE, guest_es_base),
795 FIELD(GUEST_CS_BASE, guest_cs_base),
796 FIELD(GUEST_SS_BASE, guest_ss_base),
797 FIELD(GUEST_DS_BASE, guest_ds_base),
798 FIELD(GUEST_FS_BASE, guest_fs_base),
799 FIELD(GUEST_GS_BASE, guest_gs_base),
800 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
801 FIELD(GUEST_TR_BASE, guest_tr_base),
802 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
803 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
804 FIELD(GUEST_DR7, guest_dr7),
805 FIELD(GUEST_RSP, guest_rsp),
806 FIELD(GUEST_RIP, guest_rip),
807 FIELD(GUEST_RFLAGS, guest_rflags),
808 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
809 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
810 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
811 FIELD(HOST_CR0, host_cr0),
812 FIELD(HOST_CR3, host_cr3),
813 FIELD(HOST_CR4, host_cr4),
814 FIELD(HOST_FS_BASE, host_fs_base),
815 FIELD(HOST_GS_BASE, host_gs_base),
816 FIELD(HOST_TR_BASE, host_tr_base),
817 FIELD(HOST_GDTR_BASE, host_gdtr_base),
818 FIELD(HOST_IDTR_BASE, host_idtr_base),
819 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
820 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
821 FIELD(HOST_RSP, host_rsp),
822 FIELD(HOST_RIP, host_rip),
823};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300824
825static inline short vmcs_field_to_offset(unsigned long field)
826{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100827 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
828
829 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
830 vmcs_field_to_offset_table[field] == 0)
831 return -ENOENT;
832
Nadav Har'El22bd0352011-05-25 23:05:57 +0300833 return vmcs_field_to_offset_table[field];
834}
835
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300836static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
837{
838 return to_vmx(vcpu)->nested.current_vmcs12;
839}
840
841static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
842{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200843 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800844 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300845 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800846
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300847 return page;
848}
849
850static void nested_release_page(struct page *page)
851{
852 kvm_release_page_dirty(page);
853}
854
855static void nested_release_page_clean(struct page *page)
856{
857 kvm_release_page_clean(page);
858}
859
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300860static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800861static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800862static void kvm_cpu_vmxon(u64 addr);
863static void kvm_cpu_vmxoff(void);
Paolo Bonzini93c4adc2014-03-05 23:19:52 +0100864static bool vmx_mpx_supported(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800865static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200866static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300867static void vmx_set_segment(struct kvm_vcpu *vcpu,
868 struct kvm_segment *var, int seg);
869static void vmx_get_segment(struct kvm_vcpu *vcpu,
870 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200871static bool guest_state_valid(struct kvm_vcpu *vcpu);
872static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300873static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300874static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800875static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300876
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877static DEFINE_PER_CPU(struct vmcs *, vmxarea);
878static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300879/*
880 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
881 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
882 */
883static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300884static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885
Feng Wubf9f6ac2015-09-18 22:29:55 +0800886/*
887 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
888 * can find which vCPU should be waken up.
889 */
890static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
891static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
892
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200893static unsigned long *vmx_io_bitmap_a;
894static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200895static unsigned long *vmx_msr_bitmap_legacy;
896static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800897static unsigned long *vmx_msr_bitmap_legacy_x2apic;
898static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800899static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300900static unsigned long *vmx_vmread_bitmap;
901static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300902
Avi Kivity110312c2010-12-21 12:54:20 +0200903static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200904static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200905
Sheng Yang2384d2b2008-01-17 15:14:33 +0800906static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
907static DEFINE_SPINLOCK(vmx_vpid_lock);
908
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300909static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910 int size;
911 int order;
912 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300913 u32 pin_based_exec_ctrl;
914 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800915 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300916 u32 vmexit_ctrl;
917 u32 vmentry_ctrl;
918} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919
Hannes Ederefff9e52008-11-28 17:02:06 +0100920static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800921 u32 ept;
922 u32 vpid;
923} vmx_capability;
924
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925#define VMX_SEGMENT_FIELD(seg) \
926 [VCPU_SREG_##seg] = { \
927 .selector = GUEST_##seg##_SELECTOR, \
928 .base = GUEST_##seg##_BASE, \
929 .limit = GUEST_##seg##_LIMIT, \
930 .ar_bytes = GUEST_##seg##_AR_BYTES, \
931 }
932
Mathias Krause772e0312012-08-30 01:30:19 +0200933static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 unsigned selector;
935 unsigned base;
936 unsigned limit;
937 unsigned ar_bytes;
938} kvm_vmx_segment_fields[] = {
939 VMX_SEGMENT_FIELD(CS),
940 VMX_SEGMENT_FIELD(DS),
941 VMX_SEGMENT_FIELD(ES),
942 VMX_SEGMENT_FIELD(FS),
943 VMX_SEGMENT_FIELD(GS),
944 VMX_SEGMENT_FIELD(SS),
945 VMX_SEGMENT_FIELD(TR),
946 VMX_SEGMENT_FIELD(LDTR),
947};
948
Avi Kivity26bb0982009-09-07 11:14:12 +0300949static u64 host_efer;
950
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300951static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
952
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300953/*
Brian Gerst8c065852010-07-17 09:03:26 -0400954 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300955 * away by decrementing the array size.
956 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800957static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800958#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300959 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400961 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963
Jan Kiszka5bb16012016-02-09 20:14:21 +0100964static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800965{
966 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
967 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +0100968 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
969}
970
971static inline bool is_page_fault(u32 intr_info)
972{
973 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974}
975
Gui Jianfeng31299942010-03-15 17:29:09 +0800976static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300977{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100978 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300979}
980
Gui Jianfeng31299942010-03-15 17:29:09 +0800981static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500982{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100983 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500984}
985
Gui Jianfeng31299942010-03-15 17:29:09 +0800986static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987{
988 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
989 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
990}
991
Gui Jianfeng31299942010-03-15 17:29:09 +0800992static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800993{
994 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
995 INTR_INFO_VALID_MASK)) ==
996 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
997}
998
Gui Jianfeng31299942010-03-15 17:29:09 +0800999static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001000{
Sheng Yang04547152009-04-01 15:52:31 +08001001 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001002}
1003
Gui Jianfeng31299942010-03-15 17:29:09 +08001004static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001005{
Sheng Yang04547152009-04-01 15:52:31 +08001006 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001007}
1008
Paolo Bonzini35754c92015-07-29 12:05:37 +02001009static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001010{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001011 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001012}
1013
Gui Jianfeng31299942010-03-15 17:29:09 +08001014static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001015{
Sheng Yang04547152009-04-01 15:52:31 +08001016 return vmcs_config.cpu_based_exec_ctrl &
1017 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001018}
1019
Avi Kivity774ead32007-12-26 13:57:04 +02001020static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001021{
Sheng Yang04547152009-04-01 15:52:31 +08001022 return vmcs_config.cpu_based_2nd_exec_ctrl &
1023 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1024}
1025
Yang Zhang8d146952013-01-25 10:18:50 +08001026static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1027{
1028 return vmcs_config.cpu_based_2nd_exec_ctrl &
1029 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1030}
1031
Yang Zhang83d4c282013-01-25 10:18:49 +08001032static inline bool cpu_has_vmx_apic_register_virt(void)
1033{
1034 return vmcs_config.cpu_based_2nd_exec_ctrl &
1035 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1036}
1037
Yang Zhangc7c9c562013-01-25 10:18:51 +08001038static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1039{
1040 return vmcs_config.cpu_based_2nd_exec_ctrl &
1041 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1042}
1043
Yang Zhang01e439b2013-04-11 19:25:12 +08001044static inline bool cpu_has_vmx_posted_intr(void)
1045{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001046 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1047 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001048}
1049
1050static inline bool cpu_has_vmx_apicv(void)
1051{
1052 return cpu_has_vmx_apic_register_virt() &&
1053 cpu_has_vmx_virtual_intr_delivery() &&
1054 cpu_has_vmx_posted_intr();
1055}
1056
Sheng Yang04547152009-04-01 15:52:31 +08001057static inline bool cpu_has_vmx_flexpriority(void)
1058{
1059 return cpu_has_vmx_tpr_shadow() &&
1060 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001061}
1062
Marcelo Tosattie7997942009-06-11 12:07:40 -03001063static inline bool cpu_has_vmx_ept_execute_only(void)
1064{
Gui Jianfeng31299942010-03-15 17:29:09 +08001065 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001066}
1067
Marcelo Tosattie7997942009-06-11 12:07:40 -03001068static inline bool cpu_has_vmx_ept_2m_page(void)
1069{
Gui Jianfeng31299942010-03-15 17:29:09 +08001070 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001071}
1072
Sheng Yang878403b2010-01-05 19:02:29 +08001073static inline bool cpu_has_vmx_ept_1g_page(void)
1074{
Gui Jianfeng31299942010-03-15 17:29:09 +08001075 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001076}
1077
Sheng Yang4bc9b982010-06-02 14:05:24 +08001078static inline bool cpu_has_vmx_ept_4levels(void)
1079{
1080 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1081}
1082
Xudong Hao83c3a332012-05-28 19:33:35 +08001083static inline bool cpu_has_vmx_ept_ad_bits(void)
1084{
1085 return vmx_capability.ept & VMX_EPT_AD_BIT;
1086}
1087
Gui Jianfeng31299942010-03-15 17:29:09 +08001088static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001089{
Gui Jianfeng31299942010-03-15 17:29:09 +08001090 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001091}
1092
Gui Jianfeng31299942010-03-15 17:29:09 +08001093static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001094{
Gui Jianfeng31299942010-03-15 17:29:09 +08001095 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001096}
1097
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001098static inline bool cpu_has_vmx_invvpid_single(void)
1099{
1100 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1101}
1102
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001103static inline bool cpu_has_vmx_invvpid_global(void)
1104{
1105 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1106}
1107
Gui Jianfeng31299942010-03-15 17:29:09 +08001108static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001109{
Sheng Yang04547152009-04-01 15:52:31 +08001110 return vmcs_config.cpu_based_2nd_exec_ctrl &
1111 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001112}
1113
Gui Jianfeng31299942010-03-15 17:29:09 +08001114static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001115{
1116 return vmcs_config.cpu_based_2nd_exec_ctrl &
1117 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1118}
1119
Gui Jianfeng31299942010-03-15 17:29:09 +08001120static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001121{
1122 return vmcs_config.cpu_based_2nd_exec_ctrl &
1123 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1124}
1125
Paolo Bonzini35754c92015-07-29 12:05:37 +02001126static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001127{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001128 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001129}
1130
Gui Jianfeng31299942010-03-15 17:29:09 +08001131static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001132{
Sheng Yang04547152009-04-01 15:52:31 +08001133 return vmcs_config.cpu_based_2nd_exec_ctrl &
1134 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001135}
1136
Gui Jianfeng31299942010-03-15 17:29:09 +08001137static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001138{
1139 return vmcs_config.cpu_based_2nd_exec_ctrl &
1140 SECONDARY_EXEC_RDTSCP;
1141}
1142
Mao, Junjiead756a12012-07-02 01:18:48 +00001143static inline bool cpu_has_vmx_invpcid(void)
1144{
1145 return vmcs_config.cpu_based_2nd_exec_ctrl &
1146 SECONDARY_EXEC_ENABLE_INVPCID;
1147}
1148
Gui Jianfeng31299942010-03-15 17:29:09 +08001149static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001150{
1151 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1152}
1153
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001154static inline bool cpu_has_vmx_wbinvd_exit(void)
1155{
1156 return vmcs_config.cpu_based_2nd_exec_ctrl &
1157 SECONDARY_EXEC_WBINVD_EXITING;
1158}
1159
Abel Gordonabc4fc52013-04-18 14:35:25 +03001160static inline bool cpu_has_vmx_shadow_vmcs(void)
1161{
1162 u64 vmx_msr;
1163 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1164 /* check if the cpu supports writing r/o exit information fields */
1165 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1166 return false;
1167
1168 return vmcs_config.cpu_based_2nd_exec_ctrl &
1169 SECONDARY_EXEC_SHADOW_VMCS;
1170}
1171
Kai Huang843e4332015-01-28 10:54:28 +08001172static inline bool cpu_has_vmx_pml(void)
1173{
1174 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1175}
1176
Haozhong Zhang64903d62015-10-20 15:39:09 +08001177static inline bool cpu_has_vmx_tsc_scaling(void)
1178{
1179 return vmcs_config.cpu_based_2nd_exec_ctrl &
1180 SECONDARY_EXEC_TSC_SCALING;
1181}
1182
Sheng Yang04547152009-04-01 15:52:31 +08001183static inline bool report_flexpriority(void)
1184{
1185 return flexpriority_enabled;
1186}
1187
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001188static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1189{
1190 return vmcs12->cpu_based_vm_exec_control & bit;
1191}
1192
1193static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1194{
1195 return (vmcs12->cpu_based_vm_exec_control &
1196 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1197 (vmcs12->secondary_vm_exec_control & bit);
1198}
1199
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001200static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001201{
1202 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1203}
1204
Jan Kiszkaf41245002014-03-07 20:03:13 +01001205static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1206{
1207 return vmcs12->pin_based_vm_exec_control &
1208 PIN_BASED_VMX_PREEMPTION_TIMER;
1209}
1210
Nadav Har'El155a97a2013-08-05 11:07:16 +03001211static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1212{
1213 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1214}
1215
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001216static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1217{
1218 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1219 vmx_xsaves_supported();
1220}
1221
Wincy Vanf2b93282015-02-03 23:56:03 +08001222static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1223{
1224 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1225}
1226
Wanpeng Li5c614b32015-10-13 09:18:36 -07001227static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1228{
1229 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1230}
1231
Wincy Van82f0dd42015-02-03 23:57:18 +08001232static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1233{
1234 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1235}
1236
Wincy Van608406e2015-02-03 23:57:51 +08001237static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1238{
1239 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1240}
1241
Wincy Van705699a2015-02-03 23:58:17 +08001242static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1243{
1244 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1245}
1246
Nadav Har'El644d7112011-05-25 23:12:35 +03001247static inline bool is_exception(u32 intr_info)
1248{
1249 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1250 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1251}
1252
Jan Kiszka533558b2014-01-04 18:47:20 +01001253static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1254 u32 exit_intr_info,
1255 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001256static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1257 struct vmcs12 *vmcs12,
1258 u32 reason, unsigned long qualification);
1259
Rusty Russell8b9cf982007-07-30 16:31:43 +10001260static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001261{
1262 int i;
1263
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001264 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001265 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001266 return i;
1267 return -1;
1268}
1269
Sheng Yang2384d2b2008-01-17 15:14:33 +08001270static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1271{
1272 struct {
1273 u64 vpid : 16;
1274 u64 rsvd : 48;
1275 u64 gva;
1276 } operand = { vpid, 0, gva };
1277
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001278 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001279 /* CF==1 or ZF==1 --> rc = -1 */
1280 "; ja 1f ; ud2 ; 1:"
1281 : : "a"(&operand), "c"(ext) : "cc", "memory");
1282}
1283
Sheng Yang14394422008-04-28 12:24:45 +08001284static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1285{
1286 struct {
1287 u64 eptp, gpa;
1288 } operand = {eptp, gpa};
1289
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001290 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001291 /* CF==1 or ZF==1 --> rc = -1 */
1292 "; ja 1f ; ud2 ; 1:\n"
1293 : : "a" (&operand), "c" (ext) : "cc", "memory");
1294}
1295
Avi Kivity26bb0982009-09-07 11:14:12 +03001296static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001297{
1298 int i;
1299
Rusty Russell8b9cf982007-07-30 16:31:43 +10001300 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001301 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001302 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001303 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001304}
1305
Avi Kivity6aa8b732006-12-10 02:21:36 -08001306static void vmcs_clear(struct vmcs *vmcs)
1307{
1308 u64 phys_addr = __pa(vmcs);
1309 u8 error;
1310
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001311 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001312 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001313 : "cc", "memory");
1314 if (error)
1315 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1316 vmcs, phys_addr);
1317}
1318
Nadav Har'Eld462b812011-05-24 15:26:10 +03001319static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1320{
1321 vmcs_clear(loaded_vmcs->vmcs);
1322 loaded_vmcs->cpu = -1;
1323 loaded_vmcs->launched = 0;
1324}
1325
Dongxiao Xu7725b892010-05-11 18:29:38 +08001326static void vmcs_load(struct vmcs *vmcs)
1327{
1328 u64 phys_addr = __pa(vmcs);
1329 u8 error;
1330
1331 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001332 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001333 : "cc", "memory");
1334 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001335 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001336 vmcs, phys_addr);
1337}
1338
Dave Young2965faa2015-09-09 15:38:55 -07001339#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001340/*
1341 * This bitmap is used to indicate whether the vmclear
1342 * operation is enabled on all cpus. All disabled by
1343 * default.
1344 */
1345static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1346
1347static inline void crash_enable_local_vmclear(int cpu)
1348{
1349 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1350}
1351
1352static inline void crash_disable_local_vmclear(int cpu)
1353{
1354 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1355}
1356
1357static inline int crash_local_vmclear_enabled(int cpu)
1358{
1359 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1360}
1361
1362static void crash_vmclear_local_loaded_vmcss(void)
1363{
1364 int cpu = raw_smp_processor_id();
1365 struct loaded_vmcs *v;
1366
1367 if (!crash_local_vmclear_enabled(cpu))
1368 return;
1369
1370 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1371 loaded_vmcss_on_cpu_link)
1372 vmcs_clear(v->vmcs);
1373}
1374#else
1375static inline void crash_enable_local_vmclear(int cpu) { }
1376static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001377#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001378
Nadav Har'Eld462b812011-05-24 15:26:10 +03001379static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001381 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001382 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001383
Nadav Har'Eld462b812011-05-24 15:26:10 +03001384 if (loaded_vmcs->cpu != cpu)
1385 return; /* vcpu migration can race with cpu offline */
1386 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001388 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001389 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001390
1391 /*
1392 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1393 * is before setting loaded_vmcs->vcpu to -1 which is done in
1394 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1395 * then adds the vmcs into percpu list before it is deleted.
1396 */
1397 smp_wmb();
1398
Nadav Har'Eld462b812011-05-24 15:26:10 +03001399 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001400 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401}
1402
Nadav Har'Eld462b812011-05-24 15:26:10 +03001403static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001404{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001405 int cpu = loaded_vmcs->cpu;
1406
1407 if (cpu != -1)
1408 smp_call_function_single(cpu,
1409 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001410}
1411
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001412static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001413{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001414 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001415 return;
1416
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001417 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001418 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001419}
1420
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001421static inline void vpid_sync_vcpu_global(void)
1422{
1423 if (cpu_has_vmx_invvpid_global())
1424 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1425}
1426
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001427static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001428{
1429 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001430 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001431 else
1432 vpid_sync_vcpu_global();
1433}
1434
Sheng Yang14394422008-04-28 12:24:45 +08001435static inline void ept_sync_global(void)
1436{
1437 if (cpu_has_vmx_invept_global())
1438 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1439}
1440
1441static inline void ept_sync_context(u64 eptp)
1442{
Avi Kivity089d0342009-03-23 18:26:32 +02001443 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001444 if (cpu_has_vmx_invept_context())
1445 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1446 else
1447 ept_sync_global();
1448 }
1449}
1450
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001451static __always_inline void vmcs_check16(unsigned long field)
1452{
1453 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1454 "16-bit accessor invalid for 64-bit field");
1455 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1456 "16-bit accessor invalid for 64-bit high field");
1457 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1458 "16-bit accessor invalid for 32-bit high field");
1459 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1460 "16-bit accessor invalid for natural width field");
1461}
1462
1463static __always_inline void vmcs_check32(unsigned long field)
1464{
1465 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1466 "32-bit accessor invalid for 16-bit field");
1467 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1468 "32-bit accessor invalid for natural width field");
1469}
1470
1471static __always_inline void vmcs_check64(unsigned long field)
1472{
1473 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1474 "64-bit accessor invalid for 16-bit field");
1475 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1476 "64-bit accessor invalid for 64-bit high field");
1477 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1478 "64-bit accessor invalid for 32-bit field");
1479 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1480 "64-bit accessor invalid for natural width field");
1481}
1482
1483static __always_inline void vmcs_checkl(unsigned long field)
1484{
1485 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1486 "Natural width accessor invalid for 16-bit field");
1487 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1488 "Natural width accessor invalid for 64-bit field");
1489 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1490 "Natural width accessor invalid for 64-bit high field");
1491 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1492 "Natural width accessor invalid for 32-bit field");
1493}
1494
1495static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496{
Avi Kivity5e520e62011-05-15 10:13:12 -04001497 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498
Avi Kivity5e520e62011-05-15 10:13:12 -04001499 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1500 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001501 return value;
1502}
1503
Avi Kivity96304212011-05-15 10:13:13 -04001504static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001506 vmcs_check16(field);
1507 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508}
1509
Avi Kivity96304212011-05-15 10:13:13 -04001510static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001512 vmcs_check32(field);
1513 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514}
1515
Avi Kivity96304212011-05-15 10:13:13 -04001516static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001518 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001519#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001520 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001522 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001523#endif
1524}
1525
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001526static __always_inline unsigned long vmcs_readl(unsigned long field)
1527{
1528 vmcs_checkl(field);
1529 return __vmcs_readl(field);
1530}
1531
Avi Kivitye52de1b2007-01-05 16:36:56 -08001532static noinline void vmwrite_error(unsigned long field, unsigned long value)
1533{
1534 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1535 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1536 dump_stack();
1537}
1538
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001539static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001540{
1541 u8 error;
1542
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001543 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001544 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001545 if (unlikely(error))
1546 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547}
1548
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001549static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001551 vmcs_check16(field);
1552 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001553}
1554
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001555static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001557 vmcs_check32(field);
1558 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559}
1560
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001561static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001563 vmcs_check64(field);
1564 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001565#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001567 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568#endif
1569}
1570
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001571static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001572{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001573 vmcs_checkl(field);
1574 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001575}
1576
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001577static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001578{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001579 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1580 "vmcs_clear_bits does not support 64-bit fields");
1581 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1582}
1583
1584static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1585{
1586 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1587 "vmcs_set_bits does not support 64-bit fields");
1588 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001589}
1590
Gleb Natapov2961e8762013-11-25 15:37:13 +02001591static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1592{
1593 vmcs_write32(VM_ENTRY_CONTROLS, val);
1594 vmx->vm_entry_controls_shadow = val;
1595}
1596
1597static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1598{
1599 if (vmx->vm_entry_controls_shadow != val)
1600 vm_entry_controls_init(vmx, val);
1601}
1602
1603static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1604{
1605 return vmx->vm_entry_controls_shadow;
1606}
1607
1608
1609static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1610{
1611 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1612}
1613
1614static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1615{
1616 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1617}
1618
1619static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1620{
1621 vmcs_write32(VM_EXIT_CONTROLS, val);
1622 vmx->vm_exit_controls_shadow = val;
1623}
1624
1625static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1626{
1627 if (vmx->vm_exit_controls_shadow != val)
1628 vm_exit_controls_init(vmx, val);
1629}
1630
1631static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1632{
1633 return vmx->vm_exit_controls_shadow;
1634}
1635
1636
1637static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1638{
1639 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1640}
1641
1642static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1643{
1644 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1645}
1646
Avi Kivity2fb92db2011-04-27 19:42:18 +03001647static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1648{
1649 vmx->segment_cache.bitmask = 0;
1650}
1651
1652static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1653 unsigned field)
1654{
1655 bool ret;
1656 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1657
1658 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1659 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1660 vmx->segment_cache.bitmask = 0;
1661 }
1662 ret = vmx->segment_cache.bitmask & mask;
1663 vmx->segment_cache.bitmask |= mask;
1664 return ret;
1665}
1666
1667static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1668{
1669 u16 *p = &vmx->segment_cache.seg[seg].selector;
1670
1671 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1672 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1673 return *p;
1674}
1675
1676static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1677{
1678 ulong *p = &vmx->segment_cache.seg[seg].base;
1679
1680 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1681 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1682 return *p;
1683}
1684
1685static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1686{
1687 u32 *p = &vmx->segment_cache.seg[seg].limit;
1688
1689 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1690 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1691 return *p;
1692}
1693
1694static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1695{
1696 u32 *p = &vmx->segment_cache.seg[seg].ar;
1697
1698 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1699 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1700 return *p;
1701}
1702
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001703static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1704{
1705 u32 eb;
1706
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001707 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001708 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001709 if ((vcpu->guest_debug &
1710 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1711 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1712 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001713 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001714 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001715 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001716 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001717 if (vcpu->fpu_active)
1718 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001719
1720 /* When we are running a nested L2 guest and L1 specified for it a
1721 * certain exception bitmap, we must trap the same exceptions and pass
1722 * them to L1. When running L2, we will only handle the exceptions
1723 * specified above if L1 did not want them.
1724 */
1725 if (is_guest_mode(vcpu))
1726 eb |= get_vmcs12(vcpu)->exception_bitmap;
1727
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001728 vmcs_write32(EXCEPTION_BITMAP, eb);
1729}
1730
Gleb Natapov2961e8762013-11-25 15:37:13 +02001731static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1732 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001733{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001734 vm_entry_controls_clearbit(vmx, entry);
1735 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001736}
1737
Avi Kivity61d2ef22010-04-28 16:40:38 +03001738static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1739{
1740 unsigned i;
1741 struct msr_autoload *m = &vmx->msr_autoload;
1742
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001743 switch (msr) {
1744 case MSR_EFER:
1745 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001746 clear_atomic_switch_msr_special(vmx,
1747 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001748 VM_EXIT_LOAD_IA32_EFER);
1749 return;
1750 }
1751 break;
1752 case MSR_CORE_PERF_GLOBAL_CTRL:
1753 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001754 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001755 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1756 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1757 return;
1758 }
1759 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001760 }
1761
Avi Kivity61d2ef22010-04-28 16:40:38 +03001762 for (i = 0; i < m->nr; ++i)
1763 if (m->guest[i].index == msr)
1764 break;
1765
1766 if (i == m->nr)
1767 return;
1768 --m->nr;
1769 m->guest[i] = m->guest[m->nr];
1770 m->host[i] = m->host[m->nr];
1771 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1772 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1773}
1774
Gleb Natapov2961e8762013-11-25 15:37:13 +02001775static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1776 unsigned long entry, unsigned long exit,
1777 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1778 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001779{
1780 vmcs_write64(guest_val_vmcs, guest_val);
1781 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001782 vm_entry_controls_setbit(vmx, entry);
1783 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001784}
1785
Avi Kivity61d2ef22010-04-28 16:40:38 +03001786static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1787 u64 guest_val, u64 host_val)
1788{
1789 unsigned i;
1790 struct msr_autoload *m = &vmx->msr_autoload;
1791
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001792 switch (msr) {
1793 case MSR_EFER:
1794 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001795 add_atomic_switch_msr_special(vmx,
1796 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001797 VM_EXIT_LOAD_IA32_EFER,
1798 GUEST_IA32_EFER,
1799 HOST_IA32_EFER,
1800 guest_val, host_val);
1801 return;
1802 }
1803 break;
1804 case MSR_CORE_PERF_GLOBAL_CTRL:
1805 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001806 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001807 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1808 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1809 GUEST_IA32_PERF_GLOBAL_CTRL,
1810 HOST_IA32_PERF_GLOBAL_CTRL,
1811 guest_val, host_val);
1812 return;
1813 }
1814 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001815 }
1816
Avi Kivity61d2ef22010-04-28 16:40:38 +03001817 for (i = 0; i < m->nr; ++i)
1818 if (m->guest[i].index == msr)
1819 break;
1820
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001821 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001822 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001823 "Can't add msr %x\n", msr);
1824 return;
1825 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001826 ++m->nr;
1827 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1828 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1829 }
1830
1831 m->guest[i].index = msr;
1832 m->guest[i].value = guest_val;
1833 m->host[i].index = msr;
1834 m->host[i].value = host_val;
1835}
1836
Avi Kivity33ed6322007-05-02 16:54:03 +03001837static void reload_tss(void)
1838{
Avi Kivity33ed6322007-05-02 16:54:03 +03001839 /*
1840 * VT restores TR but not its size. Useless.
1841 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001842 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001843 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001844
Avi Kivityd3591922010-07-26 18:32:39 +03001845 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001846 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1847 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001848}
1849
Avi Kivity92c0d902009-10-29 11:00:16 +02001850static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001851{
Roel Kluin3a34a882009-08-04 02:08:45 -07001852 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001853 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001854
Avi Kivityf6801df2010-01-21 15:31:50 +02001855 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001856
Avi Kivity51c6cf62007-08-29 03:48:05 +03001857 /*
Guo Chao0fa06072012-06-28 15:16:19 +08001858 * NX is emulated; LMA and LME handled by hardware; SCE meaningless
Avi Kivity51c6cf62007-08-29 03:48:05 +03001859 * outside long mode
1860 */
1861 ignore_bits = EFER_NX | EFER_SCE;
1862#ifdef CONFIG_X86_64
1863 ignore_bits |= EFER_LMA | EFER_LME;
1864 /* SCE is meaningful only in long mode on Intel */
1865 if (guest_efer & EFER_LMA)
1866 ignore_bits &= ~(u64)EFER_SCE;
1867#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001868 guest_efer &= ~ignore_bits;
1869 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001870 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001871 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001872
1873 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001874
1875 /*
1876 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1877 * On CPUs that support "load IA32_EFER", always switch EFER
1878 * atomically, since it's faster than switching it manually.
1879 */
1880 if (cpu_has_load_ia32_efer ||
1881 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001882 guest_efer = vmx->vcpu.arch.efer;
1883 if (!(guest_efer & EFER_LMA))
1884 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001885 if (guest_efer != host_efer)
1886 add_atomic_switch_msr(vmx, MSR_EFER,
1887 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001888 return false;
1889 }
1890
Avi Kivity26bb0982009-09-07 11:14:12 +03001891 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001892}
1893
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001894static unsigned long segment_base(u16 selector)
1895{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001896 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001897 struct desc_struct *d;
1898 unsigned long table_base;
1899 unsigned long v;
1900
1901 if (!(selector & ~3))
1902 return 0;
1903
Avi Kivityd3591922010-07-26 18:32:39 +03001904 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001905
1906 if (selector & 4) { /* from ldt */
1907 u16 ldt_selector = kvm_read_ldt();
1908
1909 if (!(ldt_selector & ~3))
1910 return 0;
1911
1912 table_base = segment_base(ldt_selector);
1913 }
1914 d = (struct desc_struct *)(table_base + (selector & ~7));
1915 v = get_desc_base(d);
1916#ifdef CONFIG_X86_64
1917 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1918 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1919#endif
1920 return v;
1921}
1922
1923static inline unsigned long kvm_read_tr_base(void)
1924{
1925 u16 tr;
1926 asm("str %0" : "=g"(tr));
1927 return segment_base(tr);
1928}
1929
Avi Kivity04d2cc72007-09-10 18:10:54 +03001930static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001931{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001932 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001933 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001934
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001935 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001936 return;
1937
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001938 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001939 /*
1940 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1941 * allow segment selectors with cpl > 0 or ti == 1.
1942 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001943 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001944 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001945 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001946 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001947 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001948 vmx->host_state.fs_reload_needed = 0;
1949 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001950 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001951 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001952 }
Avi Kivity9581d442010-10-19 16:46:55 +02001953 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001954 if (!(vmx->host_state.gs_sel & 7))
1955 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001956 else {
1957 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001958 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001959 }
1960
1961#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03001962 savesegment(ds, vmx->host_state.ds_sel);
1963 savesegment(es, vmx->host_state.es_sel);
1964#endif
1965
1966#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03001967 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1968 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1969#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001970 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1971 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001972#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001973
1974#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001975 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1976 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001977 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001978#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00001979 if (boot_cpu_has(X86_FEATURE_MPX))
1980 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03001981 for (i = 0; i < vmx->save_nmsrs; ++i)
1982 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001983 vmx->guest_msrs[i].data,
1984 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001985}
1986
Avi Kivitya9b21b62008-06-24 11:48:49 +03001987static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001988{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001989 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001990 return;
1991
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001992 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001993 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001994#ifdef CONFIG_X86_64
1995 if (is_long_mode(&vmx->vcpu))
1996 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1997#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001998 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001999 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002000#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002001 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002002#else
2003 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002004#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002005 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002006 if (vmx->host_state.fs_reload_needed)
2007 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002008#ifdef CONFIG_X86_64
2009 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2010 loadsegment(ds, vmx->host_state.ds_sel);
2011 loadsegment(es, vmx->host_state.es_sel);
2012 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002013#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002014 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002015#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002016 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002017#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002018 if (vmx->host_state.msr_host_bndcfgs)
2019 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002020 /*
2021 * If the FPU is not active (through the host task or
2022 * the guest vcpu), then restore the cr0.TS bit.
2023 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002024 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002025 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002026 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002027}
2028
Avi Kivitya9b21b62008-06-24 11:48:49 +03002029static void vmx_load_host_state(struct vcpu_vmx *vmx)
2030{
2031 preempt_disable();
2032 __vmx_load_host_state(vmx);
2033 preempt_enable();
2034}
2035
Feng Wu28b835d2015-09-18 22:29:54 +08002036static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2037{
2038 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2039 struct pi_desc old, new;
2040 unsigned int dest;
2041
2042 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2043 !irq_remapping_cap(IRQ_POSTING_CAP))
2044 return;
2045
2046 do {
2047 old.control = new.control = pi_desc->control;
2048
2049 /*
2050 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2051 * are two possible cases:
2052 * 1. After running 'pre_block', context switch
2053 * happened. For this case, 'sn' was set in
2054 * vmx_vcpu_put(), so we need to clear it here.
2055 * 2. After running 'pre_block', we were blocked,
2056 * and woken up by some other guy. For this case,
2057 * we don't need to do anything, 'pi_post_block'
2058 * will do everything for us. However, we cannot
2059 * check whether it is case #1 or case #2 here
2060 * (maybe, not needed), so we also clear sn here,
2061 * I think it is not a big deal.
2062 */
2063 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2064 if (vcpu->cpu != cpu) {
2065 dest = cpu_physical_id(cpu);
2066
2067 if (x2apic_enabled())
2068 new.ndst = dest;
2069 else
2070 new.ndst = (dest << 8) & 0xFF00;
2071 }
2072
2073 /* set 'NV' to 'notification vector' */
2074 new.nv = POSTED_INTR_VECTOR;
2075 }
2076
2077 /* Allow posting non-urgent interrupts */
2078 new.sn = 0;
2079 } while (cmpxchg(&pi_desc->control, old.control,
2080 new.control) != old.control);
2081}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002082/*
2083 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2084 * vcpu mutex is already taken.
2085 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002086static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002087{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002088 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002089 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002090
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002091 if (!vmm_exclusive)
2092 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002093 else if (vmx->loaded_vmcs->cpu != cpu)
2094 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002095
Nadav Har'Eld462b812011-05-24 15:26:10 +03002096 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2097 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2098 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 }
2100
Nadav Har'Eld462b812011-05-24 15:26:10 +03002101 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002102 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103 unsigned long sysenter_esp;
2104
Avi Kivitya8eeb042010-05-10 12:34:53 +03002105 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002106 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002107 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002108
2109 /*
2110 * Read loaded_vmcs->cpu should be before fetching
2111 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2112 * See the comments in __loaded_vmcs_clear().
2113 */
2114 smp_rmb();
2115
Nadav Har'Eld462b812011-05-24 15:26:10 +03002116 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2117 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002118 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002119 local_irq_enable();
2120
Avi Kivity6aa8b732006-12-10 02:21:36 -08002121 /*
2122 * Linux uses per-cpu TSS and GDT, so set these when switching
2123 * processors.
2124 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002125 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002126 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127
2128 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2129 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002130
2131 /* Setup TSC multiplier */
2132 if (cpu_has_vmx_tsc_scaling())
2133 vmcs_write64(TSC_MULTIPLIER,
2134 vcpu->arch.tsc_scaling_ratio);
2135
Nadav Har'Eld462b812011-05-24 15:26:10 +03002136 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 }
Feng Wu28b835d2015-09-18 22:29:54 +08002138
2139 vmx_vcpu_pi_load(vcpu, cpu);
2140}
2141
2142static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2143{
2144 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2145
2146 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2147 !irq_remapping_cap(IRQ_POSTING_CAP))
2148 return;
2149
2150 /* Set SN when the vCPU is preempted */
2151 if (vcpu->preempted)
2152 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153}
2154
2155static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2156{
Feng Wu28b835d2015-09-18 22:29:54 +08002157 vmx_vcpu_pi_put(vcpu);
2158
Avi Kivitya9b21b62008-06-24 11:48:49 +03002159 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002160 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002161 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2162 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002163 kvm_cpu_vmxoff();
2164 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165}
2166
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002167static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2168{
Avi Kivity81231c62010-01-24 16:26:40 +02002169 ulong cr0;
2170
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002171 if (vcpu->fpu_active)
2172 return;
2173 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002174 cr0 = vmcs_readl(GUEST_CR0);
2175 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2176 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2177 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002178 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002179 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002180 if (is_guest_mode(vcpu))
2181 vcpu->arch.cr0_guest_owned_bits &=
2182 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002183 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002184}
2185
Avi Kivityedcafe32009-12-30 18:07:40 +02002186static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2187
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002188/*
2189 * Return the cr0 value that a nested guest would read. This is a combination
2190 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2191 * its hypervisor (cr0_read_shadow).
2192 */
2193static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2194{
2195 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2196 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2197}
2198static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2199{
2200 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2201 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2202}
2203
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002204static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2205{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002206 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2207 * set this *before* calling this function.
2208 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002209 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002210 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002211 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002212 vcpu->arch.cr0_guest_owned_bits = 0;
2213 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002214 if (is_guest_mode(vcpu)) {
2215 /*
2216 * L1's specified read shadow might not contain the TS bit,
2217 * so now that we turned on shadowing of this bit, we need to
2218 * set this bit of the shadow. Like in nested_vmx_run we need
2219 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2220 * up-to-date here because we just decached cr0.TS (and we'll
2221 * only update vmcs12->guest_cr0 on nested exit).
2222 */
2223 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2224 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2225 (vcpu->arch.cr0 & X86_CR0_TS);
2226 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2227 } else
2228 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002229}
2230
Avi Kivity6aa8b732006-12-10 02:21:36 -08002231static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2232{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002233 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002234
Avi Kivity6de12732011-03-07 12:51:22 +02002235 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2236 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2237 rflags = vmcs_readl(GUEST_RFLAGS);
2238 if (to_vmx(vcpu)->rmode.vm86_active) {
2239 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2240 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2241 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2242 }
2243 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002244 }
Avi Kivity6de12732011-03-07 12:51:22 +02002245 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002246}
2247
2248static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2249{
Avi Kivity6de12732011-03-07 12:51:22 +02002250 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2251 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002252 if (to_vmx(vcpu)->rmode.vm86_active) {
2253 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002254 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002255 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256 vmcs_writel(GUEST_RFLAGS, rflags);
2257}
2258
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002259static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002260{
2261 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2262 int ret = 0;
2263
2264 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002265 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002266 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002267 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002268
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002269 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002270}
2271
2272static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2273{
2274 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2275 u32 interruptibility = interruptibility_old;
2276
2277 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2278
Jan Kiszka48005f62010-02-19 19:38:07 +01002279 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002280 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002281 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002282 interruptibility |= GUEST_INTR_STATE_STI;
2283
2284 if ((interruptibility != interruptibility_old))
2285 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2286}
2287
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2289{
2290 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002292 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002294 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002295
Glauber Costa2809f5d2009-05-12 16:21:05 -04002296 /* skipping an emulated instruction also counts */
2297 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298}
2299
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002300/*
2301 * KVM wants to inject page-faults which it got to the guest. This function
2302 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002303 */
Gleb Natapove011c662013-09-25 12:51:35 +03002304static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002305{
2306 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2307
Gleb Natapove011c662013-09-25 12:51:35 +03002308 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002309 return 0;
2310
Jan Kiszka533558b2014-01-04 18:47:20 +01002311 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2312 vmcs_read32(VM_EXIT_INTR_INFO),
2313 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002314 return 1;
2315}
2316
Avi Kivity298101d2007-11-25 13:41:11 +02002317static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002318 bool has_error_code, u32 error_code,
2319 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002320{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002321 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002322 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002323
Gleb Natapove011c662013-09-25 12:51:35 +03002324 if (!reinject && is_guest_mode(vcpu) &&
2325 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002326 return;
2327
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002328 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002329 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002330 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2331 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002332
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002333 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002334 int inc_eip = 0;
2335 if (kvm_exception_is_soft(nr))
2336 inc_eip = vcpu->arch.event_exit_inst_len;
2337 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002338 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002339 return;
2340 }
2341
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002342 if (kvm_exception_is_soft(nr)) {
2343 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2344 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002345 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2346 } else
2347 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2348
2349 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002350}
2351
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002352static bool vmx_rdtscp_supported(void)
2353{
2354 return cpu_has_vmx_rdtscp();
2355}
2356
Mao, Junjiead756a12012-07-02 01:18:48 +00002357static bool vmx_invpcid_supported(void)
2358{
2359 return cpu_has_vmx_invpcid() && enable_ept;
2360}
2361
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362/*
Eddie Donga75beee2007-05-17 18:55:15 +03002363 * Swap MSR entry in host/guest MSR entry array.
2364 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002365static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002366{
Avi Kivity26bb0982009-09-07 11:14:12 +03002367 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002368
2369 tmp = vmx->guest_msrs[to];
2370 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2371 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002372}
2373
Yang Zhang8d146952013-01-25 10:18:50 +08002374static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2375{
2376 unsigned long *msr_bitmap;
2377
Wincy Van670125b2015-03-04 14:31:56 +08002378 if (is_guest_mode(vcpu))
2379 msr_bitmap = vmx_msr_bitmap_nested;
Jan Kiszka8a9781f2015-05-04 08:32:32 +02002380 else if (vcpu->arch.apic_base & X2APIC_ENABLE) {
Yang Zhang8d146952013-01-25 10:18:50 +08002381 if (is_long_mode(vcpu))
2382 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2383 else
2384 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2385 } else {
2386 if (is_long_mode(vcpu))
2387 msr_bitmap = vmx_msr_bitmap_longmode;
2388 else
2389 msr_bitmap = vmx_msr_bitmap_legacy;
2390 }
2391
2392 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2393}
2394
Eddie Donga75beee2007-05-17 18:55:15 +03002395/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002396 * Set up the vmcs to automatically save and restore system
2397 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2398 * mode, as fiddling with msrs is very expensive.
2399 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002400static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002401{
Avi Kivity26bb0982009-09-07 11:14:12 +03002402 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002403
Eddie Donga75beee2007-05-17 18:55:15 +03002404 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002405#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002406 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002407 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002408 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002409 move_msr_up(vmx, index, save_nmsrs++);
2410 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002411 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002412 move_msr_up(vmx, index, save_nmsrs++);
2413 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002414 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002415 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002416 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002417 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002418 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002419 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002420 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002421 * if efer.sce is enabled.
2422 */
Brian Gerst8c065852010-07-17 09:03:26 -04002423 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002424 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002425 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002426 }
Eddie Donga75beee2007-05-17 18:55:15 +03002427#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002428 index = __find_msr_index(vmx, MSR_EFER);
2429 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002430 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002431
Avi Kivity26bb0982009-09-07 11:14:12 +03002432 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002433
Yang Zhang8d146952013-01-25 10:18:50 +08002434 if (cpu_has_vmx_msr_bitmap())
2435 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002436}
2437
2438/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002440 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2441 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002443static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444{
2445 u64 host_tsc, tsc_offset;
2446
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002447 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002449 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002450}
2451
2452/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002453 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2454 * counter, even if a nested guest (L2) is currently running.
2455 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002456static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002457{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002458 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002459
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002460 tsc_offset = is_guest_mode(vcpu) ?
2461 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2462 vmcs_read64(TSC_OFFSET);
2463 return host_tsc + tsc_offset;
2464}
2465
Will Auldba904632012-11-29 12:42:50 -08002466static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2467{
2468 return vmcs_read64(TSC_OFFSET);
2469}
2470
Joerg Roedel4051b182011-03-25 09:44:49 +01002471/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002472 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002474static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002476 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002477 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002478 * We're here if L1 chose not to trap WRMSR to TSC. According
2479 * to the spec, this should set L1's TSC; The offset that L1
2480 * set for L2 remains unchanged, and still needs to be added
2481 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002482 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002483 struct vmcs12 *vmcs12;
2484 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2485 /* recalculate vmcs02.TSC_OFFSET: */
2486 vmcs12 = get_vmcs12(vcpu);
2487 vmcs_write64(TSC_OFFSET, offset +
2488 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2489 vmcs12->tsc_offset : 0));
2490 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002491 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2492 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002493 vmcs_write64(TSC_OFFSET, offset);
2494 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002495}
2496
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002497static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002498{
2499 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002500
Zachary Amsdene48672f2010-08-19 22:07:23 -10002501 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002502 if (is_guest_mode(vcpu)) {
2503 /* Even when running L2, the adjustment needs to apply to L1 */
2504 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002505 } else
2506 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2507 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002508}
2509
Nadav Har'El801d3422011-05-25 23:02:23 +03002510static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2511{
2512 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2513 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2514}
2515
2516/*
2517 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2518 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2519 * all guests if the "nested" module option is off, and can also be disabled
2520 * for a single guest by disabling its VMX cpuid bit.
2521 */
2522static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2523{
2524 return nested && guest_cpuid_has_vmx(vcpu);
2525}
2526
Avi Kivity6aa8b732006-12-10 02:21:36 -08002527/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002528 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2529 * returned for the various VMX controls MSRs when nested VMX is enabled.
2530 * The same values should also be used to verify that vmcs12 control fields are
2531 * valid during nested entry from L1 to L2.
2532 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2533 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2534 * bit in the high half is on if the corresponding bit in the control field
2535 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002536 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002537static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002538{
2539 /*
2540 * Note that as a general rule, the high half of the MSRs (bits in
2541 * the control fields which may be 1) should be initialized by the
2542 * intersection of the underlying hardware's MSR (i.e., features which
2543 * can be supported) and the list of features we want to expose -
2544 * because they are known to be properly supported in our code.
2545 * Also, usually, the low half of the MSRs (bits which must be 1) can
2546 * be set to 0, meaning that L1 may turn off any of these bits. The
2547 * reason is that if one of these bits is necessary, it will appear
2548 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2549 * fields of vmcs01 and vmcs02, will turn these bits off - and
2550 * nested_vmx_exit_handled() will not pass related exits to L1.
2551 * These rules have exceptions below.
2552 */
2553
2554 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002555 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002556 vmx->nested.nested_vmx_pinbased_ctls_low,
2557 vmx->nested.nested_vmx_pinbased_ctls_high);
2558 vmx->nested.nested_vmx_pinbased_ctls_low |=
2559 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2560 vmx->nested.nested_vmx_pinbased_ctls_high &=
2561 PIN_BASED_EXT_INTR_MASK |
2562 PIN_BASED_NMI_EXITING |
2563 PIN_BASED_VIRTUAL_NMIS;
2564 vmx->nested.nested_vmx_pinbased_ctls_high |=
2565 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002566 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002567 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002568 vmx->nested.nested_vmx_pinbased_ctls_high |=
2569 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002570
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002571 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002572 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002573 vmx->nested.nested_vmx_exit_ctls_low,
2574 vmx->nested.nested_vmx_exit_ctls_high);
2575 vmx->nested.nested_vmx_exit_ctls_low =
2576 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002577
Wincy Vanb9c237b2015-02-03 23:56:30 +08002578 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002579#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002580 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002581#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002582 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002583 vmx->nested.nested_vmx_exit_ctls_high |=
2584 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002585 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002586 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2587
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002588 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002589 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002590
Jan Kiszka2996fca2014-06-16 13:59:43 +02002591 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002592 vmx->nested.nested_vmx_true_exit_ctls_low =
2593 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002594 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2595
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002596 /* entry controls */
2597 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002598 vmx->nested.nested_vmx_entry_ctls_low,
2599 vmx->nested.nested_vmx_entry_ctls_high);
2600 vmx->nested.nested_vmx_entry_ctls_low =
2601 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2602 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002603#ifdef CONFIG_X86_64
2604 VM_ENTRY_IA32E_MODE |
2605#endif
2606 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002607 vmx->nested.nested_vmx_entry_ctls_high |=
2608 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002609 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002610 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002611
Jan Kiszka2996fca2014-06-16 13:59:43 +02002612 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002613 vmx->nested.nested_vmx_true_entry_ctls_low =
2614 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002615 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2616
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002617 /* cpu-based controls */
2618 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002619 vmx->nested.nested_vmx_procbased_ctls_low,
2620 vmx->nested.nested_vmx_procbased_ctls_high);
2621 vmx->nested.nested_vmx_procbased_ctls_low =
2622 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2623 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002624 CPU_BASED_VIRTUAL_INTR_PENDING |
2625 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002626 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2627 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2628 CPU_BASED_CR3_STORE_EXITING |
2629#ifdef CONFIG_X86_64
2630 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2631#endif
2632 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002633 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2634 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2635 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2636 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002637 /*
2638 * We can allow some features even when not supported by the
2639 * hardware. For example, L1 can specify an MSR bitmap - and we
2640 * can use it to avoid exits to L1 - even when L0 runs L2
2641 * without MSR bitmaps.
2642 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002643 vmx->nested.nested_vmx_procbased_ctls_high |=
2644 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002645 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002646
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002647 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002648 vmx->nested.nested_vmx_true_procbased_ctls_low =
2649 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002650 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2651
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002652 /* secondary cpu-based controls */
2653 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002654 vmx->nested.nested_vmx_secondary_ctls_low,
2655 vmx->nested.nested_vmx_secondary_ctls_high);
2656 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2657 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002658 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002659 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002660 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002661 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002662 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002663 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002664 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002665 SECONDARY_EXEC_XSAVES |
2666 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002667
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002668 if (enable_ept) {
2669 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002670 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002671 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002672 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002673 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2674 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002675 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002676 /*
Bandan Das4b855072014-04-19 18:17:44 -04002677 * For nested guests, we don't do anything specific
2678 * for single context invalidation. Hence, only advertise
2679 * support for global context invalidation.
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002680 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002681 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002682 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002683 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002684
Wanpeng Li089d7b62015-10-13 09:18:37 -07002685 if (enable_vpid)
2686 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
2687 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2688 else
2689 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002690
Radim Krčmář0790ec12015-03-17 14:02:32 +01002691 if (enable_unrestricted_guest)
2692 vmx->nested.nested_vmx_secondary_ctls_high |=
2693 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2694
Jan Kiszkac18911a2013-03-13 16:06:41 +01002695 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002696 rdmsr(MSR_IA32_VMX_MISC,
2697 vmx->nested.nested_vmx_misc_low,
2698 vmx->nested.nested_vmx_misc_high);
2699 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2700 vmx->nested.nested_vmx_misc_low |=
2701 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002702 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002703 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002704}
2705
2706static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2707{
2708 /*
2709 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2710 */
2711 return ((control & high) | low) == control;
2712}
2713
2714static inline u64 vmx_control_msr(u32 low, u32 high)
2715{
2716 return low | ((u64)high << 32);
2717}
2718
Jan Kiszkacae50132014-01-04 18:47:22 +01002719/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002720static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2721{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002722 struct vcpu_vmx *vmx = to_vmx(vcpu);
2723
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002724 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002725 case MSR_IA32_VMX_BASIC:
2726 /*
2727 * This MSR reports some information about VMX support. We
2728 * should return information about the VMX we emulate for the
2729 * guest, and the VMCS structure we give it - not about the
2730 * VMX support of the underlying hardware.
2731 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002732 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002733 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2734 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2735 break;
2736 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2737 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002738 *pdata = vmx_control_msr(
2739 vmx->nested.nested_vmx_pinbased_ctls_low,
2740 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002741 break;
2742 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002743 *pdata = vmx_control_msr(
2744 vmx->nested.nested_vmx_true_procbased_ctls_low,
2745 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002746 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002747 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002748 *pdata = vmx_control_msr(
2749 vmx->nested.nested_vmx_procbased_ctls_low,
2750 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002751 break;
2752 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002753 *pdata = vmx_control_msr(
2754 vmx->nested.nested_vmx_true_exit_ctls_low,
2755 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002756 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002757 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 *pdata = vmx_control_msr(
2759 vmx->nested.nested_vmx_exit_ctls_low,
2760 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002761 break;
2762 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002763 *pdata = vmx_control_msr(
2764 vmx->nested.nested_vmx_true_entry_ctls_low,
2765 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002766 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002767 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002768 *pdata = vmx_control_msr(
2769 vmx->nested.nested_vmx_entry_ctls_low,
2770 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002771 break;
2772 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002773 *pdata = vmx_control_msr(
2774 vmx->nested.nested_vmx_misc_low,
2775 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002776 break;
2777 /*
2778 * These MSRs specify bits which the guest must keep fixed (on or off)
2779 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2780 * We picked the standard core2 setting.
2781 */
2782#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2783#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2784 case MSR_IA32_VMX_CR0_FIXED0:
2785 *pdata = VMXON_CR0_ALWAYSON;
2786 break;
2787 case MSR_IA32_VMX_CR0_FIXED1:
2788 *pdata = -1ULL;
2789 break;
2790 case MSR_IA32_VMX_CR4_FIXED0:
2791 *pdata = VMXON_CR4_ALWAYSON;
2792 break;
2793 case MSR_IA32_VMX_CR4_FIXED1:
2794 *pdata = -1ULL;
2795 break;
2796 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002797 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002798 break;
2799 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002800 *pdata = vmx_control_msr(
2801 vmx->nested.nested_vmx_secondary_ctls_low,
2802 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002803 break;
2804 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002805 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002806 *pdata = vmx->nested.nested_vmx_ept_caps |
2807 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002808 break;
2809 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002810 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002811 }
2812
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 return 0;
2814}
2815
2816/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817 * Reads an msr value (of 'msr_index') into 'pdata'.
2818 * Returns 0 on success, non-0 otherwise.
2819 * Assumes vcpu_load() was already called.
2820 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002821static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002822{
Avi Kivity26bb0982009-09-07 11:14:12 +03002823 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002825 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002826#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002828 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002829 break;
2830 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002831 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002833 case MSR_KERNEL_GS_BASE:
2834 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002835 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002836 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002837#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002839 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302840 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002841 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842 break;
2843 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002844 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002845 break;
2846 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002847 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848 break;
2849 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002850 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002852 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002853 if (!vmx_mpx_supported())
2854 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002855 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002856 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002857 case MSR_IA32_FEATURE_CONTROL:
2858 if (!nested_vmx_allowed(vcpu))
2859 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002860 msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002861 break;
2862 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2863 if (!nested_vmx_allowed(vcpu))
2864 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002865 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08002866 case MSR_IA32_XSS:
2867 if (!vmx_xsaves_supported())
2868 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002869 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08002870 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002871 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002872 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002873 return 1;
2874 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002875 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002876 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002877 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002878 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002879 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002881 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882 }
2883
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884 return 0;
2885}
2886
Jan Kiszkacae50132014-01-04 18:47:22 +01002887static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2888
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889/*
2890 * Writes msr value into into the appropriate "register".
2891 * Returns 0 on success, non-0 otherwise.
2892 * Assumes vcpu_load() was already called.
2893 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002894static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002895{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002896 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002897 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002898 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002899 u32 msr_index = msr_info->index;
2900 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03002901
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002903 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002904 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002905 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002906#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002907 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002908 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909 vmcs_writel(GUEST_FS_BASE, data);
2910 break;
2911 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002912 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002913 vmcs_writel(GUEST_GS_BASE, data);
2914 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002915 case MSR_KERNEL_GS_BASE:
2916 vmx_load_host_state(vmx);
2917 vmx->msr_guest_kernel_gs_base = data;
2918 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002919#endif
2920 case MSR_IA32_SYSENTER_CS:
2921 vmcs_write32(GUEST_SYSENTER_CS, data);
2922 break;
2923 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002924 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925 break;
2926 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002927 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002929 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002930 if (!vmx_mpx_supported())
2931 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002932 vmcs_write64(GUEST_BNDCFGS, data);
2933 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302934 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08002935 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002936 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002937 case MSR_IA32_CR_PAT:
2938 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03002939 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2940 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002941 vmcs_write64(GUEST_IA32_PAT, data);
2942 vcpu->arch.pat = data;
2943 break;
2944 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002945 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002946 break;
Will Auldba904632012-11-29 12:42:50 -08002947 case MSR_IA32_TSC_ADJUST:
2948 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002949 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002950 case MSR_IA32_FEATURE_CONTROL:
2951 if (!nested_vmx_allowed(vcpu) ||
2952 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2953 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2954 return 1;
2955 vmx->nested.msr_ia32_feature_control = data;
2956 if (msr_info->host_initiated && data == 0)
2957 vmx_leave_nested(vcpu);
2958 break;
2959 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2960 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08002961 case MSR_IA32_XSS:
2962 if (!vmx_xsaves_supported())
2963 return 1;
2964 /*
2965 * The only supported bit as of Skylake is bit 8, but
2966 * it is not supported on KVM.
2967 */
2968 if (data != 0)
2969 return 1;
2970 vcpu->arch.ia32_xss = data;
2971 if (vcpu->arch.ia32_xss != host_xss)
2972 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
2973 vcpu->arch.ia32_xss, host_xss);
2974 else
2975 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
2976 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002977 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002978 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002979 return 1;
2980 /* Check reserved bit, higher 32 bits should be zero */
2981 if ((data >> 32) != 0)
2982 return 1;
2983 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002985 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002986 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07002987 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002988 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002989 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
2990 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002991 ret = kvm_set_shared_msr(msr->index, msr->data,
2992 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03002993 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002994 if (ret)
2995 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002996 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08002997 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002998 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002999 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003000 }
3001
Eddie Dong2cc51562007-05-21 07:28:09 +03003002 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003003}
3004
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003005static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003007 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3008 switch (reg) {
3009 case VCPU_REGS_RSP:
3010 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3011 break;
3012 case VCPU_REGS_RIP:
3013 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3014 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003015 case VCPU_EXREG_PDPTR:
3016 if (enable_ept)
3017 ept_save_pdptrs(vcpu);
3018 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003019 default:
3020 break;
3021 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003022}
3023
Avi Kivity6aa8b732006-12-10 02:21:36 -08003024static __init int cpu_has_kvm_support(void)
3025{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003026 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003027}
3028
3029static __init int vmx_disabled_by_bios(void)
3030{
3031 u64 msr;
3032
3033 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003034 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003035 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003036 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3037 && tboot_enabled())
3038 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003039 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003040 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003041 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003042 && !tboot_enabled()) {
3043 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003044 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003045 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003046 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003047 /* launched w/o TXT and VMX disabled */
3048 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3049 && !tboot_enabled())
3050 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003051 }
3052
3053 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003054}
3055
Dongxiao Xu7725b892010-05-11 18:29:38 +08003056static void kvm_cpu_vmxon(u64 addr)
3057{
3058 asm volatile (ASM_VMX_VMXON_RAX
3059 : : "a"(&addr), "m"(addr)
3060 : "memory", "cc");
3061}
3062
Radim Krčmář13a34e02014-08-28 15:13:03 +02003063static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003064{
3065 int cpu = raw_smp_processor_id();
3066 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003067 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003068
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003069 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003070 return -EBUSY;
3071
Nadav Har'Eld462b812011-05-24 15:26:10 +03003072 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003073 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3074 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003075
3076 /*
3077 * Now we can enable the vmclear operation in kdump
3078 * since the loaded_vmcss_on_cpu list on this cpu
3079 * has been initialized.
3080 *
3081 * Though the cpu is not in VMX operation now, there
3082 * is no problem to enable the vmclear operation
3083 * for the loaded_vmcss_on_cpu list is empty!
3084 */
3085 crash_enable_local_vmclear(cpu);
3086
Avi Kivity6aa8b732006-12-10 02:21:36 -08003087 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003088
3089 test_bits = FEATURE_CONTROL_LOCKED;
3090 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3091 if (tboot_enabled())
3092 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3093
3094 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003095 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003096 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3097 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003098 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003099
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003100 if (vmm_exclusive) {
3101 kvm_cpu_vmxon(phys_addr);
3102 ept_sync_global();
3103 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003104
Christoph Lameter89cbc762014-08-17 12:30:40 -05003105 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003106
Alexander Graf10474ae2009-09-15 11:37:46 +02003107 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003108}
3109
Nadav Har'Eld462b812011-05-24 15:26:10 +03003110static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003111{
3112 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003113 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003114
Nadav Har'Eld462b812011-05-24 15:26:10 +03003115 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3116 loaded_vmcss_on_cpu_link)
3117 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003118}
3119
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003120
3121/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3122 * tricks.
3123 */
3124static void kvm_cpu_vmxoff(void)
3125{
3126 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003127}
3128
Radim Krčmář13a34e02014-08-28 15:13:03 +02003129static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003130{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003131 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003132 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003133 kvm_cpu_vmxoff();
3134 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003135 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003136}
3137
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003138static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003139 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140{
3141 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003142 u32 ctl = ctl_min | ctl_opt;
3143
3144 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3145
3146 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3147 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3148
3149 /* Ensure minimum (required) set of control bits are supported. */
3150 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003151 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003152
3153 *result = ctl;
3154 return 0;
3155}
3156
Avi Kivity110312c2010-12-21 12:54:20 +02003157static __init bool allow_1_setting(u32 msr, u32 ctl)
3158{
3159 u32 vmx_msr_low, vmx_msr_high;
3160
3161 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3162 return vmx_msr_high & ctl;
3163}
3164
Yang, Sheng002c7f72007-07-31 14:23:01 +03003165static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003166{
3167 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003168 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003169 u32 _pin_based_exec_control = 0;
3170 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003171 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003172 u32 _vmexit_control = 0;
3173 u32 _vmentry_control = 0;
3174
Raghavendra K T10166742012-02-07 23:19:20 +05303175 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003176#ifdef CONFIG_X86_64
3177 CPU_BASED_CR8_LOAD_EXITING |
3178 CPU_BASED_CR8_STORE_EXITING |
3179#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003180 CPU_BASED_CR3_LOAD_EXITING |
3181 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003182 CPU_BASED_USE_IO_BITMAPS |
3183 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003184 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003185 CPU_BASED_MWAIT_EXITING |
3186 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003187 CPU_BASED_INVLPG_EXITING |
3188 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003189
Sheng Yangf78e0e22007-10-29 09:40:42 +08003190 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003191 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003192 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003193 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3194 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003195 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003196#ifdef CONFIG_X86_64
3197 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3198 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3199 ~CPU_BASED_CR8_STORE_EXITING;
3200#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003201 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003202 min2 = 0;
3203 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003204 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003205 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003206 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003207 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003208 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003209 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003210 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003211 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003212 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003213 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003214 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003215 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003216 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003217 SECONDARY_EXEC_PCOMMIT |
3218 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003219 if (adjust_vmx_controls(min2, opt2,
3220 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003221 &_cpu_based_2nd_exec_control) < 0)
3222 return -EIO;
3223 }
3224#ifndef CONFIG_X86_64
3225 if (!(_cpu_based_2nd_exec_control &
3226 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3227 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3228#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003229
3230 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3231 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003232 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003233 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3234 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003235
Sheng Yangd56f5462008-04-25 10:13:16 +08003236 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003237 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3238 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003239 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3240 CPU_BASED_CR3_STORE_EXITING |
3241 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003242 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3243 vmx_capability.ept, vmx_capability.vpid);
3244 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003245
Paolo Bonzini81908bf2014-02-21 10:32:27 +01003246 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003247#ifdef CONFIG_X86_64
3248 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3249#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003250 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003251 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003252 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3253 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003254 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003255
Yang Zhang01e439b2013-04-11 19:25:12 +08003256 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3257 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
3258 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3259 &_pin_based_exec_control) < 0)
3260 return -EIO;
3261
3262 if (!(_cpu_based_2nd_exec_control &
3263 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
3264 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
3265 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3266
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003267 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003268 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003269 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3270 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003271 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003272
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003273 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003274
3275 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3276 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003277 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003278
3279#ifdef CONFIG_X86_64
3280 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3281 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003282 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003283#endif
3284
3285 /* Require Write-Back (WB) memory type for VMCS accesses. */
3286 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003287 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003288
Yang, Sheng002c7f72007-07-31 14:23:01 +03003289 vmcs_conf->size = vmx_msr_high & 0x1fff;
3290 vmcs_conf->order = get_order(vmcs_config.size);
3291 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003292
Yang, Sheng002c7f72007-07-31 14:23:01 +03003293 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3294 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003295 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003296 vmcs_conf->vmexit_ctrl = _vmexit_control;
3297 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003298
Avi Kivity110312c2010-12-21 12:54:20 +02003299 cpu_has_load_ia32_efer =
3300 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3301 VM_ENTRY_LOAD_IA32_EFER)
3302 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3303 VM_EXIT_LOAD_IA32_EFER);
3304
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003305 cpu_has_load_perf_global_ctrl =
3306 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3307 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3308 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3309 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3310
3311 /*
3312 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
3313 * but due to arrata below it can't be used. Workaround is to use
3314 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3315 *
3316 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3317 *
3318 * AAK155 (model 26)
3319 * AAP115 (model 30)
3320 * AAT100 (model 37)
3321 * BC86,AAY89,BD102 (model 44)
3322 * BA97 (model 46)
3323 *
3324 */
3325 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3326 switch (boot_cpu_data.x86_model) {
3327 case 26:
3328 case 30:
3329 case 37:
3330 case 44:
3331 case 46:
3332 cpu_has_load_perf_global_ctrl = false;
3333 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3334 "does not work properly. Using workaround\n");
3335 break;
3336 default:
3337 break;
3338 }
3339 }
3340
Wanpeng Li20300092014-12-02 19:14:59 +08003341 if (cpu_has_xsaves)
3342 rdmsrl(MSR_IA32_XSS, host_xss);
3343
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003344 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003345}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003346
3347static struct vmcs *alloc_vmcs_cpu(int cpu)
3348{
3349 int node = cpu_to_node(cpu);
3350 struct page *pages;
3351 struct vmcs *vmcs;
3352
Vlastimil Babka96db8002015-09-08 15:03:50 -07003353 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003354 if (!pages)
3355 return NULL;
3356 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003357 memset(vmcs, 0, vmcs_config.size);
3358 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003359 return vmcs;
3360}
3361
3362static struct vmcs *alloc_vmcs(void)
3363{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003364 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003365}
3366
3367static void free_vmcs(struct vmcs *vmcs)
3368{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003369 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003370}
3371
Nadav Har'Eld462b812011-05-24 15:26:10 +03003372/*
3373 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3374 */
3375static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3376{
3377 if (!loaded_vmcs->vmcs)
3378 return;
3379 loaded_vmcs_clear(loaded_vmcs);
3380 free_vmcs(loaded_vmcs->vmcs);
3381 loaded_vmcs->vmcs = NULL;
3382}
3383
Sam Ravnborg39959582007-06-01 00:47:13 -07003384static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003385{
3386 int cpu;
3387
Zachary Amsden3230bb42009-09-29 11:38:37 -10003388 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003389 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003390 per_cpu(vmxarea, cpu) = NULL;
3391 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003392}
3393
Bandan Dasfe2b2012014-04-21 15:20:14 -04003394static void init_vmcs_shadow_fields(void)
3395{
3396 int i, j;
3397
3398 /* No checks for read only fields yet */
3399
3400 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3401 switch (shadow_read_write_fields[i]) {
3402 case GUEST_BNDCFGS:
3403 if (!vmx_mpx_supported())
3404 continue;
3405 break;
3406 default:
3407 break;
3408 }
3409
3410 if (j < i)
3411 shadow_read_write_fields[j] =
3412 shadow_read_write_fields[i];
3413 j++;
3414 }
3415 max_shadow_read_write_fields = j;
3416
3417 /* shadowed fields guest access without vmexit */
3418 for (i = 0; i < max_shadow_read_write_fields; i++) {
3419 clear_bit(shadow_read_write_fields[i],
3420 vmx_vmwrite_bitmap);
3421 clear_bit(shadow_read_write_fields[i],
3422 vmx_vmread_bitmap);
3423 }
3424 for (i = 0; i < max_shadow_read_only_fields; i++)
3425 clear_bit(shadow_read_only_fields[i],
3426 vmx_vmread_bitmap);
3427}
3428
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429static __init int alloc_kvm_area(void)
3430{
3431 int cpu;
3432
Zachary Amsden3230bb42009-09-29 11:38:37 -10003433 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434 struct vmcs *vmcs;
3435
3436 vmcs = alloc_vmcs_cpu(cpu);
3437 if (!vmcs) {
3438 free_kvm_area();
3439 return -ENOMEM;
3440 }
3441
3442 per_cpu(vmxarea, cpu) = vmcs;
3443 }
3444 return 0;
3445}
3446
Gleb Natapov14168782013-01-21 15:36:49 +02003447static bool emulation_required(struct kvm_vcpu *vcpu)
3448{
3449 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3450}
3451
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003452static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003453 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003454{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003455 if (!emulate_invalid_guest_state) {
3456 /*
3457 * CS and SS RPL should be equal during guest entry according
3458 * to VMX spec, but in reality it is not always so. Since vcpu
3459 * is in the middle of the transition from real mode to
3460 * protected mode it is safe to assume that RPL 0 is a good
3461 * default value.
3462 */
3463 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003464 save->selector &= ~SEGMENT_RPL_MASK;
3465 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003466 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003467 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003468 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003469}
3470
3471static void enter_pmode(struct kvm_vcpu *vcpu)
3472{
3473 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003474 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003475
Gleb Natapovd99e4152012-12-20 16:57:45 +02003476 /*
3477 * Update real mode segment cache. It may be not up-to-date if sement
3478 * register was written while vcpu was in a guest mode.
3479 */
3480 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3481 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3482 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3483 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3484 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3485 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3486
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003487 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003488
Avi Kivity2fb92db2011-04-27 19:42:18 +03003489 vmx_segment_cache_clear(vmx);
3490
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003491 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003492
3493 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003494 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3495 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003496 vmcs_writel(GUEST_RFLAGS, flags);
3497
Rusty Russell66aee912007-07-17 23:34:16 +10003498 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3499 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003500
3501 update_exception_bitmap(vcpu);
3502
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003503 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3504 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3505 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3506 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3507 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3508 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509}
3510
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003511static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512{
Mathias Krause772e0312012-08-30 01:30:19 +02003513 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003514 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003515
Gleb Natapovd99e4152012-12-20 16:57:45 +02003516 var.dpl = 0x3;
3517 if (seg == VCPU_SREG_CS)
3518 var.type = 0x3;
3519
3520 if (!emulate_invalid_guest_state) {
3521 var.selector = var.base >> 4;
3522 var.base = var.base & 0xffff0;
3523 var.limit = 0xffff;
3524 var.g = 0;
3525 var.db = 0;
3526 var.present = 1;
3527 var.s = 1;
3528 var.l = 0;
3529 var.unusable = 0;
3530 var.type = 0x3;
3531 var.avl = 0;
3532 if (save->base & 0xf)
3533 printk_once(KERN_WARNING "kvm: segment base is not "
3534 "paragraph aligned when entering "
3535 "protected mode (seg=%d)", seg);
3536 }
3537
3538 vmcs_write16(sf->selector, var.selector);
3539 vmcs_write32(sf->base, var.base);
3540 vmcs_write32(sf->limit, var.limit);
3541 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003542}
3543
3544static void enter_rmode(struct kvm_vcpu *vcpu)
3545{
3546 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003547 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003548
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003549 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3550 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3551 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3552 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3553 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003554 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3555 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003556
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003557 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003558
Gleb Natapov776e58e2011-03-13 12:34:27 +02003559 /*
3560 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003561 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003562 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003563 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003564 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3565 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003566
Avi Kivity2fb92db2011-04-27 19:42:18 +03003567 vmx_segment_cache_clear(vmx);
3568
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003569 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003570 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003571 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3572
3573 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003574 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003575
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003576 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003577
3578 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003579 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580 update_exception_bitmap(vcpu);
3581
Gleb Natapovd99e4152012-12-20 16:57:45 +02003582 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3583 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3584 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3585 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3586 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3587 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003588
Eddie Dong8668a3c2007-10-10 14:26:45 +08003589 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003590}
3591
Amit Shah401d10d2009-02-20 22:53:37 +05303592static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3593{
3594 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003595 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3596
3597 if (!msr)
3598 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303599
Avi Kivity44ea2b12009-09-06 15:55:37 +03003600 /*
3601 * Force kernel_gs_base reloading before EFER changes, as control
3602 * of this msr depends on is_long_mode().
3603 */
3604 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003605 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303606 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003607 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303608 msr->data = efer;
3609 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003610 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303611
3612 msr->data = efer & ~EFER_LME;
3613 }
3614 setup_msrs(vmx);
3615}
3616
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003617#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003618
3619static void enter_lmode(struct kvm_vcpu *vcpu)
3620{
3621 u32 guest_tr_ar;
3622
Avi Kivity2fb92db2011-04-27 19:42:18 +03003623 vmx_segment_cache_clear(to_vmx(vcpu));
3624
Avi Kivity6aa8b732006-12-10 02:21:36 -08003625 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003626 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003627 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3628 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003630 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3631 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632 }
Avi Kivityda38f432010-07-06 11:30:49 +03003633 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634}
3635
3636static void exit_lmode(struct kvm_vcpu *vcpu)
3637{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003638 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003639 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003640}
3641
3642#endif
3643
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003644static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003645{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003646 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003647 if (enable_ept) {
3648 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3649 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003650 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003651 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003652}
3653
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003654static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3655{
3656 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3657}
3658
Avi Kivitye8467fd2009-12-29 18:43:06 +02003659static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3660{
3661 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3662
3663 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3664 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3665}
3666
Avi Kivityaff48ba2010-12-05 18:56:11 +02003667static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3668{
3669 if (enable_ept && is_paging(vcpu))
3670 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3671 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3672}
3673
Anthony Liguori25c4c272007-04-27 09:29:21 +03003674static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003675{
Avi Kivityfc78f512009-12-07 12:16:48 +02003676 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3677
3678 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3679 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003680}
3681
Sheng Yang14394422008-04-28 12:24:45 +08003682static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3683{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003684 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3685
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003686 if (!test_bit(VCPU_EXREG_PDPTR,
3687 (unsigned long *)&vcpu->arch.regs_dirty))
3688 return;
3689
Sheng Yang14394422008-04-28 12:24:45 +08003690 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003691 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3692 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3693 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3694 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003695 }
3696}
3697
Avi Kivity8f5d5492009-05-31 18:41:29 +03003698static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3699{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003700 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3701
Avi Kivity8f5d5492009-05-31 18:41:29 +03003702 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003703 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3704 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3705 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3706 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003707 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003708
3709 __set_bit(VCPU_EXREG_PDPTR,
3710 (unsigned long *)&vcpu->arch.regs_avail);
3711 __set_bit(VCPU_EXREG_PDPTR,
3712 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003713}
3714
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003715static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003716
3717static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3718 unsigned long cr0,
3719 struct kvm_vcpu *vcpu)
3720{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003721 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3722 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003723 if (!(cr0 & X86_CR0_PG)) {
3724 /* From paging/starting to nonpaging */
3725 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003726 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003727 (CPU_BASED_CR3_LOAD_EXITING |
3728 CPU_BASED_CR3_STORE_EXITING));
3729 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003730 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003731 } else if (!is_paging(vcpu)) {
3732 /* From nonpaging to paging */
3733 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003734 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003735 ~(CPU_BASED_CR3_LOAD_EXITING |
3736 CPU_BASED_CR3_STORE_EXITING));
3737 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003738 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003739 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003740
3741 if (!(cr0 & X86_CR0_WP))
3742 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003743}
3744
Avi Kivity6aa8b732006-12-10 02:21:36 -08003745static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3746{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003747 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003748 unsigned long hw_cr0;
3749
Gleb Natapov50378782013-02-04 16:00:28 +02003750 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003751 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003752 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003753 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003754 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003755
Gleb Natapov218e7632013-01-21 15:36:45 +02003756 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3757 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003758
Gleb Natapov218e7632013-01-21 15:36:45 +02003759 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3760 enter_rmode(vcpu);
3761 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003762
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003763#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003764 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003765 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003766 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003767 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003768 exit_lmode(vcpu);
3769 }
3770#endif
3771
Avi Kivity089d0342009-03-23 18:26:32 +02003772 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003773 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3774
Avi Kivity02daab22009-12-30 12:40:26 +02003775 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003776 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003777
Avi Kivity6aa8b732006-12-10 02:21:36 -08003778 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003779 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003780 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003781
3782 /* depends on vcpu->arch.cr0 to be set to a new value */
3783 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003784}
3785
Sheng Yang14394422008-04-28 12:24:45 +08003786static u64 construct_eptp(unsigned long root_hpa)
3787{
3788 u64 eptp;
3789
3790 /* TODO write the value reading from MSR */
3791 eptp = VMX_EPT_DEFAULT_MT |
3792 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003793 if (enable_ept_ad_bits)
3794 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003795 eptp |= (root_hpa & PAGE_MASK);
3796
3797 return eptp;
3798}
3799
Avi Kivity6aa8b732006-12-10 02:21:36 -08003800static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3801{
Sheng Yang14394422008-04-28 12:24:45 +08003802 unsigned long guest_cr3;
3803 u64 eptp;
3804
3805 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003806 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003807 eptp = construct_eptp(cr3);
3808 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003809 if (is_paging(vcpu) || is_guest_mode(vcpu))
3810 guest_cr3 = kvm_read_cr3(vcpu);
3811 else
3812 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02003813 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003814 }
3815
Sheng Yang2384d2b2008-01-17 15:14:33 +08003816 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003817 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003818}
3819
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003820static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003822 /*
3823 * Pass through host's Machine Check Enable value to hw_cr4, which
3824 * is in force while we are in guest mode. Do not let guests control
3825 * this bit, even if host CR4.MCE == 0.
3826 */
3827 unsigned long hw_cr4 =
3828 (cr4_read_shadow() & X86_CR4_MCE) |
3829 (cr4 & ~X86_CR4_MCE) |
3830 (to_vmx(vcpu)->rmode.vm86_active ?
3831 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003832
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003833 if (cr4 & X86_CR4_VMXE) {
3834 /*
3835 * To use VMXON (and later other VMX instructions), a guest
3836 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3837 * So basically the check on whether to allow nested VMX
3838 * is here.
3839 */
3840 if (!nested_vmx_allowed(vcpu))
3841 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003842 }
3843 if (to_vmx(vcpu)->nested.vmxon &&
3844 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003845 return 1;
3846
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003847 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003848 if (enable_ept) {
3849 if (!is_paging(vcpu)) {
3850 hw_cr4 &= ~X86_CR4_PAE;
3851 hw_cr4 |= X86_CR4_PSE;
3852 } else if (!(cr4 & X86_CR4_PAE)) {
3853 hw_cr4 &= ~X86_CR4_PAE;
3854 }
3855 }
Sheng Yang14394422008-04-28 12:24:45 +08003856
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003857 if (!enable_unrestricted_guest && !is_paging(vcpu))
3858 /*
3859 * SMEP/SMAP is disabled if CPU is in non-paging mode in
3860 * hardware. However KVM always uses paging mode without
3861 * unrestricted guest.
3862 * To emulate this behavior, SMEP/SMAP needs to be manually
3863 * disabled when guest switches to non-paging mode.
3864 */
3865 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP);
3866
Sheng Yang14394422008-04-28 12:24:45 +08003867 vmcs_writel(CR4_READ_SHADOW, cr4);
3868 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003869 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003870}
3871
Avi Kivity6aa8b732006-12-10 02:21:36 -08003872static void vmx_get_segment(struct kvm_vcpu *vcpu,
3873 struct kvm_segment *var, int seg)
3874{
Avi Kivitya9179492011-01-03 14:28:52 +02003875 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003876 u32 ar;
3877
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003878 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003879 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003880 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003881 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003882 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003883 var->base = vmx_read_guest_seg_base(vmx, seg);
3884 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3885 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003886 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003887 var->base = vmx_read_guest_seg_base(vmx, seg);
3888 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3889 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3890 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003891 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003892 var->type = ar & 15;
3893 var->s = (ar >> 4) & 1;
3894 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003895 /*
3896 * Some userspaces do not preserve unusable property. Since usable
3897 * segment has to be present according to VMX spec we can use present
3898 * property to amend userspace bug by making unusable segment always
3899 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3900 * segment as unusable.
3901 */
3902 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003903 var->avl = (ar >> 12) & 1;
3904 var->l = (ar >> 13) & 1;
3905 var->db = (ar >> 14) & 1;
3906 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003907}
3908
Avi Kivitya9179492011-01-03 14:28:52 +02003909static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3910{
Avi Kivitya9179492011-01-03 14:28:52 +02003911 struct kvm_segment s;
3912
3913 if (to_vmx(vcpu)->rmode.vm86_active) {
3914 vmx_get_segment(vcpu, &s, seg);
3915 return s.base;
3916 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003917 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003918}
3919
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003920static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003921{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003922 struct vcpu_vmx *vmx = to_vmx(vcpu);
3923
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003924 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003925 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003926 else {
3927 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003928 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003929 }
Avi Kivity69c73022011-03-07 15:26:44 +02003930}
3931
Avi Kivity653e3102007-05-07 10:55:37 +03003932static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003933{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003934 u32 ar;
3935
Avi Kivityf0495f92012-06-07 17:06:10 +03003936 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937 ar = 1 << 16;
3938 else {
3939 ar = var->type & 15;
3940 ar |= (var->s & 1) << 4;
3941 ar |= (var->dpl & 3) << 5;
3942 ar |= (var->present & 1) << 7;
3943 ar |= (var->avl & 1) << 12;
3944 ar |= (var->l & 1) << 13;
3945 ar |= (var->db & 1) << 14;
3946 ar |= (var->g & 1) << 15;
3947 }
Avi Kivity653e3102007-05-07 10:55:37 +03003948
3949 return ar;
3950}
3951
3952static void vmx_set_segment(struct kvm_vcpu *vcpu,
3953 struct kvm_segment *var, int seg)
3954{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003955 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003956 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003957
Avi Kivity2fb92db2011-04-27 19:42:18 +03003958 vmx_segment_cache_clear(vmx);
3959
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003960 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3961 vmx->rmode.segs[seg] = *var;
3962 if (seg == VCPU_SREG_TR)
3963 vmcs_write16(sf->selector, var->selector);
3964 else if (var->s)
3965 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003966 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003967 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003968
Avi Kivity653e3102007-05-07 10:55:37 +03003969 vmcs_writel(sf->base, var->base);
3970 vmcs_write32(sf->limit, var->limit);
3971 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003972
3973 /*
3974 * Fix the "Accessed" bit in AR field of segment registers for older
3975 * qemu binaries.
3976 * IA32 arch specifies that at the time of processor reset the
3977 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003978 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003979 * state vmexit when "unrestricted guest" mode is turned on.
3980 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3981 * tree. Newer qemu binaries with that qemu fix would not need this
3982 * kvm hack.
3983 */
3984 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003985 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003986
Gleb Natapovf924d662012-12-12 19:10:55 +02003987 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003988
3989out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003990 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003991}
3992
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3994{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003995 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996
3997 *db = (ar >> 14) & 1;
3998 *l = (ar >> 13) & 1;
3999}
4000
Gleb Natapov89a27f42010-02-16 10:51:48 +02004001static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004003 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4004 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004005}
4006
Gleb Natapov89a27f42010-02-16 10:51:48 +02004007static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004009 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4010 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004011}
4012
Gleb Natapov89a27f42010-02-16 10:51:48 +02004013static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004014{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004015 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4016 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017}
4018
Gleb Natapov89a27f42010-02-16 10:51:48 +02004019static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004020{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004021 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4022 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023}
4024
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004025static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4026{
4027 struct kvm_segment var;
4028 u32 ar;
4029
4030 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004031 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004032 if (seg == VCPU_SREG_CS)
4033 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004034 ar = vmx_segment_access_rights(&var);
4035
4036 if (var.base != (var.selector << 4))
4037 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004038 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004039 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004040 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004041 return false;
4042
4043 return true;
4044}
4045
4046static bool code_segment_valid(struct kvm_vcpu *vcpu)
4047{
4048 struct kvm_segment cs;
4049 unsigned int cs_rpl;
4050
4051 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004052 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004053
Avi Kivity1872a3f2009-01-04 23:26:52 +02004054 if (cs.unusable)
4055 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004056 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004057 return false;
4058 if (!cs.s)
4059 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004060 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004061 if (cs.dpl > cs_rpl)
4062 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004063 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004064 if (cs.dpl != cs_rpl)
4065 return false;
4066 }
4067 if (!cs.present)
4068 return false;
4069
4070 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4071 return true;
4072}
4073
4074static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4075{
4076 struct kvm_segment ss;
4077 unsigned int ss_rpl;
4078
4079 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004080 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004081
Avi Kivity1872a3f2009-01-04 23:26:52 +02004082 if (ss.unusable)
4083 return true;
4084 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004085 return false;
4086 if (!ss.s)
4087 return false;
4088 if (ss.dpl != ss_rpl) /* DPL != RPL */
4089 return false;
4090 if (!ss.present)
4091 return false;
4092
4093 return true;
4094}
4095
4096static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4097{
4098 struct kvm_segment var;
4099 unsigned int rpl;
4100
4101 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004102 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004103
Avi Kivity1872a3f2009-01-04 23:26:52 +02004104 if (var.unusable)
4105 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004106 if (!var.s)
4107 return false;
4108 if (!var.present)
4109 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004110 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004111 if (var.dpl < rpl) /* DPL < RPL */
4112 return false;
4113 }
4114
4115 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4116 * rights flags
4117 */
4118 return true;
4119}
4120
4121static bool tr_valid(struct kvm_vcpu *vcpu)
4122{
4123 struct kvm_segment tr;
4124
4125 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4126
Avi Kivity1872a3f2009-01-04 23:26:52 +02004127 if (tr.unusable)
4128 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004129 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004130 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004131 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004132 return false;
4133 if (!tr.present)
4134 return false;
4135
4136 return true;
4137}
4138
4139static bool ldtr_valid(struct kvm_vcpu *vcpu)
4140{
4141 struct kvm_segment ldtr;
4142
4143 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4144
Avi Kivity1872a3f2009-01-04 23:26:52 +02004145 if (ldtr.unusable)
4146 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004147 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004148 return false;
4149 if (ldtr.type != 2)
4150 return false;
4151 if (!ldtr.present)
4152 return false;
4153
4154 return true;
4155}
4156
4157static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4158{
4159 struct kvm_segment cs, ss;
4160
4161 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4162 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4163
Nadav Amitb32a9912015-03-29 16:33:04 +03004164 return ((cs.selector & SEGMENT_RPL_MASK) ==
4165 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004166}
4167
4168/*
4169 * Check if guest state is valid. Returns true if valid, false if
4170 * not.
4171 * We assume that registers are always usable
4172 */
4173static bool guest_state_valid(struct kvm_vcpu *vcpu)
4174{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004175 if (enable_unrestricted_guest)
4176 return true;
4177
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004178 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004179 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004180 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4181 return false;
4182 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4183 return false;
4184 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4185 return false;
4186 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4187 return false;
4188 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4189 return false;
4190 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4191 return false;
4192 } else {
4193 /* protected mode guest state checks */
4194 if (!cs_ss_rpl_check(vcpu))
4195 return false;
4196 if (!code_segment_valid(vcpu))
4197 return false;
4198 if (!stack_segment_valid(vcpu))
4199 return false;
4200 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4201 return false;
4202 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4203 return false;
4204 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4205 return false;
4206 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4207 return false;
4208 if (!tr_valid(vcpu))
4209 return false;
4210 if (!ldtr_valid(vcpu))
4211 return false;
4212 }
4213 /* TODO:
4214 * - Add checks on RIP
4215 * - Add checks on RFLAGS
4216 */
4217
4218 return true;
4219}
4220
Mike Dayd77c26f2007-10-08 09:02:08 -04004221static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004222{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004223 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004224 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004225 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004226
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004227 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004228 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004229 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4230 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004231 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004232 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004233 r = kvm_write_guest_page(kvm, fn++, &data,
4234 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004235 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004236 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004237 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4238 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004239 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004240 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4241 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004242 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004243 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004244 r = kvm_write_guest_page(kvm, fn, &data,
4245 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4246 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004247out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004248 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004249 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004250}
4251
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004252static int init_rmode_identity_map(struct kvm *kvm)
4253{
Tang Chenf51770e2014-09-16 18:41:59 +08004254 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004255 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004256 u32 tmp;
4257
Avi Kivity089d0342009-03-23 18:26:32 +02004258 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004259 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004260
4261 /* Protect kvm->arch.ept_identity_pagetable_done. */
4262 mutex_lock(&kvm->slots_lock);
4263
Tang Chenf51770e2014-09-16 18:41:59 +08004264 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004265 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004266
Sheng Yangb927a3c2009-07-21 10:42:48 +08004267 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004268
4269 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004270 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004271 goto out2;
4272
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004273 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004274 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4275 if (r < 0)
4276 goto out;
4277 /* Set up identity-mapping pagetable for EPT in real mode */
4278 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4279 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4280 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4281 r = kvm_write_guest_page(kvm, identity_map_pfn,
4282 &tmp, i * sizeof(tmp), sizeof(tmp));
4283 if (r < 0)
4284 goto out;
4285 }
4286 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004287
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004288out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004289 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004290
4291out2:
4292 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004293 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004294}
4295
Avi Kivity6aa8b732006-12-10 02:21:36 -08004296static void seg_setup(int seg)
4297{
Mathias Krause772e0312012-08-30 01:30:19 +02004298 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004299 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004300
4301 vmcs_write16(sf->selector, 0);
4302 vmcs_writel(sf->base, 0);
4303 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004304 ar = 0x93;
4305 if (seg == VCPU_SREG_CS)
4306 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004307
4308 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004309}
4310
Sheng Yangf78e0e22007-10-29 09:40:42 +08004311static int alloc_apic_access_page(struct kvm *kvm)
4312{
Xiao Guangrong44841412012-09-07 14:14:20 +08004313 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004314 int r = 0;
4315
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004316 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004317 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004318 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004319 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4320 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004321 if (r)
4322 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004323
Tang Chen73a6d942014-09-11 13:38:00 +08004324 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004325 if (is_error_page(page)) {
4326 r = -EFAULT;
4327 goto out;
4328 }
4329
Tang Chenc24ae0d2014-09-24 15:57:58 +08004330 /*
4331 * Do not pin the page in memory, so that memory hot-unplug
4332 * is able to migrate it.
4333 */
4334 put_page(page);
4335 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004336out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004337 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004338 return r;
4339}
4340
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004341static int alloc_identity_pagetable(struct kvm *kvm)
4342{
Tang Chena255d472014-09-16 18:41:58 +08004343 /* Called with kvm->slots_lock held. */
4344
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004345 int r = 0;
4346
Tang Chena255d472014-09-16 18:41:58 +08004347 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4348
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004349 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4350 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004351
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004352 return r;
4353}
4354
Wanpeng Li991e7a02015-09-16 17:30:05 +08004355static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004356{
4357 int vpid;
4358
Avi Kivity919818a2009-03-23 18:01:29 +02004359 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004360 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004361 spin_lock(&vmx_vpid_lock);
4362 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004363 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004364 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004365 else
4366 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004367 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004368 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004369}
4370
Wanpeng Li991e7a02015-09-16 17:30:05 +08004371static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004372{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004373 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004374 return;
4375 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004376 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004377 spin_unlock(&vmx_vpid_lock);
4378}
4379
Yang Zhang8d146952013-01-25 10:18:50 +08004380#define MSR_TYPE_R 1
4381#define MSR_TYPE_W 2
4382static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4383 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004384{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004385 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004386
4387 if (!cpu_has_vmx_msr_bitmap())
4388 return;
4389
4390 /*
4391 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4392 * have the write-low and read-high bitmap offsets the wrong way round.
4393 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4394 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004395 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004396 if (type & MSR_TYPE_R)
4397 /* read-low */
4398 __clear_bit(msr, msr_bitmap + 0x000 / f);
4399
4400 if (type & MSR_TYPE_W)
4401 /* write-low */
4402 __clear_bit(msr, msr_bitmap + 0x800 / f);
4403
Sheng Yang25c5f222008-03-28 13:18:56 +08004404 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4405 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004406 if (type & MSR_TYPE_R)
4407 /* read-high */
4408 __clear_bit(msr, msr_bitmap + 0x400 / f);
4409
4410 if (type & MSR_TYPE_W)
4411 /* write-high */
4412 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4413
4414 }
4415}
4416
4417static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4418 u32 msr, int type)
4419{
4420 int f = sizeof(unsigned long);
4421
4422 if (!cpu_has_vmx_msr_bitmap())
4423 return;
4424
4425 /*
4426 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4427 * have the write-low and read-high bitmap offsets the wrong way round.
4428 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4429 */
4430 if (msr <= 0x1fff) {
4431 if (type & MSR_TYPE_R)
4432 /* read-low */
4433 __set_bit(msr, msr_bitmap + 0x000 / f);
4434
4435 if (type & MSR_TYPE_W)
4436 /* write-low */
4437 __set_bit(msr, msr_bitmap + 0x800 / f);
4438
4439 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4440 msr &= 0x1fff;
4441 if (type & MSR_TYPE_R)
4442 /* read-high */
4443 __set_bit(msr, msr_bitmap + 0x400 / f);
4444
4445 if (type & MSR_TYPE_W)
4446 /* write-high */
4447 __set_bit(msr, msr_bitmap + 0xc00 / f);
4448
Sheng Yang25c5f222008-03-28 13:18:56 +08004449 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004450}
4451
Wincy Vanf2b93282015-02-03 23:56:03 +08004452/*
4453 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4454 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4455 */
4456static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4457 unsigned long *msr_bitmap_nested,
4458 u32 msr, int type)
4459{
4460 int f = sizeof(unsigned long);
4461
4462 if (!cpu_has_vmx_msr_bitmap()) {
4463 WARN_ON(1);
4464 return;
4465 }
4466
4467 /*
4468 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4469 * have the write-low and read-high bitmap offsets the wrong way round.
4470 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4471 */
4472 if (msr <= 0x1fff) {
4473 if (type & MSR_TYPE_R &&
4474 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4475 /* read-low */
4476 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4477
4478 if (type & MSR_TYPE_W &&
4479 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4480 /* write-low */
4481 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4482
4483 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4484 msr &= 0x1fff;
4485 if (type & MSR_TYPE_R &&
4486 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4487 /* read-high */
4488 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4489
4490 if (type & MSR_TYPE_W &&
4491 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4492 /* write-high */
4493 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4494
4495 }
4496}
4497
Avi Kivity58972972009-02-24 22:26:47 +02004498static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4499{
4500 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004501 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4502 msr, MSR_TYPE_R | MSR_TYPE_W);
4503 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4504 msr, MSR_TYPE_R | MSR_TYPE_W);
4505}
4506
4507static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4508{
4509 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4510 msr, MSR_TYPE_R);
4511 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4512 msr, MSR_TYPE_R);
4513}
4514
4515static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4516{
4517 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4518 msr, MSR_TYPE_R);
4519 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4520 msr, MSR_TYPE_R);
4521}
4522
4523static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4524{
4525 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4526 msr, MSR_TYPE_W);
4527 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4528 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004529}
4530
Andrey Smetanind62caab2015-11-10 15:36:33 +03004531static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004532{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004533 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004534}
4535
Wincy Van705699a2015-02-03 23:58:17 +08004536static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4537{
4538 struct vcpu_vmx *vmx = to_vmx(vcpu);
4539 int max_irr;
4540 void *vapic_page;
4541 u16 status;
4542
4543 if (vmx->nested.pi_desc &&
4544 vmx->nested.pi_pending) {
4545 vmx->nested.pi_pending = false;
4546 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4547 return 0;
4548
4549 max_irr = find_last_bit(
4550 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4551
4552 if (max_irr == 256)
4553 return 0;
4554
4555 vapic_page = kmap(vmx->nested.virtual_apic_page);
4556 if (!vapic_page) {
4557 WARN_ON(1);
4558 return -ENOMEM;
4559 }
4560 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4561 kunmap(vmx->nested.virtual_apic_page);
4562
4563 status = vmcs_read16(GUEST_INTR_STATUS);
4564 if ((u8)max_irr > ((u8)status & 0xff)) {
4565 status &= ~0xff;
4566 status |= (u8)max_irr;
4567 vmcs_write16(GUEST_INTR_STATUS, status);
4568 }
4569 }
4570 return 0;
4571}
4572
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004573static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4574{
4575#ifdef CONFIG_SMP
4576 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004577 struct vcpu_vmx *vmx = to_vmx(vcpu);
4578
4579 /*
4580 * Currently, we don't support urgent interrupt,
4581 * all interrupts are recognized as non-urgent
4582 * interrupt, so we cannot post interrupts when
4583 * 'SN' is set.
4584 *
4585 * If the vcpu is in guest mode, it means it is
4586 * running instead of being scheduled out and
4587 * waiting in the run queue, and that's the only
4588 * case when 'SN' is set currently, warning if
4589 * 'SN' is set.
4590 */
4591 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4592
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004593 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4594 POSTED_INTR_VECTOR);
4595 return true;
4596 }
4597#endif
4598 return false;
4599}
4600
Wincy Van705699a2015-02-03 23:58:17 +08004601static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4602 int vector)
4603{
4604 struct vcpu_vmx *vmx = to_vmx(vcpu);
4605
4606 if (is_guest_mode(vcpu) &&
4607 vector == vmx->nested.posted_intr_nv) {
4608 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004609 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004610 /*
4611 * If a posted intr is not recognized by hardware,
4612 * we will accomplish it in the next vmentry.
4613 */
4614 vmx->nested.pi_pending = true;
4615 kvm_make_request(KVM_REQ_EVENT, vcpu);
4616 return 0;
4617 }
4618 return -1;
4619}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004620/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004621 * Send interrupt to vcpu via posted interrupt way.
4622 * 1. If target vcpu is running(non-root mode), send posted interrupt
4623 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4624 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4625 * interrupt from PIR in next vmentry.
4626 */
4627static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4628{
4629 struct vcpu_vmx *vmx = to_vmx(vcpu);
4630 int r;
4631
Wincy Van705699a2015-02-03 23:58:17 +08004632 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4633 if (!r)
4634 return;
4635
Yang Zhanga20ed542013-04-11 19:25:15 +08004636 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4637 return;
4638
4639 r = pi_test_and_set_on(&vmx->pi_desc);
4640 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004641 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004642 kvm_vcpu_kick(vcpu);
4643}
4644
4645static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4646{
4647 struct vcpu_vmx *vmx = to_vmx(vcpu);
4648
4649 if (!pi_test_and_clear_on(&vmx->pi_desc))
4650 return;
4651
4652 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4653}
4654
Avi Kivity6aa8b732006-12-10 02:21:36 -08004655/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004656 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4657 * will not change in the lifetime of the guest.
4658 * Note that host-state that does change is set elsewhere. E.g., host-state
4659 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4660 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004661static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004662{
4663 u32 low32, high32;
4664 unsigned long tmpl;
4665 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004666 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004667
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004668 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004669 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4670
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004671 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004672 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004673 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4674 vmx->host_state.vmcs_host_cr4 = cr4;
4675
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004676 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004677#ifdef CONFIG_X86_64
4678 /*
4679 * Load null selectors, so we can avoid reloading them in
4680 * __vmx_load_host_state(), in case userspace uses the null selectors
4681 * too (the expected case).
4682 */
4683 vmcs_write16(HOST_DS_SELECTOR, 0);
4684 vmcs_write16(HOST_ES_SELECTOR, 0);
4685#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004686 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4687 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004688#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004689 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4690 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4691
4692 native_store_idt(&dt);
4693 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004694 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004695
Avi Kivity83287ea422012-09-16 15:10:57 +03004696 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004697
4698 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4699 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4700 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4701 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4702
4703 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4704 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4705 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4706 }
4707}
4708
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004709static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4710{
4711 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4712 if (enable_ept)
4713 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004714 if (is_guest_mode(&vmx->vcpu))
4715 vmx->vcpu.arch.cr4_guest_owned_bits &=
4716 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004717 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4718}
4719
Yang Zhang01e439b2013-04-11 19:25:12 +08004720static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4721{
4722 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4723
Andrey Smetanind62caab2015-11-10 15:36:33 +03004724 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004725 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4726 return pin_based_exec_ctrl;
4727}
4728
Andrey Smetanind62caab2015-11-10 15:36:33 +03004729static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4730{
4731 struct vcpu_vmx *vmx = to_vmx(vcpu);
4732
4733 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
4734}
4735
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004736static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4737{
4738 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004739
4740 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4741 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4742
Paolo Bonzini35754c92015-07-29 12:05:37 +02004743 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004744 exec_control &= ~CPU_BASED_TPR_SHADOW;
4745#ifdef CONFIG_X86_64
4746 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4747 CPU_BASED_CR8_LOAD_EXITING;
4748#endif
4749 }
4750 if (!enable_ept)
4751 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4752 CPU_BASED_CR3_LOAD_EXITING |
4753 CPU_BASED_INVLPG_EXITING;
4754 return exec_control;
4755}
4756
4757static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4758{
4759 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004760 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004761 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4762 if (vmx->vpid == 0)
4763 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4764 if (!enable_ept) {
4765 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4766 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004767 /* Enable INVPCID for non-ept guests may cause performance regression. */
4768 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004769 }
4770 if (!enable_unrestricted_guest)
4771 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4772 if (!ple_gap)
4773 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004774 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004775 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4776 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004777 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004778 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4779 (handle_vmptrld).
4780 We can NOT enable shadow_vmcs here because we don't have yet
4781 a current VMCS12
4782 */
4783 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004784
4785 if (!enable_pml)
4786 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004787
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004788 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4789 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4790
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004791 return exec_control;
4792}
4793
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004794static void ept_set_mmio_spte_mask(void)
4795{
4796 /*
4797 * EPT Misconfigurations can be generated if the value of bits 2:0
4798 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004799 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004800 * spte.
4801 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004802 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004803}
4804
Wanpeng Lif53cd632014-12-02 19:14:58 +08004805#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004806/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004807 * Sets up the vmcs for emulated real mode.
4808 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004809static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004810{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004811#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004812 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004813#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004814 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004815
Avi Kivity6aa8b732006-12-10 02:21:36 -08004816 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004817 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4818 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004819
Abel Gordon4607c2d2013-04-18 14:35:55 +03004820 if (enable_shadow_vmcs) {
4821 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4822 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4823 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004824 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004825 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004826
Avi Kivity6aa8b732006-12-10 02:21:36 -08004827 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4828
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004830 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004831
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004832 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004833
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004834 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004835 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4836 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004837
Andrey Smetanind62caab2015-11-10 15:36:33 +03004838 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004839 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4840 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4841 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4842 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4843
4844 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004845
Li RongQing0bcf2612015-12-03 13:29:34 +08004846 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004847 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004848 }
4849
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004850 if (ple_gap) {
4851 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004852 vmx->ple_window = ple_window;
4853 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004854 }
4855
Xiao Guangrongc3707952011-07-12 03:28:04 +08004856 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4857 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004858 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4859
Avi Kivity9581d442010-10-19 16:46:55 +02004860 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4861 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004862 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004863#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004864 rdmsrl(MSR_FS_BASE, a);
4865 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4866 rdmsrl(MSR_GS_BASE, a);
4867 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4868#else
4869 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4870 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4871#endif
4872
Eddie Dong2cc51562007-05-21 07:28:09 +03004873 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4874 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004875 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03004876 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004877 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004878
Radim Krčmář74545702015-04-27 15:11:25 +02004879 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4880 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004881
Paolo Bonzini03916db2014-07-24 14:21:57 +02004882 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004883 u32 index = vmx_msr_index[i];
4884 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004885 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004886
4887 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4888 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004889 if (wrmsr_safe(index, data_low, data_high) < 0)
4890 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004891 vmx->guest_msrs[j].index = i;
4892 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004893 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004894 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004895 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004896
Gleb Natapov2961e8762013-11-25 15:37:13 +02004897
4898 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004899
4900 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02004901 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004902
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004903 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004904 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004905
Wanpeng Lif53cd632014-12-02 19:14:58 +08004906 if (vmx_xsaves_supported())
4907 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4908
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004909 return 0;
4910}
4911
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004912static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004913{
4914 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004915 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004916 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004917
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004918 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004919
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004920 vmx->soft_vnmi_blocked = 0;
4921
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004922 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004923 kvm_set_cr8(vcpu, 0);
4924
4925 if (!init_event) {
4926 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4927 MSR_IA32_APICBASE_ENABLE;
4928 if (kvm_vcpu_is_reset_bsp(vcpu))
4929 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4930 apic_base_msr.host_initiated = true;
4931 kvm_set_apic_base(vcpu, &apic_base_msr);
4932 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004933
Avi Kivity2fb92db2011-04-27 19:42:18 +03004934 vmx_segment_cache_clear(vmx);
4935
Avi Kivity5706be02008-08-20 15:07:31 +03004936 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004937 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004938 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004939
4940 seg_setup(VCPU_SREG_DS);
4941 seg_setup(VCPU_SREG_ES);
4942 seg_setup(VCPU_SREG_FS);
4943 seg_setup(VCPU_SREG_GS);
4944 seg_setup(VCPU_SREG_SS);
4945
4946 vmcs_write16(GUEST_TR_SELECTOR, 0);
4947 vmcs_writel(GUEST_TR_BASE, 0);
4948 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4949 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4950
4951 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4952 vmcs_writel(GUEST_LDTR_BASE, 0);
4953 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4954 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4955
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004956 if (!init_event) {
4957 vmcs_write32(GUEST_SYSENTER_CS, 0);
4958 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4959 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4960 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4961 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004962
4963 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01004964 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004965
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004966 vmcs_writel(GUEST_GDTR_BASE, 0);
4967 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4968
4969 vmcs_writel(GUEST_IDTR_BASE, 0);
4970 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4971
Anthony Liguori443381a2010-12-06 10:53:38 -06004972 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004973 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004974 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004975
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004976 setup_msrs(vmx);
4977
Avi Kivity6aa8b732006-12-10 02:21:36 -08004978 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4979
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004980 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004981 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004982 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004983 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004984 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004985 vmcs_write32(TPR_THRESHOLD, 0);
4986 }
4987
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004988 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004989
Andrey Smetanind62caab2015-11-10 15:36:33 +03004990 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004991 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
4992
Sheng Yang2384d2b2008-01-17 15:14:33 +08004993 if (vmx->vpid != 0)
4994 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4995
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004996 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
4997 vmx_set_cr0(vcpu, cr0); /* enter rmode */
4998 vmx->vcpu.arch.cr0 = cr0;
4999 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005000 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005001 vmx_fpu_activate(vcpu);
5002 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005003
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005004 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005}
5006
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005007/*
5008 * In nested virtualization, check if L1 asked to exit on external interrupts.
5009 * For most existing hypervisors, this will always return true.
5010 */
5011static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5012{
5013 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5014 PIN_BASED_EXT_INTR_MASK;
5015}
5016
Bandan Das77b0f5d2014-04-19 18:17:45 -04005017/*
5018 * In nested virtualization, check if L1 has set
5019 * VM_EXIT_ACK_INTR_ON_EXIT
5020 */
5021static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5022{
5023 return get_vmcs12(vcpu)->vm_exit_controls &
5024 VM_EXIT_ACK_INTR_ON_EXIT;
5025}
5026
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005027static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5028{
5029 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5030 PIN_BASED_NMI_EXITING;
5031}
5032
Jan Kiszkac9a79532014-03-07 20:03:15 +01005033static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005034{
5035 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005036
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005037 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5038 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5039 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5040}
5041
Jan Kiszkac9a79532014-03-07 20:03:15 +01005042static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005043{
5044 u32 cpu_based_vm_exec_control;
5045
Jan Kiszkac9a79532014-03-07 20:03:15 +01005046 if (!cpu_has_virtual_nmis() ||
5047 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5048 enable_irq_window(vcpu);
5049 return;
5050 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005051
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005052 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5053 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5054 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5055}
5056
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005057static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005058{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005059 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005060 uint32_t intr;
5061 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005062
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005063 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005064
Avi Kivityfa89a812008-09-01 15:57:51 +03005065 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005066 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005067 int inc_eip = 0;
5068 if (vcpu->arch.interrupt.soft)
5069 inc_eip = vcpu->arch.event_exit_inst_len;
5070 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005071 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005072 return;
5073 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005074 intr = irq | INTR_INFO_VALID_MASK;
5075 if (vcpu->arch.interrupt.soft) {
5076 intr |= INTR_TYPE_SOFT_INTR;
5077 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5078 vmx->vcpu.arch.event_exit_inst_len);
5079 } else
5080 intr |= INTR_TYPE_EXT_INTR;
5081 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005082}
5083
Sheng Yangf08864b2008-05-15 18:23:25 +08005084static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5085{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005086 struct vcpu_vmx *vmx = to_vmx(vcpu);
5087
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005088 if (is_guest_mode(vcpu))
5089 return;
5090
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005091 if (!cpu_has_virtual_nmis()) {
5092 /*
5093 * Tracking the NMI-blocked state in software is built upon
5094 * finding the next open IRQ window. This, in turn, depends on
5095 * well-behaving guests: They have to keep IRQs disabled at
5096 * least as long as the NMI handler runs. Otherwise we may
5097 * cause NMI nesting, maybe breaking the guest. But as this is
5098 * highly unlikely, we can live with the residual risk.
5099 */
5100 vmx->soft_vnmi_blocked = 1;
5101 vmx->vnmi_blocked_time = 0;
5102 }
5103
Jan Kiszka487b3912008-09-26 09:30:56 +02005104 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005105 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005106 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005107 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005108 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005109 return;
5110 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005111 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5112 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005113}
5114
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005115static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5116{
5117 if (!cpu_has_virtual_nmis())
5118 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005119 if (to_vmx(vcpu)->nmi_known_unmasked)
5120 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005121 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005122}
5123
5124static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5125{
5126 struct vcpu_vmx *vmx = to_vmx(vcpu);
5127
5128 if (!cpu_has_virtual_nmis()) {
5129 if (vmx->soft_vnmi_blocked != masked) {
5130 vmx->soft_vnmi_blocked = masked;
5131 vmx->vnmi_blocked_time = 0;
5132 }
5133 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005134 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005135 if (masked)
5136 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5137 GUEST_INTR_STATE_NMI);
5138 else
5139 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5140 GUEST_INTR_STATE_NMI);
5141 }
5142}
5143
Jan Kiszka2505dc92013-04-14 12:12:47 +02005144static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5145{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005146 if (to_vmx(vcpu)->nested.nested_run_pending)
5147 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005148
Jan Kiszka2505dc92013-04-14 12:12:47 +02005149 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5150 return 0;
5151
5152 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5153 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5154 | GUEST_INTR_STATE_NMI));
5155}
5156
Gleb Natapov78646122009-03-23 12:12:11 +02005157static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5158{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005159 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5160 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005161 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5162 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005163}
5164
Izik Eiduscbc94022007-10-25 00:29:55 +02005165static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5166{
5167 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005168
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005169 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5170 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005171 if (ret)
5172 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005173 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005174 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005175}
5176
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005177static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005178{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005179 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005180 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005181 /*
5182 * Update instruction length as we may reinject the exception
5183 * from user space while in guest debugging mode.
5184 */
5185 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5186 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005187 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005188 return false;
5189 /* fall through */
5190 case DB_VECTOR:
5191 if (vcpu->guest_debug &
5192 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5193 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005194 /* fall through */
5195 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005196 case OF_VECTOR:
5197 case BR_VECTOR:
5198 case UD_VECTOR:
5199 case DF_VECTOR:
5200 case SS_VECTOR:
5201 case GP_VECTOR:
5202 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005203 return true;
5204 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005205 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005206 return false;
5207}
5208
5209static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5210 int vec, u32 err_code)
5211{
5212 /*
5213 * Instruction with address size override prefix opcode 0x67
5214 * Cause the #SS fault with 0 error code in VM86 mode.
5215 */
5216 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5217 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5218 if (vcpu->arch.halt_request) {
5219 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005220 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005221 }
5222 return 1;
5223 }
5224 return 0;
5225 }
5226
5227 /*
5228 * Forward all other exceptions that are valid in real mode.
5229 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5230 * the required debugging infrastructure rework.
5231 */
5232 kvm_queue_exception(vcpu, vec);
5233 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005234}
5235
Andi Kleena0861c02009-06-08 17:37:09 +08005236/*
5237 * Trigger machine check on the host. We assume all the MSRs are already set up
5238 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5239 * We pass a fake environment to the machine check handler because we want
5240 * the guest to be always treated like user space, no matter what context
5241 * it used internally.
5242 */
5243static void kvm_machine_check(void)
5244{
5245#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5246 struct pt_regs regs = {
5247 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5248 .flags = X86_EFLAGS_IF,
5249 };
5250
5251 do_machine_check(&regs, 0);
5252#endif
5253}
5254
Avi Kivity851ba692009-08-24 11:10:17 +03005255static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005256{
5257 /* already handled by vcpu_run */
5258 return 1;
5259}
5260
Avi Kivity851ba692009-08-24 11:10:17 +03005261static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005262{
Avi Kivity1155f762007-11-22 11:30:47 +02005263 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005264 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005265 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005266 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005267 u32 vect_info;
5268 enum emulation_result er;
5269
Avi Kivity1155f762007-11-22 11:30:47 +02005270 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005271 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005272
Andi Kleena0861c02009-06-08 17:37:09 +08005273 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005274 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005275
Jan Kiszkae4a41882008-09-26 09:30:46 +02005276 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005277 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005278
5279 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005280 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005281 return 1;
5282 }
5283
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005284 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005285 if (is_guest_mode(vcpu)) {
5286 kvm_queue_exception(vcpu, UD_VECTOR);
5287 return 1;
5288 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005289 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005290 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005291 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005292 return 1;
5293 }
5294
Avi Kivity6aa8b732006-12-10 02:21:36 -08005295 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005296 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005297 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005298
5299 /*
5300 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5301 * MMIO, it is better to report an internal error.
5302 * See the comments in vmx_handle_exit.
5303 */
5304 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5305 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5306 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5307 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005308 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005309 vcpu->run->internal.data[0] = vect_info;
5310 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005311 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005312 return 0;
5313 }
5314
Avi Kivity6aa8b732006-12-10 02:21:36 -08005315 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005316 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005317 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005318 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005319 trace_kvm_page_fault(cr2, error_code);
5320
Gleb Natapov3298b752009-05-11 13:35:46 +03005321 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005322 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005323 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005324 }
5325
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005326 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005327
5328 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5329 return handle_rmode_exception(vcpu, ex_no, error_code);
5330
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005331 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005332 case AC_VECTOR:
5333 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5334 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005335 case DB_VECTOR:
5336 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5337 if (!(vcpu->guest_debug &
5338 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005339 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005340 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005341 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5342 skip_emulated_instruction(vcpu);
5343
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005344 kvm_queue_exception(vcpu, DB_VECTOR);
5345 return 1;
5346 }
5347 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5348 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5349 /* fall through */
5350 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005351 /*
5352 * Update instruction length as we may reinject #BP from
5353 * user space while in guest debugging mode. Reading it for
5354 * #DB as well causes no harm, it is not used in that case.
5355 */
5356 vmx->vcpu.arch.event_exit_inst_len =
5357 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005358 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005359 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005360 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5361 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005362 break;
5363 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005364 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5365 kvm_run->ex.exception = ex_no;
5366 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005367 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005368 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005369 return 0;
5370}
5371
Avi Kivity851ba692009-08-24 11:10:17 +03005372static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005373{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005374 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005375 return 1;
5376}
5377
Avi Kivity851ba692009-08-24 11:10:17 +03005378static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005379{
Avi Kivity851ba692009-08-24 11:10:17 +03005380 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005381 return 0;
5382}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005383
Avi Kivity851ba692009-08-24 11:10:17 +03005384static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005385{
He, Qingbfdaab02007-09-12 14:18:28 +08005386 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005387 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005388 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005389
He, Qingbfdaab02007-09-12 14:18:28 +08005390 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005391 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005392 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005393
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005394 ++vcpu->stat.io_exits;
5395
5396 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005397 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005398
5399 port = exit_qualification >> 16;
5400 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005401 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005402
5403 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005404}
5405
Ingo Molnar102d8322007-02-19 14:37:47 +02005406static void
5407vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5408{
5409 /*
5410 * Patch in the VMCALL instruction:
5411 */
5412 hypercall[0] = 0x0f;
5413 hypercall[1] = 0x01;
5414 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005415}
5416
Wincy Vanb9c237b2015-02-03 23:56:30 +08005417static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005418{
5419 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005420 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005421
Wincy Vanb9c237b2015-02-03 23:56:30 +08005422 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005423 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5424 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5425 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5426 return (val & always_on) == always_on;
5427}
5428
Guo Chao0fa06072012-06-28 15:16:19 +08005429/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005430static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5431{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005432 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005433 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5434 unsigned long orig_val = val;
5435
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005436 /*
5437 * We get here when L2 changed cr0 in a way that did not change
5438 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005439 * but did change L0 shadowed bits. So we first calculate the
5440 * effective cr0 value that L1 would like to write into the
5441 * hardware. It consists of the L2-owned bits from the new
5442 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005443 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005444 val = (val & ~vmcs12->cr0_guest_host_mask) |
5445 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5446
Wincy Vanb9c237b2015-02-03 23:56:30 +08005447 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005448 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005449
5450 if (kvm_set_cr0(vcpu, val))
5451 return 1;
5452 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005453 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005454 } else {
5455 if (to_vmx(vcpu)->nested.vmxon &&
5456 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5457 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005458 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005459 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005460}
5461
5462static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5463{
5464 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005465 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5466 unsigned long orig_val = val;
5467
5468 /* analogously to handle_set_cr0 */
5469 val = (val & ~vmcs12->cr4_guest_host_mask) |
5470 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5471 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005472 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005473 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005474 return 0;
5475 } else
5476 return kvm_set_cr4(vcpu, val);
5477}
5478
5479/* called to set cr0 as approriate for clts instruction exit. */
5480static void handle_clts(struct kvm_vcpu *vcpu)
5481{
5482 if (is_guest_mode(vcpu)) {
5483 /*
5484 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5485 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5486 * just pretend it's off (also in arch.cr0 for fpu_activate).
5487 */
5488 vmcs_writel(CR0_READ_SHADOW,
5489 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5490 vcpu->arch.cr0 &= ~X86_CR0_TS;
5491 } else
5492 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5493}
5494
Avi Kivity851ba692009-08-24 11:10:17 +03005495static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005496{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005497 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005498 int cr;
5499 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005500 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005501
He, Qingbfdaab02007-09-12 14:18:28 +08005502 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005503 cr = exit_qualification & 15;
5504 reg = (exit_qualification >> 8) & 15;
5505 switch ((exit_qualification >> 4) & 3) {
5506 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005507 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005508 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005509 switch (cr) {
5510 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005511 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005512 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005513 return 1;
5514 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005515 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005516 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005517 return 1;
5518 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005519 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005520 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005521 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005522 case 8: {
5523 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005524 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005525 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005526 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005527 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005528 return 1;
5529 if (cr8_prev <= cr8)
5530 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005531 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005532 return 0;
5533 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005534 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005535 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005536 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005537 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005538 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005539 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005540 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005541 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542 case 1: /*mov from cr*/
5543 switch (cr) {
5544 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005545 val = kvm_read_cr3(vcpu);
5546 kvm_register_write(vcpu, reg, val);
5547 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005548 skip_emulated_instruction(vcpu);
5549 return 1;
5550 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005551 val = kvm_get_cr8(vcpu);
5552 kvm_register_write(vcpu, reg, val);
5553 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005554 skip_emulated_instruction(vcpu);
5555 return 1;
5556 }
5557 break;
5558 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005559 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005560 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005561 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005562
5563 skip_emulated_instruction(vcpu);
5564 return 1;
5565 default:
5566 break;
5567 }
Avi Kivity851ba692009-08-24 11:10:17 +03005568 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005569 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005570 (int)(exit_qualification >> 4) & 3, cr);
5571 return 0;
5572}
5573
Avi Kivity851ba692009-08-24 11:10:17 +03005574static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005575{
He, Qingbfdaab02007-09-12 14:18:28 +08005576 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005577 int dr, dr7, reg;
5578
5579 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5580 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5581
5582 /* First, if DR does not exist, trigger UD */
5583 if (!kvm_require_dr(vcpu, dr))
5584 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005585
Jan Kiszkaf2483412010-01-20 18:20:20 +01005586 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005587 if (!kvm_require_cpl(vcpu, 0))
5588 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005589 dr7 = vmcs_readl(GUEST_DR7);
5590 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005591 /*
5592 * As the vm-exit takes precedence over the debug trap, we
5593 * need to emulate the latter, either for the host or the
5594 * guest debugging itself.
5595 */
5596 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005597 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005598 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005599 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005600 vcpu->run->debug.arch.exception = DB_VECTOR;
5601 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005602 return 0;
5603 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005604 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005605 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005606 kvm_queue_exception(vcpu, DB_VECTOR);
5607 return 1;
5608 }
5609 }
5610
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005611 if (vcpu->guest_debug == 0) {
5612 u32 cpu_based_vm_exec_control;
5613
5614 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5615 cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5616 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5617
5618 /*
5619 * No more DR vmexits; force a reload of the debug registers
5620 * and reenter on this instruction. The next vmexit will
5621 * retrieve the full state of the debug registers.
5622 */
5623 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5624 return 1;
5625 }
5626
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005627 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5628 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005629 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005630
5631 if (kvm_get_dr(vcpu, dr, &val))
5632 return 1;
5633 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005634 } else
Nadav Amit57773922014-06-18 17:19:23 +03005635 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005636 return 1;
5637
Avi Kivity6aa8b732006-12-10 02:21:36 -08005638 skip_emulated_instruction(vcpu);
5639 return 1;
5640}
5641
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005642static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5643{
5644 return vcpu->arch.dr6;
5645}
5646
5647static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5648{
5649}
5650
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005651static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5652{
5653 u32 cpu_based_vm_exec_control;
5654
5655 get_debugreg(vcpu->arch.db[0], 0);
5656 get_debugreg(vcpu->arch.db[1], 1);
5657 get_debugreg(vcpu->arch.db[2], 2);
5658 get_debugreg(vcpu->arch.db[3], 3);
5659 get_debugreg(vcpu->arch.dr6, 6);
5660 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5661
5662 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
5663
5664 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5665 cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING;
5666 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5667}
5668
Gleb Natapov020df072010-04-13 10:05:23 +03005669static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5670{
5671 vmcs_writel(GUEST_DR7, val);
5672}
5673
Avi Kivity851ba692009-08-24 11:10:17 +03005674static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005675{
Avi Kivity06465c52007-02-28 20:46:53 +02005676 kvm_emulate_cpuid(vcpu);
5677 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005678}
5679
Avi Kivity851ba692009-08-24 11:10:17 +03005680static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005681{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005682 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005683 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005684
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005685 msr_info.index = ecx;
5686 msr_info.host_initiated = false;
5687 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005688 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005689 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005690 return 1;
5691 }
5692
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005693 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005694
Avi Kivity6aa8b732006-12-10 02:21:36 -08005695 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005696 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5697 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005698 skip_emulated_instruction(vcpu);
5699 return 1;
5700}
5701
Avi Kivity851ba692009-08-24 11:10:17 +03005702static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005703{
Will Auld8fe8ab42012-11-29 12:42:12 -08005704 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005705 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5706 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5707 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708
Will Auld8fe8ab42012-11-29 12:42:12 -08005709 msr.data = data;
5710 msr.index = ecx;
5711 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005712 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005713 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005714 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005715 return 1;
5716 }
5717
Avi Kivity59200272010-01-25 19:47:02 +02005718 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005719 skip_emulated_instruction(vcpu);
5720 return 1;
5721}
5722
Avi Kivity851ba692009-08-24 11:10:17 +03005723static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005724{
Avi Kivity3842d132010-07-27 12:30:24 +03005725 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005726 return 1;
5727}
5728
Avi Kivity851ba692009-08-24 11:10:17 +03005729static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005730{
Eddie Dong85f455f2007-07-06 12:20:49 +03005731 u32 cpu_based_vm_exec_control;
5732
5733 /* clear pending irq */
5734 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5735 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5736 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005737
Avi Kivity3842d132010-07-27 12:30:24 +03005738 kvm_make_request(KVM_REQ_EVENT, vcpu);
5739
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005740 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005741 return 1;
5742}
5743
Avi Kivity851ba692009-08-24 11:10:17 +03005744static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005745{
Avi Kivityd3bef152007-06-05 15:53:05 +03005746 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005747}
5748
Avi Kivity851ba692009-08-24 11:10:17 +03005749static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005750{
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005751 kvm_emulate_hypercall(vcpu);
5752 return 1;
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 Kivityde87dcdd2012-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. */
6439 item = list_entry(vmx->nested.vmcs02_pool.prev,
6440 struct vmcs02_list, list);
6441 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 Kiszkaf41245002014-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 Kiszkaf41245002014-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;
Nadav Har'El644d7112011-05-25 23:12:35 +03007756 return vmcs12->exception_bitmap &
7757 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7758 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007759 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007760 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007761 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007762 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007763 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007764 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007765 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007766 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007767 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007768 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007769 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007770 return false;
7771 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007772 case EXIT_REASON_HLT:
7773 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7774 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007775 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007776 case EXIT_REASON_INVLPG:
7777 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7778 case EXIT_REASON_RDPMC:
7779 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007780 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007781 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7782 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7783 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7784 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7785 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7786 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007787 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007788 /*
7789 * VMX instructions trap unconditionally. This allows L1 to
7790 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7791 */
Joe Perches1d804d02015-03-30 16:46:09 -07007792 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007793 case EXIT_REASON_CR_ACCESS:
7794 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7795 case EXIT_REASON_DR_ACCESS:
7796 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7797 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007798 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007799 case EXIT_REASON_MSR_READ:
7800 case EXIT_REASON_MSR_WRITE:
7801 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7802 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007803 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007804 case EXIT_REASON_MWAIT_INSTRUCTION:
7805 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007806 case EXIT_REASON_MONITOR_TRAP_FLAG:
7807 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007808 case EXIT_REASON_MONITOR_INSTRUCTION:
7809 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7810 case EXIT_REASON_PAUSE_INSTRUCTION:
7811 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7812 nested_cpu_has2(vmcs12,
7813 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7814 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07007815 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007816 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007817 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03007818 case EXIT_REASON_APIC_ACCESS:
7819 return nested_cpu_has2(vmcs12,
7820 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08007821 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08007822 case EXIT_REASON_EOI_INDUCED:
7823 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07007824 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007825 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007826 /*
7827 * L0 always deals with the EPT violation. If nested EPT is
7828 * used, and the nested mmu code discovers that the address is
7829 * missing in the guest EPT table (EPT12), the EPT violation
7830 * will be injected with nested_ept_inject_page_fault()
7831 */
Joe Perches1d804d02015-03-30 16:46:09 -07007832 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007833 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007834 /*
7835 * L2 never uses directly L1's EPT, but rather L0's own EPT
7836 * table (shadow on EPT) or a merged EPT table that L0 built
7837 * (EPT on EPT). So any problems with the structure of the
7838 * table is L0's fault.
7839 */
Joe Perches1d804d02015-03-30 16:46:09 -07007840 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007841 case EXIT_REASON_WBINVD:
7842 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7843 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07007844 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08007845 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
7846 /*
7847 * This should never happen, since it is not possible to
7848 * set XSS to a non-zero value---neither in L1 nor in L2.
7849 * If if it were, XSS would have to be checked against
7850 * the XSS exit bitmap in vmcs12.
7851 */
7852 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007853 case EXIT_REASON_PCOMMIT:
7854 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03007855 default:
Joe Perches1d804d02015-03-30 16:46:09 -07007856 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007857 }
7858}
7859
Avi Kivity586f9602010-11-18 13:09:54 +02007860static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7861{
7862 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7863 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7864}
7865
Kai Huanga3eaa862015-11-04 13:46:05 +08007866static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007867{
7868 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08007869
7870 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
7871 if (!pml_pg)
7872 return -ENOMEM;
7873
7874 vmx->pml_pg = pml_pg;
7875
7876 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
7877 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7878
Kai Huang843e4332015-01-28 10:54:28 +08007879 return 0;
7880}
7881
Kai Huanga3eaa862015-11-04 13:46:05 +08007882static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007883{
Kai Huanga3eaa862015-11-04 13:46:05 +08007884 if (vmx->pml_pg) {
7885 __free_page(vmx->pml_pg);
7886 vmx->pml_pg = NULL;
7887 }
Kai Huang843e4332015-01-28 10:54:28 +08007888}
7889
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007890static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08007891{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007892 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08007893 u64 *pml_buf;
7894 u16 pml_idx;
7895
7896 pml_idx = vmcs_read16(GUEST_PML_INDEX);
7897
7898 /* Do nothing if PML buffer is empty */
7899 if (pml_idx == (PML_ENTITY_NUM - 1))
7900 return;
7901
7902 /* PML index always points to next available PML buffer entity */
7903 if (pml_idx >= PML_ENTITY_NUM)
7904 pml_idx = 0;
7905 else
7906 pml_idx++;
7907
7908 pml_buf = page_address(vmx->pml_pg);
7909 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
7910 u64 gpa;
7911
7912 gpa = pml_buf[pml_idx];
7913 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007914 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08007915 }
7916
7917 /* reset PML index */
7918 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7919}
7920
7921/*
7922 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
7923 * Called before reporting dirty_bitmap to userspace.
7924 */
7925static void kvm_flush_pml_buffers(struct kvm *kvm)
7926{
7927 int i;
7928 struct kvm_vcpu *vcpu;
7929 /*
7930 * We only need to kick vcpu out of guest mode here, as PML buffer
7931 * is flushed at beginning of all VMEXITs, and it's obvious that only
7932 * vcpus running in guest are possible to have unflushed GPAs in PML
7933 * buffer.
7934 */
7935 kvm_for_each_vcpu(i, vcpu, kvm)
7936 kvm_vcpu_kick(vcpu);
7937}
7938
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007939static void vmx_dump_sel(char *name, uint32_t sel)
7940{
7941 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
7942 name, vmcs_read32(sel),
7943 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
7944 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
7945 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
7946}
7947
7948static void vmx_dump_dtsel(char *name, uint32_t limit)
7949{
7950 pr_err("%s limit=0x%08x, base=0x%016lx\n",
7951 name, vmcs_read32(limit),
7952 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
7953}
7954
7955static void dump_vmcs(void)
7956{
7957 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
7958 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
7959 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7960 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
7961 u32 secondary_exec_control = 0;
7962 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01007963 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007964 int i, n;
7965
7966 if (cpu_has_secondary_exec_ctrls())
7967 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7968
7969 pr_err("*** Guest State ***\n");
7970 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7971 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
7972 vmcs_readl(CR0_GUEST_HOST_MASK));
7973 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7974 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
7975 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
7976 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
7977 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
7978 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01007979 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
7980 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
7981 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
7982 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007983 }
7984 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
7985 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
7986 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
7987 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
7988 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
7989 vmcs_readl(GUEST_SYSENTER_ESP),
7990 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
7991 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
7992 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
7993 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
7994 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
7995 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
7996 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
7997 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
7998 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
7999 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8000 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8001 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8002 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008003 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8004 efer, vmcs_read64(GUEST_IA32_PAT));
8005 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8006 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008007 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8008 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008009 pr_err("PerfGlobCtl = 0x%016llx\n",
8010 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008011 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008012 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008013 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8014 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8015 vmcs_read32(GUEST_ACTIVITY_STATE));
8016 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8017 pr_err("InterruptStatus = %04x\n",
8018 vmcs_read16(GUEST_INTR_STATUS));
8019
8020 pr_err("*** Host State ***\n");
8021 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8022 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8023 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8024 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8025 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8026 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8027 vmcs_read16(HOST_TR_SELECTOR));
8028 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8029 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8030 vmcs_readl(HOST_TR_BASE));
8031 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8032 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8033 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8034 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8035 vmcs_readl(HOST_CR4));
8036 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8037 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8038 vmcs_read32(HOST_IA32_SYSENTER_CS),
8039 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8040 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008041 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8042 vmcs_read64(HOST_IA32_EFER),
8043 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008044 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008045 pr_err("PerfGlobCtl = 0x%016llx\n",
8046 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008047
8048 pr_err("*** Control State ***\n");
8049 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8050 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8051 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8052 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8053 vmcs_read32(EXCEPTION_BITMAP),
8054 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8055 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8056 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8057 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8058 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8059 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8060 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8061 vmcs_read32(VM_EXIT_INTR_INFO),
8062 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8063 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8064 pr_err(" reason=%08x qualification=%016lx\n",
8065 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8066 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8067 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8068 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008069 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008070 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008071 pr_err("TSC Multiplier = 0x%016llx\n",
8072 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008073 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8074 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8075 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8076 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8077 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008078 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008079 n = vmcs_read32(CR3_TARGET_COUNT);
8080 for (i = 0; i + 1 < n; i += 4)
8081 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8082 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8083 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8084 if (i < n)
8085 pr_err("CR3 target%u=%016lx\n",
8086 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8087 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8088 pr_err("PLE Gap=%08x Window=%08x\n",
8089 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8090 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8091 pr_err("Virtual processor ID = 0x%04x\n",
8092 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8093}
8094
Avi Kivity6aa8b732006-12-10 02:21:36 -08008095/*
8096 * The guest has exited. See if we can fix it or if we need userspace
8097 * assistance.
8098 */
Avi Kivity851ba692009-08-24 11:10:17 +03008099static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008100{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008101 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008102 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008103 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008104
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008105 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8106
Kai Huang843e4332015-01-28 10:54:28 +08008107 /*
8108 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8109 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8110 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8111 * mode as if vcpus is in root mode, the PML buffer must has been
8112 * flushed already.
8113 */
8114 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008115 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008116
Mohammed Gamal80ced182009-09-01 12:48:18 +02008117 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008118 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008119 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008120
Nadav Har'El644d7112011-05-25 23:12:35 +03008121 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008122 nested_vmx_vmexit(vcpu, exit_reason,
8123 vmcs_read32(VM_EXIT_INTR_INFO),
8124 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008125 return 1;
8126 }
8127
Mohammed Gamal51207022010-05-31 22:40:54 +03008128 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008129 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008130 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8131 vcpu->run->fail_entry.hardware_entry_failure_reason
8132 = exit_reason;
8133 return 0;
8134 }
8135
Avi Kivity29bd8a72007-09-10 17:27:03 +03008136 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008137 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8138 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008139 = vmcs_read32(VM_INSTRUCTION_ERROR);
8140 return 0;
8141 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008142
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008143 /*
8144 * Note:
8145 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8146 * delivery event since it indicates guest is accessing MMIO.
8147 * The vm-exit can be triggered again after return to guest that
8148 * will cause infinite loop.
8149 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008150 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008151 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008152 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008153 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8154 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8155 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8156 vcpu->run->internal.ndata = 2;
8157 vcpu->run->internal.data[0] = vectoring_info;
8158 vcpu->run->internal.data[1] = exit_reason;
8159 return 0;
8160 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008161
Nadav Har'El644d7112011-05-25 23:12:35 +03008162 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8163 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008164 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008165 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008166 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008167 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008168 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008169 /*
8170 * This CPU don't support us in finding the end of an
8171 * NMI-blocked window if the guest runs with IRQs
8172 * disabled. So we pull the trigger after 1 s of
8173 * futile waiting, but inform the user about this.
8174 */
8175 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8176 "state on VCPU %d after 1 s timeout\n",
8177 __func__, vcpu->vcpu_id);
8178 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008179 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008180 }
8181
Avi Kivity6aa8b732006-12-10 02:21:36 -08008182 if (exit_reason < kvm_vmx_max_exit_handlers
8183 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008184 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008185 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008186 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8187 kvm_queue_exception(vcpu, UD_VECTOR);
8188 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008189 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008190}
8191
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008192static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008193{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008194 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8195
8196 if (is_guest_mode(vcpu) &&
8197 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8198 return;
8199
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008200 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008201 vmcs_write32(TPR_THRESHOLD, 0);
8202 return;
8203 }
8204
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008205 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008206}
8207
Yang Zhang8d146952013-01-25 10:18:50 +08008208static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8209{
8210 u32 sec_exec_control;
8211
8212 /*
8213 * There is not point to enable virtualize x2apic without enable
8214 * apicv
8215 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008216 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008217 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008218 return;
8219
Paolo Bonzini35754c92015-07-29 12:05:37 +02008220 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008221 return;
8222
8223 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8224
8225 if (set) {
8226 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8227 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8228 } else {
8229 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8230 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8231 }
8232 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8233
8234 vmx_set_msr_bitmap(vcpu);
8235}
8236
Tang Chen38b99172014-09-24 15:57:54 +08008237static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8238{
8239 struct vcpu_vmx *vmx = to_vmx(vcpu);
8240
8241 /*
8242 * Currently we do not handle the nested case where L2 has an
8243 * APIC access page of its own; that page is still pinned.
8244 * Hence, we skip the case where the VCPU is in guest mode _and_
8245 * L1 prepared an APIC access page for L2.
8246 *
8247 * For the case where L1 and L2 share the same APIC access page
8248 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8249 * in the vmcs12), this function will only update either the vmcs01
8250 * or the vmcs02. If the former, the vmcs02 will be updated by
8251 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8252 * the next L2->L1 exit.
8253 */
8254 if (!is_guest_mode(vcpu) ||
8255 !nested_cpu_has2(vmx->nested.current_vmcs12,
8256 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8257 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8258}
8259
Yang Zhangc7c9c562013-01-25 10:18:51 +08008260static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
8261{
8262 u16 status;
8263 u8 old;
8264
Yang Zhangc7c9c562013-01-25 10:18:51 +08008265 if (isr == -1)
8266 isr = 0;
8267
8268 status = vmcs_read16(GUEST_INTR_STATUS);
8269 old = status >> 8;
8270 if (isr != old) {
8271 status &= 0xff;
8272 status |= isr << 8;
8273 vmcs_write16(GUEST_INTR_STATUS, status);
8274 }
8275}
8276
8277static void vmx_set_rvi(int vector)
8278{
8279 u16 status;
8280 u8 old;
8281
Wei Wang4114c272014-11-05 10:53:43 +08008282 if (vector == -1)
8283 vector = 0;
8284
Yang Zhangc7c9c562013-01-25 10:18:51 +08008285 status = vmcs_read16(GUEST_INTR_STATUS);
8286 old = (u8)status & 0xff;
8287 if ((u8)vector != old) {
8288 status &= ~0xff;
8289 status |= (u8)vector;
8290 vmcs_write16(GUEST_INTR_STATUS, status);
8291 }
8292}
8293
8294static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8295{
Wanpeng Li963fee12014-07-17 19:03:00 +08008296 if (!is_guest_mode(vcpu)) {
8297 vmx_set_rvi(max_irr);
8298 return;
8299 }
8300
Wei Wang4114c272014-11-05 10:53:43 +08008301 if (max_irr == -1)
8302 return;
8303
Wanpeng Li963fee12014-07-17 19:03:00 +08008304 /*
Wei Wang4114c272014-11-05 10:53:43 +08008305 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8306 * handles it.
8307 */
8308 if (nested_exit_on_intr(vcpu))
8309 return;
8310
8311 /*
8312 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008313 * is run without virtual interrupt delivery.
8314 */
8315 if (!kvm_event_needs_reinjection(vcpu) &&
8316 vmx_interrupt_allowed(vcpu)) {
8317 kvm_queue_interrupt(vcpu, max_irr, false);
8318 vmx_inject_irq(vcpu);
8319 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008320}
8321
Andrey Smetanin63086302015-11-10 15:36:32 +03008322static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008323{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008324 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008325 return;
8326
Yang Zhangc7c9c562013-01-25 10:18:51 +08008327 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8328 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8329 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8330 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8331}
8332
Avi Kivity51aa01d2010-07-20 14:31:20 +03008333static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008334{
Avi Kivity00eba012011-03-07 17:24:54 +02008335 u32 exit_intr_info;
8336
8337 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8338 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8339 return;
8340
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008341 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008342 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008343
8344 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008345 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008346 kvm_machine_check();
8347
Gleb Natapov20f65982009-05-11 13:35:55 +03008348 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008349 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008350 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8351 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008352 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008353 kvm_after_handle_nmi(&vmx->vcpu);
8354 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008355}
Gleb Natapov20f65982009-05-11 13:35:55 +03008356
Yang Zhanga547c6d2013-04-11 19:25:10 +08008357static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8358{
8359 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8360
8361 /*
8362 * If external interrupt exists, IF bit is set in rflags/eflags on the
8363 * interrupt stack frame, and interrupt will be enabled on a return
8364 * from interrupt handler.
8365 */
8366 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8367 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8368 unsigned int vector;
8369 unsigned long entry;
8370 gate_desc *desc;
8371 struct vcpu_vmx *vmx = to_vmx(vcpu);
8372#ifdef CONFIG_X86_64
8373 unsigned long tmp;
8374#endif
8375
8376 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8377 desc = (gate_desc *)vmx->host_idt_base + vector;
8378 entry = gate_offset(*desc);
8379 asm volatile(
8380#ifdef CONFIG_X86_64
8381 "mov %%" _ASM_SP ", %[sp]\n\t"
8382 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8383 "push $%c[ss]\n\t"
8384 "push %[sp]\n\t"
8385#endif
8386 "pushf\n\t"
8387 "orl $0x200, (%%" _ASM_SP ")\n\t"
8388 __ASM_SIZE(push) " $%c[cs]\n\t"
8389 "call *%[entry]\n\t"
8390 :
8391#ifdef CONFIG_X86_64
8392 [sp]"=&r"(tmp)
8393#endif
8394 :
8395 [entry]"r"(entry),
8396 [ss]"i"(__KERNEL_DS),
8397 [cs]"i"(__KERNEL_CS)
8398 );
8399 } else
8400 local_irq_enable();
8401}
8402
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008403static bool vmx_has_high_real_mode_segbase(void)
8404{
8405 return enable_unrestricted_guest || emulate_invalid_guest_state;
8406}
8407
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008408static bool vmx_mpx_supported(void)
8409{
8410 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8411 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8412}
8413
Wanpeng Li55412b22014-12-02 19:21:30 +08008414static bool vmx_xsaves_supported(void)
8415{
8416 return vmcs_config.cpu_based_2nd_exec_ctrl &
8417 SECONDARY_EXEC_XSAVES;
8418}
8419
Avi Kivity51aa01d2010-07-20 14:31:20 +03008420static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8421{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008422 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008423 bool unblock_nmi;
8424 u8 vector;
8425 bool idtv_info_valid;
8426
8427 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008428
Avi Kivitycf393f72008-07-01 16:20:21 +03008429 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008430 if (vmx->nmi_known_unmasked)
8431 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008432 /*
8433 * Can't use vmx->exit_intr_info since we're not sure what
8434 * the exit reason is.
8435 */
8436 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008437 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8438 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8439 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008440 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008441 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8442 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008443 * SDM 3: 23.2.2 (September 2008)
8444 * Bit 12 is undefined in any of the following cases:
8445 * If the VM exit sets the valid bit in the IDT-vectoring
8446 * information field.
8447 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008448 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008449 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8450 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008451 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8452 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008453 else
8454 vmx->nmi_known_unmasked =
8455 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8456 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008457 } else if (unlikely(vmx->soft_vnmi_blocked))
8458 vmx->vnmi_blocked_time +=
8459 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008460}
8461
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008462static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008463 u32 idt_vectoring_info,
8464 int instr_len_field,
8465 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008466{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008467 u8 vector;
8468 int type;
8469 bool idtv_info_valid;
8470
8471 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008472
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008473 vcpu->arch.nmi_injected = false;
8474 kvm_clear_exception_queue(vcpu);
8475 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008476
8477 if (!idtv_info_valid)
8478 return;
8479
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008480 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008481
Avi Kivity668f6122008-07-02 09:28:55 +03008482 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8483 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008484
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008485 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008486 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008487 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008488 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008489 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008490 * Clear bit "block by NMI" before VM entry if a NMI
8491 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008492 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008493 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008494 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008495 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008496 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008497 /* fall through */
8498 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008499 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008500 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008501 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008502 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008503 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008504 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008505 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008506 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008507 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008508 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008509 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008510 break;
8511 default:
8512 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008513 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008514}
8515
Avi Kivity83422e12010-07-20 14:43:23 +03008516static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8517{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008518 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008519 VM_EXIT_INSTRUCTION_LEN,
8520 IDT_VECTORING_ERROR_CODE);
8521}
8522
Avi Kivityb463a6f2010-07-20 15:06:17 +03008523static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8524{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008525 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008526 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8527 VM_ENTRY_INSTRUCTION_LEN,
8528 VM_ENTRY_EXCEPTION_ERROR_CODE);
8529
8530 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8531}
8532
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008533static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8534{
8535 int i, nr_msrs;
8536 struct perf_guest_switch_msr *msrs;
8537
8538 msrs = perf_guest_get_msrs(&nr_msrs);
8539
8540 if (!msrs)
8541 return;
8542
8543 for (i = 0; i < nr_msrs; i++)
8544 if (msrs[i].host == msrs[i].guest)
8545 clear_atomic_switch_msr(vmx, msrs[i].msr);
8546 else
8547 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8548 msrs[i].host);
8549}
8550
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008551static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008552{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008553 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008554 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008555
8556 /* Record the guest's net vcpu time for enforced NMI injections. */
8557 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8558 vmx->entry_time = ktime_get();
8559
8560 /* Don't enter VMX if guest state is invalid, let the exit handler
8561 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008562 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008563 return;
8564
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008565 if (vmx->ple_window_dirty) {
8566 vmx->ple_window_dirty = false;
8567 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8568 }
8569
Abel Gordon012f83c2013-04-18 14:39:25 +03008570 if (vmx->nested.sync_shadow_vmcs) {
8571 copy_vmcs12_to_shadow(vmx);
8572 vmx->nested.sync_shadow_vmcs = false;
8573 }
8574
Avi Kivity104f2262010-11-18 13:12:52 +02008575 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8576 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8577 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8578 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8579
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008580 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008581 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8582 vmcs_writel(HOST_CR4, cr4);
8583 vmx->host_state.vmcs_host_cr4 = cr4;
8584 }
8585
Avi Kivity104f2262010-11-18 13:12:52 +02008586 /* When single-stepping over STI and MOV SS, we must clear the
8587 * corresponding interruptibility bits in the guest state. Otherwise
8588 * vmentry fails as it then expects bit 14 (BS) in pending debug
8589 * exceptions being set, but that's not correct for the guest debugging
8590 * case. */
8591 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8592 vmx_set_interrupt_shadow(vcpu, 0);
8593
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008594 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008595 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008596
Nadav Har'Eld462b812011-05-24 15:26:10 +03008597 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008598 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008599 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008600 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8601 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8602 "push %%" _ASM_CX " \n\t"
8603 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03008604 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008605 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008606 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03008607 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008608 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008609 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8610 "mov %%cr2, %%" _ASM_DX " \n\t"
8611 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008612 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008613 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008614 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008615 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008616 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008617 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008618 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8619 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8620 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8621 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8622 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8623 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008624#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008625 "mov %c[r8](%0), %%r8 \n\t"
8626 "mov %c[r9](%0), %%r9 \n\t"
8627 "mov %c[r10](%0), %%r10 \n\t"
8628 "mov %c[r11](%0), %%r11 \n\t"
8629 "mov %c[r12](%0), %%r12 \n\t"
8630 "mov %c[r13](%0), %%r13 \n\t"
8631 "mov %c[r14](%0), %%r14 \n\t"
8632 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008633#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008634 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008635
Avi Kivity6aa8b732006-12-10 02:21:36 -08008636 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008637 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008638 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008639 "jmp 2f \n\t"
8640 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8641 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008642 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008643 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008644 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008645 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8646 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8647 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8648 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8649 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8650 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8651 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008652#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008653 "mov %%r8, %c[r8](%0) \n\t"
8654 "mov %%r9, %c[r9](%0) \n\t"
8655 "mov %%r10, %c[r10](%0) \n\t"
8656 "mov %%r11, %c[r11](%0) \n\t"
8657 "mov %%r12, %c[r12](%0) \n\t"
8658 "mov %%r13, %c[r13](%0) \n\t"
8659 "mov %%r14, %c[r14](%0) \n\t"
8660 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008661#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008662 "mov %%cr2, %%" _ASM_AX " \n\t"
8663 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008664
Avi Kivityb188c81f2012-09-16 15:10:58 +03008665 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008666 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008667 ".pushsection .rodata \n\t"
8668 ".global vmx_return \n\t"
8669 "vmx_return: " _ASM_PTR " 2b \n\t"
8670 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008671 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008672 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008673 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +03008674 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008675 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8676 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8677 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8678 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8679 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8680 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8681 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008682#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008683 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8684 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8685 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8686 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8687 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8688 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8689 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8690 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008691#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008692 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8693 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008694 : "cc", "memory"
8695#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008696 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008697 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008698#else
8699 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008700#endif
8701 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008702
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008703 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8704 if (debugctlmsr)
8705 update_debugctlmsr(debugctlmsr);
8706
Avi Kivityaa67f602012-08-01 16:48:03 +03008707#ifndef CONFIG_X86_64
8708 /*
8709 * The sysexit path does not restore ds/es, so we must set them to
8710 * a reasonable value ourselves.
8711 *
8712 * We can't defer this to vmx_load_host_state() since that function
8713 * may be executed in interrupt context, which saves and restore segments
8714 * around it, nullifying its effect.
8715 */
8716 loadsegment(ds, __USER_DS);
8717 loadsegment(es, __USER_DS);
8718#endif
8719
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008720 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008721 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008722 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008723 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008724 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008725 vcpu->arch.regs_dirty = 0;
8726
Avi Kivity1155f762007-11-22 11:30:47 +02008727 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8728
Nadav Har'Eld462b812011-05-24 15:26:10 +03008729 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008730
Avi Kivity51aa01d2010-07-20 14:31:20 +03008731 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008732
Gleb Natapove0b890d2013-09-25 12:51:33 +03008733 /*
8734 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8735 * we did not inject a still-pending event to L1 now because of
8736 * nested_run_pending, we need to re-enable this bit.
8737 */
8738 if (vmx->nested.nested_run_pending)
8739 kvm_make_request(KVM_REQ_EVENT, vcpu);
8740
8741 vmx->nested.nested_run_pending = 0;
8742
Avi Kivity51aa01d2010-07-20 14:31:20 +03008743 vmx_complete_atomic_exit(vmx);
8744 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008745 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008746}
8747
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008748static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8749{
8750 struct vcpu_vmx *vmx = to_vmx(vcpu);
8751 int cpu;
8752
8753 if (vmx->loaded_vmcs == &vmx->vmcs01)
8754 return;
8755
8756 cpu = get_cpu();
8757 vmx->loaded_vmcs = &vmx->vmcs01;
8758 vmx_vcpu_put(vcpu);
8759 vmx_vcpu_load(vcpu, cpu);
8760 vcpu->cpu = cpu;
8761 put_cpu();
8762}
8763
Avi Kivity6aa8b732006-12-10 02:21:36 -08008764static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8765{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008766 struct vcpu_vmx *vmx = to_vmx(vcpu);
8767
Kai Huang843e4332015-01-28 10:54:28 +08008768 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008769 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008770 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008771 leave_guest_mode(vcpu);
8772 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02008773 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008774 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008775 kfree(vmx->guest_msrs);
8776 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10008777 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008778}
8779
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008780static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008781{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008782 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10008783 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03008784 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008785
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008786 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008787 return ERR_PTR(-ENOMEM);
8788
Wanpeng Li991e7a02015-09-16 17:30:05 +08008789 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08008790
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008791 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
8792 if (err)
8793 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008794
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008795 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02008796 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
8797 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03008798
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008799 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008800 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008801 goto uninit_vcpu;
8802 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008803
Nadav Har'Eld462b812011-05-24 15:26:10 +03008804 vmx->loaded_vmcs = &vmx->vmcs01;
8805 vmx->loaded_vmcs->vmcs = alloc_vmcs();
8806 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008807 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03008808 if (!vmm_exclusive)
8809 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
8810 loaded_vmcs_init(vmx->loaded_vmcs);
8811 if (!vmm_exclusive)
8812 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008813
Avi Kivity15ad7142007-07-11 18:17:21 +03008814 cpu = get_cpu();
8815 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10008816 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10008817 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008818 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03008819 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008820 if (err)
8821 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008822 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008823 err = alloc_apic_access_page(kvm);
8824 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02008825 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02008826 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008827
Sheng Yangb927a3c2009-07-21 10:42:48 +08008828 if (enable_ept) {
8829 if (!kvm->arch.ept_identity_map_addr)
8830 kvm->arch.ept_identity_map_addr =
8831 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08008832 err = init_rmode_identity_map(kvm);
8833 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02008834 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08008835 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08008836
Wanpeng Li5c614b32015-10-13 09:18:36 -07008837 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08008838 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07008839 vmx->nested.vpid02 = allocate_vpid();
8840 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08008841
Wincy Van705699a2015-02-03 23:58:17 +08008842 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03008843 vmx->nested.current_vmptr = -1ull;
8844 vmx->nested.current_vmcs12 = NULL;
8845
Kai Huang843e4332015-01-28 10:54:28 +08008846 /*
8847 * If PML is turned on, failure on enabling PML just results in failure
8848 * of creating the vcpu, therefore we can simplify PML logic (by
8849 * avoiding dealing with cases, such as enabling PML partially on vcpus
8850 * for the guest, etc.
8851 */
8852 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08008853 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08008854 if (err)
8855 goto free_vmcs;
8856 }
8857
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008858 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008859
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008860free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07008861 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08008862 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008863free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008864 kfree(vmx->guest_msrs);
8865uninit_vcpu:
8866 kvm_vcpu_uninit(&vmx->vcpu);
8867free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08008868 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10008869 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008870 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008871}
8872
Yang, Sheng002c7f72007-07-31 14:23:01 +03008873static void __init vmx_check_processor_compat(void *rtn)
8874{
8875 struct vmcs_config vmcs_conf;
8876
8877 *(int *)rtn = 0;
8878 if (setup_vmcs_config(&vmcs_conf) < 0)
8879 *(int *)rtn = -EIO;
8880 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
8881 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
8882 smp_processor_id());
8883 *(int *)rtn = -EIO;
8884 }
8885}
8886
Sheng Yang67253af2008-04-25 10:20:22 +08008887static int get_ept_level(void)
8888{
8889 return VMX_EPT_DEFAULT_GAW + 1;
8890}
8891
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008892static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08008893{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008894 u8 cache;
8895 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008896
Sheng Yang522c68c2009-04-27 20:35:43 +08008897 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02008898 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08008899 * 2. EPT with VT-d:
8900 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02008901 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08008902 * b. VT-d with snooping control feature: snooping control feature of
8903 * VT-d engine can guarantee the cache correctness. Just set it
8904 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08008905 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08008906 * consistent with host MTRR
8907 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02008908 if (is_mmio) {
8909 cache = MTRR_TYPE_UNCACHABLE;
8910 goto exit;
8911 }
8912
8913 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008914 ipat = VMX_EPT_IPAT_BIT;
8915 cache = MTRR_TYPE_WRBACK;
8916 goto exit;
8917 }
8918
8919 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
8920 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02008921 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08008922 cache = MTRR_TYPE_WRBACK;
8923 else
8924 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008925 goto exit;
8926 }
8927
Xiao Guangrongff536042015-06-15 16:55:22 +08008928 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008929
8930exit:
8931 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08008932}
8933
Sheng Yang17cc3932010-01-05 19:02:27 +08008934static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02008935{
Sheng Yang878403b2010-01-05 19:02:29 +08008936 if (enable_ept && !cpu_has_vmx_ept_1g_page())
8937 return PT_DIRECTORY_LEVEL;
8938 else
8939 /* For shadow and EPT supported 1GB page */
8940 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02008941}
8942
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008943static void vmcs_set_secondary_exec_control(u32 new_ctl)
8944{
8945 /*
8946 * These bits in the secondary execution controls field
8947 * are dynamic, the others are mostly based on the hypervisor
8948 * architecture and the guest's CPUID. Do not touch the
8949 * dynamic bits.
8950 */
8951 u32 mask =
8952 SECONDARY_EXEC_SHADOW_VMCS |
8953 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
8954 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8955
8956 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8957
8958 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
8959 (new_ctl & ~mask) | (cur_ctl & mask));
8960}
8961
Sheng Yang0e851882009-12-18 16:48:46 +08008962static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
8963{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008964 struct kvm_cpuid_entry2 *best;
8965 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008966 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008967
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008968 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008969 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
8970 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008971 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08008972
Paolo Bonzini8b972652015-09-15 17:34:42 +02008973 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008974 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02008975 vmx->nested.nested_vmx_secondary_ctls_high |=
8976 SECONDARY_EXEC_RDTSCP;
8977 else
8978 vmx->nested.nested_vmx_secondary_ctls_high &=
8979 ~SECONDARY_EXEC_RDTSCP;
8980 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008981 }
Mao, Junjiead756a12012-07-02 01:18:48 +00008982
Mao, Junjiead756a12012-07-02 01:18:48 +00008983 /* Exposing INVPCID only when PCID is exposed */
8984 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
8985 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008986 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
8987 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008988 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008989
Mao, Junjiead756a12012-07-02 01:18:48 +00008990 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00008991 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00008992 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08008993
Huaitong Han45bdbcf2016-01-12 16:04:20 +08008994 if (cpu_has_secondary_exec_ctrls())
8995 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008996
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08008997 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
8998 if (guest_cpuid_has_pcommit(vcpu))
8999 vmx->nested.nested_vmx_secondary_ctls_high |=
9000 SECONDARY_EXEC_PCOMMIT;
9001 else
9002 vmx->nested.nested_vmx_secondary_ctls_high &=
9003 ~SECONDARY_EXEC_PCOMMIT;
9004 }
Sheng Yang0e851882009-12-18 16:48:46 +08009005}
9006
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009007static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9008{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009009 if (func == 1 && nested)
9010 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009011}
9012
Yang Zhang25d92082013-08-06 12:00:32 +03009013static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9014 struct x86_exception *fault)
9015{
Jan Kiszka533558b2014-01-04 18:47:20 +01009016 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9017 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009018
9019 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009020 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009021 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009022 exit_reason = EXIT_REASON_EPT_VIOLATION;
9023 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009024 vmcs12->guest_physical_address = fault->address;
9025}
9026
Nadav Har'El155a97a2013-08-05 11:07:16 +03009027/* Callbacks for nested_ept_init_mmu_context: */
9028
9029static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9030{
9031 /* return the page table to be shadowed - in our case, EPT12 */
9032 return get_vmcs12(vcpu)->ept_pointer;
9033}
9034
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009035static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009036{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009037 WARN_ON(mmu_is_nested(vcpu));
9038 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009039 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9040 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009041 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9042 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9043 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9044
9045 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009046}
9047
9048static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9049{
9050 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9051}
9052
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009053static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9054 u16 error_code)
9055{
9056 bool inequality, bit;
9057
9058 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9059 inequality =
9060 (error_code & vmcs12->page_fault_error_code_mask) !=
9061 vmcs12->page_fault_error_code_match;
9062 return inequality ^ bit;
9063}
9064
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009065static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9066 struct x86_exception *fault)
9067{
9068 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9069
9070 WARN_ON(!is_guest_mode(vcpu));
9071
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009072 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009073 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9074 vmcs_read32(VM_EXIT_INTR_INFO),
9075 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009076 else
9077 kvm_inject_page_fault(vcpu, fault);
9078}
9079
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009080static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9081 struct vmcs12 *vmcs12)
9082{
9083 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009084 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009085
9086 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009087 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9088 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009089 return false;
9090
9091 /*
9092 * Translate L1 physical address to host physical
9093 * address for vmcs02. Keep the page pinned, so this
9094 * physical address remains valid. We keep a reference
9095 * to it so we can release it later.
9096 */
9097 if (vmx->nested.apic_access_page) /* shouldn't happen */
9098 nested_release_page(vmx->nested.apic_access_page);
9099 vmx->nested.apic_access_page =
9100 nested_get_page(vcpu, vmcs12->apic_access_addr);
9101 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009102
9103 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009104 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9105 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009106 return false;
9107
9108 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9109 nested_release_page(vmx->nested.virtual_apic_page);
9110 vmx->nested.virtual_apic_page =
9111 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9112
9113 /*
9114 * Failing the vm entry is _not_ what the processor does
9115 * but it's basically the only possibility we have.
9116 * We could still enter the guest if CR8 load exits are
9117 * enabled, CR8 store exits are enabled, and virtualize APIC
9118 * access is disabled; in this case the processor would never
9119 * use the TPR shadow and we could simply clear the bit from
9120 * the execution control. But such a configuration is useless,
9121 * so let's keep the code simple.
9122 */
9123 if (!vmx->nested.virtual_apic_page)
9124 return false;
9125 }
9126
Wincy Van705699a2015-02-03 23:58:17 +08009127 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009128 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9129 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009130 return false;
9131
9132 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9133 kunmap(vmx->nested.pi_desc_page);
9134 nested_release_page(vmx->nested.pi_desc_page);
9135 }
9136 vmx->nested.pi_desc_page =
9137 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9138 if (!vmx->nested.pi_desc_page)
9139 return false;
9140
9141 vmx->nested.pi_desc =
9142 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9143 if (!vmx->nested.pi_desc) {
9144 nested_release_page_clean(vmx->nested.pi_desc_page);
9145 return false;
9146 }
9147 vmx->nested.pi_desc =
9148 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9149 (unsigned long)(vmcs12->posted_intr_desc_addr &
9150 (PAGE_SIZE - 1)));
9151 }
9152
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009153 return true;
9154}
9155
Jan Kiszkaf41245002014-03-07 20:03:13 +01009156static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9157{
9158 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9159 struct vcpu_vmx *vmx = to_vmx(vcpu);
9160
9161 if (vcpu->arch.virtual_tsc_khz == 0)
9162 return;
9163
9164 /* Make sure short timeouts reliably trigger an immediate vmexit.
9165 * hrtimer_start does not guarantee this. */
9166 if (preemption_timeout <= 1) {
9167 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9168 return;
9169 }
9170
9171 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9172 preemption_timeout *= 1000000;
9173 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9174 hrtimer_start(&vmx->nested.preemption_timer,
9175 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9176}
9177
Wincy Van3af18d92015-02-03 23:49:31 +08009178static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9179 struct vmcs12 *vmcs12)
9180{
9181 int maxphyaddr;
9182 u64 addr;
9183
9184 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9185 return 0;
9186
9187 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9188 WARN_ON(1);
9189 return -EINVAL;
9190 }
9191 maxphyaddr = cpuid_maxphyaddr(vcpu);
9192
9193 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9194 ((addr + PAGE_SIZE) >> maxphyaddr))
9195 return -EINVAL;
9196
9197 return 0;
9198}
9199
9200/*
9201 * Merge L0's and L1's MSR bitmap, return false to indicate that
9202 * we do not use the hardware.
9203 */
9204static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9205 struct vmcs12 *vmcs12)
9206{
Wincy Van82f0dd42015-02-03 23:57:18 +08009207 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009208 struct page *page;
9209 unsigned long *msr_bitmap;
9210
9211 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9212 return false;
9213
9214 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9215 if (!page) {
9216 WARN_ON(1);
9217 return false;
9218 }
9219 msr_bitmap = (unsigned long *)kmap(page);
9220 if (!msr_bitmap) {
9221 nested_release_page_clean(page);
9222 WARN_ON(1);
9223 return false;
9224 }
9225
9226 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009227 if (nested_cpu_has_apic_reg_virt(vmcs12))
9228 for (msr = 0x800; msr <= 0x8ff; msr++)
9229 nested_vmx_disable_intercept_for_msr(
9230 msr_bitmap,
9231 vmx_msr_bitmap_nested,
9232 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009233 /* TPR is allowed */
9234 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9235 vmx_msr_bitmap_nested,
9236 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9237 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009238 if (nested_cpu_has_vid(vmcs12)) {
9239 /* EOI and self-IPI are allowed */
9240 nested_vmx_disable_intercept_for_msr(
9241 msr_bitmap,
9242 vmx_msr_bitmap_nested,
9243 APIC_BASE_MSR + (APIC_EOI >> 4),
9244 MSR_TYPE_W);
9245 nested_vmx_disable_intercept_for_msr(
9246 msr_bitmap,
9247 vmx_msr_bitmap_nested,
9248 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9249 MSR_TYPE_W);
9250 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009251 } else {
9252 /*
9253 * Enable reading intercept of all the x2apic
9254 * MSRs. We should not rely on vmcs12 to do any
9255 * optimizations here, it may have been modified
9256 * by L1.
9257 */
9258 for (msr = 0x800; msr <= 0x8ff; msr++)
9259 __vmx_enable_intercept_for_msr(
9260 vmx_msr_bitmap_nested,
9261 msr,
9262 MSR_TYPE_R);
9263
Wincy Vanf2b93282015-02-03 23:56:03 +08009264 __vmx_enable_intercept_for_msr(
9265 vmx_msr_bitmap_nested,
9266 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009267 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009268 __vmx_enable_intercept_for_msr(
9269 vmx_msr_bitmap_nested,
9270 APIC_BASE_MSR + (APIC_EOI >> 4),
9271 MSR_TYPE_W);
9272 __vmx_enable_intercept_for_msr(
9273 vmx_msr_bitmap_nested,
9274 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9275 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009276 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009277 kunmap(page);
9278 nested_release_page_clean(page);
9279
9280 return true;
9281}
9282
9283static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9284 struct vmcs12 *vmcs12)
9285{
Wincy Van82f0dd42015-02-03 23:57:18 +08009286 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009287 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009288 !nested_cpu_has_vid(vmcs12) &&
9289 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009290 return 0;
9291
9292 /*
9293 * If virtualize x2apic mode is enabled,
9294 * virtualize apic access must be disabled.
9295 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009296 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9297 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009298 return -EINVAL;
9299
Wincy Van608406e2015-02-03 23:57:51 +08009300 /*
9301 * If virtual interrupt delivery is enabled,
9302 * we must exit on external interrupts.
9303 */
9304 if (nested_cpu_has_vid(vmcs12) &&
9305 !nested_exit_on_intr(vcpu))
9306 return -EINVAL;
9307
Wincy Van705699a2015-02-03 23:58:17 +08009308 /*
9309 * bits 15:8 should be zero in posted_intr_nv,
9310 * the descriptor address has been already checked
9311 * in nested_get_vmcs12_pages.
9312 */
9313 if (nested_cpu_has_posted_intr(vmcs12) &&
9314 (!nested_cpu_has_vid(vmcs12) ||
9315 !nested_exit_intr_ack_set(vcpu) ||
9316 vmcs12->posted_intr_nv & 0xff00))
9317 return -EINVAL;
9318
Wincy Vanf2b93282015-02-03 23:56:03 +08009319 /* tpr shadow is needed by all apicv features. */
9320 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9321 return -EINVAL;
9322
9323 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009324}
9325
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009326static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9327 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009328 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009329{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009330 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009331 u64 count, addr;
9332
9333 if (vmcs12_read_any(vcpu, count_field, &count) ||
9334 vmcs12_read_any(vcpu, addr_field, &addr)) {
9335 WARN_ON(1);
9336 return -EINVAL;
9337 }
9338 if (count == 0)
9339 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009340 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009341 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9342 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9343 pr_warn_ratelimited(
9344 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9345 addr_field, maxphyaddr, count, addr);
9346 return -EINVAL;
9347 }
9348 return 0;
9349}
9350
9351static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9352 struct vmcs12 *vmcs12)
9353{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009354 if (vmcs12->vm_exit_msr_load_count == 0 &&
9355 vmcs12->vm_exit_msr_store_count == 0 &&
9356 vmcs12->vm_entry_msr_load_count == 0)
9357 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009358 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009359 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009360 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009361 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009362 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009363 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009364 return -EINVAL;
9365 return 0;
9366}
9367
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009368static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9369 struct vmx_msr_entry *e)
9370{
9371 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009372 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009373 return -EINVAL;
9374 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9375 e->index == MSR_IA32_UCODE_REV)
9376 return -EINVAL;
9377 if (e->reserved != 0)
9378 return -EINVAL;
9379 return 0;
9380}
9381
9382static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9383 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009384{
9385 if (e->index == MSR_FS_BASE ||
9386 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009387 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9388 nested_vmx_msr_check_common(vcpu, e))
9389 return -EINVAL;
9390 return 0;
9391}
9392
9393static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9394 struct vmx_msr_entry *e)
9395{
9396 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9397 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009398 return -EINVAL;
9399 return 0;
9400}
9401
9402/*
9403 * Load guest's/host's msr at nested entry/exit.
9404 * return 0 for success, entry index for failure.
9405 */
9406static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9407{
9408 u32 i;
9409 struct vmx_msr_entry e;
9410 struct msr_data msr;
9411
9412 msr.host_initiated = false;
9413 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009414 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9415 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009416 pr_warn_ratelimited(
9417 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9418 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009419 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009420 }
9421 if (nested_vmx_load_msr_check(vcpu, &e)) {
9422 pr_warn_ratelimited(
9423 "%s check failed (%u, 0x%x, 0x%x)\n",
9424 __func__, i, e.index, e.reserved);
9425 goto fail;
9426 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009427 msr.index = e.index;
9428 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009429 if (kvm_set_msr(vcpu, &msr)) {
9430 pr_warn_ratelimited(
9431 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9432 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009433 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009434 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009435 }
9436 return 0;
9437fail:
9438 return i + 1;
9439}
9440
9441static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9442{
9443 u32 i;
9444 struct vmx_msr_entry e;
9445
9446 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009447 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009448 if (kvm_vcpu_read_guest(vcpu,
9449 gpa + i * sizeof(e),
9450 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009451 pr_warn_ratelimited(
9452 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9453 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009454 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009455 }
9456 if (nested_vmx_store_msr_check(vcpu, &e)) {
9457 pr_warn_ratelimited(
9458 "%s check failed (%u, 0x%x, 0x%x)\n",
9459 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009460 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009461 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009462 msr_info.host_initiated = false;
9463 msr_info.index = e.index;
9464 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009465 pr_warn_ratelimited(
9466 "%s cannot read MSR (%u, 0x%x)\n",
9467 __func__, i, e.index);
9468 return -EINVAL;
9469 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009470 if (kvm_vcpu_write_guest(vcpu,
9471 gpa + i * sizeof(e) +
9472 offsetof(struct vmx_msr_entry, value),
9473 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009474 pr_warn_ratelimited(
9475 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009476 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009477 return -EINVAL;
9478 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009479 }
9480 return 0;
9481}
9482
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009483/*
9484 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9485 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009486 * 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 +03009487 * guest in a way that will both be appropriate to L1's requests, and our
9488 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9489 * function also has additional necessary side-effects, like setting various
9490 * vcpu->arch fields.
9491 */
9492static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9493{
9494 struct vcpu_vmx *vmx = to_vmx(vcpu);
9495 u32 exec_control;
9496
9497 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9498 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9499 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9500 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9501 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9502 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9503 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9504 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9505 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9506 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9507 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9508 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9509 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9510 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9511 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9512 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9513 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9514 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9515 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9516 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9517 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9518 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9519 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9520 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9521 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9522 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9523 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9524 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9525 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9526 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9527 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9528 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9529 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9530 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9531 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9532 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9533
Jan Kiszka2996fca2014-06-16 13:59:43 +02009534 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9535 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9536 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9537 } else {
9538 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9539 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9540 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009541 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9542 vmcs12->vm_entry_intr_info_field);
9543 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9544 vmcs12->vm_entry_exception_error_code);
9545 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9546 vmcs12->vm_entry_instruction_len);
9547 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9548 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009549 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009550 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009551 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9552 vmcs12->guest_pending_dbg_exceptions);
9553 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9554 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9555
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009556 if (nested_cpu_has_xsaves(vmcs12))
9557 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009558 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9559
Jan Kiszkaf41245002014-03-07 20:03:13 +01009560 exec_control = vmcs12->pin_based_vm_exec_control;
9561 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009562 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9563
9564 if (nested_cpu_has_posted_intr(vmcs12)) {
9565 /*
9566 * Note that we use L0's vector here and in
9567 * vmx_deliver_nested_posted_interrupt.
9568 */
9569 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9570 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009571 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009572 vmcs_write64(POSTED_INTR_DESC_ADDR,
9573 page_to_phys(vmx->nested.pi_desc_page) +
9574 (unsigned long)(vmcs12->posted_intr_desc_addr &
9575 (PAGE_SIZE - 1)));
9576 } else
9577 exec_control &= ~PIN_BASED_POSTED_INTR;
9578
Jan Kiszkaf41245002014-03-07 20:03:13 +01009579 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009580
Jan Kiszkaf41245002014-03-07 20:03:13 +01009581 vmx->nested.preemption_timer_expired = false;
9582 if (nested_cpu_has_preemption_timer(vmcs12))
9583 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009584
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009585 /*
9586 * Whether page-faults are trapped is determined by a combination of
9587 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9588 * If enable_ept, L0 doesn't care about page faults and we should
9589 * set all of these to L1's desires. However, if !enable_ept, L0 does
9590 * care about (at least some) page faults, and because it is not easy
9591 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9592 * to exit on each and every L2 page fault. This is done by setting
9593 * MASK=MATCH=0 and (see below) EB.PF=1.
9594 * Note that below we don't need special code to set EB.PF beyond the
9595 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9596 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9597 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9598 *
9599 * A problem with this approach (when !enable_ept) is that L1 may be
9600 * injected with more page faults than it asked for. This could have
9601 * caused problems, but in practice existing hypervisors don't care.
9602 * To fix this, we will need to emulate the PFEC checking (on the L1
9603 * page tables), using walk_addr(), when injecting PFs to L1.
9604 */
9605 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9606 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9607 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9608 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9609
9610 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf41245002014-03-07 20:03:13 +01009611 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009612
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009613 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009614 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009615 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009616 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009617 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9618 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009619 if (nested_cpu_has(vmcs12,
9620 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9621 exec_control |= vmcs12->secondary_vm_exec_control;
9622
9623 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9624 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009625 * If translation failed, no matter: This feature asks
9626 * to exit when accessing the given address, and if it
9627 * can never be accessed, this feature won't do
9628 * anything anyway.
9629 */
9630 if (!vmx->nested.apic_access_page)
9631 exec_control &=
9632 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9633 else
9634 vmcs_write64(APIC_ACCESS_ADDR,
9635 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009636 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009637 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009638 exec_control |=
9639 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009640 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009641 }
9642
Wincy Van608406e2015-02-03 23:57:51 +08009643 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9644 vmcs_write64(EOI_EXIT_BITMAP0,
9645 vmcs12->eoi_exit_bitmap0);
9646 vmcs_write64(EOI_EXIT_BITMAP1,
9647 vmcs12->eoi_exit_bitmap1);
9648 vmcs_write64(EOI_EXIT_BITMAP2,
9649 vmcs12->eoi_exit_bitmap2);
9650 vmcs_write64(EOI_EXIT_BITMAP3,
9651 vmcs12->eoi_exit_bitmap3);
9652 vmcs_write16(GUEST_INTR_STATUS,
9653 vmcs12->guest_intr_status);
9654 }
9655
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009656 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9657 }
9658
9659
9660 /*
9661 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9662 * Some constant fields are set here by vmx_set_constant_host_state().
9663 * Other fields are different per CPU, and will be set later when
9664 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9665 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009666 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009667
9668 /*
9669 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9670 * entry, but only if the current (host) sp changed from the value
9671 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9672 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9673 * here we just force the write to happen on entry.
9674 */
9675 vmx->host_rsp = 0;
9676
9677 exec_control = vmx_exec_control(vmx); /* L0's desires */
9678 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9679 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9680 exec_control &= ~CPU_BASED_TPR_SHADOW;
9681 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009682
9683 if (exec_control & CPU_BASED_TPR_SHADOW) {
9684 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9685 page_to_phys(vmx->nested.virtual_apic_page));
9686 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9687 }
9688
Wincy Van3af18d92015-02-03 23:49:31 +08009689 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009690 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9691 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9692 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009693 } else
9694 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9695
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009696 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009697 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009698 * Rather, exit every time.
9699 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009700 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9701 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9702
9703 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9704
9705 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9706 * bitwise-or of what L1 wants to trap for L2, and what we want to
9707 * trap. Note that CR0.TS also needs updating - we do this later.
9708 */
9709 update_exception_bitmap(vcpu);
9710 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9711 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9712
Nadav Har'El8049d652013-08-05 11:07:06 +03009713 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9714 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9715 * bits are further modified by vmx_set_efer() below.
9716 */
Jan Kiszkaf41245002014-03-07 20:03:13 +01009717 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009718
9719 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9720 * emulated by vmx_set_efer(), below.
9721 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009722 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009723 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9724 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009725 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9726
Jan Kiszka44811c02013-08-04 17:17:27 +02009727 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009728 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009729 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9730 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009731 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9732
9733
9734 set_cr4_guest_host_mask(vmx);
9735
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009736 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9737 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9738
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009739 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9740 vmcs_write64(TSC_OFFSET,
9741 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9742 else
9743 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009744
9745 if (enable_vpid) {
9746 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009747 * There is no direct mapping between vpid02 and vpid12, the
9748 * vpid02 is per-vCPU for L0 and reused while the value of
9749 * vpid12 is changed w/ one invvpid during nested vmentry.
9750 * The vpid12 is allocated by L1 for L2, so it will not
9751 * influence global bitmap(for vpid01 and vpid02 allocation)
9752 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009753 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009754 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9755 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9756 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9757 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9758 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9759 }
9760 } else {
9761 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9762 vmx_flush_tlb(vcpu);
9763 }
9764
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009765 }
9766
Nadav Har'El155a97a2013-08-05 11:07:16 +03009767 if (nested_cpu_has_ept(vmcs12)) {
9768 kvm_mmu_unload(vcpu);
9769 nested_ept_init_mmu_context(vcpu);
9770 }
9771
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009772 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
9773 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +02009774 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009775 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
9776 else
9777 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
9778 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
9779 vmx_set_efer(vcpu, vcpu->arch.efer);
9780
9781 /*
9782 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
9783 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
9784 * The CR0_READ_SHADOW is what L2 should have expected to read given
9785 * the specifications by L1; It's not enough to take
9786 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
9787 * have more bits than L1 expected.
9788 */
9789 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
9790 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
9791
9792 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
9793 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
9794
9795 /* shadow page tables on either EPT or shadow page tables */
9796 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
9797 kvm_mmu_reset_context(vcpu);
9798
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009799 if (!enable_ept)
9800 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
9801
Nadav Har'El3633cfc2013-08-05 11:07:07 +03009802 /*
9803 * L1 may access the L2's PDPTR, so save them to construct vmcs12
9804 */
9805 if (enable_ept) {
9806 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
9807 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
9808 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
9809 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
9810 }
9811
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009812 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
9813 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
9814}
9815
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009816/*
9817 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
9818 * for running an L2 nested guest.
9819 */
9820static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
9821{
9822 struct vmcs12 *vmcs12;
9823 struct vcpu_vmx *vmx = to_vmx(vcpu);
9824 int cpu;
9825 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +02009826 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +03009827 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009828
9829 if (!nested_vmx_check_permission(vcpu) ||
9830 !nested_vmx_check_vmcs12(vcpu))
9831 return 1;
9832
9833 skip_emulated_instruction(vcpu);
9834 vmcs12 = get_vmcs12(vcpu);
9835
Abel Gordon012f83c2013-04-18 14:39:25 +03009836 if (enable_shadow_vmcs)
9837 copy_shadow_to_vmcs12(vmx);
9838
Nadav Har'El7c177932011-05-25 23:12:04 +03009839 /*
9840 * The nested entry process starts with enforcing various prerequisites
9841 * on vmcs12 as required by the Intel SDM, and act appropriately when
9842 * they fail: As the SDM explains, some conditions should cause the
9843 * instruction to fail, while others will cause the instruction to seem
9844 * to succeed, but return an EXIT_REASON_INVALID_STATE.
9845 * To speed up the normal (success) code path, we should avoid checking
9846 * for misconfigurations which will anyway be caught by the processor
9847 * when using the merged vmcs02.
9848 */
9849 if (vmcs12->launch_state == launch) {
9850 nested_vmx_failValid(vcpu,
9851 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
9852 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
9853 return 1;
9854 }
9855
Jan Kiszka6dfacad2013-12-04 08:58:54 +01009856 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
9857 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +02009858 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9859 return 1;
9860 }
9861
Wincy Van3af18d92015-02-03 23:49:31 +08009862 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009863 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9864 return 1;
9865 }
9866
Wincy Van3af18d92015-02-03 23:49:31 +08009867 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009868 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9869 return 1;
9870 }
9871
Wincy Vanf2b93282015-02-03 23:56:03 +08009872 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
9873 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9874 return 1;
9875 }
9876
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009877 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
9878 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9879 return 1;
9880 }
9881
Nadav Har'El7c177932011-05-25 23:12:04 +03009882 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009883 vmx->nested.nested_vmx_true_procbased_ctls_low,
9884 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009885 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009886 vmx->nested.nested_vmx_secondary_ctls_low,
9887 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009888 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009889 vmx->nested.nested_vmx_pinbased_ctls_low,
9890 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009891 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009892 vmx->nested.nested_vmx_true_exit_ctls_low,
9893 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009894 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009895 vmx->nested.nested_vmx_true_entry_ctls_low,
9896 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +03009897 {
9898 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9899 return 1;
9900 }
9901
9902 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
9903 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9904 nested_vmx_failValid(vcpu,
9905 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
9906 return 1;
9907 }
9908
Wincy Vanb9c237b2015-02-03 23:56:30 +08009909 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009910 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9911 nested_vmx_entry_failure(vcpu, vmcs12,
9912 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9913 return 1;
9914 }
9915 if (vmcs12->vmcs_link_pointer != -1ull) {
9916 nested_vmx_entry_failure(vcpu, vmcs12,
9917 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
9918 return 1;
9919 }
9920
9921 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +02009922 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +02009923 * are performed on the field for the IA32_EFER MSR:
9924 * - Bits reserved in the IA32_EFER MSR must be 0.
9925 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
9926 * the IA-32e mode guest VM-exit control. It must also be identical
9927 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
9928 * CR0.PG) is 1.
9929 */
9930 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
9931 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
9932 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
9933 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
9934 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
9935 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
9936 nested_vmx_entry_failure(vcpu, vmcs12,
9937 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9938 return 1;
9939 }
9940 }
9941
9942 /*
9943 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
9944 * IA32_EFER MSR must be 0 in the field for that register. In addition,
9945 * the values of the LMA and LME bits in the field must each be that of
9946 * the host address-space size VM-exit control.
9947 */
9948 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
9949 ia32e = (vmcs12->vm_exit_controls &
9950 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
9951 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
9952 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
9953 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
9954 nested_vmx_entry_failure(vcpu, vmcs12,
9955 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9956 return 1;
9957 }
9958 }
9959
9960 /*
Nadav Har'El7c177932011-05-25 23:12:04 +03009961 * We're finally done with prerequisite checking, and can start with
9962 * the nested entry.
9963 */
9964
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009965 vmcs02 = nested_get_current_vmcs02(vmx);
9966 if (!vmcs02)
9967 return -ENOMEM;
9968
9969 enter_guest_mode(vcpu);
9970
9971 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
9972
Jan Kiszka2996fca2014-06-16 13:59:43 +02009973 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
9974 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
9975
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009976 cpu = get_cpu();
9977 vmx->loaded_vmcs = vmcs02;
9978 vmx_vcpu_put(vcpu);
9979 vmx_vcpu_load(vcpu, cpu);
9980 vcpu->cpu = cpu;
9981 put_cpu();
9982
Jan Kiszka36c3cc42013-02-23 22:35:37 +01009983 vmx_segment_cache_clear(vmx);
9984
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009985 prepare_vmcs02(vcpu, vmcs12);
9986
Wincy Vanff651cb2014-12-11 08:52:58 +03009987 msr_entry_idx = nested_vmx_load_msr(vcpu,
9988 vmcs12->vm_entry_msr_load_addr,
9989 vmcs12->vm_entry_msr_load_count);
9990 if (msr_entry_idx) {
9991 leave_guest_mode(vcpu);
9992 vmx_load_vmcs01(vcpu);
9993 nested_vmx_entry_failure(vcpu, vmcs12,
9994 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
9995 return 1;
9996 }
9997
9998 vmcs12->launch_state = 1;
9999
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010000 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010001 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010002
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010003 vmx->nested.nested_run_pending = 1;
10004
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010005 /*
10006 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10007 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10008 * returned as far as L1 is concerned. It will only return (and set
10009 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10010 */
10011 return 1;
10012}
10013
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010014/*
10015 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10016 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10017 * This function returns the new value we should put in vmcs12.guest_cr0.
10018 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10019 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10020 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10021 * didn't trap the bit, because if L1 did, so would L0).
10022 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10023 * been modified by L2, and L1 knows it. So just leave the old value of
10024 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10025 * isn't relevant, because if L0 traps this bit it can set it to anything.
10026 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10027 * changed these bits, and therefore they need to be updated, but L0
10028 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10029 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10030 */
10031static inline unsigned long
10032vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10033{
10034 return
10035 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10036 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10037 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10038 vcpu->arch.cr0_guest_owned_bits));
10039}
10040
10041static inline unsigned long
10042vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10043{
10044 return
10045 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10046 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10047 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10048 vcpu->arch.cr4_guest_owned_bits));
10049}
10050
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010051static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10052 struct vmcs12 *vmcs12)
10053{
10054 u32 idt_vectoring;
10055 unsigned int nr;
10056
Gleb Natapov851eb6672013-09-25 12:51:34 +030010057 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010058 nr = vcpu->arch.exception.nr;
10059 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10060
10061 if (kvm_exception_is_soft(nr)) {
10062 vmcs12->vm_exit_instruction_len =
10063 vcpu->arch.event_exit_inst_len;
10064 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10065 } else
10066 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10067
10068 if (vcpu->arch.exception.has_error_code) {
10069 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10070 vmcs12->idt_vectoring_error_code =
10071 vcpu->arch.exception.error_code;
10072 }
10073
10074 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010075 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010076 vmcs12->idt_vectoring_info_field =
10077 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10078 } else if (vcpu->arch.interrupt.pending) {
10079 nr = vcpu->arch.interrupt.nr;
10080 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10081
10082 if (vcpu->arch.interrupt.soft) {
10083 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10084 vmcs12->vm_entry_instruction_len =
10085 vcpu->arch.event_exit_inst_len;
10086 } else
10087 idt_vectoring |= INTR_TYPE_EXT_INTR;
10088
10089 vmcs12->idt_vectoring_info_field = idt_vectoring;
10090 }
10091}
10092
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010093static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10094{
10095 struct vcpu_vmx *vmx = to_vmx(vcpu);
10096
Jan Kiszkaf41245002014-03-07 20:03:13 +010010097 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10098 vmx->nested.preemption_timer_expired) {
10099 if (vmx->nested.nested_run_pending)
10100 return -EBUSY;
10101 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10102 return 0;
10103 }
10104
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010105 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010106 if (vmx->nested.nested_run_pending ||
10107 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010108 return -EBUSY;
10109 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10110 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10111 INTR_INFO_VALID_MASK, 0);
10112 /*
10113 * The NMI-triggered VM exit counts as injection:
10114 * clear this one and block further NMIs.
10115 */
10116 vcpu->arch.nmi_pending = 0;
10117 vmx_set_nmi_mask(vcpu, true);
10118 return 0;
10119 }
10120
10121 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10122 nested_exit_on_intr(vcpu)) {
10123 if (vmx->nested.nested_run_pending)
10124 return -EBUSY;
10125 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010126 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010127 }
10128
Wincy Van705699a2015-02-03 23:58:17 +080010129 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010130}
10131
Jan Kiszkaf41245002014-03-07 20:03:13 +010010132static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10133{
10134 ktime_t remaining =
10135 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10136 u64 value;
10137
10138 if (ktime_to_ns(remaining) <= 0)
10139 return 0;
10140
10141 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10142 do_div(value, 1000000);
10143 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10144}
10145
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010146/*
10147 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10148 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10149 * and this function updates it to reflect the changes to the guest state while
10150 * L2 was running (and perhaps made some exits which were handled directly by L0
10151 * without going back to L1), and to reflect the exit reason.
10152 * Note that we do not have to copy here all VMCS fields, just those that
10153 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10154 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10155 * which already writes to vmcs12 directly.
10156 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010157static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10158 u32 exit_reason, u32 exit_intr_info,
10159 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010160{
10161 /* update guest state fields: */
10162 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10163 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10164
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010165 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10166 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10167 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10168
10169 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10170 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10171 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10172 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10173 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10174 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10175 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10176 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10177 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10178 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10179 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10180 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10181 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10182 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10183 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10184 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10185 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10186 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10187 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10188 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10189 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10190 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10191 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10192 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10193 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10194 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10195 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10196 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10197 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10198 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10199 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10200 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10201 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10202 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10203 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10204 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10205
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010206 vmcs12->guest_interruptibility_info =
10207 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10208 vmcs12->guest_pending_dbg_exceptions =
10209 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010210 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10211 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10212 else
10213 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010214
Jan Kiszkaf41245002014-03-07 20:03:13 +010010215 if (nested_cpu_has_preemption_timer(vmcs12)) {
10216 if (vmcs12->vm_exit_controls &
10217 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10218 vmcs12->vmx_preemption_timer_value =
10219 vmx_get_preemption_timer_value(vcpu);
10220 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10221 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010222
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010223 /*
10224 * In some cases (usually, nested EPT), L2 is allowed to change its
10225 * own CR3 without exiting. If it has changed it, we must keep it.
10226 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10227 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10228 *
10229 * Additionally, restore L2's PDPTR to vmcs12.
10230 */
10231 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010232 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010233 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10234 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10235 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10236 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10237 }
10238
Wincy Van608406e2015-02-03 23:57:51 +080010239 if (nested_cpu_has_vid(vmcs12))
10240 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10241
Jan Kiszkac18911a2013-03-13 16:06:41 +010010242 vmcs12->vm_entry_controls =
10243 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010244 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010245
Jan Kiszka2996fca2014-06-16 13:59:43 +020010246 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10247 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10248 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10249 }
10250
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010251 /* TODO: These cannot have changed unless we have MSR bitmaps and
10252 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010253 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010254 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010255 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10256 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010257 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10258 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10259 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010260 if (vmx_mpx_supported())
10261 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010262 if (nested_cpu_has_xsaves(vmcs12))
10263 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010264
10265 /* update exit information fields: */
10266
Jan Kiszka533558b2014-01-04 18:47:20 +010010267 vmcs12->vm_exit_reason = exit_reason;
10268 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010269
Jan Kiszka533558b2014-01-04 18:47:20 +010010270 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010271 if ((vmcs12->vm_exit_intr_info &
10272 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10273 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10274 vmcs12->vm_exit_intr_error_code =
10275 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010276 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010277 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10278 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10279
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010280 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10281 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10282 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010283 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010284
10285 /*
10286 * Transfer the event that L0 or L1 may wanted to inject into
10287 * L2 to IDT_VECTORING_INFO_FIELD.
10288 */
10289 vmcs12_save_pending_event(vcpu, vmcs12);
10290 }
10291
10292 /*
10293 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10294 * preserved above and would only end up incorrectly in L1.
10295 */
10296 vcpu->arch.nmi_injected = false;
10297 kvm_clear_exception_queue(vcpu);
10298 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010299}
10300
10301/*
10302 * A part of what we need to when the nested L2 guest exits and we want to
10303 * run its L1 parent, is to reset L1's guest state to the host state specified
10304 * in vmcs12.
10305 * This function is to be called not only on normal nested exit, but also on
10306 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10307 * Failures During or After Loading Guest State").
10308 * This function should be called when the active VMCS is L1's (vmcs01).
10309 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010310static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10311 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010312{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010313 struct kvm_segment seg;
10314
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010315 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10316 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010317 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010318 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10319 else
10320 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10321 vmx_set_efer(vcpu, vcpu->arch.efer);
10322
10323 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10324 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010325 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010326 /*
10327 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10328 * actually changed, because it depends on the current state of
10329 * fpu_active (which may have changed).
10330 * Note that vmx_set_cr0 refers to efer set above.
10331 */
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020010332 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010333 /*
10334 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10335 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10336 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10337 */
10338 update_exception_bitmap(vcpu);
10339 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10340 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10341
10342 /*
10343 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10344 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10345 */
10346 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10347 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10348
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010349 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010350
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010351 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10352 kvm_mmu_reset_context(vcpu);
10353
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010354 if (!enable_ept)
10355 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10356
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010357 if (enable_vpid) {
10358 /*
10359 * Trivially support vpid by letting L2s share their parent
10360 * L1's vpid. TODO: move to a more elaborate solution, giving
10361 * each L2 its own vpid and exposing the vpid feature to L1.
10362 */
10363 vmx_flush_tlb(vcpu);
10364 }
10365
10366
10367 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10368 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10369 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10370 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10371 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010372
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010373 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10374 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10375 vmcs_write64(GUEST_BNDCFGS, 0);
10376
Jan Kiszka44811c02013-08-04 17:17:27 +020010377 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010378 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010379 vcpu->arch.pat = vmcs12->host_ia32_pat;
10380 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010381 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10382 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10383 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010384
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010385 /* Set L1 segment info according to Intel SDM
10386 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10387 seg = (struct kvm_segment) {
10388 .base = 0,
10389 .limit = 0xFFFFFFFF,
10390 .selector = vmcs12->host_cs_selector,
10391 .type = 11,
10392 .present = 1,
10393 .s = 1,
10394 .g = 1
10395 };
10396 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10397 seg.l = 1;
10398 else
10399 seg.db = 1;
10400 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10401 seg = (struct kvm_segment) {
10402 .base = 0,
10403 .limit = 0xFFFFFFFF,
10404 .type = 3,
10405 .present = 1,
10406 .s = 1,
10407 .db = 1,
10408 .g = 1
10409 };
10410 seg.selector = vmcs12->host_ds_selector;
10411 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10412 seg.selector = vmcs12->host_es_selector;
10413 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10414 seg.selector = vmcs12->host_ss_selector;
10415 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10416 seg.selector = vmcs12->host_fs_selector;
10417 seg.base = vmcs12->host_fs_base;
10418 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10419 seg.selector = vmcs12->host_gs_selector;
10420 seg.base = vmcs12->host_gs_base;
10421 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10422 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010423 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010424 .limit = 0x67,
10425 .selector = vmcs12->host_tr_selector,
10426 .type = 11,
10427 .present = 1
10428 };
10429 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10430
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010431 kvm_set_dr(vcpu, 7, 0x400);
10432 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010433
Wincy Van3af18d92015-02-03 23:49:31 +080010434 if (cpu_has_vmx_msr_bitmap())
10435 vmx_set_msr_bitmap(vcpu);
10436
Wincy Vanff651cb2014-12-11 08:52:58 +030010437 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10438 vmcs12->vm_exit_msr_load_count))
10439 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010440}
10441
10442/*
10443 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10444 * and modify vmcs12 to make it see what it would expect to see there if
10445 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10446 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010447static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10448 u32 exit_intr_info,
10449 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010450{
10451 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010452 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10453
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010454 /* trying to cancel vmlaunch/vmresume is a bug */
10455 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10456
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010457 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010458 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10459 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010460
Wincy Vanff651cb2014-12-11 08:52:58 +030010461 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10462 vmcs12->vm_exit_msr_store_count))
10463 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10464
Wanpeng Lif3380ca2014-08-05 12:42:23 +080010465 vmx_load_vmcs01(vcpu);
10466
Bandan Das77b0f5d2014-04-19 18:17:45 -040010467 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10468 && nested_exit_intr_ack_set(vcpu)) {
10469 int irq = kvm_cpu_get_interrupt(vcpu);
10470 WARN_ON(irq < 0);
10471 vmcs12->vm_exit_intr_info = irq |
10472 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10473 }
10474
Jan Kiszka542060e2014-01-04 18:47:21 +010010475 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10476 vmcs12->exit_qualification,
10477 vmcs12->idt_vectoring_info_field,
10478 vmcs12->vm_exit_intr_info,
10479 vmcs12->vm_exit_intr_error_code,
10480 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010481
Gleb Natapov2961e8762013-11-25 15:37:13 +020010482 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10483 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010484 vmx_segment_cache_clear(vmx);
10485
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010486 /* if no vmcs02 cache requested, remove the one we used */
10487 if (VMCS02_POOL_SIZE == 0)
10488 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10489
10490 load_vmcs12_host_state(vcpu, vmcs12);
10491
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010492 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010493 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10494
10495 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10496 vmx->host_rsp = 0;
10497
10498 /* Unpin physical memory we referred to in vmcs02 */
10499 if (vmx->nested.apic_access_page) {
10500 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010501 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010502 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010503 if (vmx->nested.virtual_apic_page) {
10504 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010505 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010506 }
Wincy Van705699a2015-02-03 23:58:17 +080010507 if (vmx->nested.pi_desc_page) {
10508 kunmap(vmx->nested.pi_desc_page);
10509 nested_release_page(vmx->nested.pi_desc_page);
10510 vmx->nested.pi_desc_page = NULL;
10511 vmx->nested.pi_desc = NULL;
10512 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010513
10514 /*
Tang Chen38b99172014-09-24 15:57:54 +080010515 * We are now running in L2, mmu_notifier will force to reload the
10516 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10517 */
10518 kvm_vcpu_reload_apic_access_page(vcpu);
10519
10520 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010521 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10522 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10523 * success or failure flag accordingly.
10524 */
10525 if (unlikely(vmx->fail)) {
10526 vmx->fail = 0;
10527 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10528 } else
10529 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010530 if (enable_shadow_vmcs)
10531 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010532
10533 /* in case we halted in L2 */
10534 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010535}
10536
Nadav Har'El7c177932011-05-25 23:12:04 +030010537/*
Jan Kiszka42124922014-01-04 18:47:19 +010010538 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10539 */
10540static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10541{
10542 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010543 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010544 free_nested(to_vmx(vcpu));
10545}
10546
10547/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010548 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10549 * 23.7 "VM-entry failures during or after loading guest state" (this also
10550 * lists the acceptable exit-reason and exit-qualification parameters).
10551 * It should only be called before L2 actually succeeded to run, and when
10552 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10553 */
10554static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10555 struct vmcs12 *vmcs12,
10556 u32 reason, unsigned long qualification)
10557{
10558 load_vmcs12_host_state(vcpu, vmcs12);
10559 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10560 vmcs12->exit_qualification = qualification;
10561 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010562 if (enable_shadow_vmcs)
10563 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010564}
10565
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010566static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10567 struct x86_instruction_info *info,
10568 enum x86_intercept_stage stage)
10569{
10570 return X86EMUL_CONTINUE;
10571}
10572
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010573static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010574{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010575 if (ple_gap)
10576 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010577}
10578
Kai Huang843e4332015-01-28 10:54:28 +080010579static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10580 struct kvm_memory_slot *slot)
10581{
10582 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10583 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10584}
10585
10586static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10587 struct kvm_memory_slot *slot)
10588{
10589 kvm_mmu_slot_set_dirty(kvm, slot);
10590}
10591
10592static void vmx_flush_log_dirty(struct kvm *kvm)
10593{
10594 kvm_flush_pml_buffers(kvm);
10595}
10596
10597static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10598 struct kvm_memory_slot *memslot,
10599 gfn_t offset, unsigned long mask)
10600{
10601 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10602}
10603
Feng Wuefc64402015-09-18 22:29:51 +080010604/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010605 * This routine does the following things for vCPU which is going
10606 * to be blocked if VT-d PI is enabled.
10607 * - Store the vCPU to the wakeup list, so when interrupts happen
10608 * we can find the right vCPU to wake up.
10609 * - Change the Posted-interrupt descriptor as below:
10610 * 'NDST' <-- vcpu->pre_pcpu
10611 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10612 * - If 'ON' is set during this process, which means at least one
10613 * interrupt is posted for this vCPU, we cannot block it, in
10614 * this case, return 1, otherwise, return 0.
10615 *
10616 */
10617static int vmx_pre_block(struct kvm_vcpu *vcpu)
10618{
10619 unsigned long flags;
10620 unsigned int dest;
10621 struct pi_desc old, new;
10622 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10623
10624 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10625 !irq_remapping_cap(IRQ_POSTING_CAP))
10626 return 0;
10627
10628 vcpu->pre_pcpu = vcpu->cpu;
10629 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10630 vcpu->pre_pcpu), flags);
10631 list_add_tail(&vcpu->blocked_vcpu_list,
10632 &per_cpu(blocked_vcpu_on_cpu,
10633 vcpu->pre_pcpu));
10634 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10635 vcpu->pre_pcpu), flags);
10636
10637 do {
10638 old.control = new.control = pi_desc->control;
10639
10640 /*
10641 * We should not block the vCPU if
10642 * an interrupt is posted for it.
10643 */
10644 if (pi_test_on(pi_desc) == 1) {
10645 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10646 vcpu->pre_pcpu), flags);
10647 list_del(&vcpu->blocked_vcpu_list);
10648 spin_unlock_irqrestore(
10649 &per_cpu(blocked_vcpu_on_cpu_lock,
10650 vcpu->pre_pcpu), flags);
10651 vcpu->pre_pcpu = -1;
10652
10653 return 1;
10654 }
10655
10656 WARN((pi_desc->sn == 1),
10657 "Warning: SN field of posted-interrupts "
10658 "is set before blocking\n");
10659
10660 /*
10661 * Since vCPU can be preempted during this process,
10662 * vcpu->cpu could be different with pre_pcpu, we
10663 * need to set pre_pcpu as the destination of wakeup
10664 * notification event, then we can find the right vCPU
10665 * to wakeup in wakeup handler if interrupts happen
10666 * when the vCPU is in blocked state.
10667 */
10668 dest = cpu_physical_id(vcpu->pre_pcpu);
10669
10670 if (x2apic_enabled())
10671 new.ndst = dest;
10672 else
10673 new.ndst = (dest << 8) & 0xFF00;
10674
10675 /* set 'NV' to 'wakeup vector' */
10676 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10677 } while (cmpxchg(&pi_desc->control, old.control,
10678 new.control) != old.control);
10679
10680 return 0;
10681}
10682
10683static void vmx_post_block(struct kvm_vcpu *vcpu)
10684{
10685 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10686 struct pi_desc old, new;
10687 unsigned int dest;
10688 unsigned long flags;
10689
10690 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10691 !irq_remapping_cap(IRQ_POSTING_CAP))
10692 return;
10693
10694 do {
10695 old.control = new.control = pi_desc->control;
10696
10697 dest = cpu_physical_id(vcpu->cpu);
10698
10699 if (x2apic_enabled())
10700 new.ndst = dest;
10701 else
10702 new.ndst = (dest << 8) & 0xFF00;
10703
10704 /* Allow posting non-urgent interrupts */
10705 new.sn = 0;
10706
10707 /* set 'NV' to 'notification vector' */
10708 new.nv = POSTED_INTR_VECTOR;
10709 } while (cmpxchg(&pi_desc->control, old.control,
10710 new.control) != old.control);
10711
10712 if(vcpu->pre_pcpu != -1) {
10713 spin_lock_irqsave(
10714 &per_cpu(blocked_vcpu_on_cpu_lock,
10715 vcpu->pre_pcpu), flags);
10716 list_del(&vcpu->blocked_vcpu_list);
10717 spin_unlock_irqrestore(
10718 &per_cpu(blocked_vcpu_on_cpu_lock,
10719 vcpu->pre_pcpu), flags);
10720 vcpu->pre_pcpu = -1;
10721 }
10722}
10723
10724/*
Feng Wuefc64402015-09-18 22:29:51 +080010725 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
10726 *
10727 * @kvm: kvm
10728 * @host_irq: host irq of the interrupt
10729 * @guest_irq: gsi of the interrupt
10730 * @set: set or unset PI
10731 * returns 0 on success, < 0 on failure
10732 */
10733static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
10734 uint32_t guest_irq, bool set)
10735{
10736 struct kvm_kernel_irq_routing_entry *e;
10737 struct kvm_irq_routing_table *irq_rt;
10738 struct kvm_lapic_irq irq;
10739 struct kvm_vcpu *vcpu;
10740 struct vcpu_data vcpu_info;
10741 int idx, ret = -EINVAL;
10742
10743 if (!kvm_arch_has_assigned_device(kvm) ||
10744 !irq_remapping_cap(IRQ_POSTING_CAP))
10745 return 0;
10746
10747 idx = srcu_read_lock(&kvm->irq_srcu);
10748 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
10749 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
10750
10751 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
10752 if (e->type != KVM_IRQ_ROUTING_MSI)
10753 continue;
10754 /*
10755 * VT-d PI cannot support posting multicast/broadcast
10756 * interrupts to a vCPU, we still use interrupt remapping
10757 * for these kind of interrupts.
10758 *
10759 * For lowest-priority interrupts, we only support
10760 * those with single CPU as the destination, e.g. user
10761 * configures the interrupts via /proc/irq or uses
10762 * irqbalance to make the interrupts single-CPU.
10763 *
10764 * We will support full lowest-priority interrupt later.
10765 */
10766
10767 kvm_set_msi_irq(e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080010768 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
10769 /*
10770 * Make sure the IRTE is in remapped mode if
10771 * we don't handle it in posted mode.
10772 */
10773 ret = irq_set_vcpu_affinity(host_irq, NULL);
10774 if (ret < 0) {
10775 printk(KERN_INFO
10776 "failed to back to remapped mode, irq: %u\n",
10777 host_irq);
10778 goto out;
10779 }
10780
Feng Wuefc64402015-09-18 22:29:51 +080010781 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080010782 }
Feng Wuefc64402015-09-18 22:29:51 +080010783
10784 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
10785 vcpu_info.vector = irq.vector;
10786
Feng Wub6ce9782016-01-25 16:53:35 +080010787 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080010788 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
10789
10790 if (set)
10791 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
10792 else {
10793 /* suppress notification event before unposting */
10794 pi_set_sn(vcpu_to_pi_desc(vcpu));
10795 ret = irq_set_vcpu_affinity(host_irq, NULL);
10796 pi_clear_sn(vcpu_to_pi_desc(vcpu));
10797 }
10798
10799 if (ret < 0) {
10800 printk(KERN_INFO "%s: failed to update PI IRTE\n",
10801 __func__);
10802 goto out;
10803 }
10804 }
10805
10806 ret = 0;
10807out:
10808 srcu_read_unlock(&kvm->irq_srcu, idx);
10809 return ret;
10810}
10811
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030010812static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080010813 .cpu_has_kvm_support = cpu_has_kvm_support,
10814 .disabled_by_bios = vmx_disabled_by_bios,
10815 .hardware_setup = hardware_setup,
10816 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030010817 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010818 .hardware_enable = hardware_enable,
10819 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080010820 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010821 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010822
10823 .vcpu_create = vmx_create_vcpu,
10824 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030010825 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010826
Avi Kivity04d2cc72007-09-10 18:10:54 +030010827 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010828 .vcpu_load = vmx_vcpu_load,
10829 .vcpu_put = vmx_vcpu_put,
10830
Paolo Bonzinia96036b2015-11-10 11:55:36 +010010831 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010832 .get_msr = vmx_get_msr,
10833 .set_msr = vmx_set_msr,
10834 .get_segment_base = vmx_get_segment_base,
10835 .get_segment = vmx_get_segment,
10836 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020010837 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010838 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020010839 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020010840 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030010841 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010842 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010843 .set_cr3 = vmx_set_cr3,
10844 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010845 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010846 .get_idt = vmx_get_idt,
10847 .set_idt = vmx_set_idt,
10848 .get_gdt = vmx_get_gdt,
10849 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010010850 .get_dr6 = vmx_get_dr6,
10851 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030010852 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010010853 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010854 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010855 .get_rflags = vmx_get_rflags,
10856 .set_rflags = vmx_set_rflags,
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020010857 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020010858 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010859
10860 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010861
Avi Kivity6aa8b732006-12-10 02:21:36 -080010862 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020010863 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010864 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040010865 .set_interrupt_shadow = vmx_set_interrupt_shadow,
10866 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020010867 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030010868 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010869 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020010870 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010871 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020010872 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010873 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010010874 .get_nmi_mask = vmx_get_nmi_mask,
10875 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010876 .enable_nmi_window = enable_nmi_window,
10877 .enable_irq_window = enable_irq_window,
10878 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080010879 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080010880 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030010881 .get_enable_apicv = vmx_get_enable_apicv,
10882 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080010883 .load_eoi_exitmap = vmx_load_eoi_exitmap,
10884 .hwapic_irr_update = vmx_hwapic_irr_update,
10885 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080010886 .sync_pir_to_irr = vmx_sync_pir_to_irr,
10887 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010888
Izik Eiduscbc94022007-10-25 00:29:55 +020010889 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080010890 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010891 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010892
Avi Kivity586f9602010-11-18 13:09:54 +020010893 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020010894
Sheng Yang17cc3932010-01-05 19:02:27 +080010895 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080010896
10897 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010898
10899 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000010900 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010901
10902 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080010903
10904 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010905
Will Auldba904632012-11-29 12:42:50 -080010906 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010907 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080010908 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030010909 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020010910
10911 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010912
10913 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080010914 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010915 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080010916 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010917
10918 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010919
10920 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080010921
10922 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
10923 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
10924 .flush_log_dirty = vmx_flush_log_dirty,
10925 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020010926
Feng Wubf9f6ac2015-09-18 22:29:55 +080010927 .pre_block = vmx_pre_block,
10928 .post_block = vmx_post_block,
10929
Wei Huang25462f72015-06-19 15:45:05 +020010930 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080010931
10932 .update_pi_irte = vmx_update_pi_irte,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010933};
10934
10935static int __init vmx_init(void)
10936{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010937 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
10938 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030010939 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010940 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080010941
Dave Young2965faa2015-09-09 15:38:55 -070010942#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010943 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
10944 crash_vmclear_local_loaded_vmcss);
10945#endif
10946
He, Qingfdef3ad2007-04-30 09:45:24 +030010947 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010948}
10949
10950static void __exit vmx_exit(void)
10951{
Dave Young2965faa2015-09-09 15:38:55 -070010952#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053010953 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010954 synchronize_rcu();
10955#endif
10956
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080010957 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080010958}
10959
10960module_init(vmx_init)
10961module_exit(vmx_exit)