blob: 0ff453749a909b9f0140b5de5d5d2dbb133e99d9 [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 Kivity313dbd42008-07-17 18:04:30 +0300523 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300524 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200525 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300526 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200527 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200528 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300529 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400530 int nmsrs;
531 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800532 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400533#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300534 u64 msr_host_kernel_gs_base;
535 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200537 u32 vm_entry_controls_shadow;
538 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300539 /*
540 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
541 * non-nested (L1) guest, it always points to vmcs01. For a nested
542 * guest (L2), it points to a different VMCS.
543 */
544 struct loaded_vmcs vmcs01;
545 struct loaded_vmcs *loaded_vmcs;
546 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300547 struct msr_autoload {
548 unsigned nr;
549 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
550 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
551 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400552 struct {
553 int loaded;
554 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300555#ifdef CONFIG_X86_64
556 u16 ds_sel, es_sel;
557#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200558 int gs_ldt_reload_needed;
559 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000560 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700561 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400562 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200563 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300564 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300565 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300566 struct kvm_segment segs[8];
567 } rmode;
568 struct {
569 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300570 struct kvm_save_segment {
571 u16 selector;
572 unsigned long base;
573 u32 limit;
574 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300575 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300576 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800577 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300578 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200579
580 /* Support for vnmi-less CPUs */
581 int soft_vnmi_blocked;
582 ktime_t entry_time;
583 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800584 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800585
Yang Zhang01e439b2013-04-11 19:25:12 +0800586 /* Posted interrupt descriptor */
587 struct pi_desc pi_desc;
588
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300589 /* Support for a guest hypervisor (nested VMX) */
590 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200591
592 /* Dynamic PLE window. */
593 int ple_window;
594 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800595
596 /* Support for PML */
597#define PML_ENTITY_NUM 512
598 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800599
600 u64 current_tsc_ratio;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400601};
602
Avi Kivity2fb92db2011-04-27 19:42:18 +0300603enum segment_cache_field {
604 SEG_FIELD_SEL = 0,
605 SEG_FIELD_BASE = 1,
606 SEG_FIELD_LIMIT = 2,
607 SEG_FIELD_AR = 3,
608
609 SEG_FIELD_NR = 4
610};
611
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400612static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
613{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000614 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400615}
616
Feng Wuefc64402015-09-18 22:29:51 +0800617static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
618{
619 return &(to_vmx(vcpu)->pi_desc);
620}
621
Nadav Har'El22bd0352011-05-25 23:05:57 +0300622#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
623#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
624#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
625 [number##_HIGH] = VMCS12_OFFSET(name)+4
626
Abel Gordon4607c2d2013-04-18 14:35:55 +0300627
Bandan Dasfe2b2012014-04-21 15:20:14 -0400628static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300629 /*
630 * We do NOT shadow fields that are modified when L0
631 * traps and emulates any vmx instruction (e.g. VMPTRLD,
632 * VMXON...) executed by L1.
633 * For example, VM_INSTRUCTION_ERROR is read
634 * by L1 if a vmx instruction fails (part of the error path).
635 * Note the code assumes this logic. If for some reason
636 * we start shadowing these fields then we need to
637 * force a shadow sync when L0 emulates vmx instructions
638 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
639 * by nested_vmx_failValid)
640 */
641 VM_EXIT_REASON,
642 VM_EXIT_INTR_INFO,
643 VM_EXIT_INSTRUCTION_LEN,
644 IDT_VECTORING_INFO_FIELD,
645 IDT_VECTORING_ERROR_CODE,
646 VM_EXIT_INTR_ERROR_CODE,
647 EXIT_QUALIFICATION,
648 GUEST_LINEAR_ADDRESS,
649 GUEST_PHYSICAL_ADDRESS
650};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400651static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300652 ARRAY_SIZE(shadow_read_only_fields);
653
Bandan Dasfe2b2012014-04-21 15:20:14 -0400654static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800655 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300656 GUEST_RIP,
657 GUEST_RSP,
658 GUEST_CR0,
659 GUEST_CR3,
660 GUEST_CR4,
661 GUEST_INTERRUPTIBILITY_INFO,
662 GUEST_RFLAGS,
663 GUEST_CS_SELECTOR,
664 GUEST_CS_AR_BYTES,
665 GUEST_CS_LIMIT,
666 GUEST_CS_BASE,
667 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100668 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300669 CR0_GUEST_HOST_MASK,
670 CR0_READ_SHADOW,
671 CR4_READ_SHADOW,
672 TSC_OFFSET,
673 EXCEPTION_BITMAP,
674 CPU_BASED_VM_EXEC_CONTROL,
675 VM_ENTRY_EXCEPTION_ERROR_CODE,
676 VM_ENTRY_INTR_INFO_FIELD,
677 VM_ENTRY_INSTRUCTION_LEN,
678 VM_ENTRY_EXCEPTION_ERROR_CODE,
679 HOST_FS_BASE,
680 HOST_GS_BASE,
681 HOST_FS_SELECTOR,
682 HOST_GS_SELECTOR
683};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400684static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300685 ARRAY_SIZE(shadow_read_write_fields);
686
Mathias Krause772e0312012-08-30 01:30:19 +0200687static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300688 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800689 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300690 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
691 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
692 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
693 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
694 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
695 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
696 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
697 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800698 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300699 FIELD(HOST_ES_SELECTOR, host_es_selector),
700 FIELD(HOST_CS_SELECTOR, host_cs_selector),
701 FIELD(HOST_SS_SELECTOR, host_ss_selector),
702 FIELD(HOST_DS_SELECTOR, host_ds_selector),
703 FIELD(HOST_FS_SELECTOR, host_fs_selector),
704 FIELD(HOST_GS_SELECTOR, host_gs_selector),
705 FIELD(HOST_TR_SELECTOR, host_tr_selector),
706 FIELD64(IO_BITMAP_A, io_bitmap_a),
707 FIELD64(IO_BITMAP_B, io_bitmap_b),
708 FIELD64(MSR_BITMAP, msr_bitmap),
709 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
710 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
711 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
712 FIELD64(TSC_OFFSET, tsc_offset),
713 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
714 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800715 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300716 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800717 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
718 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
719 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
720 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800721 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300722 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
723 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
724 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
725 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
726 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
727 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
728 FIELD64(GUEST_PDPTR0, guest_pdptr0),
729 FIELD64(GUEST_PDPTR1, guest_pdptr1),
730 FIELD64(GUEST_PDPTR2, guest_pdptr2),
731 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100732 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300733 FIELD64(HOST_IA32_PAT, host_ia32_pat),
734 FIELD64(HOST_IA32_EFER, host_ia32_efer),
735 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
736 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
737 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
738 FIELD(EXCEPTION_BITMAP, exception_bitmap),
739 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
740 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
741 FIELD(CR3_TARGET_COUNT, cr3_target_count),
742 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
743 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
744 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
745 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
746 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
747 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
748 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
749 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
750 FIELD(TPR_THRESHOLD, tpr_threshold),
751 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
752 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
753 FIELD(VM_EXIT_REASON, vm_exit_reason),
754 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
755 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
756 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
757 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
758 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
759 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
760 FIELD(GUEST_ES_LIMIT, guest_es_limit),
761 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
762 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
763 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
764 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
765 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
766 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
767 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
768 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
769 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
770 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
771 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
772 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
773 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
774 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
775 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
776 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
777 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
778 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
779 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
780 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
781 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100782 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300783 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
784 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
785 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
786 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
787 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
788 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
789 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
790 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
791 FIELD(EXIT_QUALIFICATION, exit_qualification),
792 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
793 FIELD(GUEST_CR0, guest_cr0),
794 FIELD(GUEST_CR3, guest_cr3),
795 FIELD(GUEST_CR4, guest_cr4),
796 FIELD(GUEST_ES_BASE, guest_es_base),
797 FIELD(GUEST_CS_BASE, guest_cs_base),
798 FIELD(GUEST_SS_BASE, guest_ss_base),
799 FIELD(GUEST_DS_BASE, guest_ds_base),
800 FIELD(GUEST_FS_BASE, guest_fs_base),
801 FIELD(GUEST_GS_BASE, guest_gs_base),
802 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
803 FIELD(GUEST_TR_BASE, guest_tr_base),
804 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
805 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
806 FIELD(GUEST_DR7, guest_dr7),
807 FIELD(GUEST_RSP, guest_rsp),
808 FIELD(GUEST_RIP, guest_rip),
809 FIELD(GUEST_RFLAGS, guest_rflags),
810 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
811 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
812 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
813 FIELD(HOST_CR0, host_cr0),
814 FIELD(HOST_CR3, host_cr3),
815 FIELD(HOST_CR4, host_cr4),
816 FIELD(HOST_FS_BASE, host_fs_base),
817 FIELD(HOST_GS_BASE, host_gs_base),
818 FIELD(HOST_TR_BASE, host_tr_base),
819 FIELD(HOST_GDTR_BASE, host_gdtr_base),
820 FIELD(HOST_IDTR_BASE, host_idtr_base),
821 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
822 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
823 FIELD(HOST_RSP, host_rsp),
824 FIELD(HOST_RIP, host_rip),
825};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300826
827static inline short vmcs_field_to_offset(unsigned long field)
828{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100829 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
830
831 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
832 vmcs_field_to_offset_table[field] == 0)
833 return -ENOENT;
834
Nadav Har'El22bd0352011-05-25 23:05:57 +0300835 return vmcs_field_to_offset_table[field];
836}
837
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300838static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
839{
840 return to_vmx(vcpu)->nested.current_vmcs12;
841}
842
843static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
844{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200845 struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT);
Xiao Guangrong32cad842012-08-03 15:42:52 +0800846 if (is_error_page(page))
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300847 return NULL;
Xiao Guangrong32cad842012-08-03 15:42:52 +0800848
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300849 return page;
850}
851
852static void nested_release_page(struct page *page)
853{
854 kvm_release_page_dirty(page);
855}
856
857static void nested_release_page_clean(struct page *page)
858{
859 kvm_release_page_clean(page);
860}
861
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300862static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800863static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800864static void kvm_cpu_vmxon(u64 addr);
865static void kvm_cpu_vmxoff(void);
Paolo Bonzini93c4adc2014-03-05 23:19:52 +0100866static bool vmx_mpx_supported(void);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800867static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200868static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300869static void vmx_set_segment(struct kvm_vcpu *vcpu,
870 struct kvm_segment *var, int seg);
871static void vmx_get_segment(struct kvm_vcpu *vcpu,
872 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200873static bool guest_state_valid(struct kvm_vcpu *vcpu);
874static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300875static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300876static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800877static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300878
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879static DEFINE_PER_CPU(struct vmcs *, vmxarea);
880static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300881/*
882 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
883 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
884 */
885static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300886static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800887
Feng Wubf9f6ac2015-09-18 22:29:55 +0800888/*
889 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
890 * can find which vCPU should be waken up.
891 */
892static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
893static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
894
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200895static unsigned long *vmx_io_bitmap_a;
896static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200897static unsigned long *vmx_msr_bitmap_legacy;
898static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800899static unsigned long *vmx_msr_bitmap_legacy_x2apic;
900static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800901static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300902static unsigned long *vmx_vmread_bitmap;
903static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300904
Avi Kivity110312c2010-12-21 12:54:20 +0200905static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200906static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200907
Sheng Yang2384d2b2008-01-17 15:14:33 +0800908static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
909static DEFINE_SPINLOCK(vmx_vpid_lock);
910
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300911static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 int size;
913 int order;
914 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300915 u32 pin_based_exec_ctrl;
916 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800917 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300918 u32 vmexit_ctrl;
919 u32 vmentry_ctrl;
920} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921
Hannes Ederefff9e52008-11-28 17:02:06 +0100922static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800923 u32 ept;
924 u32 vpid;
925} vmx_capability;
926
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927#define VMX_SEGMENT_FIELD(seg) \
928 [VCPU_SREG_##seg] = { \
929 .selector = GUEST_##seg##_SELECTOR, \
930 .base = GUEST_##seg##_BASE, \
931 .limit = GUEST_##seg##_LIMIT, \
932 .ar_bytes = GUEST_##seg##_AR_BYTES, \
933 }
934
Mathias Krause772e0312012-08-30 01:30:19 +0200935static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800936 unsigned selector;
937 unsigned base;
938 unsigned limit;
939 unsigned ar_bytes;
940} kvm_vmx_segment_fields[] = {
941 VMX_SEGMENT_FIELD(CS),
942 VMX_SEGMENT_FIELD(DS),
943 VMX_SEGMENT_FIELD(ES),
944 VMX_SEGMENT_FIELD(FS),
945 VMX_SEGMENT_FIELD(GS),
946 VMX_SEGMENT_FIELD(SS),
947 VMX_SEGMENT_FIELD(TR),
948 VMX_SEGMENT_FIELD(LDTR),
949};
950
Avi Kivity26bb0982009-09-07 11:14:12 +0300951static u64 host_efer;
952
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300953static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
954
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300955/*
Brian Gerst8c065852010-07-17 09:03:26 -0400956 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300957 * away by decrementing the array size.
958 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800960#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300961 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400963 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800965
Gui Jianfeng31299942010-03-15 17:29:09 +0800966static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967{
968 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
969 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100970 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971}
972
Gui Jianfeng31299942010-03-15 17:29:09 +0800973static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300974{
975 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
976 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100977 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300978}
979
Gui Jianfeng31299942010-03-15 17:29:09 +0800980static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500981{
982 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
983 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100984 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500985}
986
Gui Jianfeng31299942010-03-15 17:29:09 +0800987static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988{
989 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
990 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
991}
992
Gui Jianfeng31299942010-03-15 17:29:09 +0800993static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800994{
995 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
996 INTR_INFO_VALID_MASK)) ==
997 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
998}
999
Gui Jianfeng31299942010-03-15 17:29:09 +08001000static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001001{
Sheng Yang04547152009-04-01 15:52:31 +08001002 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001003}
1004
Gui Jianfeng31299942010-03-15 17:29:09 +08001005static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001006{
Sheng Yang04547152009-04-01 15:52:31 +08001007 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001008}
1009
Paolo Bonzini35754c92015-07-29 12:05:37 +02001010static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001011{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001012 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001013}
1014
Gui Jianfeng31299942010-03-15 17:29:09 +08001015static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001016{
Sheng Yang04547152009-04-01 15:52:31 +08001017 return vmcs_config.cpu_based_exec_ctrl &
1018 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001019}
1020
Avi Kivity774ead32007-12-26 13:57:04 +02001021static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001022{
Sheng Yang04547152009-04-01 15:52:31 +08001023 return vmcs_config.cpu_based_2nd_exec_ctrl &
1024 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1025}
1026
Yang Zhang8d146952013-01-25 10:18:50 +08001027static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1028{
1029 return vmcs_config.cpu_based_2nd_exec_ctrl &
1030 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1031}
1032
Yang Zhang83d4c282013-01-25 10:18:49 +08001033static inline bool cpu_has_vmx_apic_register_virt(void)
1034{
1035 return vmcs_config.cpu_based_2nd_exec_ctrl &
1036 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1037}
1038
Yang Zhangc7c9c562013-01-25 10:18:51 +08001039static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1040{
1041 return vmcs_config.cpu_based_2nd_exec_ctrl &
1042 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1043}
1044
Yang Zhang01e439b2013-04-11 19:25:12 +08001045static inline bool cpu_has_vmx_posted_intr(void)
1046{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001047 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1048 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001049}
1050
1051static inline bool cpu_has_vmx_apicv(void)
1052{
1053 return cpu_has_vmx_apic_register_virt() &&
1054 cpu_has_vmx_virtual_intr_delivery() &&
1055 cpu_has_vmx_posted_intr();
1056}
1057
Sheng Yang04547152009-04-01 15:52:31 +08001058static inline bool cpu_has_vmx_flexpriority(void)
1059{
1060 return cpu_has_vmx_tpr_shadow() &&
1061 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001062}
1063
Marcelo Tosattie7997942009-06-11 12:07:40 -03001064static inline bool cpu_has_vmx_ept_execute_only(void)
1065{
Gui Jianfeng31299942010-03-15 17:29:09 +08001066 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001067}
1068
Marcelo Tosattie7997942009-06-11 12:07:40 -03001069static inline bool cpu_has_vmx_ept_2m_page(void)
1070{
Gui Jianfeng31299942010-03-15 17:29:09 +08001071 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001072}
1073
Sheng Yang878403b2010-01-05 19:02:29 +08001074static inline bool cpu_has_vmx_ept_1g_page(void)
1075{
Gui Jianfeng31299942010-03-15 17:29:09 +08001076 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001077}
1078
Sheng Yang4bc9b982010-06-02 14:05:24 +08001079static inline bool cpu_has_vmx_ept_4levels(void)
1080{
1081 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1082}
1083
Xudong Hao83c3a332012-05-28 19:33:35 +08001084static inline bool cpu_has_vmx_ept_ad_bits(void)
1085{
1086 return vmx_capability.ept & VMX_EPT_AD_BIT;
1087}
1088
Gui Jianfeng31299942010-03-15 17:29:09 +08001089static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001090{
Gui Jianfeng31299942010-03-15 17:29:09 +08001091 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001092}
1093
Gui Jianfeng31299942010-03-15 17:29:09 +08001094static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001095{
Gui Jianfeng31299942010-03-15 17:29:09 +08001096 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001097}
1098
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001099static inline bool cpu_has_vmx_invvpid_single(void)
1100{
1101 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1102}
1103
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001104static inline bool cpu_has_vmx_invvpid_global(void)
1105{
1106 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1107}
1108
Gui Jianfeng31299942010-03-15 17:29:09 +08001109static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001110{
Sheng Yang04547152009-04-01 15:52:31 +08001111 return vmcs_config.cpu_based_2nd_exec_ctrl &
1112 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001113}
1114
Gui Jianfeng31299942010-03-15 17:29:09 +08001115static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001116{
1117 return vmcs_config.cpu_based_2nd_exec_ctrl &
1118 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1119}
1120
Gui Jianfeng31299942010-03-15 17:29:09 +08001121static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001122{
1123 return vmcs_config.cpu_based_2nd_exec_ctrl &
1124 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1125}
1126
Paolo Bonzini35754c92015-07-29 12:05:37 +02001127static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001128{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001129 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001130}
1131
Gui Jianfeng31299942010-03-15 17:29:09 +08001132static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001133{
Sheng Yang04547152009-04-01 15:52:31 +08001134 return vmcs_config.cpu_based_2nd_exec_ctrl &
1135 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001136}
1137
Gui Jianfeng31299942010-03-15 17:29:09 +08001138static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001139{
1140 return vmcs_config.cpu_based_2nd_exec_ctrl &
1141 SECONDARY_EXEC_RDTSCP;
1142}
1143
Mao, Junjiead756a12012-07-02 01:18:48 +00001144static inline bool cpu_has_vmx_invpcid(void)
1145{
1146 return vmcs_config.cpu_based_2nd_exec_ctrl &
1147 SECONDARY_EXEC_ENABLE_INVPCID;
1148}
1149
Gui Jianfeng31299942010-03-15 17:29:09 +08001150static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001151{
1152 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1153}
1154
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001155static inline bool cpu_has_vmx_wbinvd_exit(void)
1156{
1157 return vmcs_config.cpu_based_2nd_exec_ctrl &
1158 SECONDARY_EXEC_WBINVD_EXITING;
1159}
1160
Abel Gordonabc4fc52013-04-18 14:35:25 +03001161static inline bool cpu_has_vmx_shadow_vmcs(void)
1162{
1163 u64 vmx_msr;
1164 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1165 /* check if the cpu supports writing r/o exit information fields */
1166 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1167 return false;
1168
1169 return vmcs_config.cpu_based_2nd_exec_ctrl &
1170 SECONDARY_EXEC_SHADOW_VMCS;
1171}
1172
Kai Huang843e4332015-01-28 10:54:28 +08001173static inline bool cpu_has_vmx_pml(void)
1174{
1175 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1176}
1177
Haozhong Zhang64903d62015-10-20 15:39:09 +08001178static inline bool cpu_has_vmx_tsc_scaling(void)
1179{
1180 return vmcs_config.cpu_based_2nd_exec_ctrl &
1181 SECONDARY_EXEC_TSC_SCALING;
1182}
1183
Sheng Yang04547152009-04-01 15:52:31 +08001184static inline bool report_flexpriority(void)
1185{
1186 return flexpriority_enabled;
1187}
1188
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001189static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1190{
1191 return vmcs12->cpu_based_vm_exec_control & bit;
1192}
1193
1194static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1195{
1196 return (vmcs12->cpu_based_vm_exec_control &
1197 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1198 (vmcs12->secondary_vm_exec_control & bit);
1199}
1200
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001201static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001202{
1203 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1204}
1205
Jan Kiszkaf41245002014-03-07 20:03:13 +01001206static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1207{
1208 return vmcs12->pin_based_vm_exec_control &
1209 PIN_BASED_VMX_PREEMPTION_TIMER;
1210}
1211
Nadav Har'El155a97a2013-08-05 11:07:16 +03001212static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1213{
1214 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1215}
1216
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001217static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1218{
1219 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1220 vmx_xsaves_supported();
1221}
1222
Wincy Vanf2b93282015-02-03 23:56:03 +08001223static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1224{
1225 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1226}
1227
Wanpeng Li5c614b32015-10-13 09:18:36 -07001228static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1229{
1230 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1231}
1232
Wincy Van82f0dd42015-02-03 23:57:18 +08001233static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1234{
1235 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1236}
1237
Wincy Van608406e2015-02-03 23:57:51 +08001238static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1239{
1240 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1241}
1242
Wincy Van705699a2015-02-03 23:58:17 +08001243static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1244{
1245 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1246}
1247
Nadav Har'El644d7112011-05-25 23:12:35 +03001248static inline bool is_exception(u32 intr_info)
1249{
1250 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1251 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1252}
1253
Jan Kiszka533558b2014-01-04 18:47:20 +01001254static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1255 u32 exit_intr_info,
1256 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001257static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1258 struct vmcs12 *vmcs12,
1259 u32 reason, unsigned long qualification);
1260
Rusty Russell8b9cf982007-07-30 16:31:43 +10001261static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001262{
1263 int i;
1264
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001265 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001266 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001267 return i;
1268 return -1;
1269}
1270
Sheng Yang2384d2b2008-01-17 15:14:33 +08001271static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1272{
1273 struct {
1274 u64 vpid : 16;
1275 u64 rsvd : 48;
1276 u64 gva;
1277 } operand = { vpid, 0, gva };
1278
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001279 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001280 /* CF==1 or ZF==1 --> rc = -1 */
1281 "; ja 1f ; ud2 ; 1:"
1282 : : "a"(&operand), "c"(ext) : "cc", "memory");
1283}
1284
Sheng Yang14394422008-04-28 12:24:45 +08001285static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1286{
1287 struct {
1288 u64 eptp, gpa;
1289 } operand = {eptp, gpa};
1290
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001291 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001292 /* CF==1 or ZF==1 --> rc = -1 */
1293 "; ja 1f ; ud2 ; 1:\n"
1294 : : "a" (&operand), "c" (ext) : "cc", "memory");
1295}
1296
Avi Kivity26bb0982009-09-07 11:14:12 +03001297static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001298{
1299 int i;
1300
Rusty Russell8b9cf982007-07-30 16:31:43 +10001301 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001302 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001303 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001304 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001305}
1306
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307static void vmcs_clear(struct vmcs *vmcs)
1308{
1309 u64 phys_addr = __pa(vmcs);
1310 u8 error;
1311
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001312 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001313 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314 : "cc", "memory");
1315 if (error)
1316 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1317 vmcs, phys_addr);
1318}
1319
Nadav Har'Eld462b812011-05-24 15:26:10 +03001320static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1321{
1322 vmcs_clear(loaded_vmcs->vmcs);
1323 loaded_vmcs->cpu = -1;
1324 loaded_vmcs->launched = 0;
1325}
1326
Dongxiao Xu7725b892010-05-11 18:29:38 +08001327static void vmcs_load(struct vmcs *vmcs)
1328{
1329 u64 phys_addr = __pa(vmcs);
1330 u8 error;
1331
1332 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001333 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001334 : "cc", "memory");
1335 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001336 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001337 vmcs, phys_addr);
1338}
1339
Dave Young2965faa2015-09-09 15:38:55 -07001340#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001341/*
1342 * This bitmap is used to indicate whether the vmclear
1343 * operation is enabled on all cpus. All disabled by
1344 * default.
1345 */
1346static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1347
1348static inline void crash_enable_local_vmclear(int cpu)
1349{
1350 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1351}
1352
1353static inline void crash_disable_local_vmclear(int cpu)
1354{
1355 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1356}
1357
1358static inline int crash_local_vmclear_enabled(int cpu)
1359{
1360 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1361}
1362
1363static void crash_vmclear_local_loaded_vmcss(void)
1364{
1365 int cpu = raw_smp_processor_id();
1366 struct loaded_vmcs *v;
1367
1368 if (!crash_local_vmclear_enabled(cpu))
1369 return;
1370
1371 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1372 loaded_vmcss_on_cpu_link)
1373 vmcs_clear(v->vmcs);
1374}
1375#else
1376static inline void crash_enable_local_vmclear(int cpu) { }
1377static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001378#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001379
Nadav Har'Eld462b812011-05-24 15:26:10 +03001380static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001381{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001382 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001383 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384
Nadav Har'Eld462b812011-05-24 15:26:10 +03001385 if (loaded_vmcs->cpu != cpu)
1386 return; /* vcpu migration can race with cpu offline */
1387 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001389 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001390 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001391
1392 /*
1393 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1394 * is before setting loaded_vmcs->vcpu to -1 which is done in
1395 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1396 * then adds the vmcs into percpu list before it is deleted.
1397 */
1398 smp_wmb();
1399
Nadav Har'Eld462b812011-05-24 15:26:10 +03001400 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001401 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001402}
1403
Nadav Har'Eld462b812011-05-24 15:26:10 +03001404static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001405{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001406 int cpu = loaded_vmcs->cpu;
1407
1408 if (cpu != -1)
1409 smp_call_function_single(cpu,
1410 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001411}
1412
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001413static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001414{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001415 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001416 return;
1417
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001418 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001419 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001420}
1421
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001422static inline void vpid_sync_vcpu_global(void)
1423{
1424 if (cpu_has_vmx_invvpid_global())
1425 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1426}
1427
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001428static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001429{
1430 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001431 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001432 else
1433 vpid_sync_vcpu_global();
1434}
1435
Sheng Yang14394422008-04-28 12:24:45 +08001436static inline void ept_sync_global(void)
1437{
1438 if (cpu_has_vmx_invept_global())
1439 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1440}
1441
1442static inline void ept_sync_context(u64 eptp)
1443{
Avi Kivity089d0342009-03-23 18:26:32 +02001444 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001445 if (cpu_has_vmx_invept_context())
1446 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1447 else
1448 ept_sync_global();
1449 }
1450}
1451
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001452static __always_inline void vmcs_check16(unsigned long field)
1453{
1454 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1455 "16-bit accessor invalid for 64-bit field");
1456 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1457 "16-bit accessor invalid for 64-bit high field");
1458 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1459 "16-bit accessor invalid for 32-bit high field");
1460 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1461 "16-bit accessor invalid for natural width field");
1462}
1463
1464static __always_inline void vmcs_check32(unsigned long field)
1465{
1466 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1467 "32-bit accessor invalid for 16-bit field");
1468 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1469 "32-bit accessor invalid for natural width field");
1470}
1471
1472static __always_inline void vmcs_check64(unsigned long field)
1473{
1474 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1475 "64-bit accessor invalid for 16-bit field");
1476 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1477 "64-bit accessor invalid for 64-bit high field");
1478 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1479 "64-bit accessor invalid for 32-bit field");
1480 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1481 "64-bit accessor invalid for natural width field");
1482}
1483
1484static __always_inline void vmcs_checkl(unsigned long field)
1485{
1486 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1487 "Natural width accessor invalid for 16-bit field");
1488 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1489 "Natural width accessor invalid for 64-bit field");
1490 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1491 "Natural width accessor invalid for 64-bit high field");
1492 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1493 "Natural width accessor invalid for 32-bit field");
1494}
1495
1496static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497{
Avi Kivity5e520e62011-05-15 10:13:12 -04001498 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499
Avi Kivity5e520e62011-05-15 10:13:12 -04001500 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1501 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502 return value;
1503}
1504
Avi Kivity96304212011-05-15 10:13:13 -04001505static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001507 vmcs_check16(field);
1508 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509}
1510
Avi Kivity96304212011-05-15 10:13:13 -04001511static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001513 vmcs_check32(field);
1514 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515}
1516
Avi Kivity96304212011-05-15 10:13:13 -04001517static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001518{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001519 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001520#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001521 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001523 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524#endif
1525}
1526
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001527static __always_inline unsigned long vmcs_readl(unsigned long field)
1528{
1529 vmcs_checkl(field);
1530 return __vmcs_readl(field);
1531}
1532
Avi Kivitye52de1b2007-01-05 16:36:56 -08001533static noinline void vmwrite_error(unsigned long field, unsigned long value)
1534{
1535 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1536 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1537 dump_stack();
1538}
1539
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001540static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541{
1542 u8 error;
1543
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001544 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001545 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001546 if (unlikely(error))
1547 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001548}
1549
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001550static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001552 vmcs_check16(field);
1553 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554}
1555
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001556static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001558 vmcs_check32(field);
1559 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560}
1561
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001562static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001564 vmcs_check64(field);
1565 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001566#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001568 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569#endif
1570}
1571
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001572static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001573{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001574 vmcs_checkl(field);
1575 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001576}
1577
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001578static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001579{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001580 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1581 "vmcs_clear_bits does not support 64-bit fields");
1582 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1583}
1584
1585static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1586{
1587 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1588 "vmcs_set_bits does not support 64-bit fields");
1589 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001590}
1591
Gleb Natapov2961e8762013-11-25 15:37:13 +02001592static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1593{
1594 vmcs_write32(VM_ENTRY_CONTROLS, val);
1595 vmx->vm_entry_controls_shadow = val;
1596}
1597
1598static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1599{
1600 if (vmx->vm_entry_controls_shadow != val)
1601 vm_entry_controls_init(vmx, val);
1602}
1603
1604static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1605{
1606 return vmx->vm_entry_controls_shadow;
1607}
1608
1609
1610static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1611{
1612 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1613}
1614
1615static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1616{
1617 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1618}
1619
1620static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1621{
1622 vmcs_write32(VM_EXIT_CONTROLS, val);
1623 vmx->vm_exit_controls_shadow = val;
1624}
1625
1626static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1627{
1628 if (vmx->vm_exit_controls_shadow != val)
1629 vm_exit_controls_init(vmx, val);
1630}
1631
1632static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1633{
1634 return vmx->vm_exit_controls_shadow;
1635}
1636
1637
1638static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1639{
1640 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1641}
1642
1643static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1644{
1645 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1646}
1647
Avi Kivity2fb92db2011-04-27 19:42:18 +03001648static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1649{
1650 vmx->segment_cache.bitmask = 0;
1651}
1652
1653static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1654 unsigned field)
1655{
1656 bool ret;
1657 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1658
1659 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1660 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1661 vmx->segment_cache.bitmask = 0;
1662 }
1663 ret = vmx->segment_cache.bitmask & mask;
1664 vmx->segment_cache.bitmask |= mask;
1665 return ret;
1666}
1667
1668static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1669{
1670 u16 *p = &vmx->segment_cache.seg[seg].selector;
1671
1672 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1673 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1674 return *p;
1675}
1676
1677static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1678{
1679 ulong *p = &vmx->segment_cache.seg[seg].base;
1680
1681 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1682 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1683 return *p;
1684}
1685
1686static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1687{
1688 u32 *p = &vmx->segment_cache.seg[seg].limit;
1689
1690 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1691 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1692 return *p;
1693}
1694
1695static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1696{
1697 u32 *p = &vmx->segment_cache.seg[seg].ar;
1698
1699 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1700 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1701 return *p;
1702}
1703
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001704static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1705{
1706 u32 eb;
1707
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001708 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001709 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001710 if ((vcpu->guest_debug &
1711 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1712 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1713 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001714 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001715 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001716 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001717 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001718 if (vcpu->fpu_active)
1719 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001720
1721 /* When we are running a nested L2 guest and L1 specified for it a
1722 * certain exception bitmap, we must trap the same exceptions and pass
1723 * them to L1. When running L2, we will only handle the exceptions
1724 * specified above if L1 did not want them.
1725 */
1726 if (is_guest_mode(vcpu))
1727 eb |= get_vmcs12(vcpu)->exception_bitmap;
1728
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001729 vmcs_write32(EXCEPTION_BITMAP, eb);
1730}
1731
Gleb Natapov2961e8762013-11-25 15:37:13 +02001732static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1733 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001734{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001735 vm_entry_controls_clearbit(vmx, entry);
1736 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001737}
1738
Avi Kivity61d2ef22010-04-28 16:40:38 +03001739static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1740{
1741 unsigned i;
1742 struct msr_autoload *m = &vmx->msr_autoload;
1743
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001744 switch (msr) {
1745 case MSR_EFER:
1746 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001747 clear_atomic_switch_msr_special(vmx,
1748 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001749 VM_EXIT_LOAD_IA32_EFER);
1750 return;
1751 }
1752 break;
1753 case MSR_CORE_PERF_GLOBAL_CTRL:
1754 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001755 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001756 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1757 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1758 return;
1759 }
1760 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001761 }
1762
Avi Kivity61d2ef22010-04-28 16:40:38 +03001763 for (i = 0; i < m->nr; ++i)
1764 if (m->guest[i].index == msr)
1765 break;
1766
1767 if (i == m->nr)
1768 return;
1769 --m->nr;
1770 m->guest[i] = m->guest[m->nr];
1771 m->host[i] = m->host[m->nr];
1772 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1773 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1774}
1775
Gleb Natapov2961e8762013-11-25 15:37:13 +02001776static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1777 unsigned long entry, unsigned long exit,
1778 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1779 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001780{
1781 vmcs_write64(guest_val_vmcs, guest_val);
1782 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001783 vm_entry_controls_setbit(vmx, entry);
1784 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001785}
1786
Avi Kivity61d2ef22010-04-28 16:40:38 +03001787static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1788 u64 guest_val, u64 host_val)
1789{
1790 unsigned i;
1791 struct msr_autoload *m = &vmx->msr_autoload;
1792
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001793 switch (msr) {
1794 case MSR_EFER:
1795 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001796 add_atomic_switch_msr_special(vmx,
1797 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001798 VM_EXIT_LOAD_IA32_EFER,
1799 GUEST_IA32_EFER,
1800 HOST_IA32_EFER,
1801 guest_val, host_val);
1802 return;
1803 }
1804 break;
1805 case MSR_CORE_PERF_GLOBAL_CTRL:
1806 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001807 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001808 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1809 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1810 GUEST_IA32_PERF_GLOBAL_CTRL,
1811 HOST_IA32_PERF_GLOBAL_CTRL,
1812 guest_val, host_val);
1813 return;
1814 }
1815 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001816 }
1817
Avi Kivity61d2ef22010-04-28 16:40:38 +03001818 for (i = 0; i < m->nr; ++i)
1819 if (m->guest[i].index == msr)
1820 break;
1821
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001822 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001823 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001824 "Can't add msr %x\n", msr);
1825 return;
1826 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001827 ++m->nr;
1828 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1829 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1830 }
1831
1832 m->guest[i].index = msr;
1833 m->guest[i].value = guest_val;
1834 m->host[i].index = msr;
1835 m->host[i].value = host_val;
1836}
1837
Avi Kivity33ed6322007-05-02 16:54:03 +03001838static void reload_tss(void)
1839{
Avi Kivity33ed6322007-05-02 16:54:03 +03001840 /*
1841 * VT restores TR but not its size. Useless.
1842 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001843 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001844 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001845
Avi Kivityd3591922010-07-26 18:32:39 +03001846 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001847 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1848 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001849}
1850
Avi Kivity92c0d902009-10-29 11:00:16 +02001851static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001852{
Roel Kluin3a34a882009-08-04 02:08:45 -07001853 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001854 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001855
Avi Kivityf6801df2010-01-21 15:31:50 +02001856 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001857
Avi Kivity51c6cf62007-08-29 03:48:05 +03001858 /*
Guo Chao0fa06072012-06-28 15:16:19 +08001859 * NX is emulated; LMA and LME handled by hardware; SCE meaningless
Avi Kivity51c6cf62007-08-29 03:48:05 +03001860 * outside long mode
1861 */
1862 ignore_bits = EFER_NX | EFER_SCE;
1863#ifdef CONFIG_X86_64
1864 ignore_bits |= EFER_LMA | EFER_LME;
1865 /* SCE is meaningful only in long mode on Intel */
1866 if (guest_efer & EFER_LMA)
1867 ignore_bits &= ~(u64)EFER_SCE;
1868#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001869 guest_efer &= ~ignore_bits;
1870 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001871 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001872 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001873
1874 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001875
1876 /*
1877 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1878 * On CPUs that support "load IA32_EFER", always switch EFER
1879 * atomically, since it's faster than switching it manually.
1880 */
1881 if (cpu_has_load_ia32_efer ||
1882 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001883 guest_efer = vmx->vcpu.arch.efer;
1884 if (!(guest_efer & EFER_LMA))
1885 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001886 if (guest_efer != host_efer)
1887 add_atomic_switch_msr(vmx, MSR_EFER,
1888 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001889 return false;
1890 }
1891
Avi Kivity26bb0982009-09-07 11:14:12 +03001892 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001893}
1894
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001895static unsigned long segment_base(u16 selector)
1896{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001897 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001898 struct desc_struct *d;
1899 unsigned long table_base;
1900 unsigned long v;
1901
1902 if (!(selector & ~3))
1903 return 0;
1904
Avi Kivityd3591922010-07-26 18:32:39 +03001905 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001906
1907 if (selector & 4) { /* from ldt */
1908 u16 ldt_selector = kvm_read_ldt();
1909
1910 if (!(ldt_selector & ~3))
1911 return 0;
1912
1913 table_base = segment_base(ldt_selector);
1914 }
1915 d = (struct desc_struct *)(table_base + (selector & ~7));
1916 v = get_desc_base(d);
1917#ifdef CONFIG_X86_64
1918 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1919 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1920#endif
1921 return v;
1922}
1923
1924static inline unsigned long kvm_read_tr_base(void)
1925{
1926 u16 tr;
1927 asm("str %0" : "=g"(tr));
1928 return segment_base(tr);
1929}
1930
Avi Kivity04d2cc72007-09-10 18:10:54 +03001931static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001932{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001933 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001934 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001935
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001936 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001937 return;
1938
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001939 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001940 /*
1941 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1942 * allow segment selectors with cpl > 0 or ti == 1.
1943 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001944 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001945 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001946 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001947 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001948 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001949 vmx->host_state.fs_reload_needed = 0;
1950 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001951 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001952 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001953 }
Avi Kivity9581d442010-10-19 16:46:55 +02001954 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001955 if (!(vmx->host_state.gs_sel & 7))
1956 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001957 else {
1958 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001959 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001960 }
1961
1962#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03001963 savesegment(ds, vmx->host_state.ds_sel);
1964 savesegment(es, vmx->host_state.es_sel);
1965#endif
1966
1967#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03001968 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1969 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1970#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001971 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1972 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001973#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001974
1975#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001976 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1977 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001978 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001979#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00001980 if (boot_cpu_has(X86_FEATURE_MPX))
1981 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03001982 for (i = 0; i < vmx->save_nmsrs; ++i)
1983 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001984 vmx->guest_msrs[i].data,
1985 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001986}
1987
Avi Kivitya9b21b62008-06-24 11:48:49 +03001988static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001989{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001990 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001991 return;
1992
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001993 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001994 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001995#ifdef CONFIG_X86_64
1996 if (is_long_mode(&vmx->vcpu))
1997 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1998#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001999 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002000 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002001#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002002 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002003#else
2004 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002005#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002006 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002007 if (vmx->host_state.fs_reload_needed)
2008 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002009#ifdef CONFIG_X86_64
2010 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2011 loadsegment(ds, vmx->host_state.ds_sel);
2012 loadsegment(es, vmx->host_state.es_sel);
2013 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002014#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002015 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002016#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002017 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002018#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002019 if (vmx->host_state.msr_host_bndcfgs)
2020 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002021 /*
2022 * If the FPU is not active (through the host task or
2023 * the guest vcpu), then restore the cr0.TS bit.
2024 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002025 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002026 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002027 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002028}
2029
Avi Kivitya9b21b62008-06-24 11:48:49 +03002030static void vmx_load_host_state(struct vcpu_vmx *vmx)
2031{
2032 preempt_disable();
2033 __vmx_load_host_state(vmx);
2034 preempt_enable();
2035}
2036
Feng Wu28b835d2015-09-18 22:29:54 +08002037static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2038{
2039 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2040 struct pi_desc old, new;
2041 unsigned int dest;
2042
2043 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2044 !irq_remapping_cap(IRQ_POSTING_CAP))
2045 return;
2046
2047 do {
2048 old.control = new.control = pi_desc->control;
2049
2050 /*
2051 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2052 * are two possible cases:
2053 * 1. After running 'pre_block', context switch
2054 * happened. For this case, 'sn' was set in
2055 * vmx_vcpu_put(), so we need to clear it here.
2056 * 2. After running 'pre_block', we were blocked,
2057 * and woken up by some other guy. For this case,
2058 * we don't need to do anything, 'pi_post_block'
2059 * will do everything for us. However, we cannot
2060 * check whether it is case #1 or case #2 here
2061 * (maybe, not needed), so we also clear sn here,
2062 * I think it is not a big deal.
2063 */
2064 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2065 if (vcpu->cpu != cpu) {
2066 dest = cpu_physical_id(cpu);
2067
2068 if (x2apic_enabled())
2069 new.ndst = dest;
2070 else
2071 new.ndst = (dest << 8) & 0xFF00;
2072 }
2073
2074 /* set 'NV' to 'notification vector' */
2075 new.nv = POSTED_INTR_VECTOR;
2076 }
2077
2078 /* Allow posting non-urgent interrupts */
2079 new.sn = 0;
2080 } while (cmpxchg(&pi_desc->control, old.control,
2081 new.control) != old.control);
2082}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002083/*
2084 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2085 * vcpu mutex is already taken.
2086 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002087static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002089 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002090 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002092 if (!vmm_exclusive)
2093 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002094 else if (vmx->loaded_vmcs->cpu != cpu)
2095 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096
Nadav Har'Eld462b812011-05-24 15:26:10 +03002097 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2098 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2099 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100 }
2101
Nadav Har'Eld462b812011-05-24 15:26:10 +03002102 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002103 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002104 unsigned long sysenter_esp;
2105
Avi Kivitya8eeb042010-05-10 12:34:53 +03002106 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002107 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002108 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002109
2110 /*
2111 * Read loaded_vmcs->cpu should be before fetching
2112 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2113 * See the comments in __loaded_vmcs_clear().
2114 */
2115 smp_rmb();
2116
Nadav Har'Eld462b812011-05-24 15:26:10 +03002117 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2118 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002119 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002120 local_irq_enable();
2121
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122 /*
2123 * Linux uses per-cpu TSS and GDT, so set these when switching
2124 * processors.
2125 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002126 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002127 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128
2129 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2130 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002131
Nadav Har'Eld462b812011-05-24 15:26:10 +03002132 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002133 }
Feng Wu28b835d2015-09-18 22:29:54 +08002134
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002135 /* Setup TSC multiplier */
2136 if (kvm_has_tsc_control &&
2137 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) {
2138 vmx->current_tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2139 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2140 }
2141
Feng Wu28b835d2015-09-18 22:29:54 +08002142 vmx_vcpu_pi_load(vcpu, cpu);
2143}
2144
2145static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2146{
2147 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2148
2149 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2150 !irq_remapping_cap(IRQ_POSTING_CAP))
2151 return;
2152
2153 /* Set SN when the vCPU is preempted */
2154 if (vcpu->preempted)
2155 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156}
2157
2158static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2159{
Feng Wu28b835d2015-09-18 22:29:54 +08002160 vmx_vcpu_pi_put(vcpu);
2161
Avi Kivitya9b21b62008-06-24 11:48:49 +03002162 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002163 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002164 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2165 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002166 kvm_cpu_vmxoff();
2167 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168}
2169
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002170static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2171{
Avi Kivity81231c62010-01-24 16:26:40 +02002172 ulong cr0;
2173
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002174 if (vcpu->fpu_active)
2175 return;
2176 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002177 cr0 = vmcs_readl(GUEST_CR0);
2178 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2179 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2180 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002181 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002182 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002183 if (is_guest_mode(vcpu))
2184 vcpu->arch.cr0_guest_owned_bits &=
2185 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002186 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002187}
2188
Avi Kivityedcafe32009-12-30 18:07:40 +02002189static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2190
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002191/*
2192 * Return the cr0 value that a nested guest would read. This is a combination
2193 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2194 * its hypervisor (cr0_read_shadow).
2195 */
2196static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2197{
2198 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2199 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2200}
2201static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2202{
2203 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2204 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2205}
2206
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002207static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2208{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002209 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2210 * set this *before* calling this function.
2211 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002212 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002213 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002214 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002215 vcpu->arch.cr0_guest_owned_bits = 0;
2216 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002217 if (is_guest_mode(vcpu)) {
2218 /*
2219 * L1's specified read shadow might not contain the TS bit,
2220 * so now that we turned on shadowing of this bit, we need to
2221 * set this bit of the shadow. Like in nested_vmx_run we need
2222 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2223 * up-to-date here because we just decached cr0.TS (and we'll
2224 * only update vmcs12->guest_cr0 on nested exit).
2225 */
2226 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2227 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2228 (vcpu->arch.cr0 & X86_CR0_TS);
2229 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2230 } else
2231 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002232}
2233
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2235{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002236 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002237
Avi Kivity6de12732011-03-07 12:51:22 +02002238 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2239 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2240 rflags = vmcs_readl(GUEST_RFLAGS);
2241 if (to_vmx(vcpu)->rmode.vm86_active) {
2242 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2243 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2244 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2245 }
2246 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002247 }
Avi Kivity6de12732011-03-07 12:51:22 +02002248 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249}
2250
2251static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2252{
Avi Kivity6de12732011-03-07 12:51:22 +02002253 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2254 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002255 if (to_vmx(vcpu)->rmode.vm86_active) {
2256 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002257 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002258 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002259 vmcs_writel(GUEST_RFLAGS, rflags);
2260}
2261
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002262static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002263{
2264 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2265 int ret = 0;
2266
2267 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002268 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002269 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002270 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002271
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002272 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002273}
2274
2275static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2276{
2277 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2278 u32 interruptibility = interruptibility_old;
2279
2280 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2281
Jan Kiszka48005f62010-02-19 19:38:07 +01002282 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002283 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002284 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002285 interruptibility |= GUEST_INTR_STATE_STI;
2286
2287 if ((interruptibility != interruptibility_old))
2288 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2289}
2290
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2292{
2293 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002295 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002297 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298
Glauber Costa2809f5d2009-05-12 16:21:05 -04002299 /* skipping an emulated instruction also counts */
2300 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301}
2302
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002303/*
2304 * KVM wants to inject page-faults which it got to the guest. This function
2305 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002306 */
Gleb Natapove011c662013-09-25 12:51:35 +03002307static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002308{
2309 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2310
Gleb Natapove011c662013-09-25 12:51:35 +03002311 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002312 return 0;
2313
Jan Kiszka533558b2014-01-04 18:47:20 +01002314 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2315 vmcs_read32(VM_EXIT_INTR_INFO),
2316 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002317 return 1;
2318}
2319
Avi Kivity298101d2007-11-25 13:41:11 +02002320static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002321 bool has_error_code, u32 error_code,
2322 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002323{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002324 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002325 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002326
Gleb Natapove011c662013-09-25 12:51:35 +03002327 if (!reinject && is_guest_mode(vcpu) &&
2328 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002329 return;
2330
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002331 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002332 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002333 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2334 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002335
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002336 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002337 int inc_eip = 0;
2338 if (kvm_exception_is_soft(nr))
2339 inc_eip = vcpu->arch.event_exit_inst_len;
2340 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002341 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002342 return;
2343 }
2344
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002345 if (kvm_exception_is_soft(nr)) {
2346 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2347 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002348 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2349 } else
2350 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2351
2352 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002353}
2354
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002355static bool vmx_rdtscp_supported(void)
2356{
2357 return cpu_has_vmx_rdtscp();
2358}
2359
Mao, Junjiead756a12012-07-02 01:18:48 +00002360static bool vmx_invpcid_supported(void)
2361{
2362 return cpu_has_vmx_invpcid() && enable_ept;
2363}
2364
Avi Kivity6aa8b732006-12-10 02:21:36 -08002365/*
Eddie Donga75beee2007-05-17 18:55:15 +03002366 * Swap MSR entry in host/guest MSR entry array.
2367 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002368static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002369{
Avi Kivity26bb0982009-09-07 11:14:12 +03002370 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002371
2372 tmp = vmx->guest_msrs[to];
2373 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2374 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002375}
2376
Yang Zhang8d146952013-01-25 10:18:50 +08002377static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2378{
2379 unsigned long *msr_bitmap;
2380
Wincy Van670125b2015-03-04 14:31:56 +08002381 if (is_guest_mode(vcpu))
2382 msr_bitmap = vmx_msr_bitmap_nested;
Jan Kiszka8a9781f2015-05-04 08:32:32 +02002383 else if (vcpu->arch.apic_base & X2APIC_ENABLE) {
Yang Zhang8d146952013-01-25 10:18:50 +08002384 if (is_long_mode(vcpu))
2385 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2386 else
2387 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2388 } else {
2389 if (is_long_mode(vcpu))
2390 msr_bitmap = vmx_msr_bitmap_longmode;
2391 else
2392 msr_bitmap = vmx_msr_bitmap_legacy;
2393 }
2394
2395 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2396}
2397
Eddie Donga75beee2007-05-17 18:55:15 +03002398/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002399 * Set up the vmcs to automatically save and restore system
2400 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2401 * mode, as fiddling with msrs is very expensive.
2402 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002403static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002404{
Avi Kivity26bb0982009-09-07 11:14:12 +03002405 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002406
Eddie Donga75beee2007-05-17 18:55:15 +03002407 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002408#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002409 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002410 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
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_LSTAR);
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++);
2416 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002417 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002418 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002419 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002420 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002421 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002422 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002423 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002424 * if efer.sce is enabled.
2425 */
Brian Gerst8c065852010-07-17 09:03:26 -04002426 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002427 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002428 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002429 }
Eddie Donga75beee2007-05-17 18:55:15 +03002430#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002431 index = __find_msr_index(vmx, MSR_EFER);
2432 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002433 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002434
Avi Kivity26bb0982009-09-07 11:14:12 +03002435 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002436
Yang Zhang8d146952013-01-25 10:18:50 +08002437 if (cpu_has_vmx_msr_bitmap())
2438 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002439}
2440
2441/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002443 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2444 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002445 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002446static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447{
2448 u64 host_tsc, tsc_offset;
2449
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002450 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002452 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002453}
2454
2455/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002456 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2457 * counter, even if a nested guest (L2) is currently running.
2458 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002459static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002460{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002461 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002462
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002463 tsc_offset = is_guest_mode(vcpu) ?
2464 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2465 vmcs_read64(TSC_OFFSET);
2466 return host_tsc + tsc_offset;
2467}
2468
Will Auldba904632012-11-29 12:42:50 -08002469static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2470{
2471 return vmcs_read64(TSC_OFFSET);
2472}
2473
Joerg Roedel4051b182011-03-25 09:44:49 +01002474/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002475 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002477static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002479 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002480 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002481 * We're here if L1 chose not to trap WRMSR to TSC. According
2482 * to the spec, this should set L1's TSC; The offset that L1
2483 * set for L2 remains unchanged, and still needs to be added
2484 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002485 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002486 struct vmcs12 *vmcs12;
2487 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2488 /* recalculate vmcs02.TSC_OFFSET: */
2489 vmcs12 = get_vmcs12(vcpu);
2490 vmcs_write64(TSC_OFFSET, offset +
2491 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2492 vmcs12->tsc_offset : 0));
2493 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002494 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2495 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002496 vmcs_write64(TSC_OFFSET, offset);
2497 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002498}
2499
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002500static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002501{
2502 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002503
Zachary Amsdene48672f2010-08-19 22:07:23 -10002504 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002505 if (is_guest_mode(vcpu)) {
2506 /* Even when running L2, the adjustment needs to apply to L1 */
2507 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002508 } else
2509 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2510 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002511}
2512
Nadav Har'El801d3422011-05-25 23:02:23 +03002513static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2514{
2515 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2516 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2517}
2518
2519/*
2520 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2521 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2522 * all guests if the "nested" module option is off, and can also be disabled
2523 * for a single guest by disabling its VMX cpuid bit.
2524 */
2525static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2526{
2527 return nested && guest_cpuid_has_vmx(vcpu);
2528}
2529
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002531 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2532 * returned for the various VMX controls MSRs when nested VMX is enabled.
2533 * The same values should also be used to verify that vmcs12 control fields are
2534 * valid during nested entry from L1 to L2.
2535 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2536 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2537 * bit in the high half is on if the corresponding bit in the control field
2538 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002539 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002540static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002541{
2542 /*
2543 * Note that as a general rule, the high half of the MSRs (bits in
2544 * the control fields which may be 1) should be initialized by the
2545 * intersection of the underlying hardware's MSR (i.e., features which
2546 * can be supported) and the list of features we want to expose -
2547 * because they are known to be properly supported in our code.
2548 * Also, usually, the low half of the MSRs (bits which must be 1) can
2549 * be set to 0, meaning that L1 may turn off any of these bits. The
2550 * reason is that if one of these bits is necessary, it will appear
2551 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2552 * fields of vmcs01 and vmcs02, will turn these bits off - and
2553 * nested_vmx_exit_handled() will not pass related exits to L1.
2554 * These rules have exceptions below.
2555 */
2556
2557 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002558 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002559 vmx->nested.nested_vmx_pinbased_ctls_low,
2560 vmx->nested.nested_vmx_pinbased_ctls_high);
2561 vmx->nested.nested_vmx_pinbased_ctls_low |=
2562 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2563 vmx->nested.nested_vmx_pinbased_ctls_high &=
2564 PIN_BASED_EXT_INTR_MASK |
2565 PIN_BASED_NMI_EXITING |
2566 PIN_BASED_VIRTUAL_NMIS;
2567 vmx->nested.nested_vmx_pinbased_ctls_high |=
2568 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002569 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002570 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002571 vmx->nested.nested_vmx_pinbased_ctls_high |=
2572 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002573
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002574 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002575 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002576 vmx->nested.nested_vmx_exit_ctls_low,
2577 vmx->nested.nested_vmx_exit_ctls_high);
2578 vmx->nested.nested_vmx_exit_ctls_low =
2579 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002580
Wincy Vanb9c237b2015-02-03 23:56:30 +08002581 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002582#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002583 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002584#endif
Jan Kiszkaf41245002014-03-07 20:03:13 +01002585 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002586 vmx->nested.nested_vmx_exit_ctls_high |=
2587 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002588 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002589 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2590
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002591 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002592 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002593
Jan Kiszka2996fca2014-06-16 13:59:43 +02002594 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002595 vmx->nested.nested_vmx_true_exit_ctls_low =
2596 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002597 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2598
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002599 /* entry controls */
2600 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002601 vmx->nested.nested_vmx_entry_ctls_low,
2602 vmx->nested.nested_vmx_entry_ctls_high);
2603 vmx->nested.nested_vmx_entry_ctls_low =
2604 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2605 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002606#ifdef CONFIG_X86_64
2607 VM_ENTRY_IA32E_MODE |
2608#endif
2609 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002610 vmx->nested.nested_vmx_entry_ctls_high |=
2611 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzini36be0b92014-02-24 12:30:04 +01002612 if (vmx_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002613 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002614
Jan Kiszka2996fca2014-06-16 13:59:43 +02002615 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002616 vmx->nested.nested_vmx_true_entry_ctls_low =
2617 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002618 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2619
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002620 /* cpu-based controls */
2621 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002622 vmx->nested.nested_vmx_procbased_ctls_low,
2623 vmx->nested.nested_vmx_procbased_ctls_high);
2624 vmx->nested.nested_vmx_procbased_ctls_low =
2625 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2626 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002627 CPU_BASED_VIRTUAL_INTR_PENDING |
2628 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002629 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2630 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2631 CPU_BASED_CR3_STORE_EXITING |
2632#ifdef CONFIG_X86_64
2633 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2634#endif
2635 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002636 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2637 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2638 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2639 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002640 /*
2641 * We can allow some features even when not supported by the
2642 * hardware. For example, L1 can specify an MSR bitmap - and we
2643 * can use it to avoid exits to L1 - even when L0 runs L2
2644 * without MSR bitmaps.
2645 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002646 vmx->nested.nested_vmx_procbased_ctls_high |=
2647 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002648 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002649
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002650 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002651 vmx->nested.nested_vmx_true_procbased_ctls_low =
2652 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002653 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2654
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002655 /* secondary cpu-based controls */
2656 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002657 vmx->nested.nested_vmx_secondary_ctls_low,
2658 vmx->nested.nested_vmx_secondary_ctls_high);
2659 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2660 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002661 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002662 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002663 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002664 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002665 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002666 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002667 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002668 SECONDARY_EXEC_XSAVES |
2669 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002670
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002671 if (enable_ept) {
2672 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002673 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002674 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002675 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002676 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2677 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002678 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002679 /*
Bandan Das4b855072014-04-19 18:17:44 -04002680 * For nested guests, we don't do anything specific
2681 * for single context invalidation. Hence, only advertise
2682 * support for global context invalidation.
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002683 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002684 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002685 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002686 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002687
Wanpeng Li089d7b62015-10-13 09:18:37 -07002688 if (enable_vpid)
2689 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
2690 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2691 else
2692 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002693
Radim Krčmář0790ec12015-03-17 14:02:32 +01002694 if (enable_unrestricted_guest)
2695 vmx->nested.nested_vmx_secondary_ctls_high |=
2696 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2697
Jan Kiszkac18911a2013-03-13 16:06:41 +01002698 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002699 rdmsr(MSR_IA32_VMX_MISC,
2700 vmx->nested.nested_vmx_misc_low,
2701 vmx->nested.nested_vmx_misc_high);
2702 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2703 vmx->nested.nested_vmx_misc_low |=
2704 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf41245002014-03-07 20:03:13 +01002705 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002706 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002707}
2708
2709static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2710{
2711 /*
2712 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2713 */
2714 return ((control & high) | low) == control;
2715}
2716
2717static inline u64 vmx_control_msr(u32 low, u32 high)
2718{
2719 return low | ((u64)high << 32);
2720}
2721
Jan Kiszkacae50132014-01-04 18:47:22 +01002722/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002723static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2724{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002725 struct vcpu_vmx *vmx = to_vmx(vcpu);
2726
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002727 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002728 case MSR_IA32_VMX_BASIC:
2729 /*
2730 * This MSR reports some information about VMX support. We
2731 * should return information about the VMX we emulate for the
2732 * guest, and the VMCS structure we give it - not about the
2733 * VMX support of the underlying hardware.
2734 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002735 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002736 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2737 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2738 break;
2739 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2740 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002741 *pdata = vmx_control_msr(
2742 vmx->nested.nested_vmx_pinbased_ctls_low,
2743 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002744 break;
2745 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002746 *pdata = vmx_control_msr(
2747 vmx->nested.nested_vmx_true_procbased_ctls_low,
2748 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002749 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002750 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002751 *pdata = vmx_control_msr(
2752 vmx->nested.nested_vmx_procbased_ctls_low,
2753 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002754 break;
2755 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002756 *pdata = vmx_control_msr(
2757 vmx->nested.nested_vmx_true_exit_ctls_low,
2758 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002759 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002760 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002761 *pdata = vmx_control_msr(
2762 vmx->nested.nested_vmx_exit_ctls_low,
2763 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002764 break;
2765 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002766 *pdata = vmx_control_msr(
2767 vmx->nested.nested_vmx_true_entry_ctls_low,
2768 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002769 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002770 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002771 *pdata = vmx_control_msr(
2772 vmx->nested.nested_vmx_entry_ctls_low,
2773 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002774 break;
2775 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002776 *pdata = vmx_control_msr(
2777 vmx->nested.nested_vmx_misc_low,
2778 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002779 break;
2780 /*
2781 * These MSRs specify bits which the guest must keep fixed (on or off)
2782 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2783 * We picked the standard core2 setting.
2784 */
2785#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2786#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2787 case MSR_IA32_VMX_CR0_FIXED0:
2788 *pdata = VMXON_CR0_ALWAYSON;
2789 break;
2790 case MSR_IA32_VMX_CR0_FIXED1:
2791 *pdata = -1ULL;
2792 break;
2793 case MSR_IA32_VMX_CR4_FIXED0:
2794 *pdata = VMXON_CR4_ALWAYSON;
2795 break;
2796 case MSR_IA32_VMX_CR4_FIXED1:
2797 *pdata = -1ULL;
2798 break;
2799 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002800 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002801 break;
2802 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002803 *pdata = vmx_control_msr(
2804 vmx->nested.nested_vmx_secondary_ctls_low,
2805 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002806 break;
2807 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f7522013-08-07 14:59:22 +02002808 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002809 *pdata = vmx->nested.nested_vmx_ept_caps |
2810 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002811 break;
2812 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002814 }
2815
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002816 return 0;
2817}
2818
2819/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 * Reads an msr value (of 'msr_index') into 'pdata'.
2821 * Returns 0 on success, non-0 otherwise.
2822 * Assumes vcpu_load() was already called.
2823 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002824static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825{
Avi Kivity26bb0982009-09-07 11:14:12 +03002826 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002828 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002829#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002830 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002831 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832 break;
2833 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002834 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002835 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002836 case MSR_KERNEL_GS_BASE:
2837 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002838 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002839 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002840#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002842 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302843 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002844 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002845 break;
2846 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002847 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848 break;
2849 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002850 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 break;
2852 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002853 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002855 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002856 if (!vmx_mpx_supported())
2857 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002858 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002859 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002860 case MSR_IA32_FEATURE_CONTROL:
2861 if (!nested_vmx_allowed(vcpu))
2862 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002863 msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002864 break;
2865 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2866 if (!nested_vmx_allowed(vcpu))
2867 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002868 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08002869 case MSR_IA32_XSS:
2870 if (!vmx_xsaves_supported())
2871 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002872 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08002873 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002874 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002875 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002876 return 1;
2877 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002878 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002879 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002880 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002881 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002882 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002883 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002884 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 }
2886
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887 return 0;
2888}
2889
Jan Kiszkacae50132014-01-04 18:47:22 +01002890static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2891
Avi Kivity6aa8b732006-12-10 02:21:36 -08002892/*
2893 * Writes msr value into into the appropriate "register".
2894 * Returns 0 on success, non-0 otherwise.
2895 * Assumes vcpu_load() was already called.
2896 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002897static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002899 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002900 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002901 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002902 u32 msr_index = msr_info->index;
2903 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03002904
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002906 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002907 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002908 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002909#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002911 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 vmcs_writel(GUEST_FS_BASE, data);
2913 break;
2914 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002915 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916 vmcs_writel(GUEST_GS_BASE, data);
2917 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002918 case MSR_KERNEL_GS_BASE:
2919 vmx_load_host_state(vmx);
2920 vmx->msr_guest_kernel_gs_base = data;
2921 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922#endif
2923 case MSR_IA32_SYSENTER_CS:
2924 vmcs_write32(GUEST_SYSENTER_CS, data);
2925 break;
2926 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002927 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 break;
2929 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002930 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002932 case MSR_IA32_BNDCFGS:
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002933 if (!vmx_mpx_supported())
2934 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002935 vmcs_write64(GUEST_BNDCFGS, data);
2936 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302937 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08002938 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002940 case MSR_IA32_CR_PAT:
2941 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03002942 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2943 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002944 vmcs_write64(GUEST_IA32_PAT, data);
2945 vcpu->arch.pat = data;
2946 break;
2947 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002948 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002949 break;
Will Auldba904632012-11-29 12:42:50 -08002950 case MSR_IA32_TSC_ADJUST:
2951 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002952 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002953 case MSR_IA32_FEATURE_CONTROL:
2954 if (!nested_vmx_allowed(vcpu) ||
2955 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2956 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2957 return 1;
2958 vmx->nested.msr_ia32_feature_control = data;
2959 if (msr_info->host_initiated && data == 0)
2960 vmx_leave_nested(vcpu);
2961 break;
2962 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2963 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08002964 case MSR_IA32_XSS:
2965 if (!vmx_xsaves_supported())
2966 return 1;
2967 /*
2968 * The only supported bit as of Skylake is bit 8, but
2969 * it is not supported on KVM.
2970 */
2971 if (data != 0)
2972 return 1;
2973 vcpu->arch.ia32_xss = data;
2974 if (vcpu->arch.ia32_xss != host_xss)
2975 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
2976 vcpu->arch.ia32_xss, host_xss);
2977 else
2978 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
2979 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002980 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002981 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002982 return 1;
2983 /* Check reserved bit, higher 32 bits should be zero */
2984 if ((data >> 32) != 0)
2985 return 1;
2986 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10002988 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002989 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07002990 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002991 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002992 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
2993 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002994 ret = kvm_set_shared_msr(msr->index, msr->data,
2995 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03002996 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07002997 if (ret)
2998 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03002999 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003000 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003001 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003002 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003003 }
3004
Eddie Dong2cc51562007-05-21 07:28:09 +03003005 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006}
3007
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003008static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003009{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003010 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3011 switch (reg) {
3012 case VCPU_REGS_RSP:
3013 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3014 break;
3015 case VCPU_REGS_RIP:
3016 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3017 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003018 case VCPU_EXREG_PDPTR:
3019 if (enable_ept)
3020 ept_save_pdptrs(vcpu);
3021 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003022 default:
3023 break;
3024 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003025}
3026
Avi Kivity6aa8b732006-12-10 02:21:36 -08003027static __init int cpu_has_kvm_support(void)
3028{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003029 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030}
3031
3032static __init int vmx_disabled_by_bios(void)
3033{
3034 u64 msr;
3035
3036 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003037 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003038 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003039 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3040 && tboot_enabled())
3041 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003042 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003043 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003044 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003045 && !tboot_enabled()) {
3046 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003047 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003048 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003049 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003050 /* launched w/o TXT and VMX disabled */
3051 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3052 && !tboot_enabled())
3053 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003054 }
3055
3056 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003057}
3058
Dongxiao Xu7725b892010-05-11 18:29:38 +08003059static void kvm_cpu_vmxon(u64 addr)
3060{
3061 asm volatile (ASM_VMX_VMXON_RAX
3062 : : "a"(&addr), "m"(addr)
3063 : "memory", "cc");
3064}
3065
Radim Krčmář13a34e02014-08-28 15:13:03 +02003066static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067{
3068 int cpu = raw_smp_processor_id();
3069 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003070 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003071
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003072 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003073 return -EBUSY;
3074
Nadav Har'Eld462b812011-05-24 15:26:10 +03003075 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003076 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3077 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003078
3079 /*
3080 * Now we can enable the vmclear operation in kdump
3081 * since the loaded_vmcss_on_cpu list on this cpu
3082 * has been initialized.
3083 *
3084 * Though the cpu is not in VMX operation now, there
3085 * is no problem to enable the vmclear operation
3086 * for the loaded_vmcss_on_cpu list is empty!
3087 */
3088 crash_enable_local_vmclear(cpu);
3089
Avi Kivity6aa8b732006-12-10 02:21:36 -08003090 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003091
3092 test_bits = FEATURE_CONTROL_LOCKED;
3093 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3094 if (tboot_enabled())
3095 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3096
3097 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003098 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003099 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3100 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003101 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003102
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003103 if (vmm_exclusive) {
3104 kvm_cpu_vmxon(phys_addr);
3105 ept_sync_global();
3106 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003107
Christoph Lameter89cbc762014-08-17 12:30:40 -05003108 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003109
Alexander Graf10474ae2009-09-15 11:37:46 +02003110 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003111}
3112
Nadav Har'Eld462b812011-05-24 15:26:10 +03003113static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003114{
3115 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003116 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003117
Nadav Har'Eld462b812011-05-24 15:26:10 +03003118 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3119 loaded_vmcss_on_cpu_link)
3120 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003121}
3122
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003123
3124/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3125 * tricks.
3126 */
3127static void kvm_cpu_vmxoff(void)
3128{
3129 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003130}
3131
Radim Krčmář13a34e02014-08-28 15:13:03 +02003132static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003133{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003134 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003135 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003136 kvm_cpu_vmxoff();
3137 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003138 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003139}
3140
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003141static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003142 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143{
3144 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003145 u32 ctl = ctl_min | ctl_opt;
3146
3147 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3148
3149 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3150 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3151
3152 /* Ensure minimum (required) set of control bits are supported. */
3153 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003154 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003155
3156 *result = ctl;
3157 return 0;
3158}
3159
Avi Kivity110312c2010-12-21 12:54:20 +02003160static __init bool allow_1_setting(u32 msr, u32 ctl)
3161{
3162 u32 vmx_msr_low, vmx_msr_high;
3163
3164 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3165 return vmx_msr_high & ctl;
3166}
3167
Yang, Sheng002c7f72007-07-31 14:23:01 +03003168static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003169{
3170 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003171 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003172 u32 _pin_based_exec_control = 0;
3173 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003174 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003175 u32 _vmexit_control = 0;
3176 u32 _vmentry_control = 0;
3177
Raghavendra K T10166742012-02-07 23:19:20 +05303178 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003179#ifdef CONFIG_X86_64
3180 CPU_BASED_CR8_LOAD_EXITING |
3181 CPU_BASED_CR8_STORE_EXITING |
3182#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003183 CPU_BASED_CR3_LOAD_EXITING |
3184 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003185 CPU_BASED_USE_IO_BITMAPS |
3186 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003187 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003188 CPU_BASED_MWAIT_EXITING |
3189 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003190 CPU_BASED_INVLPG_EXITING |
3191 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003192
Sheng Yangf78e0e22007-10-29 09:40:42 +08003193 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003194 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003195 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003196 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3197 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003198 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003199#ifdef CONFIG_X86_64
3200 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3201 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3202 ~CPU_BASED_CR8_STORE_EXITING;
3203#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003204 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003205 min2 = 0;
3206 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003207 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003208 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003209 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003210 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003211 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003212 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003213 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003214 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003215 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003216 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003217 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003218 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003219 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003220 SECONDARY_EXEC_PCOMMIT |
3221 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003222 if (adjust_vmx_controls(min2, opt2,
3223 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003224 &_cpu_based_2nd_exec_control) < 0)
3225 return -EIO;
3226 }
3227#ifndef CONFIG_X86_64
3228 if (!(_cpu_based_2nd_exec_control &
3229 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3230 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3231#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003232
3233 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3234 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003235 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003236 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3237 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003238
Sheng Yangd56f5462008-04-25 10:13:16 +08003239 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003240 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3241 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003242 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3243 CPU_BASED_CR3_STORE_EXITING |
3244 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003245 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3246 vmx_capability.ept, vmx_capability.vpid);
3247 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003248
Paolo Bonzini81908bf2014-02-21 10:32:27 +01003249 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003250#ifdef CONFIG_X86_64
3251 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3252#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003253 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003254 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003255 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3256 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003257 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003258
Yang Zhang01e439b2013-04-11 19:25:12 +08003259 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3260 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
3261 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3262 &_pin_based_exec_control) < 0)
3263 return -EIO;
3264
3265 if (!(_cpu_based_2nd_exec_control &
3266 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
3267 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
3268 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3269
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003270 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003271 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003272 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3273 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003274 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003276 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003277
3278 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3279 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003280 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003281
3282#ifdef CONFIG_X86_64
3283 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3284 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003285 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003286#endif
3287
3288 /* Require Write-Back (WB) memory type for VMCS accesses. */
3289 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003290 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003291
Yang, Sheng002c7f72007-07-31 14:23:01 +03003292 vmcs_conf->size = vmx_msr_high & 0x1fff;
3293 vmcs_conf->order = get_order(vmcs_config.size);
3294 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003295
Yang, Sheng002c7f72007-07-31 14:23:01 +03003296 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3297 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003298 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003299 vmcs_conf->vmexit_ctrl = _vmexit_control;
3300 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003301
Avi Kivity110312c2010-12-21 12:54:20 +02003302 cpu_has_load_ia32_efer =
3303 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3304 VM_ENTRY_LOAD_IA32_EFER)
3305 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3306 VM_EXIT_LOAD_IA32_EFER);
3307
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003308 cpu_has_load_perf_global_ctrl =
3309 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3310 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3311 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3312 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3313
3314 /*
3315 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
3316 * but due to arrata below it can't be used. Workaround is to use
3317 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3318 *
3319 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3320 *
3321 * AAK155 (model 26)
3322 * AAP115 (model 30)
3323 * AAT100 (model 37)
3324 * BC86,AAY89,BD102 (model 44)
3325 * BA97 (model 46)
3326 *
3327 */
3328 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3329 switch (boot_cpu_data.x86_model) {
3330 case 26:
3331 case 30:
3332 case 37:
3333 case 44:
3334 case 46:
3335 cpu_has_load_perf_global_ctrl = false;
3336 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3337 "does not work properly. Using workaround\n");
3338 break;
3339 default:
3340 break;
3341 }
3342 }
3343
Wanpeng Li20300092014-12-02 19:14:59 +08003344 if (cpu_has_xsaves)
3345 rdmsrl(MSR_IA32_XSS, host_xss);
3346
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003347 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003348}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349
3350static struct vmcs *alloc_vmcs_cpu(int cpu)
3351{
3352 int node = cpu_to_node(cpu);
3353 struct page *pages;
3354 struct vmcs *vmcs;
3355
Vlastimil Babka96db8002015-09-08 15:03:50 -07003356 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357 if (!pages)
3358 return NULL;
3359 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003360 memset(vmcs, 0, vmcs_config.size);
3361 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362 return vmcs;
3363}
3364
3365static struct vmcs *alloc_vmcs(void)
3366{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003367 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368}
3369
3370static void free_vmcs(struct vmcs *vmcs)
3371{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003372 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003373}
3374
Nadav Har'Eld462b812011-05-24 15:26:10 +03003375/*
3376 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3377 */
3378static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3379{
3380 if (!loaded_vmcs->vmcs)
3381 return;
3382 loaded_vmcs_clear(loaded_vmcs);
3383 free_vmcs(loaded_vmcs->vmcs);
3384 loaded_vmcs->vmcs = NULL;
3385}
3386
Sam Ravnborg39959582007-06-01 00:47:13 -07003387static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003388{
3389 int cpu;
3390
Zachary Amsden3230bb42009-09-29 11:38:37 -10003391 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003392 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003393 per_cpu(vmxarea, cpu) = NULL;
3394 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395}
3396
Bandan Dasfe2b2012014-04-21 15:20:14 -04003397static void init_vmcs_shadow_fields(void)
3398{
3399 int i, j;
3400
3401 /* No checks for read only fields yet */
3402
3403 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3404 switch (shadow_read_write_fields[i]) {
3405 case GUEST_BNDCFGS:
3406 if (!vmx_mpx_supported())
3407 continue;
3408 break;
3409 default:
3410 break;
3411 }
3412
3413 if (j < i)
3414 shadow_read_write_fields[j] =
3415 shadow_read_write_fields[i];
3416 j++;
3417 }
3418 max_shadow_read_write_fields = j;
3419
3420 /* shadowed fields guest access without vmexit */
3421 for (i = 0; i < max_shadow_read_write_fields; i++) {
3422 clear_bit(shadow_read_write_fields[i],
3423 vmx_vmwrite_bitmap);
3424 clear_bit(shadow_read_write_fields[i],
3425 vmx_vmread_bitmap);
3426 }
3427 for (i = 0; i < max_shadow_read_only_fields; i++)
3428 clear_bit(shadow_read_only_fields[i],
3429 vmx_vmread_bitmap);
3430}
3431
Avi Kivity6aa8b732006-12-10 02:21:36 -08003432static __init int alloc_kvm_area(void)
3433{
3434 int cpu;
3435
Zachary Amsden3230bb42009-09-29 11:38:37 -10003436 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003437 struct vmcs *vmcs;
3438
3439 vmcs = alloc_vmcs_cpu(cpu);
3440 if (!vmcs) {
3441 free_kvm_area();
3442 return -ENOMEM;
3443 }
3444
3445 per_cpu(vmxarea, cpu) = vmcs;
3446 }
3447 return 0;
3448}
3449
Gleb Natapov14168782013-01-21 15:36:49 +02003450static bool emulation_required(struct kvm_vcpu *vcpu)
3451{
3452 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3453}
3454
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003455static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003456 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003458 if (!emulate_invalid_guest_state) {
3459 /*
3460 * CS and SS RPL should be equal during guest entry according
3461 * to VMX spec, but in reality it is not always so. Since vcpu
3462 * is in the middle of the transition from real mode to
3463 * protected mode it is safe to assume that RPL 0 is a good
3464 * default value.
3465 */
3466 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003467 save->selector &= ~SEGMENT_RPL_MASK;
3468 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003469 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003470 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003471 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003472}
3473
3474static void enter_pmode(struct kvm_vcpu *vcpu)
3475{
3476 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003477 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478
Gleb Natapovd99e4152012-12-20 16:57:45 +02003479 /*
3480 * Update real mode segment cache. It may be not up-to-date if sement
3481 * register was written while vcpu was in a guest mode.
3482 */
3483 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3484 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3485 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3486 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3487 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3488 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3489
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003490 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003491
Avi Kivity2fb92db2011-04-27 19:42:18 +03003492 vmx_segment_cache_clear(vmx);
3493
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003494 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003495
3496 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003497 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3498 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003499 vmcs_writel(GUEST_RFLAGS, flags);
3500
Rusty Russell66aee912007-07-17 23:34:16 +10003501 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3502 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003503
3504 update_exception_bitmap(vcpu);
3505
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003506 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3507 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3508 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3509 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3510 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3511 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512}
3513
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003514static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003515{
Mathias Krause772e0312012-08-30 01:30:19 +02003516 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003517 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003518
Gleb Natapovd99e4152012-12-20 16:57:45 +02003519 var.dpl = 0x3;
3520 if (seg == VCPU_SREG_CS)
3521 var.type = 0x3;
3522
3523 if (!emulate_invalid_guest_state) {
3524 var.selector = var.base >> 4;
3525 var.base = var.base & 0xffff0;
3526 var.limit = 0xffff;
3527 var.g = 0;
3528 var.db = 0;
3529 var.present = 1;
3530 var.s = 1;
3531 var.l = 0;
3532 var.unusable = 0;
3533 var.type = 0x3;
3534 var.avl = 0;
3535 if (save->base & 0xf)
3536 printk_once(KERN_WARNING "kvm: segment base is not "
3537 "paragraph aligned when entering "
3538 "protected mode (seg=%d)", seg);
3539 }
3540
3541 vmcs_write16(sf->selector, var.selector);
3542 vmcs_write32(sf->base, var.base);
3543 vmcs_write32(sf->limit, var.limit);
3544 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003545}
3546
3547static void enter_rmode(struct kvm_vcpu *vcpu)
3548{
3549 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003550 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003551
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003552 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3553 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3554 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3555 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3556 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003557 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3558 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003559
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003560 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003561
Gleb Natapov776e58e2011-03-13 12:34:27 +02003562 /*
3563 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003564 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003565 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003566 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003567 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3568 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003569
Avi Kivity2fb92db2011-04-27 19:42:18 +03003570 vmx_segment_cache_clear(vmx);
3571
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003572 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003573 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003574 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3575
3576 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003577 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003578
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003579 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003580
3581 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003582 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003583 update_exception_bitmap(vcpu);
3584
Gleb Natapovd99e4152012-12-20 16:57:45 +02003585 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3586 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3587 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3588 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3589 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3590 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003591
Eddie Dong8668a3c2007-10-10 14:26:45 +08003592 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003593}
3594
Amit Shah401d10d2009-02-20 22:53:37 +05303595static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3596{
3597 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003598 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3599
3600 if (!msr)
3601 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303602
Avi Kivity44ea2b12009-09-06 15:55:37 +03003603 /*
3604 * Force kernel_gs_base reloading before EFER changes, as control
3605 * of this msr depends on is_long_mode().
3606 */
3607 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003608 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303609 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003610 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303611 msr->data = efer;
3612 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003613 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303614
3615 msr->data = efer & ~EFER_LME;
3616 }
3617 setup_msrs(vmx);
3618}
3619
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003620#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003621
3622static void enter_lmode(struct kvm_vcpu *vcpu)
3623{
3624 u32 guest_tr_ar;
3625
Avi Kivity2fb92db2011-04-27 19:42:18 +03003626 vmx_segment_cache_clear(to_vmx(vcpu));
3627
Avi Kivity6aa8b732006-12-10 02:21:36 -08003628 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003629 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003630 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3631 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003633 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3634 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635 }
Avi Kivityda38f432010-07-06 11:30:49 +03003636 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003637}
3638
3639static void exit_lmode(struct kvm_vcpu *vcpu)
3640{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003641 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003642 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003643}
3644
3645#endif
3646
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003647static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003648{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003649 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003650 if (enable_ept) {
3651 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3652 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003653 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003654 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003655}
3656
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003657static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3658{
3659 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3660}
3661
Avi Kivitye8467fd2009-12-29 18:43:06 +02003662static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3663{
3664 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3665
3666 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3667 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3668}
3669
Avi Kivityaff48ba2010-12-05 18:56:11 +02003670static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3671{
3672 if (enable_ept && is_paging(vcpu))
3673 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3674 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3675}
3676
Anthony Liguori25c4c272007-04-27 09:29:21 +03003677static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003678{
Avi Kivityfc78f512009-12-07 12:16:48 +02003679 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3680
3681 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3682 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003683}
3684
Sheng Yang14394422008-04-28 12:24:45 +08003685static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3686{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003687 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3688
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003689 if (!test_bit(VCPU_EXREG_PDPTR,
3690 (unsigned long *)&vcpu->arch.regs_dirty))
3691 return;
3692
Sheng Yang14394422008-04-28 12:24:45 +08003693 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003694 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3695 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3696 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3697 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003698 }
3699}
3700
Avi Kivity8f5d5492009-05-31 18:41:29 +03003701static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3702{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003703 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3704
Avi Kivity8f5d5492009-05-31 18:41:29 +03003705 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003706 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3707 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3708 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3709 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003710 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003711
3712 __set_bit(VCPU_EXREG_PDPTR,
3713 (unsigned long *)&vcpu->arch.regs_avail);
3714 __set_bit(VCPU_EXREG_PDPTR,
3715 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003716}
3717
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003718static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003719
3720static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3721 unsigned long cr0,
3722 struct kvm_vcpu *vcpu)
3723{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003724 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3725 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003726 if (!(cr0 & X86_CR0_PG)) {
3727 /* From paging/starting to nonpaging */
3728 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003729 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003730 (CPU_BASED_CR3_LOAD_EXITING |
3731 CPU_BASED_CR3_STORE_EXITING));
3732 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003733 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003734 } else if (!is_paging(vcpu)) {
3735 /* From nonpaging to paging */
3736 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003737 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003738 ~(CPU_BASED_CR3_LOAD_EXITING |
3739 CPU_BASED_CR3_STORE_EXITING));
3740 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003741 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003742 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003743
3744 if (!(cr0 & X86_CR0_WP))
3745 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003746}
3747
Avi Kivity6aa8b732006-12-10 02:21:36 -08003748static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3749{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003750 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003751 unsigned long hw_cr0;
3752
Gleb Natapov50378782013-02-04 16:00:28 +02003753 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003754 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003755 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003756 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003757 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003758
Gleb Natapov218e7632013-01-21 15:36:45 +02003759 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3760 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003761
Gleb Natapov218e7632013-01-21 15:36:45 +02003762 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3763 enter_rmode(vcpu);
3764 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003765
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003766#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003767 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003768 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003769 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003770 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003771 exit_lmode(vcpu);
3772 }
3773#endif
3774
Avi Kivity089d0342009-03-23 18:26:32 +02003775 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003776 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3777
Avi Kivity02daab22009-12-30 12:40:26 +02003778 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003779 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003780
Avi Kivity6aa8b732006-12-10 02:21:36 -08003781 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003782 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003783 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003784
3785 /* depends on vcpu->arch.cr0 to be set to a new value */
3786 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787}
3788
Sheng Yang14394422008-04-28 12:24:45 +08003789static u64 construct_eptp(unsigned long root_hpa)
3790{
3791 u64 eptp;
3792
3793 /* TODO write the value reading from MSR */
3794 eptp = VMX_EPT_DEFAULT_MT |
3795 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003796 if (enable_ept_ad_bits)
3797 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003798 eptp |= (root_hpa & PAGE_MASK);
3799
3800 return eptp;
3801}
3802
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3804{
Sheng Yang14394422008-04-28 12:24:45 +08003805 unsigned long guest_cr3;
3806 u64 eptp;
3807
3808 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003809 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003810 eptp = construct_eptp(cr3);
3811 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003812 if (is_paging(vcpu) || is_guest_mode(vcpu))
3813 guest_cr3 = kvm_read_cr3(vcpu);
3814 else
3815 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02003816 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003817 }
3818
Sheng Yang2384d2b2008-01-17 15:14:33 +08003819 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003820 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821}
3822
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003823static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003824{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003825 /*
3826 * Pass through host's Machine Check Enable value to hw_cr4, which
3827 * is in force while we are in guest mode. Do not let guests control
3828 * this bit, even if host CR4.MCE == 0.
3829 */
3830 unsigned long hw_cr4 =
3831 (cr4_read_shadow() & X86_CR4_MCE) |
3832 (cr4 & ~X86_CR4_MCE) |
3833 (to_vmx(vcpu)->rmode.vm86_active ?
3834 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003835
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003836 if (cr4 & X86_CR4_VMXE) {
3837 /*
3838 * To use VMXON (and later other VMX instructions), a guest
3839 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3840 * So basically the check on whether to allow nested VMX
3841 * is here.
3842 */
3843 if (!nested_vmx_allowed(vcpu))
3844 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003845 }
3846 if (to_vmx(vcpu)->nested.vmxon &&
3847 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003848 return 1;
3849
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003850 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003851 if (enable_ept) {
3852 if (!is_paging(vcpu)) {
3853 hw_cr4 &= ~X86_CR4_PAE;
3854 hw_cr4 |= X86_CR4_PSE;
3855 } else if (!(cr4 & X86_CR4_PAE)) {
3856 hw_cr4 &= ~X86_CR4_PAE;
3857 }
3858 }
Sheng Yang14394422008-04-28 12:24:45 +08003859
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003860 if (!enable_unrestricted_guest && !is_paging(vcpu))
3861 /*
3862 * SMEP/SMAP is disabled if CPU is in non-paging mode in
3863 * hardware. However KVM always uses paging mode without
3864 * unrestricted guest.
3865 * To emulate this behavior, SMEP/SMAP needs to be manually
3866 * disabled when guest switches to non-paging mode.
3867 */
3868 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP);
3869
Sheng Yang14394422008-04-28 12:24:45 +08003870 vmcs_writel(CR4_READ_SHADOW, cr4);
3871 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003872 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003873}
3874
Avi Kivity6aa8b732006-12-10 02:21:36 -08003875static void vmx_get_segment(struct kvm_vcpu *vcpu,
3876 struct kvm_segment *var, int seg)
3877{
Avi Kivitya9179492011-01-03 14:28:52 +02003878 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003879 u32 ar;
3880
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003881 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003882 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003883 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003884 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003885 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003886 var->base = vmx_read_guest_seg_base(vmx, seg);
3887 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3888 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003889 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003890 var->base = vmx_read_guest_seg_base(vmx, seg);
3891 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3892 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3893 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003894 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003895 var->type = ar & 15;
3896 var->s = (ar >> 4) & 1;
3897 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003898 /*
3899 * Some userspaces do not preserve unusable property. Since usable
3900 * segment has to be present according to VMX spec we can use present
3901 * property to amend userspace bug by making unusable segment always
3902 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3903 * segment as unusable.
3904 */
3905 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003906 var->avl = (ar >> 12) & 1;
3907 var->l = (ar >> 13) & 1;
3908 var->db = (ar >> 14) & 1;
3909 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003910}
3911
Avi Kivitya9179492011-01-03 14:28:52 +02003912static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3913{
Avi Kivitya9179492011-01-03 14:28:52 +02003914 struct kvm_segment s;
3915
3916 if (to_vmx(vcpu)->rmode.vm86_active) {
3917 vmx_get_segment(vcpu, &s, seg);
3918 return s.base;
3919 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003920 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003921}
3922
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003923static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003924{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003925 struct vcpu_vmx *vmx = to_vmx(vcpu);
3926
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003927 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003928 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003929 else {
3930 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003931 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003932 }
Avi Kivity69c73022011-03-07 15:26:44 +02003933}
3934
Avi Kivity653e3102007-05-07 10:55:37 +03003935static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003936{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937 u32 ar;
3938
Avi Kivityf0495f92012-06-07 17:06:10 +03003939 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940 ar = 1 << 16;
3941 else {
3942 ar = var->type & 15;
3943 ar |= (var->s & 1) << 4;
3944 ar |= (var->dpl & 3) << 5;
3945 ar |= (var->present & 1) << 7;
3946 ar |= (var->avl & 1) << 12;
3947 ar |= (var->l & 1) << 13;
3948 ar |= (var->db & 1) << 14;
3949 ar |= (var->g & 1) << 15;
3950 }
Avi Kivity653e3102007-05-07 10:55:37 +03003951
3952 return ar;
3953}
3954
3955static void vmx_set_segment(struct kvm_vcpu *vcpu,
3956 struct kvm_segment *var, int seg)
3957{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003958 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003959 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003960
Avi Kivity2fb92db2011-04-27 19:42:18 +03003961 vmx_segment_cache_clear(vmx);
3962
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003963 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3964 vmx->rmode.segs[seg] = *var;
3965 if (seg == VCPU_SREG_TR)
3966 vmcs_write16(sf->selector, var->selector);
3967 else if (var->s)
3968 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02003969 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03003970 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02003971
Avi Kivity653e3102007-05-07 10:55:37 +03003972 vmcs_writel(sf->base, var->base);
3973 vmcs_write32(sf->limit, var->limit);
3974 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003975
3976 /*
3977 * Fix the "Accessed" bit in AR field of segment registers for older
3978 * qemu binaries.
3979 * IA32 arch specifies that at the time of processor reset the
3980 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08003981 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003982 * state vmexit when "unrestricted guest" mode is turned on.
3983 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3984 * tree. Newer qemu binaries with that qemu fix would not need this
3985 * kvm hack.
3986 */
3987 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02003988 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003989
Gleb Natapovf924d662012-12-12 19:10:55 +02003990 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02003991
3992out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01003993 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003994}
3995
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3997{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003998 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003999
4000 *db = (ar >> 14) & 1;
4001 *l = (ar >> 13) & 1;
4002}
4003
Gleb Natapov89a27f42010-02-16 10:51:48 +02004004static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004005{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004006 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4007 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008}
4009
Gleb Natapov89a27f42010-02-16 10:51:48 +02004010static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004011{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004012 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4013 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004014}
4015
Gleb Natapov89a27f42010-02-16 10:51:48 +02004016static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004018 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4019 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004020}
4021
Gleb Natapov89a27f42010-02-16 10:51:48 +02004022static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004024 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4025 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004026}
4027
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004028static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4029{
4030 struct kvm_segment var;
4031 u32 ar;
4032
4033 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004034 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004035 if (seg == VCPU_SREG_CS)
4036 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004037 ar = vmx_segment_access_rights(&var);
4038
4039 if (var.base != (var.selector << 4))
4040 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004041 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004042 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004043 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004044 return false;
4045
4046 return true;
4047}
4048
4049static bool code_segment_valid(struct kvm_vcpu *vcpu)
4050{
4051 struct kvm_segment cs;
4052 unsigned int cs_rpl;
4053
4054 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004055 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004056
Avi Kivity1872a3f2009-01-04 23:26:52 +02004057 if (cs.unusable)
4058 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004059 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004060 return false;
4061 if (!cs.s)
4062 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004063 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004064 if (cs.dpl > cs_rpl)
4065 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004066 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004067 if (cs.dpl != cs_rpl)
4068 return false;
4069 }
4070 if (!cs.present)
4071 return false;
4072
4073 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4074 return true;
4075}
4076
4077static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4078{
4079 struct kvm_segment ss;
4080 unsigned int ss_rpl;
4081
4082 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004083 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004084
Avi Kivity1872a3f2009-01-04 23:26:52 +02004085 if (ss.unusable)
4086 return true;
4087 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004088 return false;
4089 if (!ss.s)
4090 return false;
4091 if (ss.dpl != ss_rpl) /* DPL != RPL */
4092 return false;
4093 if (!ss.present)
4094 return false;
4095
4096 return true;
4097}
4098
4099static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4100{
4101 struct kvm_segment var;
4102 unsigned int rpl;
4103
4104 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004105 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004106
Avi Kivity1872a3f2009-01-04 23:26:52 +02004107 if (var.unusable)
4108 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004109 if (!var.s)
4110 return false;
4111 if (!var.present)
4112 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004113 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004114 if (var.dpl < rpl) /* DPL < RPL */
4115 return false;
4116 }
4117
4118 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4119 * rights flags
4120 */
4121 return true;
4122}
4123
4124static bool tr_valid(struct kvm_vcpu *vcpu)
4125{
4126 struct kvm_segment tr;
4127
4128 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4129
Avi Kivity1872a3f2009-01-04 23:26:52 +02004130 if (tr.unusable)
4131 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004132 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004133 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004134 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004135 return false;
4136 if (!tr.present)
4137 return false;
4138
4139 return true;
4140}
4141
4142static bool ldtr_valid(struct kvm_vcpu *vcpu)
4143{
4144 struct kvm_segment ldtr;
4145
4146 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4147
Avi Kivity1872a3f2009-01-04 23:26:52 +02004148 if (ldtr.unusable)
4149 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004150 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004151 return false;
4152 if (ldtr.type != 2)
4153 return false;
4154 if (!ldtr.present)
4155 return false;
4156
4157 return true;
4158}
4159
4160static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4161{
4162 struct kvm_segment cs, ss;
4163
4164 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4165 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4166
Nadav Amitb32a9912015-03-29 16:33:04 +03004167 return ((cs.selector & SEGMENT_RPL_MASK) ==
4168 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004169}
4170
4171/*
4172 * Check if guest state is valid. Returns true if valid, false if
4173 * not.
4174 * We assume that registers are always usable
4175 */
4176static bool guest_state_valid(struct kvm_vcpu *vcpu)
4177{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004178 if (enable_unrestricted_guest)
4179 return true;
4180
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004181 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004182 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004183 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4184 return false;
4185 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4186 return false;
4187 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4188 return false;
4189 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4190 return false;
4191 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4192 return false;
4193 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4194 return false;
4195 } else {
4196 /* protected mode guest state checks */
4197 if (!cs_ss_rpl_check(vcpu))
4198 return false;
4199 if (!code_segment_valid(vcpu))
4200 return false;
4201 if (!stack_segment_valid(vcpu))
4202 return false;
4203 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4204 return false;
4205 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4206 return false;
4207 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4208 return false;
4209 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4210 return false;
4211 if (!tr_valid(vcpu))
4212 return false;
4213 if (!ldtr_valid(vcpu))
4214 return false;
4215 }
4216 /* TODO:
4217 * - Add checks on RIP
4218 * - Add checks on RFLAGS
4219 */
4220
4221 return true;
4222}
4223
Mike Dayd77c26f2007-10-08 09:02:08 -04004224static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004225{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004226 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004227 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004228 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004229
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004230 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004231 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004232 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4233 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004234 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004235 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004236 r = kvm_write_guest_page(kvm, fn++, &data,
4237 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004238 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 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4244 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004245 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004246 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004247 r = kvm_write_guest_page(kvm, fn, &data,
4248 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4249 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004250out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004251 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004252 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004253}
4254
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004255static int init_rmode_identity_map(struct kvm *kvm)
4256{
Tang Chenf51770e2014-09-16 18:41:59 +08004257 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004258 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004259 u32 tmp;
4260
Avi Kivity089d0342009-03-23 18:26:32 +02004261 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004262 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004263
4264 /* Protect kvm->arch.ept_identity_pagetable_done. */
4265 mutex_lock(&kvm->slots_lock);
4266
Tang Chenf51770e2014-09-16 18:41:59 +08004267 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004268 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004269
Sheng Yangb927a3c2009-07-21 10:42:48 +08004270 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004271
4272 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004273 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004274 goto out2;
4275
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004276 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004277 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4278 if (r < 0)
4279 goto out;
4280 /* Set up identity-mapping pagetable for EPT in real mode */
4281 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4282 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4283 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4284 r = kvm_write_guest_page(kvm, identity_map_pfn,
4285 &tmp, i * sizeof(tmp), sizeof(tmp));
4286 if (r < 0)
4287 goto out;
4288 }
4289 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004290
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004291out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004292 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004293
4294out2:
4295 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004296 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004297}
4298
Avi Kivity6aa8b732006-12-10 02:21:36 -08004299static void seg_setup(int seg)
4300{
Mathias Krause772e0312012-08-30 01:30:19 +02004301 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004302 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303
4304 vmcs_write16(sf->selector, 0);
4305 vmcs_writel(sf->base, 0);
4306 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004307 ar = 0x93;
4308 if (seg == VCPU_SREG_CS)
4309 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004310
4311 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004312}
4313
Sheng Yangf78e0e22007-10-29 09:40:42 +08004314static int alloc_apic_access_page(struct kvm *kvm)
4315{
Xiao Guangrong44841412012-09-07 14:14:20 +08004316 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004317 int r = 0;
4318
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004319 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004320 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004321 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004322 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4323 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004324 if (r)
4325 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004326
Tang Chen73a6d942014-09-11 13:38:00 +08004327 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004328 if (is_error_page(page)) {
4329 r = -EFAULT;
4330 goto out;
4331 }
4332
Tang Chenc24ae0d2014-09-24 15:57:58 +08004333 /*
4334 * Do not pin the page in memory, so that memory hot-unplug
4335 * is able to migrate it.
4336 */
4337 put_page(page);
4338 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004339out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004340 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004341 return r;
4342}
4343
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004344static int alloc_identity_pagetable(struct kvm *kvm)
4345{
Tang Chena255d472014-09-16 18:41:58 +08004346 /* Called with kvm->slots_lock held. */
4347
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004348 int r = 0;
4349
Tang Chena255d472014-09-16 18:41:58 +08004350 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4351
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004352 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4353 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004354
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004355 return r;
4356}
4357
Wanpeng Li991e7a02015-09-16 17:30:05 +08004358static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004359{
4360 int vpid;
4361
Avi Kivity919818a2009-03-23 18:01:29 +02004362 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004363 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004364 spin_lock(&vmx_vpid_lock);
4365 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004366 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004367 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004368 else
4369 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004370 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004371 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004372}
4373
Wanpeng Li991e7a02015-09-16 17:30:05 +08004374static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004375{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004376 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004377 return;
4378 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004379 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004380 spin_unlock(&vmx_vpid_lock);
4381}
4382
Yang Zhang8d146952013-01-25 10:18:50 +08004383#define MSR_TYPE_R 1
4384#define MSR_TYPE_W 2
4385static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4386 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004387{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004388 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004389
4390 if (!cpu_has_vmx_msr_bitmap())
4391 return;
4392
4393 /*
4394 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4395 * have the write-low and read-high bitmap offsets the wrong way round.
4396 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4397 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004398 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004399 if (type & MSR_TYPE_R)
4400 /* read-low */
4401 __clear_bit(msr, msr_bitmap + 0x000 / f);
4402
4403 if (type & MSR_TYPE_W)
4404 /* write-low */
4405 __clear_bit(msr, msr_bitmap + 0x800 / f);
4406
Sheng Yang25c5f222008-03-28 13:18:56 +08004407 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4408 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004409 if (type & MSR_TYPE_R)
4410 /* read-high */
4411 __clear_bit(msr, msr_bitmap + 0x400 / f);
4412
4413 if (type & MSR_TYPE_W)
4414 /* write-high */
4415 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4416
4417 }
4418}
4419
4420static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4421 u32 msr, int type)
4422{
4423 int f = sizeof(unsigned long);
4424
4425 if (!cpu_has_vmx_msr_bitmap())
4426 return;
4427
4428 /*
4429 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4430 * have the write-low and read-high bitmap offsets the wrong way round.
4431 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4432 */
4433 if (msr <= 0x1fff) {
4434 if (type & MSR_TYPE_R)
4435 /* read-low */
4436 __set_bit(msr, msr_bitmap + 0x000 / f);
4437
4438 if (type & MSR_TYPE_W)
4439 /* write-low */
4440 __set_bit(msr, msr_bitmap + 0x800 / f);
4441
4442 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4443 msr &= 0x1fff;
4444 if (type & MSR_TYPE_R)
4445 /* read-high */
4446 __set_bit(msr, msr_bitmap + 0x400 / f);
4447
4448 if (type & MSR_TYPE_W)
4449 /* write-high */
4450 __set_bit(msr, msr_bitmap + 0xc00 / f);
4451
Sheng Yang25c5f222008-03-28 13:18:56 +08004452 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004453}
4454
Wincy Vanf2b93282015-02-03 23:56:03 +08004455/*
4456 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4457 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4458 */
4459static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4460 unsigned long *msr_bitmap_nested,
4461 u32 msr, int type)
4462{
4463 int f = sizeof(unsigned long);
4464
4465 if (!cpu_has_vmx_msr_bitmap()) {
4466 WARN_ON(1);
4467 return;
4468 }
4469
4470 /*
4471 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4472 * have the write-low and read-high bitmap offsets the wrong way round.
4473 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4474 */
4475 if (msr <= 0x1fff) {
4476 if (type & MSR_TYPE_R &&
4477 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4478 /* read-low */
4479 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4480
4481 if (type & MSR_TYPE_W &&
4482 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4483 /* write-low */
4484 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4485
4486 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4487 msr &= 0x1fff;
4488 if (type & MSR_TYPE_R &&
4489 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4490 /* read-high */
4491 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4492
4493 if (type & MSR_TYPE_W &&
4494 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4495 /* write-high */
4496 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4497
4498 }
4499}
4500
Avi Kivity58972972009-02-24 22:26:47 +02004501static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4502{
4503 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004504 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4505 msr, MSR_TYPE_R | MSR_TYPE_W);
4506 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4507 msr, MSR_TYPE_R | MSR_TYPE_W);
4508}
4509
4510static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4511{
4512 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4513 msr, MSR_TYPE_R);
4514 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4515 msr, MSR_TYPE_R);
4516}
4517
4518static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4519{
4520 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4521 msr, MSR_TYPE_R);
4522 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4523 msr, MSR_TYPE_R);
4524}
4525
4526static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4527{
4528 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4529 msr, MSR_TYPE_W);
4530 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4531 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004532}
4533
Andrey Smetanind62caab2015-11-10 15:36:33 +03004534static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004535{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004536 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004537}
4538
Wincy Van705699a2015-02-03 23:58:17 +08004539static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4540{
4541 struct vcpu_vmx *vmx = to_vmx(vcpu);
4542 int max_irr;
4543 void *vapic_page;
4544 u16 status;
4545
4546 if (vmx->nested.pi_desc &&
4547 vmx->nested.pi_pending) {
4548 vmx->nested.pi_pending = false;
4549 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4550 return 0;
4551
4552 max_irr = find_last_bit(
4553 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4554
4555 if (max_irr == 256)
4556 return 0;
4557
4558 vapic_page = kmap(vmx->nested.virtual_apic_page);
4559 if (!vapic_page) {
4560 WARN_ON(1);
4561 return -ENOMEM;
4562 }
4563 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4564 kunmap(vmx->nested.virtual_apic_page);
4565
4566 status = vmcs_read16(GUEST_INTR_STATUS);
4567 if ((u8)max_irr > ((u8)status & 0xff)) {
4568 status &= ~0xff;
4569 status |= (u8)max_irr;
4570 vmcs_write16(GUEST_INTR_STATUS, status);
4571 }
4572 }
4573 return 0;
4574}
4575
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004576static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4577{
4578#ifdef CONFIG_SMP
4579 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004580 struct vcpu_vmx *vmx = to_vmx(vcpu);
4581
4582 /*
4583 * Currently, we don't support urgent interrupt,
4584 * all interrupts are recognized as non-urgent
4585 * interrupt, so we cannot post interrupts when
4586 * 'SN' is set.
4587 *
4588 * If the vcpu is in guest mode, it means it is
4589 * running instead of being scheduled out and
4590 * waiting in the run queue, and that's the only
4591 * case when 'SN' is set currently, warning if
4592 * 'SN' is set.
4593 */
4594 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4595
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004596 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4597 POSTED_INTR_VECTOR);
4598 return true;
4599 }
4600#endif
4601 return false;
4602}
4603
Wincy Van705699a2015-02-03 23:58:17 +08004604static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4605 int vector)
4606{
4607 struct vcpu_vmx *vmx = to_vmx(vcpu);
4608
4609 if (is_guest_mode(vcpu) &&
4610 vector == vmx->nested.posted_intr_nv) {
4611 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004612 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004613 /*
4614 * If a posted intr is not recognized by hardware,
4615 * we will accomplish it in the next vmentry.
4616 */
4617 vmx->nested.pi_pending = true;
4618 kvm_make_request(KVM_REQ_EVENT, vcpu);
4619 return 0;
4620 }
4621 return -1;
4622}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004623/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004624 * Send interrupt to vcpu via posted interrupt way.
4625 * 1. If target vcpu is running(non-root mode), send posted interrupt
4626 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4627 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4628 * interrupt from PIR in next vmentry.
4629 */
4630static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4631{
4632 struct vcpu_vmx *vmx = to_vmx(vcpu);
4633 int r;
4634
Wincy Van705699a2015-02-03 23:58:17 +08004635 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4636 if (!r)
4637 return;
4638
Yang Zhanga20ed542013-04-11 19:25:15 +08004639 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4640 return;
4641
4642 r = pi_test_and_set_on(&vmx->pi_desc);
4643 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004644 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004645 kvm_vcpu_kick(vcpu);
4646}
4647
4648static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4649{
4650 struct vcpu_vmx *vmx = to_vmx(vcpu);
4651
4652 if (!pi_test_and_clear_on(&vmx->pi_desc))
4653 return;
4654
4655 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4656}
4657
Avi Kivity6aa8b732006-12-10 02:21:36 -08004658/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004659 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4660 * will not change in the lifetime of the guest.
4661 * Note that host-state that does change is set elsewhere. E.g., host-state
4662 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4663 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004664static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004665{
4666 u32 low32, high32;
4667 unsigned long tmpl;
4668 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004669 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004670
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004671 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004672 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4673
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004674 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004675 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004676 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4677 vmx->host_state.vmcs_host_cr4 = cr4;
4678
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004679 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004680#ifdef CONFIG_X86_64
4681 /*
4682 * Load null selectors, so we can avoid reloading them in
4683 * __vmx_load_host_state(), in case userspace uses the null selectors
4684 * too (the expected case).
4685 */
4686 vmcs_write16(HOST_DS_SELECTOR, 0);
4687 vmcs_write16(HOST_ES_SELECTOR, 0);
4688#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004689 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4690 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004691#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004692 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4693 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4694
4695 native_store_idt(&dt);
4696 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004697 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004698
Avi Kivity83287ea422012-09-16 15:10:57 +03004699 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004700
4701 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4702 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4703 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4704 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4705
4706 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4707 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4708 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4709 }
4710}
4711
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004712static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4713{
4714 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4715 if (enable_ept)
4716 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004717 if (is_guest_mode(&vmx->vcpu))
4718 vmx->vcpu.arch.cr4_guest_owned_bits &=
4719 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004720 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4721}
4722
Yang Zhang01e439b2013-04-11 19:25:12 +08004723static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4724{
4725 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4726
Andrey Smetanind62caab2015-11-10 15:36:33 +03004727 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004728 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4729 return pin_based_exec_ctrl;
4730}
4731
Andrey Smetanind62caab2015-11-10 15:36:33 +03004732static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4733{
4734 struct vcpu_vmx *vmx = to_vmx(vcpu);
4735
4736 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
4737}
4738
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004739static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4740{
4741 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004742
4743 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4744 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4745
Paolo Bonzini35754c92015-07-29 12:05:37 +02004746 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004747 exec_control &= ~CPU_BASED_TPR_SHADOW;
4748#ifdef CONFIG_X86_64
4749 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4750 CPU_BASED_CR8_LOAD_EXITING;
4751#endif
4752 }
4753 if (!enable_ept)
4754 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4755 CPU_BASED_CR3_LOAD_EXITING |
4756 CPU_BASED_INVLPG_EXITING;
4757 return exec_control;
4758}
4759
4760static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4761{
4762 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004763 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004764 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4765 if (vmx->vpid == 0)
4766 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4767 if (!enable_ept) {
4768 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4769 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004770 /* Enable INVPCID for non-ept guests may cause performance regression. */
4771 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004772 }
4773 if (!enable_unrestricted_guest)
4774 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4775 if (!ple_gap)
4776 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004777 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004778 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4779 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004780 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004781 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4782 (handle_vmptrld).
4783 We can NOT enable shadow_vmcs here because we don't have yet
4784 a current VMCS12
4785 */
4786 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004787
4788 if (!enable_pml)
4789 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004790
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004791 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4792 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4793
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004794 return exec_control;
4795}
4796
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004797static void ept_set_mmio_spte_mask(void)
4798{
4799 /*
4800 * EPT Misconfigurations can be generated if the value of bits 2:0
4801 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004802 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004803 * spte.
4804 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004805 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004806}
4807
Wanpeng Lif53cd632014-12-02 19:14:58 +08004808#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004809/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004810 * Sets up the vmcs for emulated real mode.
4811 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004812static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004814#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004815 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004816#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004817 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004818
Avi Kivity6aa8b732006-12-10 02:21:36 -08004819 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004820 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4821 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004822
Abel Gordon4607c2d2013-04-18 14:35:55 +03004823 if (enable_shadow_vmcs) {
4824 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4825 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4826 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004827 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004828 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004829
Avi Kivity6aa8b732006-12-10 02:21:36 -08004830 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4831
Avi Kivity6aa8b732006-12-10 02:21:36 -08004832 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004833 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004834
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004835 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004836
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004837 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004838 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4839 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004840
Andrey Smetanind62caab2015-11-10 15:36:33 +03004841 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004842 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4843 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4844 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4845 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4846
4847 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004848
Li RongQing0bcf2612015-12-03 13:29:34 +08004849 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004850 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004851 }
4852
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004853 if (ple_gap) {
4854 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004855 vmx->ple_window = ple_window;
4856 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004857 }
4858
Xiao Guangrongc3707952011-07-12 03:28:04 +08004859 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4860 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004861 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4862
Avi Kivity9581d442010-10-19 16:46:55 +02004863 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4864 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004865 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004866#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004867 rdmsrl(MSR_FS_BASE, a);
4868 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4869 rdmsrl(MSR_GS_BASE, a);
4870 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4871#else
4872 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4873 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4874#endif
4875
Eddie Dong2cc51562007-05-21 07:28:09 +03004876 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4877 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004878 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03004879 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004880 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004881
Radim Krčmář74545702015-04-27 15:11:25 +02004882 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4883 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004884
Paolo Bonzini03916db2014-07-24 14:21:57 +02004885 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004886 u32 index = vmx_msr_index[i];
4887 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004888 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004889
4890 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4891 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004892 if (wrmsr_safe(index, data_low, data_high) < 0)
4893 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004894 vmx->guest_msrs[j].index = i;
4895 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004896 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004897 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004898 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004899
Gleb Natapov2961e8762013-11-25 15:37:13 +02004900
4901 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004902
4903 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02004904 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004905
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004906 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004907 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004908
Wanpeng Lif53cd632014-12-02 19:14:58 +08004909 if (vmx_xsaves_supported())
4910 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4911
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004912 return 0;
4913}
4914
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004915static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004916{
4917 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004918 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004919 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004920
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004921 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004922
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004923 vmx->soft_vnmi_blocked = 0;
4924
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004925 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004926 kvm_set_cr8(vcpu, 0);
4927
4928 if (!init_event) {
4929 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4930 MSR_IA32_APICBASE_ENABLE;
4931 if (kvm_vcpu_is_reset_bsp(vcpu))
4932 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4933 apic_base_msr.host_initiated = true;
4934 kvm_set_apic_base(vcpu, &apic_base_msr);
4935 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004936
Avi Kivity2fb92db2011-04-27 19:42:18 +03004937 vmx_segment_cache_clear(vmx);
4938
Avi Kivity5706be02008-08-20 15:07:31 +03004939 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004940 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004941 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004942
4943 seg_setup(VCPU_SREG_DS);
4944 seg_setup(VCPU_SREG_ES);
4945 seg_setup(VCPU_SREG_FS);
4946 seg_setup(VCPU_SREG_GS);
4947 seg_setup(VCPU_SREG_SS);
4948
4949 vmcs_write16(GUEST_TR_SELECTOR, 0);
4950 vmcs_writel(GUEST_TR_BASE, 0);
4951 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4952 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4953
4954 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4955 vmcs_writel(GUEST_LDTR_BASE, 0);
4956 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4957 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4958
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004959 if (!init_event) {
4960 vmcs_write32(GUEST_SYSENTER_CS, 0);
4961 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4962 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4963 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4964 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004965
4966 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01004967 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004968
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004969 vmcs_writel(GUEST_GDTR_BASE, 0);
4970 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4971
4972 vmcs_writel(GUEST_IDTR_BASE, 0);
4973 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4974
Anthony Liguori443381a2010-12-06 10:53:38 -06004975 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004976 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004977 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004978
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004979 setup_msrs(vmx);
4980
Avi Kivity6aa8b732006-12-10 02:21:36 -08004981 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4982
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004983 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08004984 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02004985 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08004986 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004987 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004988 vmcs_write32(TPR_THRESHOLD, 0);
4989 }
4990
Paolo Bonzinia73896c2014-11-02 07:54:30 +01004991 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004992
Andrey Smetanind62caab2015-11-10 15:36:33 +03004993 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004994 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
4995
Sheng Yang2384d2b2008-01-17 15:14:33 +08004996 if (vmx->vpid != 0)
4997 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4998
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004999 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
5000 vmx_set_cr0(vcpu, cr0); /* enter rmode */
5001 vmx->vcpu.arch.cr0 = cr0;
5002 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005003 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005004 vmx_fpu_activate(vcpu);
5005 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005006
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005007 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005008}
5009
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005010/*
5011 * In nested virtualization, check if L1 asked to exit on external interrupts.
5012 * For most existing hypervisors, this will always return true.
5013 */
5014static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5015{
5016 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5017 PIN_BASED_EXT_INTR_MASK;
5018}
5019
Bandan Das77b0f5d2014-04-19 18:17:45 -04005020/*
5021 * In nested virtualization, check if L1 has set
5022 * VM_EXIT_ACK_INTR_ON_EXIT
5023 */
5024static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5025{
5026 return get_vmcs12(vcpu)->vm_exit_controls &
5027 VM_EXIT_ACK_INTR_ON_EXIT;
5028}
5029
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005030static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5031{
5032 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5033 PIN_BASED_NMI_EXITING;
5034}
5035
Jan Kiszkac9a79532014-03-07 20:03:15 +01005036static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005037{
5038 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005039
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005040 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5041 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5042 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5043}
5044
Jan Kiszkac9a79532014-03-07 20:03:15 +01005045static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005046{
5047 u32 cpu_based_vm_exec_control;
5048
Jan Kiszkac9a79532014-03-07 20:03:15 +01005049 if (!cpu_has_virtual_nmis() ||
5050 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5051 enable_irq_window(vcpu);
5052 return;
5053 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005054
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005055 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5056 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5057 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5058}
5059
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005060static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005061{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005062 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005063 uint32_t intr;
5064 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005065
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005066 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005067
Avi Kivityfa89a812008-09-01 15:57:51 +03005068 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005069 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005070 int inc_eip = 0;
5071 if (vcpu->arch.interrupt.soft)
5072 inc_eip = vcpu->arch.event_exit_inst_len;
5073 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005074 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005075 return;
5076 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005077 intr = irq | INTR_INFO_VALID_MASK;
5078 if (vcpu->arch.interrupt.soft) {
5079 intr |= INTR_TYPE_SOFT_INTR;
5080 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5081 vmx->vcpu.arch.event_exit_inst_len);
5082 } else
5083 intr |= INTR_TYPE_EXT_INTR;
5084 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005085}
5086
Sheng Yangf08864b2008-05-15 18:23:25 +08005087static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5088{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005089 struct vcpu_vmx *vmx = to_vmx(vcpu);
5090
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005091 if (is_guest_mode(vcpu))
5092 return;
5093
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005094 if (!cpu_has_virtual_nmis()) {
5095 /*
5096 * Tracking the NMI-blocked state in software is built upon
5097 * finding the next open IRQ window. This, in turn, depends on
5098 * well-behaving guests: They have to keep IRQs disabled at
5099 * least as long as the NMI handler runs. Otherwise we may
5100 * cause NMI nesting, maybe breaking the guest. But as this is
5101 * highly unlikely, we can live with the residual risk.
5102 */
5103 vmx->soft_vnmi_blocked = 1;
5104 vmx->vnmi_blocked_time = 0;
5105 }
5106
Jan Kiszka487b3912008-09-26 09:30:56 +02005107 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005108 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005109 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005110 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005111 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005112 return;
5113 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005114 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5115 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005116}
5117
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005118static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5119{
5120 if (!cpu_has_virtual_nmis())
5121 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005122 if (to_vmx(vcpu)->nmi_known_unmasked)
5123 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005124 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005125}
5126
5127static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5128{
5129 struct vcpu_vmx *vmx = to_vmx(vcpu);
5130
5131 if (!cpu_has_virtual_nmis()) {
5132 if (vmx->soft_vnmi_blocked != masked) {
5133 vmx->soft_vnmi_blocked = masked;
5134 vmx->vnmi_blocked_time = 0;
5135 }
5136 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005137 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005138 if (masked)
5139 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5140 GUEST_INTR_STATE_NMI);
5141 else
5142 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5143 GUEST_INTR_STATE_NMI);
5144 }
5145}
5146
Jan Kiszka2505dc92013-04-14 12:12:47 +02005147static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5148{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005149 if (to_vmx(vcpu)->nested.nested_run_pending)
5150 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005151
Jan Kiszka2505dc92013-04-14 12:12:47 +02005152 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5153 return 0;
5154
5155 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5156 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5157 | GUEST_INTR_STATE_NMI));
5158}
5159
Gleb Natapov78646122009-03-23 12:12:11 +02005160static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5161{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005162 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5163 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005164 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5165 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005166}
5167
Izik Eiduscbc94022007-10-25 00:29:55 +02005168static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5169{
5170 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005171
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005172 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5173 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005174 if (ret)
5175 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005176 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005177 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005178}
5179
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005180static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005181{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005182 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005183 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005184 /*
5185 * Update instruction length as we may reinject the exception
5186 * from user space while in guest debugging mode.
5187 */
5188 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5189 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005190 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005191 return false;
5192 /* fall through */
5193 case DB_VECTOR:
5194 if (vcpu->guest_debug &
5195 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5196 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005197 /* fall through */
5198 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005199 case OF_VECTOR:
5200 case BR_VECTOR:
5201 case UD_VECTOR:
5202 case DF_VECTOR:
5203 case SS_VECTOR:
5204 case GP_VECTOR:
5205 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005206 return true;
5207 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005208 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005209 return false;
5210}
5211
5212static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5213 int vec, u32 err_code)
5214{
5215 /*
5216 * Instruction with address size override prefix opcode 0x67
5217 * Cause the #SS fault with 0 error code in VM86 mode.
5218 */
5219 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5220 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5221 if (vcpu->arch.halt_request) {
5222 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005223 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005224 }
5225 return 1;
5226 }
5227 return 0;
5228 }
5229
5230 /*
5231 * Forward all other exceptions that are valid in real mode.
5232 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5233 * the required debugging infrastructure rework.
5234 */
5235 kvm_queue_exception(vcpu, vec);
5236 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005237}
5238
Andi Kleena0861c02009-06-08 17:37:09 +08005239/*
5240 * Trigger machine check on the host. We assume all the MSRs are already set up
5241 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5242 * We pass a fake environment to the machine check handler because we want
5243 * the guest to be always treated like user space, no matter what context
5244 * it used internally.
5245 */
5246static void kvm_machine_check(void)
5247{
5248#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5249 struct pt_regs regs = {
5250 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5251 .flags = X86_EFLAGS_IF,
5252 };
5253
5254 do_machine_check(&regs, 0);
5255#endif
5256}
5257
Avi Kivity851ba692009-08-24 11:10:17 +03005258static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005259{
5260 /* already handled by vcpu_run */
5261 return 1;
5262}
5263
Avi Kivity851ba692009-08-24 11:10:17 +03005264static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005265{
Avi Kivity1155f762007-11-22 11:30:47 +02005266 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005267 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005268 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005269 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005270 u32 vect_info;
5271 enum emulation_result er;
5272
Avi Kivity1155f762007-11-22 11:30:47 +02005273 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005274 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005275
Andi Kleena0861c02009-06-08 17:37:09 +08005276 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005277 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005278
Jan Kiszkae4a41882008-09-26 09:30:46 +02005279 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005280 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005281
5282 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005283 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005284 return 1;
5285 }
5286
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005287 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005288 if (is_guest_mode(vcpu)) {
5289 kvm_queue_exception(vcpu, UD_VECTOR);
5290 return 1;
5291 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005292 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005293 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005294 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005295 return 1;
5296 }
5297
Avi Kivity6aa8b732006-12-10 02:21:36 -08005298 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005299 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005300 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005301
5302 /*
5303 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5304 * MMIO, it is better to report an internal error.
5305 * See the comments in vmx_handle_exit.
5306 */
5307 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5308 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5309 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5310 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005311 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005312 vcpu->run->internal.data[0] = vect_info;
5313 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005314 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005315 return 0;
5316 }
5317
Avi Kivity6aa8b732006-12-10 02:21:36 -08005318 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005319 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005320 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005321 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005322 trace_kvm_page_fault(cr2, error_code);
5323
Gleb Natapov3298b752009-05-11 13:35:46 +03005324 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005325 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005326 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005327 }
5328
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005329 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005330
5331 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5332 return handle_rmode_exception(vcpu, ex_no, error_code);
5333
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005334 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005335 case AC_VECTOR:
5336 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5337 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005338 case DB_VECTOR:
5339 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5340 if (!(vcpu->guest_debug &
5341 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005342 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005343 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005344 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5345 skip_emulated_instruction(vcpu);
5346
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005347 kvm_queue_exception(vcpu, DB_VECTOR);
5348 return 1;
5349 }
5350 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5351 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5352 /* fall through */
5353 case BP_VECTOR:
Jan Kiszkac573cd222010-02-23 17:47:53 +01005354 /*
5355 * Update instruction length as we may reinject #BP from
5356 * user space while in guest debugging mode. Reading it for
5357 * #DB as well causes no harm, it is not used in that case.
5358 */
5359 vmx->vcpu.arch.event_exit_inst_len =
5360 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005361 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005362 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005363 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5364 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005365 break;
5366 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005367 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5368 kvm_run->ex.exception = ex_no;
5369 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005370 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005371 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005372 return 0;
5373}
5374
Avi Kivity851ba692009-08-24 11:10:17 +03005375static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005376{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005377 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005378 return 1;
5379}
5380
Avi Kivity851ba692009-08-24 11:10:17 +03005381static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005382{
Avi Kivity851ba692009-08-24 11:10:17 +03005383 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005384 return 0;
5385}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005386
Avi Kivity851ba692009-08-24 11:10:17 +03005387static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005388{
He, Qingbfdaab02007-09-12 14:18:28 +08005389 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005390 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005391 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005392
He, Qingbfdaab02007-09-12 14:18:28 +08005393 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005394 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005395 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005396
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005397 ++vcpu->stat.io_exits;
5398
5399 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005400 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005401
5402 port = exit_qualification >> 16;
5403 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005404 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005405
5406 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005407}
5408
Ingo Molnar102d8322007-02-19 14:37:47 +02005409static void
5410vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5411{
5412 /*
5413 * Patch in the VMCALL instruction:
5414 */
5415 hypercall[0] = 0x0f;
5416 hypercall[1] = 0x01;
5417 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005418}
5419
Wincy Vanb9c237b2015-02-03 23:56:30 +08005420static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005421{
5422 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005423 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005424
Wincy Vanb9c237b2015-02-03 23:56:30 +08005425 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005426 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5427 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5428 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5429 return (val & always_on) == always_on;
5430}
5431
Guo Chao0fa06072012-06-28 15:16:19 +08005432/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005433static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5434{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005435 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005436 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5437 unsigned long orig_val = val;
5438
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005439 /*
5440 * We get here when L2 changed cr0 in a way that did not change
5441 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005442 * but did change L0 shadowed bits. So we first calculate the
5443 * effective cr0 value that L1 would like to write into the
5444 * hardware. It consists of the L2-owned bits from the new
5445 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005446 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005447 val = (val & ~vmcs12->cr0_guest_host_mask) |
5448 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5449
Wincy Vanb9c237b2015-02-03 23:56:30 +08005450 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005451 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005452
5453 if (kvm_set_cr0(vcpu, val))
5454 return 1;
5455 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005456 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005457 } else {
5458 if (to_vmx(vcpu)->nested.vmxon &&
5459 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5460 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005461 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005462 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005463}
5464
5465static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5466{
5467 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005468 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5469 unsigned long orig_val = val;
5470
5471 /* analogously to handle_set_cr0 */
5472 val = (val & ~vmcs12->cr4_guest_host_mask) |
5473 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5474 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005475 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005476 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005477 return 0;
5478 } else
5479 return kvm_set_cr4(vcpu, val);
5480}
5481
5482/* called to set cr0 as approriate for clts instruction exit. */
5483static void handle_clts(struct kvm_vcpu *vcpu)
5484{
5485 if (is_guest_mode(vcpu)) {
5486 /*
5487 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5488 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5489 * just pretend it's off (also in arch.cr0 for fpu_activate).
5490 */
5491 vmcs_writel(CR0_READ_SHADOW,
5492 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5493 vcpu->arch.cr0 &= ~X86_CR0_TS;
5494 } else
5495 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5496}
5497
Avi Kivity851ba692009-08-24 11:10:17 +03005498static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005499{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005500 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005501 int cr;
5502 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005503 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005504
He, Qingbfdaab02007-09-12 14:18:28 +08005505 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005506 cr = exit_qualification & 15;
5507 reg = (exit_qualification >> 8) & 15;
5508 switch ((exit_qualification >> 4) & 3) {
5509 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005510 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005511 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005512 switch (cr) {
5513 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005514 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005515 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005516 return 1;
5517 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005518 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005519 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005520 return 1;
5521 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005522 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005523 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005524 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005525 case 8: {
5526 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005527 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005528 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005529 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005530 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005531 return 1;
5532 if (cr8_prev <= cr8)
5533 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005534 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005535 return 0;
5536 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005537 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005538 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005539 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005540 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005541 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005542 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005543 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005544 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005545 case 1: /*mov from cr*/
5546 switch (cr) {
5547 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005548 val = kvm_read_cr3(vcpu);
5549 kvm_register_write(vcpu, reg, val);
5550 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551 skip_emulated_instruction(vcpu);
5552 return 1;
5553 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005554 val = kvm_get_cr8(vcpu);
5555 kvm_register_write(vcpu, reg, val);
5556 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005557 skip_emulated_instruction(vcpu);
5558 return 1;
5559 }
5560 break;
5561 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005562 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005563 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005564 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005565
5566 skip_emulated_instruction(vcpu);
5567 return 1;
5568 default:
5569 break;
5570 }
Avi Kivity851ba692009-08-24 11:10:17 +03005571 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005572 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005573 (int)(exit_qualification >> 4) & 3, cr);
5574 return 0;
5575}
5576
Avi Kivity851ba692009-08-24 11:10:17 +03005577static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005578{
He, Qingbfdaab02007-09-12 14:18:28 +08005579 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005580 int dr, dr7, reg;
5581
5582 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5583 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5584
5585 /* First, if DR does not exist, trigger UD */
5586 if (!kvm_require_dr(vcpu, dr))
5587 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005588
Jan Kiszkaf2483412010-01-20 18:20:20 +01005589 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005590 if (!kvm_require_cpl(vcpu, 0))
5591 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005592 dr7 = vmcs_readl(GUEST_DR7);
5593 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005594 /*
5595 * As the vm-exit takes precedence over the debug trap, we
5596 * need to emulate the latter, either for the host or the
5597 * guest debugging itself.
5598 */
5599 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005600 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005601 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005602 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005603 vcpu->run->debug.arch.exception = DB_VECTOR;
5604 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005605 return 0;
5606 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005607 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005608 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005609 kvm_queue_exception(vcpu, DB_VECTOR);
5610 return 1;
5611 }
5612 }
5613
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005614 if (vcpu->guest_debug == 0) {
5615 u32 cpu_based_vm_exec_control;
5616
5617 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5618 cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5619 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5620
5621 /*
5622 * No more DR vmexits; force a reload of the debug registers
5623 * and reenter on this instruction. The next vmexit will
5624 * retrieve the full state of the debug registers.
5625 */
5626 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5627 return 1;
5628 }
5629
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005630 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5631 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005632 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005633
5634 if (kvm_get_dr(vcpu, dr, &val))
5635 return 1;
5636 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005637 } else
Nadav Amit57773922014-06-18 17:19:23 +03005638 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005639 return 1;
5640
Avi Kivity6aa8b732006-12-10 02:21:36 -08005641 skip_emulated_instruction(vcpu);
5642 return 1;
5643}
5644
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005645static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5646{
5647 return vcpu->arch.dr6;
5648}
5649
5650static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5651{
5652}
5653
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005654static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5655{
5656 u32 cpu_based_vm_exec_control;
5657
5658 get_debugreg(vcpu->arch.db[0], 0);
5659 get_debugreg(vcpu->arch.db[1], 1);
5660 get_debugreg(vcpu->arch.db[2], 2);
5661 get_debugreg(vcpu->arch.db[3], 3);
5662 get_debugreg(vcpu->arch.dr6, 6);
5663 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5664
5665 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
5666
5667 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5668 cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING;
5669 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5670}
5671
Gleb Natapov020df072010-04-13 10:05:23 +03005672static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5673{
5674 vmcs_writel(GUEST_DR7, val);
5675}
5676
Avi Kivity851ba692009-08-24 11:10:17 +03005677static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005678{
Avi Kivity06465c52007-02-28 20:46:53 +02005679 kvm_emulate_cpuid(vcpu);
5680 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005681}
5682
Avi Kivity851ba692009-08-24 11:10:17 +03005683static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005684{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005685 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005686 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005687
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005688 msr_info.index = ecx;
5689 msr_info.host_initiated = false;
5690 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005691 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005692 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005693 return 1;
5694 }
5695
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005696 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005697
Avi Kivity6aa8b732006-12-10 02:21:36 -08005698 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005699 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5700 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005701 skip_emulated_instruction(vcpu);
5702 return 1;
5703}
5704
Avi Kivity851ba692009-08-24 11:10:17 +03005705static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005706{
Will Auld8fe8ab42012-11-29 12:42:12 -08005707 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005708 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5709 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5710 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005711
Will Auld8fe8ab42012-11-29 12:42:12 -08005712 msr.data = data;
5713 msr.index = ecx;
5714 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005715 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005716 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005717 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005718 return 1;
5719 }
5720
Avi Kivity59200272010-01-25 19:47:02 +02005721 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005722 skip_emulated_instruction(vcpu);
5723 return 1;
5724}
5725
Avi Kivity851ba692009-08-24 11:10:17 +03005726static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005727{
Avi Kivity3842d132010-07-27 12:30:24 +03005728 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005729 return 1;
5730}
5731
Avi Kivity851ba692009-08-24 11:10:17 +03005732static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005733{
Eddie Dong85f455f2007-07-06 12:20:49 +03005734 u32 cpu_based_vm_exec_control;
5735
5736 /* clear pending irq */
5737 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5738 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5739 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005740
Avi Kivity3842d132010-07-27 12:30:24 +03005741 kvm_make_request(KVM_REQ_EVENT, vcpu);
5742
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005743 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005744 return 1;
5745}
5746
Avi Kivity851ba692009-08-24 11:10:17 +03005747static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005748{
Avi Kivityd3bef152007-06-05 15:53:05 +03005749 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005750}
5751
Avi Kivity851ba692009-08-24 11:10:17 +03005752static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005753{
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005754 kvm_emulate_hypercall(vcpu);
5755 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02005756}
5757
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005758static int handle_invd(struct kvm_vcpu *vcpu)
5759{
Andre Przywara51d8b662010-12-21 11:12:02 +01005760 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005761}
5762
Avi Kivity851ba692009-08-24 11:10:17 +03005763static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005764{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005765 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005766
5767 kvm_mmu_invlpg(vcpu, exit_qualification);
5768 skip_emulated_instruction(vcpu);
5769 return 1;
5770}
5771
Avi Kivityfee84b02011-11-10 14:57:25 +02005772static int handle_rdpmc(struct kvm_vcpu *vcpu)
5773{
5774 int err;
5775
5776 err = kvm_rdpmc(vcpu);
5777 kvm_complete_insn_gp(vcpu, err);
5778
5779 return 1;
5780}
5781
Avi Kivity851ba692009-08-24 11:10:17 +03005782static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005783{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005784 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005785 return 1;
5786}
5787
Dexuan Cui2acf9232010-06-10 11:27:12 +08005788static int handle_xsetbv(struct kvm_vcpu *vcpu)
5789{
5790 u64 new_bv = kvm_read_edx_eax(vcpu);
5791 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5792
5793 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5794 skip_emulated_instruction(vcpu);
5795 return 1;
5796}
5797
Wanpeng Lif53cd632014-12-02 19:14:58 +08005798static int handle_xsaves(struct kvm_vcpu *vcpu)
5799{
5800 skip_emulated_instruction(vcpu);
5801 WARN(1, "this should never happen\n");
5802 return 1;
5803}
5804
5805static int handle_xrstors(struct kvm_vcpu *vcpu)
5806{
5807 skip_emulated_instruction(vcpu);
5808 WARN(1, "this should never happen\n");
5809 return 1;
5810}
5811
Avi Kivity851ba692009-08-24 11:10:17 +03005812static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005813{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005814 if (likely(fasteoi)) {
5815 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5816 int access_type, offset;
5817
5818 access_type = exit_qualification & APIC_ACCESS_TYPE;
5819 offset = exit_qualification & APIC_ACCESS_OFFSET;
5820 /*
5821 * Sane guest uses MOV to write EOI, with written value
5822 * not cared. So make a short-circuit here by avoiding
5823 * heavy instruction emulation.
5824 */
5825 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5826 (offset == APIC_EOI)) {
5827 kvm_lapic_set_eoi(vcpu);
5828 skip_emulated_instruction(vcpu);
5829 return 1;
5830 }
5831 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005832 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005833}
5834
Yang Zhangc7c9c562013-01-25 10:18:51 +08005835static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5836{
5837 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5838 int vector = exit_qualification & 0xff;
5839
5840 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5841 kvm_apic_set_eoi_accelerated(vcpu, vector);
5842 return 1;
5843}
5844
Yang Zhang83d4c282013-01-25 10:18:49 +08005845static int handle_apic_write(struct kvm_vcpu *vcpu)
5846{
5847 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5848 u32 offset = exit_qualification & 0xfff;
5849
5850 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5851 kvm_apic_write_nodecode(vcpu, offset);
5852 return 1;
5853}
5854
Avi Kivity851ba692009-08-24 11:10:17 +03005855static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005856{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005857 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005858 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005859 bool has_error_code = false;
5860 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005861 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005862 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005863
5864 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005865 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005866 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005867
5868 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5869
5870 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005871 if (reason == TASK_SWITCH_GATE && idt_v) {
5872 switch (type) {
5873 case INTR_TYPE_NMI_INTR:
5874 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005875 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005876 break;
5877 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005878 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005879 kvm_clear_interrupt_queue(vcpu);
5880 break;
5881 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005882 if (vmx->idt_vectoring_info &
5883 VECTORING_INFO_DELIVER_CODE_MASK) {
5884 has_error_code = true;
5885 error_code =
5886 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5887 }
5888 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005889 case INTR_TYPE_SOFT_EXCEPTION:
5890 kvm_clear_exception_queue(vcpu);
5891 break;
5892 default:
5893 break;
5894 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005895 }
Izik Eidus37817f22008-03-24 23:14:53 +02005896 tss_selector = exit_qualification;
5897
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005898 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5899 type != INTR_TYPE_EXT_INTR &&
5900 type != INTR_TYPE_NMI_INTR))
5901 skip_emulated_instruction(vcpu);
5902
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005903 if (kvm_task_switch(vcpu, tss_selector,
5904 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5905 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03005906 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5907 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5908 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005909 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03005910 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005911
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005912 /*
5913 * TODO: What about debug traps on tss switch?
5914 * Are we supposed to inject them and update dr6?
5915 */
5916
5917 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02005918}
5919
Avi Kivity851ba692009-08-24 11:10:17 +03005920static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005921{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005922 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005923 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005924 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005925 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08005926
Sheng Yangf9c617f2009-03-25 10:08:52 +08005927 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08005928
Sheng Yang14394422008-04-28 12:24:45 +08005929 gla_validity = (exit_qualification >> 7) & 0x3;
5930 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
5931 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
5932 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
5933 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08005934 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08005935 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
5936 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03005937 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5938 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03005939 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08005940 }
5941
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005942 /*
5943 * EPT violation happened while executing iret from NMI,
5944 * "blocked by NMI" bit has to be set before next VM entry.
5945 * There are errata that may cause this bit to not be set:
5946 * AAK134, BY25.
5947 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005948 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
5949 cpu_has_virtual_nmis() &&
5950 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005951 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5952
Sheng Yang14394422008-04-28 12:24:45 +08005953 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005954 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005955
5956 /* It is a write fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005957 error_code = exit_qualification & PFERR_WRITE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005958 /* It is a fetch fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005959 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005960 /* ept page table is present? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005961 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005962
Yang Zhang25d92082013-08-06 12:00:32 +03005963 vcpu->arch.exit_qualification = exit_qualification;
5964
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005965 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005966}
5967
Avi Kivity851ba692009-08-24 11:10:17 +03005968static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005969{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005970 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005971 gpa_t gpa;
5972
5973 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005974 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005975 skip_emulated_instruction(vcpu);
Jason Wang931c33b2015-09-15 14:41:58 +08005976 trace_kvm_fast_mmio(gpa);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03005977 return 1;
5978 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005979
Paolo Bonzini450869d2015-11-04 13:41:21 +01005980 ret = handle_mmio_page_fault(vcpu, gpa, true);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005981 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005982 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
5983 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005984
5985 if (unlikely(ret == RET_MMIO_PF_INVALID))
5986 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
5987
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08005988 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005989 return 1;
5990
5991 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005992 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005993
Avi Kivity851ba692009-08-24 11:10:17 +03005994 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5995 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005996
5997 return 0;
5998}
5999
Avi Kivity851ba692009-08-24 11:10:17 +03006000static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006001{
6002 u32 cpu_based_vm_exec_control;
6003
6004 /* clear pending NMI */
6005 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6006 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6007 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6008 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006009 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006010
6011 return 1;
6012}
6013
Mohammed Gamal80ced182009-09-01 12:48:18 +02006014static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006015{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006016 struct vcpu_vmx *vmx = to_vmx(vcpu);
6017 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006018 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006019 u32 cpu_exec_ctrl;
6020 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006021 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006022
6023 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6024 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006025
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006026 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006027 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006028 return handle_interrupt_window(&vmx->vcpu);
6029
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006030 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6031 return 1;
6032
Gleb Natapov991eebf2013-04-11 12:10:51 +03006033 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006034
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006035 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006036 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006037 ret = 0;
6038 goto out;
6039 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006040
Avi Kivityde5f70e2012-06-12 20:22:28 +03006041 if (err != EMULATE_DONE) {
6042 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6043 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6044 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006045 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006046 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006047
Gleb Natapov8d76c492013-05-08 18:38:44 +03006048 if (vcpu->arch.halt_request) {
6049 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006050 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006051 goto out;
6052 }
6053
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006054 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006055 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006056 if (need_resched())
6057 schedule();
6058 }
6059
Mohammed Gamal80ced182009-09-01 12:48:18 +02006060out:
6061 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006062}
6063
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006064static int __grow_ple_window(int val)
6065{
6066 if (ple_window_grow < 1)
6067 return ple_window;
6068
6069 val = min(val, ple_window_actual_max);
6070
6071 if (ple_window_grow < ple_window)
6072 val *= ple_window_grow;
6073 else
6074 val += ple_window_grow;
6075
6076 return val;
6077}
6078
6079static int __shrink_ple_window(int val, int modifier, int minimum)
6080{
6081 if (modifier < 1)
6082 return ple_window;
6083
6084 if (modifier < ple_window)
6085 val /= modifier;
6086 else
6087 val -= modifier;
6088
6089 return max(val, minimum);
6090}
6091
6092static void grow_ple_window(struct kvm_vcpu *vcpu)
6093{
6094 struct vcpu_vmx *vmx = to_vmx(vcpu);
6095 int old = vmx->ple_window;
6096
6097 vmx->ple_window = __grow_ple_window(old);
6098
6099 if (vmx->ple_window != old)
6100 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006101
6102 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006103}
6104
6105static void shrink_ple_window(struct kvm_vcpu *vcpu)
6106{
6107 struct vcpu_vmx *vmx = to_vmx(vcpu);
6108 int old = vmx->ple_window;
6109
6110 vmx->ple_window = __shrink_ple_window(old,
6111 ple_window_shrink, ple_window);
6112
6113 if (vmx->ple_window != old)
6114 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006115
6116 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006117}
6118
6119/*
6120 * ple_window_actual_max is computed to be one grow_ple_window() below
6121 * ple_window_max. (See __grow_ple_window for the reason.)
6122 * This prevents overflows, because ple_window_max is int.
6123 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6124 * this process.
6125 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6126 */
6127static void update_ple_window_actual_max(void)
6128{
6129 ple_window_actual_max =
6130 __shrink_ple_window(max(ple_window_max, ple_window),
6131 ple_window_grow, INT_MIN);
6132}
6133
Feng Wubf9f6ac2015-09-18 22:29:55 +08006134/*
6135 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6136 */
6137static void wakeup_handler(void)
6138{
6139 struct kvm_vcpu *vcpu;
6140 int cpu = smp_processor_id();
6141
6142 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6143 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6144 blocked_vcpu_list) {
6145 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6146
6147 if (pi_test_on(pi_desc) == 1)
6148 kvm_vcpu_kick(vcpu);
6149 }
6150 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6151}
6152
Tiejun Chenf2c76482014-10-28 10:14:47 +08006153static __init int hardware_setup(void)
6154{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006155 int r = -ENOMEM, i, msr;
6156
6157 rdmsrl_safe(MSR_EFER, &host_efer);
6158
6159 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6160 kvm_define_shared_msr(i, vmx_msr_index[i]);
6161
6162 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
6163 if (!vmx_io_bitmap_a)
6164 return r;
6165
6166 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
6167 if (!vmx_io_bitmap_b)
6168 goto out;
6169
6170 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6171 if (!vmx_msr_bitmap_legacy)
6172 goto out1;
6173
6174 vmx_msr_bitmap_legacy_x2apic =
6175 (unsigned long *)__get_free_page(GFP_KERNEL);
6176 if (!vmx_msr_bitmap_legacy_x2apic)
6177 goto out2;
6178
6179 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6180 if (!vmx_msr_bitmap_longmode)
6181 goto out3;
6182
6183 vmx_msr_bitmap_longmode_x2apic =
6184 (unsigned long *)__get_free_page(GFP_KERNEL);
6185 if (!vmx_msr_bitmap_longmode_x2apic)
6186 goto out4;
Wincy Van3af18d92015-02-03 23:49:31 +08006187
6188 if (nested) {
6189 vmx_msr_bitmap_nested =
6190 (unsigned long *)__get_free_page(GFP_KERNEL);
6191 if (!vmx_msr_bitmap_nested)
6192 goto out5;
6193 }
6194
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006195 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6196 if (!vmx_vmread_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006197 goto out6;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006198
6199 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6200 if (!vmx_vmwrite_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006201 goto out7;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006202
6203 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6204 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6205
6206 /*
6207 * Allow direct access to the PC debug port (it is often used for I/O
6208 * delays, but the vmexits simply slow things down).
6209 */
6210 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6211 clear_bit(0x80, vmx_io_bitmap_a);
6212
6213 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6214
6215 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6216 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Wincy Van3af18d92015-02-03 23:49:31 +08006217 if (nested)
6218 memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006219
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006220 if (setup_vmcs_config(&vmcs_config) < 0) {
6221 r = -EIO;
Wincy Van3af18d92015-02-03 23:49:31 +08006222 goto out8;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006223 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006224
6225 if (boot_cpu_has(X86_FEATURE_NX))
6226 kvm_enable_efer_bits(EFER_NX);
6227
6228 if (!cpu_has_vmx_vpid())
6229 enable_vpid = 0;
6230 if (!cpu_has_vmx_shadow_vmcs())
6231 enable_shadow_vmcs = 0;
6232 if (enable_shadow_vmcs)
6233 init_vmcs_shadow_fields();
6234
6235 if (!cpu_has_vmx_ept() ||
6236 !cpu_has_vmx_ept_4levels()) {
6237 enable_ept = 0;
6238 enable_unrestricted_guest = 0;
6239 enable_ept_ad_bits = 0;
6240 }
6241
6242 if (!cpu_has_vmx_ept_ad_bits())
6243 enable_ept_ad_bits = 0;
6244
6245 if (!cpu_has_vmx_unrestricted_guest())
6246 enable_unrestricted_guest = 0;
6247
Paolo Bonziniad15a292015-01-30 16:18:49 +01006248 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006249 flexpriority_enabled = 0;
6250
Paolo Bonziniad15a292015-01-30 16:18:49 +01006251 /*
6252 * set_apic_access_page_addr() is used to reload apic access
6253 * page upon invalidation. No need to do anything if not
6254 * using the APIC_ACCESS_ADDR VMCS field.
6255 */
6256 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006257 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006258
6259 if (!cpu_has_vmx_tpr_shadow())
6260 kvm_x86_ops->update_cr8_intercept = NULL;
6261
6262 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6263 kvm_disable_largepages();
6264
6265 if (!cpu_has_vmx_ple())
6266 ple_gap = 0;
6267
6268 if (!cpu_has_vmx_apicv())
6269 enable_apicv = 0;
6270
Haozhong Zhang64903d62015-10-20 15:39:09 +08006271 if (cpu_has_vmx_tsc_scaling()) {
6272 kvm_has_tsc_control = true;
6273 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6274 kvm_tsc_scaling_ratio_frac_bits = 48;
6275 }
6276
Tiejun Chenbaa03522014-12-23 16:21:11 +08006277 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6278 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6279 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6280 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6281 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6282 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6283 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6284
6285 memcpy(vmx_msr_bitmap_legacy_x2apic,
6286 vmx_msr_bitmap_legacy, PAGE_SIZE);
6287 memcpy(vmx_msr_bitmap_longmode_x2apic,
6288 vmx_msr_bitmap_longmode, PAGE_SIZE);
6289
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006290 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6291
Tiejun Chenbaa03522014-12-23 16:21:11 +08006292 if (enable_apicv) {
6293 for (msr = 0x800; msr <= 0x8ff; msr++)
6294 vmx_disable_intercept_msr_read_x2apic(msr);
6295
6296 /* According SDM, in x2apic mode, the whole id reg is used.
6297 * But in KVM, it only use the highest eight bits. Need to
6298 * intercept it */
6299 vmx_enable_intercept_msr_read_x2apic(0x802);
6300 /* TMCCT */
6301 vmx_enable_intercept_msr_read_x2apic(0x839);
6302 /* TPR */
6303 vmx_disable_intercept_msr_write_x2apic(0x808);
6304 /* EOI */
6305 vmx_disable_intercept_msr_write_x2apic(0x80b);
6306 /* SELF-IPI */
6307 vmx_disable_intercept_msr_write_x2apic(0x83f);
6308 }
6309
6310 if (enable_ept) {
6311 kvm_mmu_set_mask_ptes(0ull,
6312 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
6313 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
6314 0ull, VMX_EPT_EXECUTABLE_MASK);
6315 ept_set_mmio_spte_mask();
6316 kvm_enable_tdp();
6317 } else
6318 kvm_disable_tdp();
6319
6320 update_ple_window_actual_max();
6321
Kai Huang843e4332015-01-28 10:54:28 +08006322 /*
6323 * Only enable PML when hardware supports PML feature, and both EPT
6324 * and EPT A/D bit features are enabled -- PML depends on them to work.
6325 */
6326 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6327 enable_pml = 0;
6328
6329 if (!enable_pml) {
6330 kvm_x86_ops->slot_enable_log_dirty = NULL;
6331 kvm_x86_ops->slot_disable_log_dirty = NULL;
6332 kvm_x86_ops->flush_log_dirty = NULL;
6333 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6334 }
6335
Feng Wubf9f6ac2015-09-18 22:29:55 +08006336 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6337
Tiejun Chenf2c76482014-10-28 10:14:47 +08006338 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006339
Wincy Van3af18d92015-02-03 23:49:31 +08006340out8:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006341 free_page((unsigned long)vmx_vmwrite_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006342out7:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006343 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006344out6:
6345 if (nested)
6346 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006347out5:
6348 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6349out4:
6350 free_page((unsigned long)vmx_msr_bitmap_longmode);
6351out3:
6352 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6353out2:
6354 free_page((unsigned long)vmx_msr_bitmap_legacy);
6355out1:
6356 free_page((unsigned long)vmx_io_bitmap_b);
6357out:
6358 free_page((unsigned long)vmx_io_bitmap_a);
6359
6360 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006361}
6362
6363static __exit void hardware_unsetup(void)
6364{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006365 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6366 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6367 free_page((unsigned long)vmx_msr_bitmap_legacy);
6368 free_page((unsigned long)vmx_msr_bitmap_longmode);
6369 free_page((unsigned long)vmx_io_bitmap_b);
6370 free_page((unsigned long)vmx_io_bitmap_a);
6371 free_page((unsigned long)vmx_vmwrite_bitmap);
6372 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006373 if (nested)
6374 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006375
Tiejun Chenf2c76482014-10-28 10:14:47 +08006376 free_kvm_area();
6377}
6378
Avi Kivity6aa8b732006-12-10 02:21:36 -08006379/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006380 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6381 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6382 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006383static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006384{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006385 if (ple_gap)
6386 grow_ple_window(vcpu);
6387
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006388 skip_emulated_instruction(vcpu);
6389 kvm_vcpu_on_spin(vcpu);
6390
6391 return 1;
6392}
6393
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006394static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006395{
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006396 skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006397 return 1;
6398}
6399
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006400static int handle_mwait(struct kvm_vcpu *vcpu)
6401{
6402 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6403 return handle_nop(vcpu);
6404}
6405
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006406static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6407{
6408 return 1;
6409}
6410
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006411static int handle_monitor(struct kvm_vcpu *vcpu)
6412{
6413 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6414 return handle_nop(vcpu);
6415}
6416
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006417/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006418 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6419 * We could reuse a single VMCS for all the L2 guests, but we also want the
6420 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6421 * allows keeping them loaded on the processor, and in the future will allow
6422 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6423 * every entry if they never change.
6424 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6425 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6426 *
6427 * The following functions allocate and free a vmcs02 in this pool.
6428 */
6429
6430/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6431static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6432{
6433 struct vmcs02_list *item;
6434 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6435 if (item->vmptr == vmx->nested.current_vmptr) {
6436 list_move(&item->list, &vmx->nested.vmcs02_pool);
6437 return &item->vmcs02;
6438 }
6439
6440 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6441 /* Recycle the least recently used VMCS. */
6442 item = list_entry(vmx->nested.vmcs02_pool.prev,
6443 struct vmcs02_list, list);
6444 item->vmptr = vmx->nested.current_vmptr;
6445 list_move(&item->list, &vmx->nested.vmcs02_pool);
6446 return &item->vmcs02;
6447 }
6448
6449 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006450 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006451 if (!item)
6452 return NULL;
6453 item->vmcs02.vmcs = alloc_vmcs();
6454 if (!item->vmcs02.vmcs) {
6455 kfree(item);
6456 return NULL;
6457 }
6458 loaded_vmcs_init(&item->vmcs02);
6459 item->vmptr = vmx->nested.current_vmptr;
6460 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6461 vmx->nested.vmcs02_num++;
6462 return &item->vmcs02;
6463}
6464
6465/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6466static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6467{
6468 struct vmcs02_list *item;
6469 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6470 if (item->vmptr == vmptr) {
6471 free_loaded_vmcs(&item->vmcs02);
6472 list_del(&item->list);
6473 kfree(item);
6474 vmx->nested.vmcs02_num--;
6475 return;
6476 }
6477}
6478
6479/*
6480 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006481 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6482 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006483 */
6484static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6485{
6486 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006487
6488 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006489 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006490 /*
6491 * Something will leak if the above WARN triggers. Better than
6492 * a use-after-free.
6493 */
6494 if (vmx->loaded_vmcs == &item->vmcs02)
6495 continue;
6496
6497 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006498 list_del(&item->list);
6499 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006500 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006501 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006502}
6503
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006504/*
6505 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6506 * set the success or error code of an emulated VMX instruction, as specified
6507 * by Vol 2B, VMX Instruction Reference, "Conventions".
6508 */
6509static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6510{
6511 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6512 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6513 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6514}
6515
6516static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6517{
6518 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6519 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6520 X86_EFLAGS_SF | X86_EFLAGS_OF))
6521 | X86_EFLAGS_CF);
6522}
6523
Abel Gordon145c28d2013-04-18 14:36:55 +03006524static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006525 u32 vm_instruction_error)
6526{
6527 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6528 /*
6529 * failValid writes the error number to the current VMCS, which
6530 * can't be done there isn't a current VMCS.
6531 */
6532 nested_vmx_failInvalid(vcpu);
6533 return;
6534 }
6535 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6536 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6537 X86_EFLAGS_SF | X86_EFLAGS_OF))
6538 | X86_EFLAGS_ZF);
6539 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6540 /*
6541 * We don't need to force a shadow sync because
6542 * VM_INSTRUCTION_ERROR is not shadowed
6543 */
6544}
Abel Gordon145c28d2013-04-18 14:36:55 +03006545
Wincy Vanff651cb2014-12-11 08:52:58 +03006546static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6547{
6548 /* TODO: not to reset guest simply here. */
6549 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6550 pr_warn("kvm: nested vmx abort, indicator %d\n", indicator);
6551}
6552
Jan Kiszkaf41245002014-03-07 20:03:13 +01006553static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6554{
6555 struct vcpu_vmx *vmx =
6556 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6557
6558 vmx->nested.preemption_timer_expired = true;
6559 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6560 kvm_vcpu_kick(&vmx->vcpu);
6561
6562 return HRTIMER_NORESTART;
6563}
6564
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006565/*
Bandan Das19677e32014-05-06 02:19:15 -04006566 * Decode the memory-address operand of a vmx instruction, as recorded on an
6567 * exit caused by such an instruction (run by a guest hypervisor).
6568 * On success, returns 0. When the operand is invalid, returns 1 and throws
6569 * #UD or #GP.
6570 */
6571static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6572 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006573 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006574{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006575 gva_t off;
6576 bool exn;
6577 struct kvm_segment s;
6578
Bandan Das19677e32014-05-06 02:19:15 -04006579 /*
6580 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6581 * Execution", on an exit, vmx_instruction_info holds most of the
6582 * addressing components of the operand. Only the displacement part
6583 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6584 * For how an actual address is calculated from all these components,
6585 * refer to Vol. 1, "Operand Addressing".
6586 */
6587 int scaling = vmx_instruction_info & 3;
6588 int addr_size = (vmx_instruction_info >> 7) & 7;
6589 bool is_reg = vmx_instruction_info & (1u << 10);
6590 int seg_reg = (vmx_instruction_info >> 15) & 7;
6591 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6592 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6593 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6594 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6595
6596 if (is_reg) {
6597 kvm_queue_exception(vcpu, UD_VECTOR);
6598 return 1;
6599 }
6600
6601 /* Addr = segment_base + offset */
6602 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006603 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006604 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006605 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006606 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006607 off += kvm_register_read(vcpu, index_reg)<<scaling;
6608 vmx_get_segment(vcpu, &s, seg_reg);
6609 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006610
6611 if (addr_size == 1) /* 32 bit */
6612 *ret &= 0xffffffff;
6613
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006614 /* Checks for #GP/#SS exceptions. */
6615 exn = false;
6616 if (is_protmode(vcpu)) {
6617 /* Protected mode: apply checks for segment validity in the
6618 * following order:
6619 * - segment type check (#GP(0) may be thrown)
6620 * - usability check (#GP(0)/#SS(0))
6621 * - limit check (#GP(0)/#SS(0))
6622 */
6623 if (wr)
6624 /* #GP(0) if the destination operand is located in a
6625 * read-only data segment or any code segment.
6626 */
6627 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6628 else
6629 /* #GP(0) if the source operand is located in an
6630 * execute-only code segment
6631 */
6632 exn = ((s.type & 0xa) == 8);
6633 }
6634 if (exn) {
6635 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6636 return 1;
6637 }
6638 if (is_long_mode(vcpu)) {
6639 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6640 * non-canonical form. This is an only check for long mode.
6641 */
6642 exn = is_noncanonical_address(*ret);
6643 } else if (is_protmode(vcpu)) {
6644 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6645 */
6646 exn = (s.unusable != 0);
6647 /* Protected mode: #GP(0)/#SS(0) if the memory
6648 * operand is outside the segment limit.
6649 */
6650 exn = exn || (off + sizeof(u64) > s.limit);
6651 }
6652 if (exn) {
6653 kvm_queue_exception_e(vcpu,
6654 seg_reg == VCPU_SREG_SS ?
6655 SS_VECTOR : GP_VECTOR,
6656 0);
6657 return 1;
6658 }
6659
Bandan Das19677e32014-05-06 02:19:15 -04006660 return 0;
6661}
6662
6663/*
Bandan Das3573e222014-05-06 02:19:16 -04006664 * This function performs the various checks including
6665 * - if it's 4KB aligned
6666 * - No bits beyond the physical address width are set
6667 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006668 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006669 */
Bandan Das4291b582014-05-06 02:19:18 -04006670static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6671 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006672{
6673 gva_t gva;
6674 gpa_t vmptr;
6675 struct x86_exception e;
6676 struct page *page;
6677 struct vcpu_vmx *vmx = to_vmx(vcpu);
6678 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6679
6680 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006681 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006682 return 1;
6683
6684 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6685 sizeof(vmptr), &e)) {
6686 kvm_inject_page_fault(vcpu, &e);
6687 return 1;
6688 }
6689
6690 switch (exit_reason) {
6691 case EXIT_REASON_VMON:
6692 /*
6693 * SDM 3: 24.11.5
6694 * The first 4 bytes of VMXON region contain the supported
6695 * VMCS revision identifier
6696 *
6697 * Note - IA32_VMX_BASIC[48] will never be 1
6698 * for the nested case;
6699 * which replaces physical address width with 32
6700 *
6701 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006702 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006703 nested_vmx_failInvalid(vcpu);
6704 skip_emulated_instruction(vcpu);
6705 return 1;
6706 }
6707
6708 page = nested_get_page(vcpu, vmptr);
6709 if (page == NULL ||
6710 *(u32 *)kmap(page) != VMCS12_REVISION) {
6711 nested_vmx_failInvalid(vcpu);
6712 kunmap(page);
6713 skip_emulated_instruction(vcpu);
6714 return 1;
6715 }
6716 kunmap(page);
6717 vmx->nested.vmxon_ptr = vmptr;
6718 break;
Bandan Das4291b582014-05-06 02:19:18 -04006719 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006720 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006721 nested_vmx_failValid(vcpu,
6722 VMXERR_VMCLEAR_INVALID_ADDRESS);
6723 skip_emulated_instruction(vcpu);
6724 return 1;
6725 }
Bandan Das3573e222014-05-06 02:19:16 -04006726
Bandan Das4291b582014-05-06 02:19:18 -04006727 if (vmptr == vmx->nested.vmxon_ptr) {
6728 nested_vmx_failValid(vcpu,
6729 VMXERR_VMCLEAR_VMXON_POINTER);
6730 skip_emulated_instruction(vcpu);
6731 return 1;
6732 }
6733 break;
6734 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006735 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006736 nested_vmx_failValid(vcpu,
6737 VMXERR_VMPTRLD_INVALID_ADDRESS);
6738 skip_emulated_instruction(vcpu);
6739 return 1;
6740 }
6741
6742 if (vmptr == vmx->nested.vmxon_ptr) {
6743 nested_vmx_failValid(vcpu,
6744 VMXERR_VMCLEAR_VMXON_POINTER);
6745 skip_emulated_instruction(vcpu);
6746 return 1;
6747 }
6748 break;
Bandan Das3573e222014-05-06 02:19:16 -04006749 default:
6750 return 1; /* shouldn't happen */
6751 }
6752
Bandan Das4291b582014-05-06 02:19:18 -04006753 if (vmpointer)
6754 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04006755 return 0;
6756}
6757
6758/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006759 * Emulate the VMXON instruction.
6760 * Currently, we just remember that VMX is active, and do not save or even
6761 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6762 * do not currently need to store anything in that guest-allocated memory
6763 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6764 * argument is different from the VMXON pointer (which the spec says they do).
6765 */
6766static int handle_vmon(struct kvm_vcpu *vcpu)
6767{
6768 struct kvm_segment cs;
6769 struct vcpu_vmx *vmx = to_vmx(vcpu);
Abel Gordon8de48832013-04-18 14:37:25 +03006770 struct vmcs *shadow_vmcs;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006771 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6772 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006773
6774 /* The Intel VMX Instruction Reference lists a bunch of bits that
6775 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6776 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6777 * Otherwise, we should fail with #UD. We test these now:
6778 */
6779 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6780 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6781 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6782 kvm_queue_exception(vcpu, UD_VECTOR);
6783 return 1;
6784 }
6785
6786 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6787 if (is_long_mode(vcpu) && !cs.l) {
6788 kvm_queue_exception(vcpu, UD_VECTOR);
6789 return 1;
6790 }
6791
6792 if (vmx_get_cpl(vcpu)) {
6793 kvm_inject_gp(vcpu, 0);
6794 return 1;
6795 }
Bandan Das3573e222014-05-06 02:19:16 -04006796
Bandan Das4291b582014-05-06 02:19:18 -04006797 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
Bandan Das3573e222014-05-06 02:19:16 -04006798 return 1;
6799
Abel Gordon145c28d2013-04-18 14:36:55 +03006800 if (vmx->nested.vmxon) {
6801 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6802 skip_emulated_instruction(vcpu);
6803 return 1;
6804 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006805
6806 if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
6807 != VMXON_NEEDED_FEATURES) {
6808 kvm_inject_gp(vcpu, 0);
6809 return 1;
6810 }
6811
Abel Gordon8de48832013-04-18 14:37:25 +03006812 if (enable_shadow_vmcs) {
6813 shadow_vmcs = alloc_vmcs();
6814 if (!shadow_vmcs)
6815 return -ENOMEM;
6816 /* mark vmcs as shadow */
6817 shadow_vmcs->revision_id |= (1u << 31);
6818 /* init shadow vmcs */
6819 vmcs_clear(shadow_vmcs);
6820 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6821 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006822
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006823 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6824 vmx->nested.vmcs02_num = 0;
6825
Jan Kiszkaf41245002014-03-07 20:03:13 +01006826 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6827 HRTIMER_MODE_REL);
6828 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6829
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006830 vmx->nested.vmxon = true;
6831
6832 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006833 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006834 return 1;
6835}
6836
6837/*
6838 * Intel's VMX Instruction Reference specifies a common set of prerequisites
6839 * for running VMX instructions (except VMXON, whose prerequisites are
6840 * slightly different). It also specifies what exception to inject otherwise.
6841 */
6842static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
6843{
6844 struct kvm_segment cs;
6845 struct vcpu_vmx *vmx = to_vmx(vcpu);
6846
6847 if (!vmx->nested.vmxon) {
6848 kvm_queue_exception(vcpu, UD_VECTOR);
6849 return 0;
6850 }
6851
6852 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6853 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
6854 (is_long_mode(vcpu) && !cs.l)) {
6855 kvm_queue_exception(vcpu, UD_VECTOR);
6856 return 0;
6857 }
6858
6859 if (vmx_get_cpl(vcpu)) {
6860 kvm_inject_gp(vcpu, 0);
6861 return 0;
6862 }
6863
6864 return 1;
6865}
6866
Abel Gordone7953d72013-04-18 14:37:55 +03006867static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
6868{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006869 if (vmx->nested.current_vmptr == -1ull)
6870 return;
6871
6872 /* current_vmptr and current_vmcs12 are always set/reset together */
6873 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
6874 return;
6875
Abel Gordon012f83c2013-04-18 14:39:25 +03006876 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006877 /* copy to memory all shadowed fields in case
6878 they were modified */
6879 copy_shadow_to_vmcs12(vmx);
6880 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08006881 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6882 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006883 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03006884 }
Wincy Van705699a2015-02-03 23:58:17 +08006885 vmx->nested.posted_intr_nv = -1;
Abel Gordone7953d72013-04-18 14:37:55 +03006886 kunmap(vmx->nested.current_vmcs12_page);
6887 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006888 vmx->nested.current_vmptr = -1ull;
6889 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03006890}
6891
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006892/*
6893 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
6894 * just stops using VMX.
6895 */
6896static void free_nested(struct vcpu_vmx *vmx)
6897{
6898 if (!vmx->nested.vmxon)
6899 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006900
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006901 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07006902 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006903 nested_release_vmcs12(vmx);
Abel Gordone7953d72013-04-18 14:37:55 +03006904 if (enable_shadow_vmcs)
6905 free_vmcs(vmx->nested.current_shadow_vmcs);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006906 /* Unpin physical memory we referred to in current vmcs02 */
6907 if (vmx->nested.apic_access_page) {
6908 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006909 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006910 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006911 if (vmx->nested.virtual_apic_page) {
6912 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006913 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006914 }
Wincy Van705699a2015-02-03 23:58:17 +08006915 if (vmx->nested.pi_desc_page) {
6916 kunmap(vmx->nested.pi_desc_page);
6917 nested_release_page(vmx->nested.pi_desc_page);
6918 vmx->nested.pi_desc_page = NULL;
6919 vmx->nested.pi_desc = NULL;
6920 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006921
6922 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006923}
6924
6925/* Emulate the VMXOFF instruction */
6926static int handle_vmoff(struct kvm_vcpu *vcpu)
6927{
6928 if (!nested_vmx_check_permission(vcpu))
6929 return 1;
6930 free_nested(to_vmx(vcpu));
6931 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006932 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006933 return 1;
6934}
6935
Nadav Har'El27d6c862011-05-25 23:06:59 +03006936/* Emulate the VMCLEAR instruction */
6937static int handle_vmclear(struct kvm_vcpu *vcpu)
6938{
6939 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006940 gpa_t vmptr;
6941 struct vmcs12 *vmcs12;
6942 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03006943
6944 if (!nested_vmx_check_permission(vcpu))
6945 return 1;
6946
Bandan Das4291b582014-05-06 02:19:18 -04006947 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03006948 return 1;
6949
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006950 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03006951 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006952
6953 page = nested_get_page(vcpu, vmptr);
6954 if (page == NULL) {
6955 /*
6956 * For accurate processor emulation, VMCLEAR beyond available
6957 * physical memory should do nothing at all. However, it is
6958 * possible that a nested vmx bug, not a guest hypervisor bug,
6959 * resulted in this case, so let's shut down before doing any
6960 * more damage:
6961 */
6962 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6963 return 1;
6964 }
6965 vmcs12 = kmap(page);
6966 vmcs12->launch_state = 0;
6967 kunmap(page);
6968 nested_release_page(page);
6969
6970 nested_free_vmcs02(vmx, vmptr);
6971
6972 skip_emulated_instruction(vcpu);
6973 nested_vmx_succeed(vcpu);
6974 return 1;
6975}
6976
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006977static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
6978
6979/* Emulate the VMLAUNCH instruction */
6980static int handle_vmlaunch(struct kvm_vcpu *vcpu)
6981{
6982 return nested_vmx_run(vcpu, true);
6983}
6984
6985/* Emulate the VMRESUME instruction */
6986static int handle_vmresume(struct kvm_vcpu *vcpu)
6987{
6988
6989 return nested_vmx_run(vcpu, false);
6990}
6991
Nadav Har'El49f705c2011-05-25 23:08:30 +03006992enum vmcs_field_type {
6993 VMCS_FIELD_TYPE_U16 = 0,
6994 VMCS_FIELD_TYPE_U64 = 1,
6995 VMCS_FIELD_TYPE_U32 = 2,
6996 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
6997};
6998
6999static inline int vmcs_field_type(unsigned long field)
7000{
7001 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7002 return VMCS_FIELD_TYPE_U32;
7003 return (field >> 13) & 0x3 ;
7004}
7005
7006static inline int vmcs_field_readonly(unsigned long field)
7007{
7008 return (((field >> 10) & 0x3) == 1);
7009}
7010
7011/*
7012 * Read a vmcs12 field. Since these can have varying lengths and we return
7013 * one type, we chose the biggest type (u64) and zero-extend the return value
7014 * to that size. Note that the caller, handle_vmread, might need to use only
7015 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7016 * 64-bit fields are to be returned).
7017 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007018static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7019 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007020{
7021 short offset = vmcs_field_to_offset(field);
7022 char *p;
7023
7024 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007025 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007026
7027 p = ((char *)(get_vmcs12(vcpu))) + offset;
7028
7029 switch (vmcs_field_type(field)) {
7030 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7031 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007032 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007033 case VMCS_FIELD_TYPE_U16:
7034 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007035 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007036 case VMCS_FIELD_TYPE_U32:
7037 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007038 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007039 case VMCS_FIELD_TYPE_U64:
7040 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007041 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007042 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007043 WARN_ON(1);
7044 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007045 }
7046}
7047
Abel Gordon20b97fe2013-04-18 14:36:25 +03007048
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007049static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7050 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007051 short offset = vmcs_field_to_offset(field);
7052 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7053 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007054 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007055
7056 switch (vmcs_field_type(field)) {
7057 case VMCS_FIELD_TYPE_U16:
7058 *(u16 *)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_U32:
7061 *(u32 *)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_U64:
7064 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007065 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007066 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7067 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007068 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007069 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007070 WARN_ON(1);
7071 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007072 }
7073
7074}
7075
Abel Gordon16f5b902013-04-18 14:38:25 +03007076static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7077{
7078 int i;
7079 unsigned long field;
7080 u64 field_value;
7081 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007082 const unsigned long *fields = shadow_read_write_fields;
7083 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007084
Jan Kiszka282da872014-10-08 18:05:39 +02007085 preempt_disable();
7086
Abel Gordon16f5b902013-04-18 14:38:25 +03007087 vmcs_load(shadow_vmcs);
7088
7089 for (i = 0; i < num_fields; i++) {
7090 field = fields[i];
7091 switch (vmcs_field_type(field)) {
7092 case VMCS_FIELD_TYPE_U16:
7093 field_value = vmcs_read16(field);
7094 break;
7095 case VMCS_FIELD_TYPE_U32:
7096 field_value = vmcs_read32(field);
7097 break;
7098 case VMCS_FIELD_TYPE_U64:
7099 field_value = vmcs_read64(field);
7100 break;
7101 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7102 field_value = vmcs_readl(field);
7103 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007104 default:
7105 WARN_ON(1);
7106 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007107 }
7108 vmcs12_write_any(&vmx->vcpu, field, field_value);
7109 }
7110
7111 vmcs_clear(shadow_vmcs);
7112 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007113
7114 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007115}
7116
Abel Gordonc3114422013-04-18 14:38:55 +03007117static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7118{
Mathias Krausec2bae892013-06-26 20:36:21 +02007119 const unsigned long *fields[] = {
7120 shadow_read_write_fields,
7121 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007122 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007123 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007124 max_shadow_read_write_fields,
7125 max_shadow_read_only_fields
7126 };
7127 int i, q;
7128 unsigned long field;
7129 u64 field_value = 0;
7130 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
7131
7132 vmcs_load(shadow_vmcs);
7133
Mathias Krausec2bae892013-06-26 20:36:21 +02007134 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007135 for (i = 0; i < max_fields[q]; i++) {
7136 field = fields[q][i];
7137 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7138
7139 switch (vmcs_field_type(field)) {
7140 case VMCS_FIELD_TYPE_U16:
7141 vmcs_write16(field, (u16)field_value);
7142 break;
7143 case VMCS_FIELD_TYPE_U32:
7144 vmcs_write32(field, (u32)field_value);
7145 break;
7146 case VMCS_FIELD_TYPE_U64:
7147 vmcs_write64(field, (u64)field_value);
7148 break;
7149 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7150 vmcs_writel(field, (long)field_value);
7151 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007152 default:
7153 WARN_ON(1);
7154 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007155 }
7156 }
7157 }
7158
7159 vmcs_clear(shadow_vmcs);
7160 vmcs_load(vmx->loaded_vmcs->vmcs);
7161}
7162
Nadav Har'El49f705c2011-05-25 23:08:30 +03007163/*
7164 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7165 * used before) all generate the same failure when it is missing.
7166 */
7167static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7168{
7169 struct vcpu_vmx *vmx = to_vmx(vcpu);
7170 if (vmx->nested.current_vmptr == -1ull) {
7171 nested_vmx_failInvalid(vcpu);
7172 skip_emulated_instruction(vcpu);
7173 return 0;
7174 }
7175 return 1;
7176}
7177
7178static int handle_vmread(struct kvm_vcpu *vcpu)
7179{
7180 unsigned long field;
7181 u64 field_value;
7182 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7183 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7184 gva_t gva = 0;
7185
7186 if (!nested_vmx_check_permission(vcpu) ||
7187 !nested_vmx_check_vmcs12(vcpu))
7188 return 1;
7189
7190 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007191 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007192 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007193 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007194 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7195 skip_emulated_instruction(vcpu);
7196 return 1;
7197 }
7198 /*
7199 * Now copy part of this value to register or memory, as requested.
7200 * Note that the number of bits actually copied is 32 or 64 depending
7201 * on the guest's mode (32 or 64 bit), not on the given field's length.
7202 */
7203 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007204 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007205 field_value);
7206 } else {
7207 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007208 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007209 return 1;
7210 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7211 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7212 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7213 }
7214
7215 nested_vmx_succeed(vcpu);
7216 skip_emulated_instruction(vcpu);
7217 return 1;
7218}
7219
7220
7221static int handle_vmwrite(struct kvm_vcpu *vcpu)
7222{
7223 unsigned long field;
7224 gva_t gva;
7225 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7226 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007227 /* The value to write might be 32 or 64 bits, depending on L1's long
7228 * mode, and eventually we need to write that into a field of several
7229 * possible lengths. The code below first zero-extends the value to 64
7230 * bit (field_value), and then copies only the approriate number of
7231 * bits into the vmcs12 field.
7232 */
7233 u64 field_value = 0;
7234 struct x86_exception e;
7235
7236 if (!nested_vmx_check_permission(vcpu) ||
7237 !nested_vmx_check_vmcs12(vcpu))
7238 return 1;
7239
7240 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007241 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007242 (((vmx_instruction_info) >> 3) & 0xf));
7243 else {
7244 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007245 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007246 return 1;
7247 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007248 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007249 kvm_inject_page_fault(vcpu, &e);
7250 return 1;
7251 }
7252 }
7253
7254
Nadav Amit27e6fb52014-06-18 17:19:26 +03007255 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007256 if (vmcs_field_readonly(field)) {
7257 nested_vmx_failValid(vcpu,
7258 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
7259 skip_emulated_instruction(vcpu);
7260 return 1;
7261 }
7262
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007263 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007264 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7265 skip_emulated_instruction(vcpu);
7266 return 1;
7267 }
7268
7269 nested_vmx_succeed(vcpu);
7270 skip_emulated_instruction(vcpu);
7271 return 1;
7272}
7273
Nadav Har'El63846662011-05-25 23:07:29 +03007274/* Emulate the VMPTRLD instruction */
7275static int handle_vmptrld(struct kvm_vcpu *vcpu)
7276{
7277 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007278 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007279
7280 if (!nested_vmx_check_permission(vcpu))
7281 return 1;
7282
Bandan Das4291b582014-05-06 02:19:18 -04007283 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007284 return 1;
7285
Nadav Har'El63846662011-05-25 23:07:29 +03007286 if (vmx->nested.current_vmptr != vmptr) {
7287 struct vmcs12 *new_vmcs12;
7288 struct page *page;
7289 page = nested_get_page(vcpu, vmptr);
7290 if (page == NULL) {
7291 nested_vmx_failInvalid(vcpu);
7292 skip_emulated_instruction(vcpu);
7293 return 1;
7294 }
7295 new_vmcs12 = kmap(page);
7296 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7297 kunmap(page);
7298 nested_release_page_clean(page);
7299 nested_vmx_failValid(vcpu,
7300 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
7301 skip_emulated_instruction(vcpu);
7302 return 1;
7303 }
Nadav Har'El63846662011-05-25 23:07:29 +03007304
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007305 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007306 vmx->nested.current_vmptr = vmptr;
7307 vmx->nested.current_vmcs12 = new_vmcs12;
7308 vmx->nested.current_vmcs12_page = page;
Abel Gordon012f83c2013-04-18 14:39:25 +03007309 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007310 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7311 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007312 vmcs_write64(VMCS_LINK_POINTER,
7313 __pa(vmx->nested.current_shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007314 vmx->nested.sync_shadow_vmcs = true;
7315 }
Nadav Har'El63846662011-05-25 23:07:29 +03007316 }
7317
7318 nested_vmx_succeed(vcpu);
7319 skip_emulated_instruction(vcpu);
7320 return 1;
7321}
7322
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007323/* Emulate the VMPTRST instruction */
7324static int handle_vmptrst(struct kvm_vcpu *vcpu)
7325{
7326 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7327 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7328 gva_t vmcs_gva;
7329 struct x86_exception e;
7330
7331 if (!nested_vmx_check_permission(vcpu))
7332 return 1;
7333
7334 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007335 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007336 return 1;
7337 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7338 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7339 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7340 sizeof(u64), &e)) {
7341 kvm_inject_page_fault(vcpu, &e);
7342 return 1;
7343 }
7344 nested_vmx_succeed(vcpu);
7345 skip_emulated_instruction(vcpu);
7346 return 1;
7347}
7348
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007349/* Emulate the INVEPT instruction */
7350static int handle_invept(struct kvm_vcpu *vcpu)
7351{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007352 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007353 u32 vmx_instruction_info, types;
7354 unsigned long type;
7355 gva_t gva;
7356 struct x86_exception e;
7357 struct {
7358 u64 eptp, gpa;
7359 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007360
Wincy Vanb9c237b2015-02-03 23:56:30 +08007361 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7362 SECONDARY_EXEC_ENABLE_EPT) ||
7363 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007364 kvm_queue_exception(vcpu, UD_VECTOR);
7365 return 1;
7366 }
7367
7368 if (!nested_vmx_check_permission(vcpu))
7369 return 1;
7370
7371 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7372 kvm_queue_exception(vcpu, UD_VECTOR);
7373 return 1;
7374 }
7375
7376 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007377 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007378
Wincy Vanb9c237b2015-02-03 23:56:30 +08007379 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007380
7381 if (!(types & (1UL << type))) {
7382 nested_vmx_failValid(vcpu,
7383 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7384 return 1;
7385 }
7386
7387 /* According to the Intel VMX instruction reference, the memory
7388 * operand is read even if it isn't needed (e.g., for type==global)
7389 */
7390 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007391 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007392 return 1;
7393 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7394 sizeof(operand), &e)) {
7395 kvm_inject_page_fault(vcpu, &e);
7396 return 1;
7397 }
7398
7399 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007400 case VMX_EPT_EXTENT_GLOBAL:
7401 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007402 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007403 nested_vmx_succeed(vcpu);
7404 break;
7405 default:
Bandan Das4b855072014-04-19 18:17:44 -04007406 /* Trap single context invalidation invept calls */
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007407 BUG_ON(1);
7408 break;
7409 }
7410
7411 skip_emulated_instruction(vcpu);
7412 return 1;
7413}
7414
Petr Matouseka642fc32014-09-23 20:22:30 +02007415static int handle_invvpid(struct kvm_vcpu *vcpu)
7416{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007417 struct vcpu_vmx *vmx = to_vmx(vcpu);
7418 u32 vmx_instruction_info;
7419 unsigned long type, types;
7420 gva_t gva;
7421 struct x86_exception e;
7422 int vpid;
7423
7424 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7425 SECONDARY_EXEC_ENABLE_VPID) ||
7426 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7427 kvm_queue_exception(vcpu, UD_VECTOR);
7428 return 1;
7429 }
7430
7431 if (!nested_vmx_check_permission(vcpu))
7432 return 1;
7433
7434 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7435 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7436
7437 types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7;
7438
7439 if (!(types & (1UL << type))) {
7440 nested_vmx_failValid(vcpu,
7441 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7442 return 1;
7443 }
7444
7445 /* according to the intel vmx instruction reference, the memory
7446 * operand is read even if it isn't needed (e.g., for type==global)
7447 */
7448 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7449 vmx_instruction_info, false, &gva))
7450 return 1;
7451 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7452 sizeof(u32), &e)) {
7453 kvm_inject_page_fault(vcpu, &e);
7454 return 1;
7455 }
7456
7457 switch (type) {
7458 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li5c614b32015-10-13 09:18:36 -07007459 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007460 nested_vmx_succeed(vcpu);
7461 break;
7462 default:
7463 /* Trap single context invalidation invvpid calls */
7464 BUG_ON(1);
7465 break;
7466 }
7467
7468 skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007469 return 1;
7470}
7471
Kai Huang843e4332015-01-28 10:54:28 +08007472static int handle_pml_full(struct kvm_vcpu *vcpu)
7473{
7474 unsigned long exit_qualification;
7475
7476 trace_kvm_pml_full(vcpu->vcpu_id);
7477
7478 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7479
7480 /*
7481 * PML buffer FULL happened while executing iret from NMI,
7482 * "blocked by NMI" bit has to be set before next VM entry.
7483 */
7484 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7485 cpu_has_virtual_nmis() &&
7486 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7487 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7488 GUEST_INTR_STATE_NMI);
7489
7490 /*
7491 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7492 * here.., and there's no userspace involvement needed for PML.
7493 */
7494 return 1;
7495}
7496
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007497static int handle_pcommit(struct kvm_vcpu *vcpu)
7498{
7499 /* we never catch pcommit instruct for L1 guest. */
7500 WARN_ON(1);
7501 return 1;
7502}
7503
Nadav Har'El0140cae2011-05-25 23:06:28 +03007504/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007505 * The exit handlers return 1 if the exit was handled fully and guest execution
7506 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7507 * to be done to userspace and return 0.
7508 */
Mathias Krause772e0312012-08-30 01:30:19 +02007509static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007510 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7511 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007512 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007513 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007514 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007515 [EXIT_REASON_CR_ACCESS] = handle_cr,
7516 [EXIT_REASON_DR_ACCESS] = handle_dr,
7517 [EXIT_REASON_CPUID] = handle_cpuid,
7518 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7519 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7520 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7521 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007522 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007523 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007524 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007525 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007526 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007527 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007528 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007529 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007530 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007531 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007532 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007533 [EXIT_REASON_VMOFF] = handle_vmoff,
7534 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007535 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7536 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007537 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007538 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007539 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007540 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007541 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007542 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007543 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7544 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007545 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007546 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007547 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007548 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007549 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007550 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007551 [EXIT_REASON_XSAVES] = handle_xsaves,
7552 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007553 [EXIT_REASON_PML_FULL] = handle_pml_full,
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007554 [EXIT_REASON_PCOMMIT] = handle_pcommit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007555};
7556
7557static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007558 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007559
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007560static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7561 struct vmcs12 *vmcs12)
7562{
7563 unsigned long exit_qualification;
7564 gpa_t bitmap, last_bitmap;
7565 unsigned int port;
7566 int size;
7567 u8 b;
7568
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007569 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007570 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007571
7572 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7573
7574 port = exit_qualification >> 16;
7575 size = (exit_qualification & 7) + 1;
7576
7577 last_bitmap = (gpa_t)-1;
7578 b = -1;
7579
7580 while (size > 0) {
7581 if (port < 0x8000)
7582 bitmap = vmcs12->io_bitmap_a;
7583 else if (port < 0x10000)
7584 bitmap = vmcs12->io_bitmap_b;
7585 else
Joe Perches1d804d02015-03-30 16:46:09 -07007586 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007587 bitmap += (port & 0x7fff) / 8;
7588
7589 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007590 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007591 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007592 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007593 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007594
7595 port++;
7596 size--;
7597 last_bitmap = bitmap;
7598 }
7599
Joe Perches1d804d02015-03-30 16:46:09 -07007600 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007601}
7602
Nadav Har'El644d7112011-05-25 23:12:35 +03007603/*
7604 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7605 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7606 * disinterest in the current event (read or write a specific MSR) by using an
7607 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7608 */
7609static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7610 struct vmcs12 *vmcs12, u32 exit_reason)
7611{
7612 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7613 gpa_t bitmap;
7614
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007615 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007616 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007617
7618 /*
7619 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7620 * for the four combinations of read/write and low/high MSR numbers.
7621 * First we need to figure out which of the four to use:
7622 */
7623 bitmap = vmcs12->msr_bitmap;
7624 if (exit_reason == EXIT_REASON_MSR_WRITE)
7625 bitmap += 2048;
7626 if (msr_index >= 0xc0000000) {
7627 msr_index -= 0xc0000000;
7628 bitmap += 1024;
7629 }
7630
7631 /* Then read the msr_index'th bit from this bitmap: */
7632 if (msr_index < 1024*8) {
7633 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007634 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007635 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007636 return 1 & (b >> (msr_index & 7));
7637 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007638 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007639}
7640
7641/*
7642 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7643 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7644 * intercept (via guest_host_mask etc.) the current event.
7645 */
7646static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7647 struct vmcs12 *vmcs12)
7648{
7649 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7650 int cr = exit_qualification & 15;
7651 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007652 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007653
7654 switch ((exit_qualification >> 4) & 3) {
7655 case 0: /* mov to cr */
7656 switch (cr) {
7657 case 0:
7658 if (vmcs12->cr0_guest_host_mask &
7659 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007660 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007661 break;
7662 case 3:
7663 if ((vmcs12->cr3_target_count >= 1 &&
7664 vmcs12->cr3_target_value0 == val) ||
7665 (vmcs12->cr3_target_count >= 2 &&
7666 vmcs12->cr3_target_value1 == val) ||
7667 (vmcs12->cr3_target_count >= 3 &&
7668 vmcs12->cr3_target_value2 == val) ||
7669 (vmcs12->cr3_target_count >= 4 &&
7670 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07007671 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007672 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007673 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007674 break;
7675 case 4:
7676 if (vmcs12->cr4_guest_host_mask &
7677 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07007678 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007679 break;
7680 case 8:
7681 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007682 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007683 break;
7684 }
7685 break;
7686 case 2: /* clts */
7687 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
7688 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007689 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007690 break;
7691 case 1: /* mov from cr */
7692 switch (cr) {
7693 case 3:
7694 if (vmcs12->cpu_based_vm_exec_control &
7695 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007696 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007697 break;
7698 case 8:
7699 if (vmcs12->cpu_based_vm_exec_control &
7700 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007701 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007702 break;
7703 }
7704 break;
7705 case 3: /* lmsw */
7706 /*
7707 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
7708 * cr0. Other attempted changes are ignored, with no exit.
7709 */
7710 if (vmcs12->cr0_guest_host_mask & 0xe &
7711 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007712 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007713 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
7714 !(vmcs12->cr0_read_shadow & 0x1) &&
7715 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07007716 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007717 break;
7718 }
Joe Perches1d804d02015-03-30 16:46:09 -07007719 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007720}
7721
7722/*
7723 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
7724 * should handle it ourselves in L0 (and then continue L2). Only call this
7725 * when in is_guest_mode (L2).
7726 */
7727static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
7728{
Nadav Har'El644d7112011-05-25 23:12:35 +03007729 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7730 struct vcpu_vmx *vmx = to_vmx(vcpu);
7731 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01007732 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03007733
Jan Kiszka542060e2014-01-04 18:47:21 +01007734 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
7735 vmcs_readl(EXIT_QUALIFICATION),
7736 vmx->idt_vectoring_info,
7737 intr_info,
7738 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
7739 KVM_ISA_VMX);
7740
Nadav Har'El644d7112011-05-25 23:12:35 +03007741 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07007742 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007743
7744 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02007745 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
7746 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07007747 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007748 }
7749
7750 switch (exit_reason) {
7751 case EXIT_REASON_EXCEPTION_NMI:
7752 if (!is_exception(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07007753 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007754 else if (is_page_fault(intr_info))
7755 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01007756 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01007757 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007758 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007759 return vmcs12->exception_bitmap &
7760 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7761 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007762 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007763 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007764 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007765 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007766 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007767 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007768 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007769 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007770 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007771 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007772 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007773 return false;
7774 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007775 case EXIT_REASON_HLT:
7776 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7777 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007778 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007779 case EXIT_REASON_INVLPG:
7780 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7781 case EXIT_REASON_RDPMC:
7782 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007783 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007784 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7785 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7786 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7787 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7788 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7789 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007790 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007791 /*
7792 * VMX instructions trap unconditionally. This allows L1 to
7793 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7794 */
Joe Perches1d804d02015-03-30 16:46:09 -07007795 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007796 case EXIT_REASON_CR_ACCESS:
7797 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7798 case EXIT_REASON_DR_ACCESS:
7799 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7800 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007801 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007802 case EXIT_REASON_MSR_READ:
7803 case EXIT_REASON_MSR_WRITE:
7804 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7805 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007806 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007807 case EXIT_REASON_MWAIT_INSTRUCTION:
7808 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007809 case EXIT_REASON_MONITOR_TRAP_FLAG:
7810 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007811 case EXIT_REASON_MONITOR_INSTRUCTION:
7812 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7813 case EXIT_REASON_PAUSE_INSTRUCTION:
7814 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7815 nested_cpu_has2(vmcs12,
7816 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7817 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07007818 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007819 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007820 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03007821 case EXIT_REASON_APIC_ACCESS:
7822 return nested_cpu_has2(vmcs12,
7823 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08007824 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08007825 case EXIT_REASON_EOI_INDUCED:
7826 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07007827 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007828 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007829 /*
7830 * L0 always deals with the EPT violation. If nested EPT is
7831 * used, and the nested mmu code discovers that the address is
7832 * missing in the guest EPT table (EPT12), the EPT violation
7833 * will be injected with nested_ept_inject_page_fault()
7834 */
Joe Perches1d804d02015-03-30 16:46:09 -07007835 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007836 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007837 /*
7838 * L2 never uses directly L1's EPT, but rather L0's own EPT
7839 * table (shadow on EPT) or a merged EPT table that L0 built
7840 * (EPT on EPT). So any problems with the structure of the
7841 * table is L0's fault.
7842 */
Joe Perches1d804d02015-03-30 16:46:09 -07007843 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007844 case EXIT_REASON_WBINVD:
7845 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7846 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07007847 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08007848 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
7849 /*
7850 * This should never happen, since it is not possible to
7851 * set XSS to a non-zero value---neither in L1 nor in L2.
7852 * If if it were, XSS would have to be checked against
7853 * the XSS exit bitmap in vmcs12.
7854 */
7855 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007856 case EXIT_REASON_PCOMMIT:
7857 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03007858 default:
Joe Perches1d804d02015-03-30 16:46:09 -07007859 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007860 }
7861}
7862
Avi Kivity586f9602010-11-18 13:09:54 +02007863static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7864{
7865 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7866 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7867}
7868
Kai Huanga3eaa862015-11-04 13:46:05 +08007869static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007870{
7871 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08007872
7873 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
7874 if (!pml_pg)
7875 return -ENOMEM;
7876
7877 vmx->pml_pg = pml_pg;
7878
7879 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
7880 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7881
Kai Huang843e4332015-01-28 10:54:28 +08007882 return 0;
7883}
7884
Kai Huanga3eaa862015-11-04 13:46:05 +08007885static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007886{
Kai Huanga3eaa862015-11-04 13:46:05 +08007887 if (vmx->pml_pg) {
7888 __free_page(vmx->pml_pg);
7889 vmx->pml_pg = NULL;
7890 }
Kai Huang843e4332015-01-28 10:54:28 +08007891}
7892
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007893static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08007894{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007895 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08007896 u64 *pml_buf;
7897 u16 pml_idx;
7898
7899 pml_idx = vmcs_read16(GUEST_PML_INDEX);
7900
7901 /* Do nothing if PML buffer is empty */
7902 if (pml_idx == (PML_ENTITY_NUM - 1))
7903 return;
7904
7905 /* PML index always points to next available PML buffer entity */
7906 if (pml_idx >= PML_ENTITY_NUM)
7907 pml_idx = 0;
7908 else
7909 pml_idx++;
7910
7911 pml_buf = page_address(vmx->pml_pg);
7912 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
7913 u64 gpa;
7914
7915 gpa = pml_buf[pml_idx];
7916 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007917 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08007918 }
7919
7920 /* reset PML index */
7921 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7922}
7923
7924/*
7925 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
7926 * Called before reporting dirty_bitmap to userspace.
7927 */
7928static void kvm_flush_pml_buffers(struct kvm *kvm)
7929{
7930 int i;
7931 struct kvm_vcpu *vcpu;
7932 /*
7933 * We only need to kick vcpu out of guest mode here, as PML buffer
7934 * is flushed at beginning of all VMEXITs, and it's obvious that only
7935 * vcpus running in guest are possible to have unflushed GPAs in PML
7936 * buffer.
7937 */
7938 kvm_for_each_vcpu(i, vcpu, kvm)
7939 kvm_vcpu_kick(vcpu);
7940}
7941
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007942static void vmx_dump_sel(char *name, uint32_t sel)
7943{
7944 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
7945 name, vmcs_read32(sel),
7946 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
7947 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
7948 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
7949}
7950
7951static void vmx_dump_dtsel(char *name, uint32_t limit)
7952{
7953 pr_err("%s limit=0x%08x, base=0x%016lx\n",
7954 name, vmcs_read32(limit),
7955 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
7956}
7957
7958static void dump_vmcs(void)
7959{
7960 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
7961 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
7962 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7963 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
7964 u32 secondary_exec_control = 0;
7965 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01007966 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007967 int i, n;
7968
7969 if (cpu_has_secondary_exec_ctrls())
7970 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7971
7972 pr_err("*** Guest State ***\n");
7973 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7974 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
7975 vmcs_readl(CR0_GUEST_HOST_MASK));
7976 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
7977 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
7978 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
7979 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
7980 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
7981 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01007982 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
7983 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
7984 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
7985 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007986 }
7987 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
7988 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
7989 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
7990 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
7991 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
7992 vmcs_readl(GUEST_SYSENTER_ESP),
7993 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
7994 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
7995 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
7996 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
7997 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
7998 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
7999 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8000 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8001 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8002 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8003 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8004 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8005 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008006 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8007 efer, vmcs_read64(GUEST_IA32_PAT));
8008 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8009 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008010 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8011 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008012 pr_err("PerfGlobCtl = 0x%016llx\n",
8013 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008014 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008015 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008016 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8017 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8018 vmcs_read32(GUEST_ACTIVITY_STATE));
8019 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8020 pr_err("InterruptStatus = %04x\n",
8021 vmcs_read16(GUEST_INTR_STATUS));
8022
8023 pr_err("*** Host State ***\n");
8024 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8025 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8026 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8027 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8028 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8029 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8030 vmcs_read16(HOST_TR_SELECTOR));
8031 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8032 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8033 vmcs_readl(HOST_TR_BASE));
8034 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8035 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8036 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8037 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8038 vmcs_readl(HOST_CR4));
8039 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8040 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8041 vmcs_read32(HOST_IA32_SYSENTER_CS),
8042 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8043 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008044 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8045 vmcs_read64(HOST_IA32_EFER),
8046 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008047 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008048 pr_err("PerfGlobCtl = 0x%016llx\n",
8049 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008050
8051 pr_err("*** Control State ***\n");
8052 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8053 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8054 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8055 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8056 vmcs_read32(EXCEPTION_BITMAP),
8057 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8058 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8059 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8060 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8061 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8062 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8063 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8064 vmcs_read32(VM_EXIT_INTR_INFO),
8065 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8066 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8067 pr_err(" reason=%08x qualification=%016lx\n",
8068 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8069 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8070 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8071 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008072 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008073 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008074 pr_err("TSC Multiplier = 0x%016llx\n",
8075 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008076 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8077 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8078 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8079 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8080 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01008081 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008082 n = vmcs_read32(CR3_TARGET_COUNT);
8083 for (i = 0; i + 1 < n; i += 4)
8084 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8085 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8086 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8087 if (i < n)
8088 pr_err("CR3 target%u=%016lx\n",
8089 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8090 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8091 pr_err("PLE Gap=%08x Window=%08x\n",
8092 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8093 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8094 pr_err("Virtual processor ID = 0x%04x\n",
8095 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8096}
8097
Avi Kivity6aa8b732006-12-10 02:21:36 -08008098/*
8099 * The guest has exited. See if we can fix it or if we need userspace
8100 * assistance.
8101 */
Avi Kivity851ba692009-08-24 11:10:17 +03008102static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008103{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008104 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008105 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008106 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008107
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008108 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8109
Kai Huang843e4332015-01-28 10:54:28 +08008110 /*
8111 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8112 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8113 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8114 * mode as if vcpus is in root mode, the PML buffer must has been
8115 * flushed already.
8116 */
8117 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008118 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008119
Mohammed Gamal80ced182009-09-01 12:48:18 +02008120 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008121 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008122 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008123
Nadav Har'El644d7112011-05-25 23:12:35 +03008124 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008125 nested_vmx_vmexit(vcpu, exit_reason,
8126 vmcs_read32(VM_EXIT_INTR_INFO),
8127 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008128 return 1;
8129 }
8130
Mohammed Gamal51207022010-05-31 22:40:54 +03008131 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008132 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008133 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8134 vcpu->run->fail_entry.hardware_entry_failure_reason
8135 = exit_reason;
8136 return 0;
8137 }
8138
Avi Kivity29bd8a72007-09-10 17:27:03 +03008139 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008140 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8141 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008142 = vmcs_read32(VM_INSTRUCTION_ERROR);
8143 return 0;
8144 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008145
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008146 /*
8147 * Note:
8148 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8149 * delivery event since it indicates guest is accessing MMIO.
8150 * The vm-exit can be triggered again after return to guest that
8151 * will cause infinite loop.
8152 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008153 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008154 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008155 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008156 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8157 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8158 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8159 vcpu->run->internal.ndata = 2;
8160 vcpu->run->internal.data[0] = vectoring_info;
8161 vcpu->run->internal.data[1] = exit_reason;
8162 return 0;
8163 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008164
Nadav Har'El644d7112011-05-25 23:12:35 +03008165 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8166 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008167 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008168 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008169 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008170 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008171 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008172 /*
8173 * This CPU don't support us in finding the end of an
8174 * NMI-blocked window if the guest runs with IRQs
8175 * disabled. So we pull the trigger after 1 s of
8176 * futile waiting, but inform the user about this.
8177 */
8178 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8179 "state on VCPU %d after 1 s timeout\n",
8180 __func__, vcpu->vcpu_id);
8181 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008182 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008183 }
8184
Avi Kivity6aa8b732006-12-10 02:21:36 -08008185 if (exit_reason < kvm_vmx_max_exit_handlers
8186 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008187 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008188 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008189 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8190 kvm_queue_exception(vcpu, UD_VECTOR);
8191 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008192 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008193}
8194
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008195static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008196{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008197 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8198
8199 if (is_guest_mode(vcpu) &&
8200 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8201 return;
8202
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008203 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008204 vmcs_write32(TPR_THRESHOLD, 0);
8205 return;
8206 }
8207
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008208 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008209}
8210
Yang Zhang8d146952013-01-25 10:18:50 +08008211static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8212{
8213 u32 sec_exec_control;
8214
8215 /*
8216 * There is not point to enable virtualize x2apic without enable
8217 * apicv
8218 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008219 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008220 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008221 return;
8222
Paolo Bonzini35754c92015-07-29 12:05:37 +02008223 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008224 return;
8225
8226 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8227
8228 if (set) {
8229 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8230 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8231 } else {
8232 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8233 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8234 }
8235 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8236
8237 vmx_set_msr_bitmap(vcpu);
8238}
8239
Tang Chen38b99172014-09-24 15:57:54 +08008240static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8241{
8242 struct vcpu_vmx *vmx = to_vmx(vcpu);
8243
8244 /*
8245 * Currently we do not handle the nested case where L2 has an
8246 * APIC access page of its own; that page is still pinned.
8247 * Hence, we skip the case where the VCPU is in guest mode _and_
8248 * L1 prepared an APIC access page for L2.
8249 *
8250 * For the case where L1 and L2 share the same APIC access page
8251 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8252 * in the vmcs12), this function will only update either the vmcs01
8253 * or the vmcs02. If the former, the vmcs02 will be updated by
8254 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8255 * the next L2->L1 exit.
8256 */
8257 if (!is_guest_mode(vcpu) ||
8258 !nested_cpu_has2(vmx->nested.current_vmcs12,
8259 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8260 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8261}
8262
Yang Zhangc7c9c562013-01-25 10:18:51 +08008263static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
8264{
8265 u16 status;
8266 u8 old;
8267
Yang Zhangc7c9c562013-01-25 10:18:51 +08008268 if (isr == -1)
8269 isr = 0;
8270
8271 status = vmcs_read16(GUEST_INTR_STATUS);
8272 old = status >> 8;
8273 if (isr != old) {
8274 status &= 0xff;
8275 status |= isr << 8;
8276 vmcs_write16(GUEST_INTR_STATUS, status);
8277 }
8278}
8279
8280static void vmx_set_rvi(int vector)
8281{
8282 u16 status;
8283 u8 old;
8284
Wei Wang4114c272014-11-05 10:53:43 +08008285 if (vector == -1)
8286 vector = 0;
8287
Yang Zhangc7c9c562013-01-25 10:18:51 +08008288 status = vmcs_read16(GUEST_INTR_STATUS);
8289 old = (u8)status & 0xff;
8290 if ((u8)vector != old) {
8291 status &= ~0xff;
8292 status |= (u8)vector;
8293 vmcs_write16(GUEST_INTR_STATUS, status);
8294 }
8295}
8296
8297static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8298{
Wanpeng Li963fee12014-07-17 19:03:00 +08008299 if (!is_guest_mode(vcpu)) {
8300 vmx_set_rvi(max_irr);
8301 return;
8302 }
8303
Wei Wang4114c272014-11-05 10:53:43 +08008304 if (max_irr == -1)
8305 return;
8306
Wanpeng Li963fee12014-07-17 19:03:00 +08008307 /*
Wei Wang4114c272014-11-05 10:53:43 +08008308 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8309 * handles it.
8310 */
8311 if (nested_exit_on_intr(vcpu))
8312 return;
8313
8314 /*
8315 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008316 * is run without virtual interrupt delivery.
8317 */
8318 if (!kvm_event_needs_reinjection(vcpu) &&
8319 vmx_interrupt_allowed(vcpu)) {
8320 kvm_queue_interrupt(vcpu, max_irr, false);
8321 vmx_inject_irq(vcpu);
8322 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008323}
8324
Andrey Smetanin63086302015-11-10 15:36:32 +03008325static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008326{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008327 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008328 return;
8329
Yang Zhangc7c9c562013-01-25 10:18:51 +08008330 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8331 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8332 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8333 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8334}
8335
Avi Kivity51aa01d2010-07-20 14:31:20 +03008336static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008337{
Avi Kivity00eba012011-03-07 17:24:54 +02008338 u32 exit_intr_info;
8339
8340 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8341 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8342 return;
8343
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008344 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008345 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008346
8347 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008348 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008349 kvm_machine_check();
8350
Gleb Natapov20f65982009-05-11 13:35:55 +03008351 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008352 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008353 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8354 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008355 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008356 kvm_after_handle_nmi(&vmx->vcpu);
8357 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008358}
Gleb Natapov20f65982009-05-11 13:35:55 +03008359
Yang Zhanga547c6d2013-04-11 19:25:10 +08008360static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8361{
8362 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8363
8364 /*
8365 * If external interrupt exists, IF bit is set in rflags/eflags on the
8366 * interrupt stack frame, and interrupt will be enabled on a return
8367 * from interrupt handler.
8368 */
8369 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8370 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8371 unsigned int vector;
8372 unsigned long entry;
8373 gate_desc *desc;
8374 struct vcpu_vmx *vmx = to_vmx(vcpu);
8375#ifdef CONFIG_X86_64
8376 unsigned long tmp;
8377#endif
8378
8379 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8380 desc = (gate_desc *)vmx->host_idt_base + vector;
8381 entry = gate_offset(*desc);
8382 asm volatile(
8383#ifdef CONFIG_X86_64
8384 "mov %%" _ASM_SP ", %[sp]\n\t"
8385 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8386 "push $%c[ss]\n\t"
8387 "push %[sp]\n\t"
8388#endif
8389 "pushf\n\t"
8390 "orl $0x200, (%%" _ASM_SP ")\n\t"
8391 __ASM_SIZE(push) " $%c[cs]\n\t"
8392 "call *%[entry]\n\t"
8393 :
8394#ifdef CONFIG_X86_64
8395 [sp]"=&r"(tmp)
8396#endif
8397 :
8398 [entry]"r"(entry),
8399 [ss]"i"(__KERNEL_DS),
8400 [cs]"i"(__KERNEL_CS)
8401 );
8402 } else
8403 local_irq_enable();
8404}
8405
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008406static bool vmx_has_high_real_mode_segbase(void)
8407{
8408 return enable_unrestricted_guest || emulate_invalid_guest_state;
8409}
8410
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008411static bool vmx_mpx_supported(void)
8412{
8413 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8414 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8415}
8416
Wanpeng Li55412b22014-12-02 19:21:30 +08008417static bool vmx_xsaves_supported(void)
8418{
8419 return vmcs_config.cpu_based_2nd_exec_ctrl &
8420 SECONDARY_EXEC_XSAVES;
8421}
8422
Avi Kivity51aa01d2010-07-20 14:31:20 +03008423static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8424{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008425 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008426 bool unblock_nmi;
8427 u8 vector;
8428 bool idtv_info_valid;
8429
8430 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008431
Avi Kivitycf393f72008-07-01 16:20:21 +03008432 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008433 if (vmx->nmi_known_unmasked)
8434 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008435 /*
8436 * Can't use vmx->exit_intr_info since we're not sure what
8437 * the exit reason is.
8438 */
8439 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008440 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8441 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8442 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008443 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008444 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8445 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008446 * SDM 3: 23.2.2 (September 2008)
8447 * Bit 12 is undefined in any of the following cases:
8448 * If the VM exit sets the valid bit in the IDT-vectoring
8449 * information field.
8450 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008451 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008452 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8453 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008454 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8455 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008456 else
8457 vmx->nmi_known_unmasked =
8458 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8459 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008460 } else if (unlikely(vmx->soft_vnmi_blocked))
8461 vmx->vnmi_blocked_time +=
8462 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008463}
8464
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008465static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008466 u32 idt_vectoring_info,
8467 int instr_len_field,
8468 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008469{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008470 u8 vector;
8471 int type;
8472 bool idtv_info_valid;
8473
8474 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008475
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008476 vcpu->arch.nmi_injected = false;
8477 kvm_clear_exception_queue(vcpu);
8478 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008479
8480 if (!idtv_info_valid)
8481 return;
8482
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008483 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008484
Avi Kivity668f6122008-07-02 09:28:55 +03008485 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8486 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008487
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008488 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008489 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008490 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008491 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008492 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008493 * Clear bit "block by NMI" before VM entry if a NMI
8494 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008495 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008496 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008497 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008498 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008499 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008500 /* fall through */
8501 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008502 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008503 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008504 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008505 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008506 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008507 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008508 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008509 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008510 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008511 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008512 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008513 break;
8514 default:
8515 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008516 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008517}
8518
Avi Kivity83422e12010-07-20 14:43:23 +03008519static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8520{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008521 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008522 VM_EXIT_INSTRUCTION_LEN,
8523 IDT_VECTORING_ERROR_CODE);
8524}
8525
Avi Kivityb463a6f2010-07-20 15:06:17 +03008526static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8527{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008528 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008529 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8530 VM_ENTRY_INSTRUCTION_LEN,
8531 VM_ENTRY_EXCEPTION_ERROR_CODE);
8532
8533 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8534}
8535
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008536static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8537{
8538 int i, nr_msrs;
8539 struct perf_guest_switch_msr *msrs;
8540
8541 msrs = perf_guest_get_msrs(&nr_msrs);
8542
8543 if (!msrs)
8544 return;
8545
8546 for (i = 0; i < nr_msrs; i++)
8547 if (msrs[i].host == msrs[i].guest)
8548 clear_atomic_switch_msr(vmx, msrs[i].msr);
8549 else
8550 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8551 msrs[i].host);
8552}
8553
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008554static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008555{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008556 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008557 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008558
8559 /* Record the guest's net vcpu time for enforced NMI injections. */
8560 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8561 vmx->entry_time = ktime_get();
8562
8563 /* Don't enter VMX if guest state is invalid, let the exit handler
8564 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008565 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008566 return;
8567
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008568 if (vmx->ple_window_dirty) {
8569 vmx->ple_window_dirty = false;
8570 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8571 }
8572
Abel Gordon012f83c2013-04-18 14:39:25 +03008573 if (vmx->nested.sync_shadow_vmcs) {
8574 copy_vmcs12_to_shadow(vmx);
8575 vmx->nested.sync_shadow_vmcs = false;
8576 }
8577
Avi Kivity104f2262010-11-18 13:12:52 +02008578 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8579 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8580 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8581 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8582
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008583 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008584 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8585 vmcs_writel(HOST_CR4, cr4);
8586 vmx->host_state.vmcs_host_cr4 = cr4;
8587 }
8588
Avi Kivity104f2262010-11-18 13:12:52 +02008589 /* When single-stepping over STI and MOV SS, we must clear the
8590 * corresponding interruptibility bits in the guest state. Otherwise
8591 * vmentry fails as it then expects bit 14 (BS) in pending debug
8592 * exceptions being set, but that's not correct for the guest debugging
8593 * case. */
8594 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8595 vmx_set_interrupt_shadow(vcpu, 0);
8596
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008597 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008598 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008599
Nadav Har'Eld462b812011-05-24 15:26:10 +03008600 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008601 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008602 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008603 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8604 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8605 "push %%" _ASM_CX " \n\t"
8606 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008607 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008608 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008609 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008610 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008611 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008612 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8613 "mov %%cr2, %%" _ASM_DX " \n\t"
8614 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008615 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008616 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008617 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008618 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008619 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008620 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008621 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8622 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8623 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8624 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8625 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8626 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008627#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008628 "mov %c[r8](%0), %%r8 \n\t"
8629 "mov %c[r9](%0), %%r9 \n\t"
8630 "mov %c[r10](%0), %%r10 \n\t"
8631 "mov %c[r11](%0), %%r11 \n\t"
8632 "mov %c[r12](%0), %%r12 \n\t"
8633 "mov %c[r13](%0), %%r13 \n\t"
8634 "mov %c[r14](%0), %%r14 \n\t"
8635 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008636#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008637 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008638
Avi Kivity6aa8b732006-12-10 02:21:36 -08008639 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008640 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008641 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008642 "jmp 2f \n\t"
8643 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8644 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008645 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008646 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008647 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008648 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8649 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8650 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8651 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8652 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8653 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8654 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008655#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008656 "mov %%r8, %c[r8](%0) \n\t"
8657 "mov %%r9, %c[r9](%0) \n\t"
8658 "mov %%r10, %c[r10](%0) \n\t"
8659 "mov %%r11, %c[r11](%0) \n\t"
8660 "mov %%r12, %c[r12](%0) \n\t"
8661 "mov %%r13, %c[r13](%0) \n\t"
8662 "mov %%r14, %c[r14](%0) \n\t"
8663 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008664#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008665 "mov %%cr2, %%" _ASM_AX " \n\t"
8666 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008667
Avi Kivityb188c81f2012-09-16 15:10:58 +03008668 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008669 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008670 ".pushsection .rodata \n\t"
8671 ".global vmx_return \n\t"
8672 "vmx_return: " _ASM_PTR " 2b \n\t"
8673 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008674 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008675 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008676 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03008677 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008678 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8679 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8680 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8681 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8682 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8683 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8684 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008685#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008686 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8687 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8688 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8689 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8690 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8691 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8692 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8693 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008694#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008695 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8696 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008697 : "cc", "memory"
8698#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008699 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008700 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008701#else
8702 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008703#endif
8704 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008705
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008706 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8707 if (debugctlmsr)
8708 update_debugctlmsr(debugctlmsr);
8709
Avi Kivityaa67f602012-08-01 16:48:03 +03008710#ifndef CONFIG_X86_64
8711 /*
8712 * The sysexit path does not restore ds/es, so we must set them to
8713 * a reasonable value ourselves.
8714 *
8715 * We can't defer this to vmx_load_host_state() since that function
8716 * may be executed in interrupt context, which saves and restore segments
8717 * around it, nullifying its effect.
8718 */
8719 loadsegment(ds, __USER_DS);
8720 loadsegment(es, __USER_DS);
8721#endif
8722
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008723 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008724 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008725 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008726 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008727 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008728 vcpu->arch.regs_dirty = 0;
8729
Avi Kivity1155f762007-11-22 11:30:47 +02008730 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8731
Nadav Har'Eld462b812011-05-24 15:26:10 +03008732 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008733
Avi Kivity51aa01d2010-07-20 14:31:20 +03008734 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008735
Gleb Natapove0b890d2013-09-25 12:51:33 +03008736 /*
8737 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8738 * we did not inject a still-pending event to L1 now because of
8739 * nested_run_pending, we need to re-enable this bit.
8740 */
8741 if (vmx->nested.nested_run_pending)
8742 kvm_make_request(KVM_REQ_EVENT, vcpu);
8743
8744 vmx->nested.nested_run_pending = 0;
8745
Avi Kivity51aa01d2010-07-20 14:31:20 +03008746 vmx_complete_atomic_exit(vmx);
8747 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008748 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008749}
8750
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008751static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8752{
8753 struct vcpu_vmx *vmx = to_vmx(vcpu);
8754 int cpu;
8755
8756 if (vmx->loaded_vmcs == &vmx->vmcs01)
8757 return;
8758
8759 cpu = get_cpu();
8760 vmx->loaded_vmcs = &vmx->vmcs01;
8761 vmx_vcpu_put(vcpu);
8762 vmx_vcpu_load(vcpu, cpu);
8763 vcpu->cpu = cpu;
8764 put_cpu();
8765}
8766
Avi Kivity6aa8b732006-12-10 02:21:36 -08008767static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8768{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008769 struct vcpu_vmx *vmx = to_vmx(vcpu);
8770
Kai Huang843e4332015-01-28 10:54:28 +08008771 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008772 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008773 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008774 leave_guest_mode(vcpu);
8775 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02008776 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008777 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008778 kfree(vmx->guest_msrs);
8779 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10008780 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008781}
8782
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008783static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008784{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008785 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10008786 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03008787 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008788
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008789 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008790 return ERR_PTR(-ENOMEM);
8791
Wanpeng Li991e7a02015-09-16 17:30:05 +08008792 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08008793
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008794 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
8795 if (err)
8796 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008797
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008798 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02008799 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
8800 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03008801
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008802 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008803 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008804 goto uninit_vcpu;
8805 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008806
Nadav Har'Eld462b812011-05-24 15:26:10 +03008807 vmx->loaded_vmcs = &vmx->vmcs01;
8808 vmx->loaded_vmcs->vmcs = alloc_vmcs();
8809 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008810 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03008811 if (!vmm_exclusive)
8812 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
8813 loaded_vmcs_init(vmx->loaded_vmcs);
8814 if (!vmm_exclusive)
8815 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008816
Avi Kivity15ad7142007-07-11 18:17:21 +03008817 cpu = get_cpu();
8818 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10008819 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10008820 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008821 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03008822 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008823 if (err)
8824 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008825 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008826 err = alloc_apic_access_page(kvm);
8827 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02008828 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02008829 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008830
Sheng Yangb927a3c2009-07-21 10:42:48 +08008831 if (enable_ept) {
8832 if (!kvm->arch.ept_identity_map_addr)
8833 kvm->arch.ept_identity_map_addr =
8834 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08008835 err = init_rmode_identity_map(kvm);
8836 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02008837 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08008838 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08008839
Wanpeng Li5c614b32015-10-13 09:18:36 -07008840 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08008841 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07008842 vmx->nested.vpid02 = allocate_vpid();
8843 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08008844
Wincy Van705699a2015-02-03 23:58:17 +08008845 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03008846 vmx->nested.current_vmptr = -1ull;
8847 vmx->nested.current_vmcs12 = NULL;
8848
Kai Huang843e4332015-01-28 10:54:28 +08008849 /*
8850 * If PML is turned on, failure on enabling PML just results in failure
8851 * of creating the vcpu, therefore we can simplify PML logic (by
8852 * avoiding dealing with cases, such as enabling PML partially on vcpus
8853 * for the guest, etc.
8854 */
8855 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08008856 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08008857 if (err)
8858 goto free_vmcs;
8859 }
8860
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008861 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008862
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008863free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07008864 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08008865 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008866free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008867 kfree(vmx->guest_msrs);
8868uninit_vcpu:
8869 kvm_vcpu_uninit(&vmx->vcpu);
8870free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08008871 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10008872 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008873 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008874}
8875
Yang, Sheng002c7f72007-07-31 14:23:01 +03008876static void __init vmx_check_processor_compat(void *rtn)
8877{
8878 struct vmcs_config vmcs_conf;
8879
8880 *(int *)rtn = 0;
8881 if (setup_vmcs_config(&vmcs_conf) < 0)
8882 *(int *)rtn = -EIO;
8883 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
8884 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
8885 smp_processor_id());
8886 *(int *)rtn = -EIO;
8887 }
8888}
8889
Sheng Yang67253af2008-04-25 10:20:22 +08008890static int get_ept_level(void)
8891{
8892 return VMX_EPT_DEFAULT_GAW + 1;
8893}
8894
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008895static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08008896{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008897 u8 cache;
8898 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008899
Sheng Yang522c68c2009-04-27 20:35:43 +08008900 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02008901 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08008902 * 2. EPT with VT-d:
8903 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02008904 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08008905 * b. VT-d with snooping control feature: snooping control feature of
8906 * VT-d engine can guarantee the cache correctness. Just set it
8907 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08008908 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08008909 * consistent with host MTRR
8910 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02008911 if (is_mmio) {
8912 cache = MTRR_TYPE_UNCACHABLE;
8913 goto exit;
8914 }
8915
8916 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008917 ipat = VMX_EPT_IPAT_BIT;
8918 cache = MTRR_TYPE_WRBACK;
8919 goto exit;
8920 }
8921
8922 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
8923 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02008924 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08008925 cache = MTRR_TYPE_WRBACK;
8926 else
8927 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008928 goto exit;
8929 }
8930
Xiao Guangrongff536042015-06-15 16:55:22 +08008931 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008932
8933exit:
8934 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08008935}
8936
Sheng Yang17cc3932010-01-05 19:02:27 +08008937static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02008938{
Sheng Yang878403b2010-01-05 19:02:29 +08008939 if (enable_ept && !cpu_has_vmx_ept_1g_page())
8940 return PT_DIRECTORY_LEVEL;
8941 else
8942 /* For shadow and EPT supported 1GB page */
8943 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02008944}
8945
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008946static void vmcs_set_secondary_exec_control(u32 new_ctl)
8947{
8948 /*
8949 * These bits in the secondary execution controls field
8950 * are dynamic, the others are mostly based on the hypervisor
8951 * architecture and the guest's CPUID. Do not touch the
8952 * dynamic bits.
8953 */
8954 u32 mask =
8955 SECONDARY_EXEC_SHADOW_VMCS |
8956 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
8957 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8958
8959 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8960
8961 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
8962 (new_ctl & ~mask) | (cur_ctl & mask));
8963}
8964
Sheng Yang0e851882009-12-18 16:48:46 +08008965static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
8966{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008967 struct kvm_cpuid_entry2 *best;
8968 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008969 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008970
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008971 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008972 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
8973 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008974 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08008975
Paolo Bonzini8b972652015-09-15 17:34:42 +02008976 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08008977 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02008978 vmx->nested.nested_vmx_secondary_ctls_high |=
8979 SECONDARY_EXEC_RDTSCP;
8980 else
8981 vmx->nested.nested_vmx_secondary_ctls_high &=
8982 ~SECONDARY_EXEC_RDTSCP;
8983 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08008984 }
Mao, Junjiead756a12012-07-02 01:18:48 +00008985
Mao, Junjiead756a12012-07-02 01:18:48 +00008986 /* Exposing INVPCID only when PCID is exposed */
8987 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
8988 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008989 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
8990 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008991 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08008992
Mao, Junjiead756a12012-07-02 01:18:48 +00008993 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00008994 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00008995 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08008996
Huaitong Han45bdbcf2016-01-12 16:04:20 +08008997 if (cpu_has_secondary_exec_ctrls())
8998 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008999
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009000 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
9001 if (guest_cpuid_has_pcommit(vcpu))
9002 vmx->nested.nested_vmx_secondary_ctls_high |=
9003 SECONDARY_EXEC_PCOMMIT;
9004 else
9005 vmx->nested.nested_vmx_secondary_ctls_high &=
9006 ~SECONDARY_EXEC_PCOMMIT;
9007 }
Sheng Yang0e851882009-12-18 16:48:46 +08009008}
9009
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009010static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9011{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009012 if (func == 1 && nested)
9013 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009014}
9015
Yang Zhang25d92082013-08-06 12:00:32 +03009016static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9017 struct x86_exception *fault)
9018{
Jan Kiszka533558b2014-01-04 18:47:20 +01009019 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9020 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009021
9022 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009023 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009024 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009025 exit_reason = EXIT_REASON_EPT_VIOLATION;
9026 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009027 vmcs12->guest_physical_address = fault->address;
9028}
9029
Nadav Har'El155a97a2013-08-05 11:07:16 +03009030/* Callbacks for nested_ept_init_mmu_context: */
9031
9032static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9033{
9034 /* return the page table to be shadowed - in our case, EPT12 */
9035 return get_vmcs12(vcpu)->ept_pointer;
9036}
9037
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009038static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009039{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009040 WARN_ON(mmu_is_nested(vcpu));
9041 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009042 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9043 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009044 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9045 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9046 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9047
9048 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009049}
9050
9051static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9052{
9053 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9054}
9055
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009056static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9057 u16 error_code)
9058{
9059 bool inequality, bit;
9060
9061 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9062 inequality =
9063 (error_code & vmcs12->page_fault_error_code_mask) !=
9064 vmcs12->page_fault_error_code_match;
9065 return inequality ^ bit;
9066}
9067
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009068static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9069 struct x86_exception *fault)
9070{
9071 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9072
9073 WARN_ON(!is_guest_mode(vcpu));
9074
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009075 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009076 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9077 vmcs_read32(VM_EXIT_INTR_INFO),
9078 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009079 else
9080 kvm_inject_page_fault(vcpu, fault);
9081}
9082
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009083static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9084 struct vmcs12 *vmcs12)
9085{
9086 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009087 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009088
9089 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009090 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9091 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009092 return false;
9093
9094 /*
9095 * Translate L1 physical address to host physical
9096 * address for vmcs02. Keep the page pinned, so this
9097 * physical address remains valid. We keep a reference
9098 * to it so we can release it later.
9099 */
9100 if (vmx->nested.apic_access_page) /* shouldn't happen */
9101 nested_release_page(vmx->nested.apic_access_page);
9102 vmx->nested.apic_access_page =
9103 nested_get_page(vcpu, vmcs12->apic_access_addr);
9104 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009105
9106 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009107 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9108 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009109 return false;
9110
9111 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9112 nested_release_page(vmx->nested.virtual_apic_page);
9113 vmx->nested.virtual_apic_page =
9114 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9115
9116 /*
9117 * Failing the vm entry is _not_ what the processor does
9118 * but it's basically the only possibility we have.
9119 * We could still enter the guest if CR8 load exits are
9120 * enabled, CR8 store exits are enabled, and virtualize APIC
9121 * access is disabled; in this case the processor would never
9122 * use the TPR shadow and we could simply clear the bit from
9123 * the execution control. But such a configuration is useless,
9124 * so let's keep the code simple.
9125 */
9126 if (!vmx->nested.virtual_apic_page)
9127 return false;
9128 }
9129
Wincy Van705699a2015-02-03 23:58:17 +08009130 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009131 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9132 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009133 return false;
9134
9135 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9136 kunmap(vmx->nested.pi_desc_page);
9137 nested_release_page(vmx->nested.pi_desc_page);
9138 }
9139 vmx->nested.pi_desc_page =
9140 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9141 if (!vmx->nested.pi_desc_page)
9142 return false;
9143
9144 vmx->nested.pi_desc =
9145 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9146 if (!vmx->nested.pi_desc) {
9147 nested_release_page_clean(vmx->nested.pi_desc_page);
9148 return false;
9149 }
9150 vmx->nested.pi_desc =
9151 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9152 (unsigned long)(vmcs12->posted_intr_desc_addr &
9153 (PAGE_SIZE - 1)));
9154 }
9155
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009156 return true;
9157}
9158
Jan Kiszkaf41245002014-03-07 20:03:13 +01009159static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9160{
9161 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9162 struct vcpu_vmx *vmx = to_vmx(vcpu);
9163
9164 if (vcpu->arch.virtual_tsc_khz == 0)
9165 return;
9166
9167 /* Make sure short timeouts reliably trigger an immediate vmexit.
9168 * hrtimer_start does not guarantee this. */
9169 if (preemption_timeout <= 1) {
9170 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9171 return;
9172 }
9173
9174 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9175 preemption_timeout *= 1000000;
9176 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9177 hrtimer_start(&vmx->nested.preemption_timer,
9178 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9179}
9180
Wincy Van3af18d92015-02-03 23:49:31 +08009181static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9182 struct vmcs12 *vmcs12)
9183{
9184 int maxphyaddr;
9185 u64 addr;
9186
9187 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9188 return 0;
9189
9190 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9191 WARN_ON(1);
9192 return -EINVAL;
9193 }
9194 maxphyaddr = cpuid_maxphyaddr(vcpu);
9195
9196 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9197 ((addr + PAGE_SIZE) >> maxphyaddr))
9198 return -EINVAL;
9199
9200 return 0;
9201}
9202
9203/*
9204 * Merge L0's and L1's MSR bitmap, return false to indicate that
9205 * we do not use the hardware.
9206 */
9207static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9208 struct vmcs12 *vmcs12)
9209{
Wincy Van82f0dd42015-02-03 23:57:18 +08009210 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009211 struct page *page;
9212 unsigned long *msr_bitmap;
9213
9214 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9215 return false;
9216
9217 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9218 if (!page) {
9219 WARN_ON(1);
9220 return false;
9221 }
9222 msr_bitmap = (unsigned long *)kmap(page);
9223 if (!msr_bitmap) {
9224 nested_release_page_clean(page);
9225 WARN_ON(1);
9226 return false;
9227 }
9228
9229 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009230 if (nested_cpu_has_apic_reg_virt(vmcs12))
9231 for (msr = 0x800; msr <= 0x8ff; msr++)
9232 nested_vmx_disable_intercept_for_msr(
9233 msr_bitmap,
9234 vmx_msr_bitmap_nested,
9235 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009236 /* TPR is allowed */
9237 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9238 vmx_msr_bitmap_nested,
9239 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9240 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009241 if (nested_cpu_has_vid(vmcs12)) {
9242 /* EOI and self-IPI are allowed */
9243 nested_vmx_disable_intercept_for_msr(
9244 msr_bitmap,
9245 vmx_msr_bitmap_nested,
9246 APIC_BASE_MSR + (APIC_EOI >> 4),
9247 MSR_TYPE_W);
9248 nested_vmx_disable_intercept_for_msr(
9249 msr_bitmap,
9250 vmx_msr_bitmap_nested,
9251 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9252 MSR_TYPE_W);
9253 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009254 } else {
9255 /*
9256 * Enable reading intercept of all the x2apic
9257 * MSRs. We should not rely on vmcs12 to do any
9258 * optimizations here, it may have been modified
9259 * by L1.
9260 */
9261 for (msr = 0x800; msr <= 0x8ff; msr++)
9262 __vmx_enable_intercept_for_msr(
9263 vmx_msr_bitmap_nested,
9264 msr,
9265 MSR_TYPE_R);
9266
Wincy Vanf2b93282015-02-03 23:56:03 +08009267 __vmx_enable_intercept_for_msr(
9268 vmx_msr_bitmap_nested,
9269 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009270 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009271 __vmx_enable_intercept_for_msr(
9272 vmx_msr_bitmap_nested,
9273 APIC_BASE_MSR + (APIC_EOI >> 4),
9274 MSR_TYPE_W);
9275 __vmx_enable_intercept_for_msr(
9276 vmx_msr_bitmap_nested,
9277 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9278 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009279 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009280 kunmap(page);
9281 nested_release_page_clean(page);
9282
9283 return true;
9284}
9285
9286static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9287 struct vmcs12 *vmcs12)
9288{
Wincy Van82f0dd42015-02-03 23:57:18 +08009289 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009290 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009291 !nested_cpu_has_vid(vmcs12) &&
9292 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009293 return 0;
9294
9295 /*
9296 * If virtualize x2apic mode is enabled,
9297 * virtualize apic access must be disabled.
9298 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009299 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9300 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009301 return -EINVAL;
9302
Wincy Van608406e2015-02-03 23:57:51 +08009303 /*
9304 * If virtual interrupt delivery is enabled,
9305 * we must exit on external interrupts.
9306 */
9307 if (nested_cpu_has_vid(vmcs12) &&
9308 !nested_exit_on_intr(vcpu))
9309 return -EINVAL;
9310
Wincy Van705699a2015-02-03 23:58:17 +08009311 /*
9312 * bits 15:8 should be zero in posted_intr_nv,
9313 * the descriptor address has been already checked
9314 * in nested_get_vmcs12_pages.
9315 */
9316 if (nested_cpu_has_posted_intr(vmcs12) &&
9317 (!nested_cpu_has_vid(vmcs12) ||
9318 !nested_exit_intr_ack_set(vcpu) ||
9319 vmcs12->posted_intr_nv & 0xff00))
9320 return -EINVAL;
9321
Wincy Vanf2b93282015-02-03 23:56:03 +08009322 /* tpr shadow is needed by all apicv features. */
9323 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9324 return -EINVAL;
9325
9326 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009327}
9328
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009329static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9330 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009331 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009332{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009333 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009334 u64 count, addr;
9335
9336 if (vmcs12_read_any(vcpu, count_field, &count) ||
9337 vmcs12_read_any(vcpu, addr_field, &addr)) {
9338 WARN_ON(1);
9339 return -EINVAL;
9340 }
9341 if (count == 0)
9342 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009343 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009344 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9345 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9346 pr_warn_ratelimited(
9347 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9348 addr_field, maxphyaddr, count, addr);
9349 return -EINVAL;
9350 }
9351 return 0;
9352}
9353
9354static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9355 struct vmcs12 *vmcs12)
9356{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009357 if (vmcs12->vm_exit_msr_load_count == 0 &&
9358 vmcs12->vm_exit_msr_store_count == 0 &&
9359 vmcs12->vm_entry_msr_load_count == 0)
9360 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009361 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009362 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009363 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009364 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009365 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009366 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009367 return -EINVAL;
9368 return 0;
9369}
9370
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009371static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9372 struct vmx_msr_entry *e)
9373{
9374 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009375 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009376 return -EINVAL;
9377 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9378 e->index == MSR_IA32_UCODE_REV)
9379 return -EINVAL;
9380 if (e->reserved != 0)
9381 return -EINVAL;
9382 return 0;
9383}
9384
9385static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9386 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009387{
9388 if (e->index == MSR_FS_BASE ||
9389 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009390 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9391 nested_vmx_msr_check_common(vcpu, e))
9392 return -EINVAL;
9393 return 0;
9394}
9395
9396static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9397 struct vmx_msr_entry *e)
9398{
9399 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9400 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009401 return -EINVAL;
9402 return 0;
9403}
9404
9405/*
9406 * Load guest's/host's msr at nested entry/exit.
9407 * return 0 for success, entry index for failure.
9408 */
9409static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9410{
9411 u32 i;
9412 struct vmx_msr_entry e;
9413 struct msr_data msr;
9414
9415 msr.host_initiated = false;
9416 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009417 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9418 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009419 pr_warn_ratelimited(
9420 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9421 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009422 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009423 }
9424 if (nested_vmx_load_msr_check(vcpu, &e)) {
9425 pr_warn_ratelimited(
9426 "%s check failed (%u, 0x%x, 0x%x)\n",
9427 __func__, i, e.index, e.reserved);
9428 goto fail;
9429 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009430 msr.index = e.index;
9431 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009432 if (kvm_set_msr(vcpu, &msr)) {
9433 pr_warn_ratelimited(
9434 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9435 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009436 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009437 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009438 }
9439 return 0;
9440fail:
9441 return i + 1;
9442}
9443
9444static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9445{
9446 u32 i;
9447 struct vmx_msr_entry e;
9448
9449 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009450 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009451 if (kvm_vcpu_read_guest(vcpu,
9452 gpa + i * sizeof(e),
9453 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009454 pr_warn_ratelimited(
9455 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9456 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009457 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009458 }
9459 if (nested_vmx_store_msr_check(vcpu, &e)) {
9460 pr_warn_ratelimited(
9461 "%s check failed (%u, 0x%x, 0x%x)\n",
9462 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009463 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009464 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009465 msr_info.host_initiated = false;
9466 msr_info.index = e.index;
9467 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009468 pr_warn_ratelimited(
9469 "%s cannot read MSR (%u, 0x%x)\n",
9470 __func__, i, e.index);
9471 return -EINVAL;
9472 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009473 if (kvm_vcpu_write_guest(vcpu,
9474 gpa + i * sizeof(e) +
9475 offsetof(struct vmx_msr_entry, value),
9476 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009477 pr_warn_ratelimited(
9478 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009479 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009480 return -EINVAL;
9481 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009482 }
9483 return 0;
9484}
9485
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009486/*
9487 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9488 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009489 * 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 +03009490 * guest in a way that will both be appropriate to L1's requests, and our
9491 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9492 * function also has additional necessary side-effects, like setting various
9493 * vcpu->arch fields.
9494 */
9495static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9496{
9497 struct vcpu_vmx *vmx = to_vmx(vcpu);
9498 u32 exec_control;
9499
9500 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9501 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9502 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9503 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9504 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9505 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9506 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9507 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9508 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9509 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9510 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9511 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9512 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9513 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9514 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9515 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9516 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9517 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9518 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9519 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9520 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9521 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9522 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9523 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9524 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9525 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9526 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9527 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9528 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9529 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9530 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9531 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9532 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9533 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9534 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9535 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9536
Jan Kiszka2996fca2014-06-16 13:59:43 +02009537 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9538 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9539 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9540 } else {
9541 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9542 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9543 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009544 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9545 vmcs12->vm_entry_intr_info_field);
9546 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9547 vmcs12->vm_entry_exception_error_code);
9548 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9549 vmcs12->vm_entry_instruction_len);
9550 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9551 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009552 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009553 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009554 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9555 vmcs12->guest_pending_dbg_exceptions);
9556 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9557 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9558
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009559 if (nested_cpu_has_xsaves(vmcs12))
9560 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009561 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9562
Jan Kiszkaf41245002014-03-07 20:03:13 +01009563 exec_control = vmcs12->pin_based_vm_exec_control;
9564 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009565 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9566
9567 if (nested_cpu_has_posted_intr(vmcs12)) {
9568 /*
9569 * Note that we use L0's vector here and in
9570 * vmx_deliver_nested_posted_interrupt.
9571 */
9572 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9573 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009574 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009575 vmcs_write64(POSTED_INTR_DESC_ADDR,
9576 page_to_phys(vmx->nested.pi_desc_page) +
9577 (unsigned long)(vmcs12->posted_intr_desc_addr &
9578 (PAGE_SIZE - 1)));
9579 } else
9580 exec_control &= ~PIN_BASED_POSTED_INTR;
9581
Jan Kiszkaf41245002014-03-07 20:03:13 +01009582 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009583
Jan Kiszkaf41245002014-03-07 20:03:13 +01009584 vmx->nested.preemption_timer_expired = false;
9585 if (nested_cpu_has_preemption_timer(vmcs12))
9586 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009587
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009588 /*
9589 * Whether page-faults are trapped is determined by a combination of
9590 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9591 * If enable_ept, L0 doesn't care about page faults and we should
9592 * set all of these to L1's desires. However, if !enable_ept, L0 does
9593 * care about (at least some) page faults, and because it is not easy
9594 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9595 * to exit on each and every L2 page fault. This is done by setting
9596 * MASK=MATCH=0 and (see below) EB.PF=1.
9597 * Note that below we don't need special code to set EB.PF beyond the
9598 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9599 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9600 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9601 *
9602 * A problem with this approach (when !enable_ept) is that L1 may be
9603 * injected with more page faults than it asked for. This could have
9604 * caused problems, but in practice existing hypervisors don't care.
9605 * To fix this, we will need to emulate the PFEC checking (on the L1
9606 * page tables), using walk_addr(), when injecting PFs to L1.
9607 */
9608 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9609 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9610 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9611 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9612
9613 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf41245002014-03-07 20:03:13 +01009614 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009615
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009616 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009617 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009618 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009619 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009620 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9621 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009622 if (nested_cpu_has(vmcs12,
9623 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9624 exec_control |= vmcs12->secondary_vm_exec_control;
9625
9626 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9627 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009628 * If translation failed, no matter: This feature asks
9629 * to exit when accessing the given address, and if it
9630 * can never be accessed, this feature won't do
9631 * anything anyway.
9632 */
9633 if (!vmx->nested.apic_access_page)
9634 exec_control &=
9635 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9636 else
9637 vmcs_write64(APIC_ACCESS_ADDR,
9638 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009639 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009640 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009641 exec_control |=
9642 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009643 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009644 }
9645
Wincy Van608406e2015-02-03 23:57:51 +08009646 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9647 vmcs_write64(EOI_EXIT_BITMAP0,
9648 vmcs12->eoi_exit_bitmap0);
9649 vmcs_write64(EOI_EXIT_BITMAP1,
9650 vmcs12->eoi_exit_bitmap1);
9651 vmcs_write64(EOI_EXIT_BITMAP2,
9652 vmcs12->eoi_exit_bitmap2);
9653 vmcs_write64(EOI_EXIT_BITMAP3,
9654 vmcs12->eoi_exit_bitmap3);
9655 vmcs_write16(GUEST_INTR_STATUS,
9656 vmcs12->guest_intr_status);
9657 }
9658
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009659 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9660 }
9661
9662
9663 /*
9664 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9665 * Some constant fields are set here by vmx_set_constant_host_state().
9666 * Other fields are different per CPU, and will be set later when
9667 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9668 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009669 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009670
9671 /*
9672 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9673 * entry, but only if the current (host) sp changed from the value
9674 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9675 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9676 * here we just force the write to happen on entry.
9677 */
9678 vmx->host_rsp = 0;
9679
9680 exec_control = vmx_exec_control(vmx); /* L0's desires */
9681 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9682 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9683 exec_control &= ~CPU_BASED_TPR_SHADOW;
9684 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009685
9686 if (exec_control & CPU_BASED_TPR_SHADOW) {
9687 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9688 page_to_phys(vmx->nested.virtual_apic_page));
9689 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9690 }
9691
Wincy Van3af18d92015-02-03 23:49:31 +08009692 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009693 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9694 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9695 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009696 } else
9697 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9698
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009699 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009700 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009701 * Rather, exit every time.
9702 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009703 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9704 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9705
9706 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9707
9708 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9709 * bitwise-or of what L1 wants to trap for L2, and what we want to
9710 * trap. Note that CR0.TS also needs updating - we do this later.
9711 */
9712 update_exception_bitmap(vcpu);
9713 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9714 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9715
Nadav Har'El8049d652013-08-05 11:07:06 +03009716 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9717 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9718 * bits are further modified by vmx_set_efer() below.
9719 */
Jan Kiszkaf41245002014-03-07 20:03:13 +01009720 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009721
9722 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9723 * emulated by vmx_set_efer(), below.
9724 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009725 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009726 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9727 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009728 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9729
Jan Kiszka44811c02013-08-04 17:17:27 +02009730 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009731 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009732 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9733 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009734 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9735
9736
9737 set_cr4_guest_host_mask(vmx);
9738
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009739 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9740 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9741
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009742 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9743 vmcs_write64(TSC_OFFSET,
9744 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9745 else
9746 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009747
9748 if (enable_vpid) {
9749 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009750 * There is no direct mapping between vpid02 and vpid12, the
9751 * vpid02 is per-vCPU for L0 and reused while the value of
9752 * vpid12 is changed w/ one invvpid during nested vmentry.
9753 * The vpid12 is allocated by L1 for L2, so it will not
9754 * influence global bitmap(for vpid01 and vpid02 allocation)
9755 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009756 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009757 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9758 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9759 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9760 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9761 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9762 }
9763 } else {
9764 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9765 vmx_flush_tlb(vcpu);
9766 }
9767
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009768 }
9769
Nadav Har'El155a97a2013-08-05 11:07:16 +03009770 if (nested_cpu_has_ept(vmcs12)) {
9771 kvm_mmu_unload(vcpu);
9772 nested_ept_init_mmu_context(vcpu);
9773 }
9774
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009775 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
9776 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +02009777 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009778 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
9779 else
9780 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
9781 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
9782 vmx_set_efer(vcpu, vcpu->arch.efer);
9783
9784 /*
9785 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
9786 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
9787 * The CR0_READ_SHADOW is what L2 should have expected to read given
9788 * the specifications by L1; It's not enough to take
9789 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
9790 * have more bits than L1 expected.
9791 */
9792 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
9793 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
9794
9795 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
9796 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
9797
9798 /* shadow page tables on either EPT or shadow page tables */
9799 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
9800 kvm_mmu_reset_context(vcpu);
9801
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009802 if (!enable_ept)
9803 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
9804
Nadav Har'El3633cfc2013-08-05 11:07:07 +03009805 /*
9806 * L1 may access the L2's PDPTR, so save them to construct vmcs12
9807 */
9808 if (enable_ept) {
9809 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
9810 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
9811 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
9812 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
9813 }
9814
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009815 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
9816 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
9817}
9818
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009819/*
9820 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
9821 * for running an L2 nested guest.
9822 */
9823static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
9824{
9825 struct vmcs12 *vmcs12;
9826 struct vcpu_vmx *vmx = to_vmx(vcpu);
9827 int cpu;
9828 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +02009829 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +03009830 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009831
9832 if (!nested_vmx_check_permission(vcpu) ||
9833 !nested_vmx_check_vmcs12(vcpu))
9834 return 1;
9835
9836 skip_emulated_instruction(vcpu);
9837 vmcs12 = get_vmcs12(vcpu);
9838
Abel Gordon012f83c2013-04-18 14:39:25 +03009839 if (enable_shadow_vmcs)
9840 copy_shadow_to_vmcs12(vmx);
9841
Nadav Har'El7c177932011-05-25 23:12:04 +03009842 /*
9843 * The nested entry process starts with enforcing various prerequisites
9844 * on vmcs12 as required by the Intel SDM, and act appropriately when
9845 * they fail: As the SDM explains, some conditions should cause the
9846 * instruction to fail, while others will cause the instruction to seem
9847 * to succeed, but return an EXIT_REASON_INVALID_STATE.
9848 * To speed up the normal (success) code path, we should avoid checking
9849 * for misconfigurations which will anyway be caught by the processor
9850 * when using the merged vmcs02.
9851 */
9852 if (vmcs12->launch_state == launch) {
9853 nested_vmx_failValid(vcpu,
9854 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
9855 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
9856 return 1;
9857 }
9858
Jan Kiszka6dfacad2013-12-04 08:58:54 +01009859 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
9860 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +02009861 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9862 return 1;
9863 }
9864
Wincy Van3af18d92015-02-03 23:49:31 +08009865 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009866 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9867 return 1;
9868 }
9869
Wincy Van3af18d92015-02-03 23:49:31 +08009870 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009871 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9872 return 1;
9873 }
9874
Wincy Vanf2b93282015-02-03 23:56:03 +08009875 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
9876 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9877 return 1;
9878 }
9879
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009880 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
9881 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9882 return 1;
9883 }
9884
Nadav Har'El7c177932011-05-25 23:12:04 +03009885 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009886 vmx->nested.nested_vmx_true_procbased_ctls_low,
9887 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009888 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009889 vmx->nested.nested_vmx_secondary_ctls_low,
9890 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009891 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009892 vmx->nested.nested_vmx_pinbased_ctls_low,
9893 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009894 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009895 vmx->nested.nested_vmx_true_exit_ctls_low,
9896 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009897 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009898 vmx->nested.nested_vmx_true_entry_ctls_low,
9899 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +03009900 {
9901 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9902 return 1;
9903 }
9904
9905 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
9906 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9907 nested_vmx_failValid(vcpu,
9908 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
9909 return 1;
9910 }
9911
Wincy Vanb9c237b2015-02-03 23:56:30 +08009912 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009913 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9914 nested_vmx_entry_failure(vcpu, vmcs12,
9915 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9916 return 1;
9917 }
9918 if (vmcs12->vmcs_link_pointer != -1ull) {
9919 nested_vmx_entry_failure(vcpu, vmcs12,
9920 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
9921 return 1;
9922 }
9923
9924 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +02009925 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +02009926 * are performed on the field for the IA32_EFER MSR:
9927 * - Bits reserved in the IA32_EFER MSR must be 0.
9928 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
9929 * the IA-32e mode guest VM-exit control. It must also be identical
9930 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
9931 * CR0.PG) is 1.
9932 */
9933 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
9934 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
9935 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
9936 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
9937 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
9938 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
9939 nested_vmx_entry_failure(vcpu, vmcs12,
9940 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9941 return 1;
9942 }
9943 }
9944
9945 /*
9946 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
9947 * IA32_EFER MSR must be 0 in the field for that register. In addition,
9948 * the values of the LMA and LME bits in the field must each be that of
9949 * the host address-space size VM-exit control.
9950 */
9951 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
9952 ia32e = (vmcs12->vm_exit_controls &
9953 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
9954 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
9955 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
9956 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
9957 nested_vmx_entry_failure(vcpu, vmcs12,
9958 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9959 return 1;
9960 }
9961 }
9962
9963 /*
Nadav Har'El7c177932011-05-25 23:12:04 +03009964 * We're finally done with prerequisite checking, and can start with
9965 * the nested entry.
9966 */
9967
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009968 vmcs02 = nested_get_current_vmcs02(vmx);
9969 if (!vmcs02)
9970 return -ENOMEM;
9971
9972 enter_guest_mode(vcpu);
9973
9974 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
9975
Jan Kiszka2996fca2014-06-16 13:59:43 +02009976 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
9977 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
9978
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009979 cpu = get_cpu();
9980 vmx->loaded_vmcs = vmcs02;
9981 vmx_vcpu_put(vcpu);
9982 vmx_vcpu_load(vcpu, cpu);
9983 vcpu->cpu = cpu;
9984 put_cpu();
9985
Jan Kiszka36c3cc42013-02-23 22:35:37 +01009986 vmx_segment_cache_clear(vmx);
9987
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009988 prepare_vmcs02(vcpu, vmcs12);
9989
Wincy Vanff651cb2014-12-11 08:52:58 +03009990 msr_entry_idx = nested_vmx_load_msr(vcpu,
9991 vmcs12->vm_entry_msr_load_addr,
9992 vmcs12->vm_entry_msr_load_count);
9993 if (msr_entry_idx) {
9994 leave_guest_mode(vcpu);
9995 vmx_load_vmcs01(vcpu);
9996 nested_vmx_entry_failure(vcpu, vmcs12,
9997 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
9998 return 1;
9999 }
10000
10001 vmcs12->launch_state = 1;
10002
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010003 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010004 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010005
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010006 vmx->nested.nested_run_pending = 1;
10007
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010008 /*
10009 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10010 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10011 * returned as far as L1 is concerned. It will only return (and set
10012 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10013 */
10014 return 1;
10015}
10016
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010017/*
10018 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10019 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10020 * This function returns the new value we should put in vmcs12.guest_cr0.
10021 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10022 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10023 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10024 * didn't trap the bit, because if L1 did, so would L0).
10025 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10026 * been modified by L2, and L1 knows it. So just leave the old value of
10027 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10028 * isn't relevant, because if L0 traps this bit it can set it to anything.
10029 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10030 * changed these bits, and therefore they need to be updated, but L0
10031 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10032 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10033 */
10034static inline unsigned long
10035vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10036{
10037 return
10038 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10039 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10040 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10041 vcpu->arch.cr0_guest_owned_bits));
10042}
10043
10044static inline unsigned long
10045vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10046{
10047 return
10048 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10049 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10050 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10051 vcpu->arch.cr4_guest_owned_bits));
10052}
10053
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010054static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10055 struct vmcs12 *vmcs12)
10056{
10057 u32 idt_vectoring;
10058 unsigned int nr;
10059
Gleb Natapov851eb6672013-09-25 12:51:34 +030010060 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010061 nr = vcpu->arch.exception.nr;
10062 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10063
10064 if (kvm_exception_is_soft(nr)) {
10065 vmcs12->vm_exit_instruction_len =
10066 vcpu->arch.event_exit_inst_len;
10067 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10068 } else
10069 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10070
10071 if (vcpu->arch.exception.has_error_code) {
10072 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10073 vmcs12->idt_vectoring_error_code =
10074 vcpu->arch.exception.error_code;
10075 }
10076
10077 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010078 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010079 vmcs12->idt_vectoring_info_field =
10080 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10081 } else if (vcpu->arch.interrupt.pending) {
10082 nr = vcpu->arch.interrupt.nr;
10083 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10084
10085 if (vcpu->arch.interrupt.soft) {
10086 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10087 vmcs12->vm_entry_instruction_len =
10088 vcpu->arch.event_exit_inst_len;
10089 } else
10090 idt_vectoring |= INTR_TYPE_EXT_INTR;
10091
10092 vmcs12->idt_vectoring_info_field = idt_vectoring;
10093 }
10094}
10095
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010096static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10097{
10098 struct vcpu_vmx *vmx = to_vmx(vcpu);
10099
Jan Kiszkaf41245002014-03-07 20:03:13 +010010100 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10101 vmx->nested.preemption_timer_expired) {
10102 if (vmx->nested.nested_run_pending)
10103 return -EBUSY;
10104 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10105 return 0;
10106 }
10107
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010108 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010109 if (vmx->nested.nested_run_pending ||
10110 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010111 return -EBUSY;
10112 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10113 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10114 INTR_INFO_VALID_MASK, 0);
10115 /*
10116 * The NMI-triggered VM exit counts as injection:
10117 * clear this one and block further NMIs.
10118 */
10119 vcpu->arch.nmi_pending = 0;
10120 vmx_set_nmi_mask(vcpu, true);
10121 return 0;
10122 }
10123
10124 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10125 nested_exit_on_intr(vcpu)) {
10126 if (vmx->nested.nested_run_pending)
10127 return -EBUSY;
10128 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010129 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010130 }
10131
Wincy Van705699a2015-02-03 23:58:17 +080010132 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010133}
10134
Jan Kiszkaf41245002014-03-07 20:03:13 +010010135static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10136{
10137 ktime_t remaining =
10138 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10139 u64 value;
10140
10141 if (ktime_to_ns(remaining) <= 0)
10142 return 0;
10143
10144 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10145 do_div(value, 1000000);
10146 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10147}
10148
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010149/*
10150 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10151 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10152 * and this function updates it to reflect the changes to the guest state while
10153 * L2 was running (and perhaps made some exits which were handled directly by L0
10154 * without going back to L1), and to reflect the exit reason.
10155 * Note that we do not have to copy here all VMCS fields, just those that
10156 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10157 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10158 * which already writes to vmcs12 directly.
10159 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010160static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10161 u32 exit_reason, u32 exit_intr_info,
10162 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010163{
10164 /* update guest state fields: */
10165 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10166 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10167
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010168 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10169 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10170 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10171
10172 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10173 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10174 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10175 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10176 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10177 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10178 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10179 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10180 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10181 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10182 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10183 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10184 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10185 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10186 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10187 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10188 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10189 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10190 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10191 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10192 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10193 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10194 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10195 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10196 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10197 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10198 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10199 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10200 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10201 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10202 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10203 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10204 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10205 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10206 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10207 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10208
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010209 vmcs12->guest_interruptibility_info =
10210 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10211 vmcs12->guest_pending_dbg_exceptions =
10212 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010213 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10214 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10215 else
10216 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010217
Jan Kiszkaf41245002014-03-07 20:03:13 +010010218 if (nested_cpu_has_preemption_timer(vmcs12)) {
10219 if (vmcs12->vm_exit_controls &
10220 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10221 vmcs12->vmx_preemption_timer_value =
10222 vmx_get_preemption_timer_value(vcpu);
10223 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10224 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010225
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010226 /*
10227 * In some cases (usually, nested EPT), L2 is allowed to change its
10228 * own CR3 without exiting. If it has changed it, we must keep it.
10229 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10230 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10231 *
10232 * Additionally, restore L2's PDPTR to vmcs12.
10233 */
10234 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010235 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010236 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10237 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10238 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10239 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10240 }
10241
Wincy Van608406e2015-02-03 23:57:51 +080010242 if (nested_cpu_has_vid(vmcs12))
10243 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10244
Jan Kiszkac18911a2013-03-13 16:06:41 +010010245 vmcs12->vm_entry_controls =
10246 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010247 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010248
Jan Kiszka2996fca2014-06-16 13:59:43 +020010249 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10250 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10251 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10252 }
10253
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010254 /* TODO: These cannot have changed unless we have MSR bitmaps and
10255 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010256 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010257 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010258 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10259 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010260 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10261 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10262 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010263 if (vmx_mpx_supported())
10264 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010265 if (nested_cpu_has_xsaves(vmcs12))
10266 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010267
10268 /* update exit information fields: */
10269
Jan Kiszka533558b2014-01-04 18:47:20 +010010270 vmcs12->vm_exit_reason = exit_reason;
10271 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010272
Jan Kiszka533558b2014-01-04 18:47:20 +010010273 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010274 if ((vmcs12->vm_exit_intr_info &
10275 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10276 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10277 vmcs12->vm_exit_intr_error_code =
10278 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010279 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010280 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10281 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10282
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010283 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10284 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10285 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010286 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010287
10288 /*
10289 * Transfer the event that L0 or L1 may wanted to inject into
10290 * L2 to IDT_VECTORING_INFO_FIELD.
10291 */
10292 vmcs12_save_pending_event(vcpu, vmcs12);
10293 }
10294
10295 /*
10296 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10297 * preserved above and would only end up incorrectly in L1.
10298 */
10299 vcpu->arch.nmi_injected = false;
10300 kvm_clear_exception_queue(vcpu);
10301 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010302}
10303
10304/*
10305 * A part of what we need to when the nested L2 guest exits and we want to
10306 * run its L1 parent, is to reset L1's guest state to the host state specified
10307 * in vmcs12.
10308 * This function is to be called not only on normal nested exit, but also on
10309 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10310 * Failures During or After Loading Guest State").
10311 * This function should be called when the active VMCS is L1's (vmcs01).
10312 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010313static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10314 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010315{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010316 struct kvm_segment seg;
10317
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010318 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10319 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010320 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010321 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10322 else
10323 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10324 vmx_set_efer(vcpu, vcpu->arch.efer);
10325
10326 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10327 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010328 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010329 /*
10330 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10331 * actually changed, because it depends on the current state of
10332 * fpu_active (which may have changed).
10333 * Note that vmx_set_cr0 refers to efer set above.
10334 */
Jan Kiszka9e3e4dbf2013-09-03 21:11:45 +020010335 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010336 /*
10337 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10338 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10339 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10340 */
10341 update_exception_bitmap(vcpu);
10342 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10343 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10344
10345 /*
10346 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10347 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10348 */
10349 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10350 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10351
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010352 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010353
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010354 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10355 kvm_mmu_reset_context(vcpu);
10356
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010357 if (!enable_ept)
10358 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10359
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010360 if (enable_vpid) {
10361 /*
10362 * Trivially support vpid by letting L2s share their parent
10363 * L1's vpid. TODO: move to a more elaborate solution, giving
10364 * each L2 its own vpid and exposing the vpid feature to L1.
10365 */
10366 vmx_flush_tlb(vcpu);
10367 }
10368
10369
10370 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10371 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10372 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10373 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10374 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010375
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010376 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10377 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10378 vmcs_write64(GUEST_BNDCFGS, 0);
10379
Jan Kiszka44811c02013-08-04 17:17:27 +020010380 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010381 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010382 vcpu->arch.pat = vmcs12->host_ia32_pat;
10383 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010384 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10385 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10386 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010387
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010388 /* Set L1 segment info according to Intel SDM
10389 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10390 seg = (struct kvm_segment) {
10391 .base = 0,
10392 .limit = 0xFFFFFFFF,
10393 .selector = vmcs12->host_cs_selector,
10394 .type = 11,
10395 .present = 1,
10396 .s = 1,
10397 .g = 1
10398 };
10399 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10400 seg.l = 1;
10401 else
10402 seg.db = 1;
10403 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10404 seg = (struct kvm_segment) {
10405 .base = 0,
10406 .limit = 0xFFFFFFFF,
10407 .type = 3,
10408 .present = 1,
10409 .s = 1,
10410 .db = 1,
10411 .g = 1
10412 };
10413 seg.selector = vmcs12->host_ds_selector;
10414 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10415 seg.selector = vmcs12->host_es_selector;
10416 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10417 seg.selector = vmcs12->host_ss_selector;
10418 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10419 seg.selector = vmcs12->host_fs_selector;
10420 seg.base = vmcs12->host_fs_base;
10421 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10422 seg.selector = vmcs12->host_gs_selector;
10423 seg.base = vmcs12->host_gs_base;
10424 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10425 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010426 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010427 .limit = 0x67,
10428 .selector = vmcs12->host_tr_selector,
10429 .type = 11,
10430 .present = 1
10431 };
10432 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10433
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010434 kvm_set_dr(vcpu, 7, 0x400);
10435 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010436
Wincy Van3af18d92015-02-03 23:49:31 +080010437 if (cpu_has_vmx_msr_bitmap())
10438 vmx_set_msr_bitmap(vcpu);
10439
Wincy Vanff651cb2014-12-11 08:52:58 +030010440 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10441 vmcs12->vm_exit_msr_load_count))
10442 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010443}
10444
10445/*
10446 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10447 * and modify vmcs12 to make it see what it would expect to see there if
10448 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10449 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010450static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10451 u32 exit_intr_info,
10452 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010453{
10454 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010455 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10456
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010457 /* trying to cancel vmlaunch/vmresume is a bug */
10458 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10459
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010460 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010461 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10462 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010463
Wincy Vanff651cb2014-12-11 08:52:58 +030010464 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10465 vmcs12->vm_exit_msr_store_count))
10466 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10467
Wanpeng Lif3380ca52014-08-05 12:42:23 +080010468 vmx_load_vmcs01(vcpu);
10469
Bandan Das77b0f5d2014-04-19 18:17:45 -040010470 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10471 && nested_exit_intr_ack_set(vcpu)) {
10472 int irq = kvm_cpu_get_interrupt(vcpu);
10473 WARN_ON(irq < 0);
10474 vmcs12->vm_exit_intr_info = irq |
10475 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10476 }
10477
Jan Kiszka542060e2014-01-04 18:47:21 +010010478 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10479 vmcs12->exit_qualification,
10480 vmcs12->idt_vectoring_info_field,
10481 vmcs12->vm_exit_intr_info,
10482 vmcs12->vm_exit_intr_error_code,
10483 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010484
Gleb Natapov2961e8762013-11-25 15:37:13 +020010485 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10486 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010487 vmx_segment_cache_clear(vmx);
10488
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010489 /* if no vmcs02 cache requested, remove the one we used */
10490 if (VMCS02_POOL_SIZE == 0)
10491 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10492
10493 load_vmcs12_host_state(vcpu, vmcs12);
10494
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010495 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010496 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10497
10498 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10499 vmx->host_rsp = 0;
10500
10501 /* Unpin physical memory we referred to in vmcs02 */
10502 if (vmx->nested.apic_access_page) {
10503 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010504 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010505 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010506 if (vmx->nested.virtual_apic_page) {
10507 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010508 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010509 }
Wincy Van705699a2015-02-03 23:58:17 +080010510 if (vmx->nested.pi_desc_page) {
10511 kunmap(vmx->nested.pi_desc_page);
10512 nested_release_page(vmx->nested.pi_desc_page);
10513 vmx->nested.pi_desc_page = NULL;
10514 vmx->nested.pi_desc = NULL;
10515 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010516
10517 /*
Tang Chen38b99172014-09-24 15:57:54 +080010518 * We are now running in L2, mmu_notifier will force to reload the
10519 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10520 */
10521 kvm_vcpu_reload_apic_access_page(vcpu);
10522
10523 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010524 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10525 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10526 * success or failure flag accordingly.
10527 */
10528 if (unlikely(vmx->fail)) {
10529 vmx->fail = 0;
10530 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10531 } else
10532 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010533 if (enable_shadow_vmcs)
10534 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010535
10536 /* in case we halted in L2 */
10537 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010538}
10539
Nadav Har'El7c177932011-05-25 23:12:04 +030010540/*
Jan Kiszka42124922014-01-04 18:47:19 +010010541 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10542 */
10543static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10544{
10545 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010546 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010547 free_nested(to_vmx(vcpu));
10548}
10549
10550/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010551 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10552 * 23.7 "VM-entry failures during or after loading guest state" (this also
10553 * lists the acceptable exit-reason and exit-qualification parameters).
10554 * It should only be called before L2 actually succeeded to run, and when
10555 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10556 */
10557static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10558 struct vmcs12 *vmcs12,
10559 u32 reason, unsigned long qualification)
10560{
10561 load_vmcs12_host_state(vcpu, vmcs12);
10562 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10563 vmcs12->exit_qualification = qualification;
10564 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010565 if (enable_shadow_vmcs)
10566 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010567}
10568
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010569static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10570 struct x86_instruction_info *info,
10571 enum x86_intercept_stage stage)
10572{
10573 return X86EMUL_CONTINUE;
10574}
10575
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010576static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010577{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010578 if (ple_gap)
10579 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010580}
10581
Kai Huang843e4332015-01-28 10:54:28 +080010582static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10583 struct kvm_memory_slot *slot)
10584{
10585 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10586 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10587}
10588
10589static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10590 struct kvm_memory_slot *slot)
10591{
10592 kvm_mmu_slot_set_dirty(kvm, slot);
10593}
10594
10595static void vmx_flush_log_dirty(struct kvm *kvm)
10596{
10597 kvm_flush_pml_buffers(kvm);
10598}
10599
10600static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10601 struct kvm_memory_slot *memslot,
10602 gfn_t offset, unsigned long mask)
10603{
10604 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10605}
10606
Feng Wuefc64402015-09-18 22:29:51 +080010607/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010608 * This routine does the following things for vCPU which is going
10609 * to be blocked if VT-d PI is enabled.
10610 * - Store the vCPU to the wakeup list, so when interrupts happen
10611 * we can find the right vCPU to wake up.
10612 * - Change the Posted-interrupt descriptor as below:
10613 * 'NDST' <-- vcpu->pre_pcpu
10614 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10615 * - If 'ON' is set during this process, which means at least one
10616 * interrupt is posted for this vCPU, we cannot block it, in
10617 * this case, return 1, otherwise, return 0.
10618 *
10619 */
10620static int vmx_pre_block(struct kvm_vcpu *vcpu)
10621{
10622 unsigned long flags;
10623 unsigned int dest;
10624 struct pi_desc old, new;
10625 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10626
10627 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10628 !irq_remapping_cap(IRQ_POSTING_CAP))
10629 return 0;
10630
10631 vcpu->pre_pcpu = vcpu->cpu;
10632 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10633 vcpu->pre_pcpu), flags);
10634 list_add_tail(&vcpu->blocked_vcpu_list,
10635 &per_cpu(blocked_vcpu_on_cpu,
10636 vcpu->pre_pcpu));
10637 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10638 vcpu->pre_pcpu), flags);
10639
10640 do {
10641 old.control = new.control = pi_desc->control;
10642
10643 /*
10644 * We should not block the vCPU if
10645 * an interrupt is posted for it.
10646 */
10647 if (pi_test_on(pi_desc) == 1) {
10648 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10649 vcpu->pre_pcpu), flags);
10650 list_del(&vcpu->blocked_vcpu_list);
10651 spin_unlock_irqrestore(
10652 &per_cpu(blocked_vcpu_on_cpu_lock,
10653 vcpu->pre_pcpu), flags);
10654 vcpu->pre_pcpu = -1;
10655
10656 return 1;
10657 }
10658
10659 WARN((pi_desc->sn == 1),
10660 "Warning: SN field of posted-interrupts "
10661 "is set before blocking\n");
10662
10663 /*
10664 * Since vCPU can be preempted during this process,
10665 * vcpu->cpu could be different with pre_pcpu, we
10666 * need to set pre_pcpu as the destination of wakeup
10667 * notification event, then we can find the right vCPU
10668 * to wakeup in wakeup handler if interrupts happen
10669 * when the vCPU is in blocked state.
10670 */
10671 dest = cpu_physical_id(vcpu->pre_pcpu);
10672
10673 if (x2apic_enabled())
10674 new.ndst = dest;
10675 else
10676 new.ndst = (dest << 8) & 0xFF00;
10677
10678 /* set 'NV' to 'wakeup vector' */
10679 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10680 } while (cmpxchg(&pi_desc->control, old.control,
10681 new.control) != old.control);
10682
10683 return 0;
10684}
10685
10686static void vmx_post_block(struct kvm_vcpu *vcpu)
10687{
10688 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10689 struct pi_desc old, new;
10690 unsigned int dest;
10691 unsigned long flags;
10692
10693 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10694 !irq_remapping_cap(IRQ_POSTING_CAP))
10695 return;
10696
10697 do {
10698 old.control = new.control = pi_desc->control;
10699
10700 dest = cpu_physical_id(vcpu->cpu);
10701
10702 if (x2apic_enabled())
10703 new.ndst = dest;
10704 else
10705 new.ndst = (dest << 8) & 0xFF00;
10706
10707 /* Allow posting non-urgent interrupts */
10708 new.sn = 0;
10709
10710 /* set 'NV' to 'notification vector' */
10711 new.nv = POSTED_INTR_VECTOR;
10712 } while (cmpxchg(&pi_desc->control, old.control,
10713 new.control) != old.control);
10714
10715 if(vcpu->pre_pcpu != -1) {
10716 spin_lock_irqsave(
10717 &per_cpu(blocked_vcpu_on_cpu_lock,
10718 vcpu->pre_pcpu), flags);
10719 list_del(&vcpu->blocked_vcpu_list);
10720 spin_unlock_irqrestore(
10721 &per_cpu(blocked_vcpu_on_cpu_lock,
10722 vcpu->pre_pcpu), flags);
10723 vcpu->pre_pcpu = -1;
10724 }
10725}
10726
10727/*
Feng Wuefc64402015-09-18 22:29:51 +080010728 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
10729 *
10730 * @kvm: kvm
10731 * @host_irq: host irq of the interrupt
10732 * @guest_irq: gsi of the interrupt
10733 * @set: set or unset PI
10734 * returns 0 on success, < 0 on failure
10735 */
10736static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
10737 uint32_t guest_irq, bool set)
10738{
10739 struct kvm_kernel_irq_routing_entry *e;
10740 struct kvm_irq_routing_table *irq_rt;
10741 struct kvm_lapic_irq irq;
10742 struct kvm_vcpu *vcpu;
10743 struct vcpu_data vcpu_info;
10744 int idx, ret = -EINVAL;
10745
10746 if (!kvm_arch_has_assigned_device(kvm) ||
10747 !irq_remapping_cap(IRQ_POSTING_CAP))
10748 return 0;
10749
10750 idx = srcu_read_lock(&kvm->irq_srcu);
10751 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
10752 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
10753
10754 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
10755 if (e->type != KVM_IRQ_ROUTING_MSI)
10756 continue;
10757 /*
10758 * VT-d PI cannot support posting multicast/broadcast
10759 * interrupts to a vCPU, we still use interrupt remapping
10760 * for these kind of interrupts.
10761 *
10762 * For lowest-priority interrupts, we only support
10763 * those with single CPU as the destination, e.g. user
10764 * configures the interrupts via /proc/irq or uses
10765 * irqbalance to make the interrupts single-CPU.
10766 *
10767 * We will support full lowest-priority interrupt later.
10768 */
10769
10770 kvm_set_msi_irq(e, &irq);
10771 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu))
10772 continue;
10773
10774 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
10775 vcpu_info.vector = irq.vector;
10776
10777 trace_kvm_pi_irte_update(vcpu->vcpu_id, e->gsi,
10778 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
10779
10780 if (set)
10781 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
10782 else {
10783 /* suppress notification event before unposting */
10784 pi_set_sn(vcpu_to_pi_desc(vcpu));
10785 ret = irq_set_vcpu_affinity(host_irq, NULL);
10786 pi_clear_sn(vcpu_to_pi_desc(vcpu));
10787 }
10788
10789 if (ret < 0) {
10790 printk(KERN_INFO "%s: failed to update PI IRTE\n",
10791 __func__);
10792 goto out;
10793 }
10794 }
10795
10796 ret = 0;
10797out:
10798 srcu_read_unlock(&kvm->irq_srcu, idx);
10799 return ret;
10800}
10801
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030010802static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080010803 .cpu_has_kvm_support = cpu_has_kvm_support,
10804 .disabled_by_bios = vmx_disabled_by_bios,
10805 .hardware_setup = hardware_setup,
10806 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030010807 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010808 .hardware_enable = hardware_enable,
10809 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080010810 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010811 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010812
10813 .vcpu_create = vmx_create_vcpu,
10814 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030010815 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010816
Avi Kivity04d2cc72007-09-10 18:10:54 +030010817 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010818 .vcpu_load = vmx_vcpu_load,
10819 .vcpu_put = vmx_vcpu_put,
10820
Paolo Bonzinia96036b2015-11-10 11:55:36 +010010821 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010822 .get_msr = vmx_get_msr,
10823 .set_msr = vmx_set_msr,
10824 .get_segment_base = vmx_get_segment_base,
10825 .get_segment = vmx_get_segment,
10826 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020010827 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010828 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020010829 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020010830 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030010831 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010832 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010833 .set_cr3 = vmx_set_cr3,
10834 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010835 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010836 .get_idt = vmx_get_idt,
10837 .set_idt = vmx_set_idt,
10838 .get_gdt = vmx_get_gdt,
10839 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010010840 .get_dr6 = vmx_get_dr6,
10841 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030010842 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010010843 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010844 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010845 .get_rflags = vmx_get_rflags,
10846 .set_rflags = vmx_set_rflags,
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020010847 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020010848 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010849
10850 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010851
Avi Kivity6aa8b732006-12-10 02:21:36 -080010852 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020010853 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010854 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040010855 .set_interrupt_shadow = vmx_set_interrupt_shadow,
10856 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020010857 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030010858 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010859 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020010860 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010861 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020010862 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010863 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010010864 .get_nmi_mask = vmx_get_nmi_mask,
10865 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010866 .enable_nmi_window = enable_nmi_window,
10867 .enable_irq_window = enable_irq_window,
10868 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080010869 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080010870 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030010871 .get_enable_apicv = vmx_get_enable_apicv,
10872 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080010873 .load_eoi_exitmap = vmx_load_eoi_exitmap,
10874 .hwapic_irr_update = vmx_hwapic_irr_update,
10875 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080010876 .sync_pir_to_irr = vmx_sync_pir_to_irr,
10877 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010878
Izik Eiduscbc94022007-10-25 00:29:55 +020010879 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080010880 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010881 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010882
Avi Kivity586f9602010-11-18 13:09:54 +020010883 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020010884
Sheng Yang17cc3932010-01-05 19:02:27 +080010885 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080010886
10887 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010888
10889 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000010890 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010891
10892 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080010893
10894 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010895
Will Auldba904632012-11-29 12:42:50 -080010896 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010897 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080010898 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030010899 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020010900
10901 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010902
10903 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080010904 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010905 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080010906 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010907
10908 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010909
10910 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080010911
10912 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
10913 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
10914 .flush_log_dirty = vmx_flush_log_dirty,
10915 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f72015-06-19 15:45:05 +020010916
Feng Wubf9f6ac2015-09-18 22:29:55 +080010917 .pre_block = vmx_pre_block,
10918 .post_block = vmx_post_block,
10919
Wei Huang25462f72015-06-19 15:45:05 +020010920 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080010921
10922 .update_pi_irte = vmx_update_pi_irte,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010923};
10924
10925static int __init vmx_init(void)
10926{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010927 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
10928 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030010929 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010930 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080010931
Dave Young2965faa2015-09-09 15:38:55 -070010932#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010933 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
10934 crash_vmclear_local_loaded_vmcss);
10935#endif
10936
He, Qingfdef3ad2007-04-30 09:45:24 +030010937 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010938}
10939
10940static void __exit vmx_exit(void)
10941{
Dave Young2965faa2015-09-09 15:38:55 -070010942#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053010943 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010944 synchronize_rcu();
10945#endif
10946
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080010947 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080010948}
10949
10950module_init(vmx_init)
10951module_exit(vmx_exit)