blob: 1b8a41f64d357beeef5e63c15307774a172a935d [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030036#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030037#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040038
Feng Wu28b835d2015-09-18 22:29:54 +080039#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080040#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080041#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020042#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020043#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080044#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020045#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020046#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010047#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080048#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010049#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080050#include <asm/irq_remapping.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080051
Marcelo Tosatti229456f2009-06-17 09:22:14 -030052#include "trace.h"
Wei Huang25462f7f2015-06-19 15:45:05 +020053#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054
Avi Kivity4ecac3f2008-05-13 13:23:38 +030055#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040056#define __ex_clear(x, reg) \
57 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030058
Avi Kivity6aa8b732006-12-10 02:21:36 -080059MODULE_AUTHOR("Qumranet");
60MODULE_LICENSE("GPL");
61
Josh Triplette9bda3b2012-03-20 23:33:51 -070062static const struct x86_cpu_id vmx_cpu_id[] = {
63 X86_FEATURE_MATCH(X86_FEATURE_VMX),
64 {}
65};
66MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
67
Rusty Russell476bc002012-01-13 09:32:18 +103068static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020069module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080070
Rusty Russell476bc002012-01-13 09:32:18 +103071static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020072module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020073
Rusty Russell476bc002012-01-13 09:32:18 +103074static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020075module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080076
Rusty Russell476bc002012-01-13 09:32:18 +103077static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070078module_param_named(unrestricted_guest,
79 enable_unrestricted_guest, bool, S_IRUGO);
80
Xudong Hao83c3a332012-05-28 19:33:35 +080081static bool __read_mostly enable_ept_ad_bits = 1;
82module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
83
Avi Kivitya27685c2012-06-12 20:30:18 +030084static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020085module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030086
Rusty Russell476bc002012-01-13 09:32:18 +103087static bool __read_mostly vmm_exclusive = 1;
Dongxiao Xub923e622010-05-11 18:29:45 +080088module_param(vmm_exclusive, bool, S_IRUGO);
89
Rusty Russell476bc002012-01-13 09:32:18 +103090static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030091module_param(fasteoi, bool, S_IRUGO);
92
Yang Zhang5a717852013-04-11 19:25:16 +080093static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080094module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080095
Abel Gordonabc4fc52013-04-18 14:35:25 +030096static bool __read_mostly enable_shadow_vmcs = 1;
97module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030098/*
99 * If nested=1, nested virtualization is supported, i.e., guests may use
100 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
101 * use VMX instructions.
102 */
Rusty Russell476bc002012-01-13 09:32:18 +1030103static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300104module_param(nested, bool, S_IRUGO);
105
Wanpeng Li20300092014-12-02 19:14:59 +0800106static u64 __read_mostly host_xss;
107
Kai Huang843e4332015-01-28 10:54:28 +0800108static bool __read_mostly enable_pml = 1;
109module_param_named(pml, enable_pml, bool, S_IRUGO);
110
Haozhong Zhang64903d62015-10-20 15:39:09 +0800111#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
112
Gleb Natapov50378782013-02-04 16:00:28 +0200113#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
114#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200115#define KVM_VM_CR0_ALWAYS_ON \
116 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200117#define KVM_CR4_GUEST_OWNED_BITS \
118 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Andy Lutomirski52ce3c22014-10-07 17:16:21 -0700119 | X86_CR4_OSXMMEXCPT | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200120
Avi Kivitycdc0e242009-12-06 17:21:14 +0200121#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
122#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
123
Avi Kivity78ac8b42010-04-08 18:19:35 +0300124#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
125
Jan Kiszkaf4124502014-03-07 20:03:13 +0100126#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
127
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800128/*
129 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
130 * ple_gap: upper bound on the amount of time between two successive
131 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500132 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800133 * ple_window: upper bound on the amount of time a guest is allowed to execute
134 * in a PAUSE loop. Tests indicate that most spinlocks are held for
135 * less than 2^12 cycles
136 * Time is measured based on a counter that runs at the same rate as the TSC,
137 * refer SDM volume 3b section 21.6.13 & 22.1.3.
138 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200139#define KVM_VMX_DEFAULT_PLE_GAP 128
140#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
141#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
142#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
143#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
144 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
145
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800146static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
147module_param(ple_gap, int, S_IRUGO);
148
149static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
150module_param(ple_window, int, S_IRUGO);
151
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200152/* Default doubles per-vcpu window every exit. */
153static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
154module_param(ple_window_grow, int, S_IRUGO);
155
156/* Default resets per-vcpu window every exit to ple_window. */
157static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
158module_param(ple_window_shrink, int, S_IRUGO);
159
160/* Default is to compute the maximum so we can never overflow. */
161static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
162static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
163module_param(ple_window_max, int, S_IRUGO);
164
Avi Kivity83287ea422012-09-16 15:10:57 +0300165extern const ulong vmx_return;
166
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200167#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300168#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300169
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400170struct vmcs {
171 u32 revision_id;
172 u32 abort;
173 char data[0];
174};
175
Nadav Har'Eld462b812011-05-24 15:26:10 +0300176/*
177 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
178 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
179 * loaded on this CPU (so we can clear them if the CPU goes down).
180 */
181struct loaded_vmcs {
182 struct vmcs *vmcs;
183 int cpu;
184 int launched;
185 struct list_head loaded_vmcss_on_cpu_link;
186};
187
Avi Kivity26bb0982009-09-07 11:14:12 +0300188struct shared_msr_entry {
189 unsigned index;
190 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200191 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300192};
193
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300194/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300195 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
196 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
197 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
198 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
199 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
200 * More than one of these structures may exist, if L1 runs multiple L2 guests.
201 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
202 * underlying hardware which will be used to run L2.
203 * This structure is packed to ensure that its layout is identical across
204 * machines (necessary for live migration).
205 * If there are changes in this struct, VMCS12_REVISION must be changed.
206 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300207typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300208struct __packed vmcs12 {
209 /* According to the Intel spec, a VMCS region must start with the
210 * following two fields. Then follow implementation-specific data.
211 */
212 u32 revision_id;
213 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300214
Nadav Har'El27d6c862011-05-25 23:06:59 +0300215 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
216 u32 padding[7]; /* room for future expansion */
217
Nadav Har'El22bd0352011-05-25 23:05:57 +0300218 u64 io_bitmap_a;
219 u64 io_bitmap_b;
220 u64 msr_bitmap;
221 u64 vm_exit_msr_store_addr;
222 u64 vm_exit_msr_load_addr;
223 u64 vm_entry_msr_load_addr;
224 u64 tsc_offset;
225 u64 virtual_apic_page_addr;
226 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800227 u64 posted_intr_desc_addr;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300228 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800229 u64 eoi_exit_bitmap0;
230 u64 eoi_exit_bitmap1;
231 u64 eoi_exit_bitmap2;
232 u64 eoi_exit_bitmap3;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800233 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300234 u64 guest_physical_address;
235 u64 vmcs_link_pointer;
236 u64 guest_ia32_debugctl;
237 u64 guest_ia32_pat;
238 u64 guest_ia32_efer;
239 u64 guest_ia32_perf_global_ctrl;
240 u64 guest_pdptr0;
241 u64 guest_pdptr1;
242 u64 guest_pdptr2;
243 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100244 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300245 u64 host_ia32_pat;
246 u64 host_ia32_efer;
247 u64 host_ia32_perf_global_ctrl;
248 u64 padding64[8]; /* room for future expansion */
249 /*
250 * To allow migration of L1 (complete with its L2 guests) between
251 * machines of different natural widths (32 or 64 bit), we cannot have
252 * unsigned long fields with no explict size. We use u64 (aliased
253 * natural_width) instead. Luckily, x86 is little-endian.
254 */
255 natural_width cr0_guest_host_mask;
256 natural_width cr4_guest_host_mask;
257 natural_width cr0_read_shadow;
258 natural_width cr4_read_shadow;
259 natural_width cr3_target_value0;
260 natural_width cr3_target_value1;
261 natural_width cr3_target_value2;
262 natural_width cr3_target_value3;
263 natural_width exit_qualification;
264 natural_width guest_linear_address;
265 natural_width guest_cr0;
266 natural_width guest_cr3;
267 natural_width guest_cr4;
268 natural_width guest_es_base;
269 natural_width guest_cs_base;
270 natural_width guest_ss_base;
271 natural_width guest_ds_base;
272 natural_width guest_fs_base;
273 natural_width guest_gs_base;
274 natural_width guest_ldtr_base;
275 natural_width guest_tr_base;
276 natural_width guest_gdtr_base;
277 natural_width guest_idtr_base;
278 natural_width guest_dr7;
279 natural_width guest_rsp;
280 natural_width guest_rip;
281 natural_width guest_rflags;
282 natural_width guest_pending_dbg_exceptions;
283 natural_width guest_sysenter_esp;
284 natural_width guest_sysenter_eip;
285 natural_width host_cr0;
286 natural_width host_cr3;
287 natural_width host_cr4;
288 natural_width host_fs_base;
289 natural_width host_gs_base;
290 natural_width host_tr_base;
291 natural_width host_gdtr_base;
292 natural_width host_idtr_base;
293 natural_width host_ia32_sysenter_esp;
294 natural_width host_ia32_sysenter_eip;
295 natural_width host_rsp;
296 natural_width host_rip;
297 natural_width paddingl[8]; /* room for future expansion */
298 u32 pin_based_vm_exec_control;
299 u32 cpu_based_vm_exec_control;
300 u32 exception_bitmap;
301 u32 page_fault_error_code_mask;
302 u32 page_fault_error_code_match;
303 u32 cr3_target_count;
304 u32 vm_exit_controls;
305 u32 vm_exit_msr_store_count;
306 u32 vm_exit_msr_load_count;
307 u32 vm_entry_controls;
308 u32 vm_entry_msr_load_count;
309 u32 vm_entry_intr_info_field;
310 u32 vm_entry_exception_error_code;
311 u32 vm_entry_instruction_len;
312 u32 tpr_threshold;
313 u32 secondary_vm_exec_control;
314 u32 vm_instruction_error;
315 u32 vm_exit_reason;
316 u32 vm_exit_intr_info;
317 u32 vm_exit_intr_error_code;
318 u32 idt_vectoring_info_field;
319 u32 idt_vectoring_error_code;
320 u32 vm_exit_instruction_len;
321 u32 vmx_instruction_info;
322 u32 guest_es_limit;
323 u32 guest_cs_limit;
324 u32 guest_ss_limit;
325 u32 guest_ds_limit;
326 u32 guest_fs_limit;
327 u32 guest_gs_limit;
328 u32 guest_ldtr_limit;
329 u32 guest_tr_limit;
330 u32 guest_gdtr_limit;
331 u32 guest_idtr_limit;
332 u32 guest_es_ar_bytes;
333 u32 guest_cs_ar_bytes;
334 u32 guest_ss_ar_bytes;
335 u32 guest_ds_ar_bytes;
336 u32 guest_fs_ar_bytes;
337 u32 guest_gs_ar_bytes;
338 u32 guest_ldtr_ar_bytes;
339 u32 guest_tr_ar_bytes;
340 u32 guest_interruptibility_info;
341 u32 guest_activity_state;
342 u32 guest_sysenter_cs;
343 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100344 u32 vmx_preemption_timer_value;
345 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300346 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800347 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300348 u16 guest_es_selector;
349 u16 guest_cs_selector;
350 u16 guest_ss_selector;
351 u16 guest_ds_selector;
352 u16 guest_fs_selector;
353 u16 guest_gs_selector;
354 u16 guest_ldtr_selector;
355 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800356 u16 guest_intr_status;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300357 u16 host_es_selector;
358 u16 host_cs_selector;
359 u16 host_ss_selector;
360 u16 host_ds_selector;
361 u16 host_fs_selector;
362 u16 host_gs_selector;
363 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300364};
365
366/*
367 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
368 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
369 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
370 */
371#define VMCS12_REVISION 0x11e57ed0
372
373/*
374 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
375 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
376 * current implementation, 4K are reserved to avoid future complications.
377 */
378#define VMCS12_SIZE 0x1000
379
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300380/* Used to remember the last vmcs02 used for some recently used vmcs12s */
381struct vmcs02_list {
382 struct list_head list;
383 gpa_t vmptr;
384 struct loaded_vmcs vmcs02;
385};
386
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300387/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300388 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
389 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
390 */
391struct nested_vmx {
392 /* Has the level1 guest done vmxon? */
393 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400394 gpa_t vmxon_ptr;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300395
396 /* The guest-physical address of the current VMCS L1 keeps for L2 */
397 gpa_t current_vmptr;
398 /* The host-usable pointer to the above */
399 struct page *current_vmcs12_page;
400 struct vmcs12 *current_vmcs12;
Abel Gordon8de48832013-04-18 14:37:25 +0300401 struct vmcs *current_shadow_vmcs;
Abel Gordon012f83c2013-04-18 14:39:25 +0300402 /*
403 * Indicates if the shadow vmcs must be updated with the
404 * data hold by vmcs12
405 */
406 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300407
408 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
409 struct list_head vmcs02_pool;
410 int vmcs02_num;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300411 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300412 /* L2 must run next, and mustn't decide to exit to L1. */
413 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300414 /*
415 * Guest pages referred to in vmcs02 with host-physical pointers, so
416 * we must keep them pinned while L2 runs.
417 */
418 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800419 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800420 struct page *pi_desc_page;
421 struct pi_desc *pi_desc;
422 bool pi_pending;
423 u16 posted_intr_nv;
Nadav Har'Elb3897a42013-07-08 19:12:35 +0800424 u64 msr_ia32_feature_control;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100425
426 struct hrtimer preemption_timer;
427 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200428
429 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
430 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800431
Wanpeng Li5c614b32015-10-13 09:18:36 -0700432 u16 vpid02;
433 u16 last_vpid;
434
Wincy Vanb9c237b2015-02-03 23:56:30 +0800435 u32 nested_vmx_procbased_ctls_low;
436 u32 nested_vmx_procbased_ctls_high;
437 u32 nested_vmx_true_procbased_ctls_low;
438 u32 nested_vmx_secondary_ctls_low;
439 u32 nested_vmx_secondary_ctls_high;
440 u32 nested_vmx_pinbased_ctls_low;
441 u32 nested_vmx_pinbased_ctls_high;
442 u32 nested_vmx_exit_ctls_low;
443 u32 nested_vmx_exit_ctls_high;
444 u32 nested_vmx_true_exit_ctls_low;
445 u32 nested_vmx_entry_ctls_low;
446 u32 nested_vmx_entry_ctls_high;
447 u32 nested_vmx_true_entry_ctls_low;
448 u32 nested_vmx_misc_low;
449 u32 nested_vmx_misc_high;
450 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700451 u32 nested_vmx_vpid_caps;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300452};
453
Yang Zhang01e439b2013-04-11 19:25:12 +0800454#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800455#define POSTED_INTR_SN 1
456
Yang Zhang01e439b2013-04-11 19:25:12 +0800457/* Posted-Interrupt Descriptor */
458struct pi_desc {
459 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800460 union {
461 struct {
462 /* bit 256 - Outstanding Notification */
463 u16 on : 1,
464 /* bit 257 - Suppress Notification */
465 sn : 1,
466 /* bit 271:258 - Reserved */
467 rsvd_1 : 14;
468 /* bit 279:272 - Notification Vector */
469 u8 nv;
470 /* bit 287:280 - Reserved */
471 u8 rsvd_2;
472 /* bit 319:288 - Notification Destination */
473 u32 ndst;
474 };
475 u64 control;
476 };
477 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800478} __aligned(64);
479
Yang Zhanga20ed542013-04-11 19:25:15 +0800480static bool pi_test_and_set_on(struct pi_desc *pi_desc)
481{
482 return test_and_set_bit(POSTED_INTR_ON,
483 (unsigned long *)&pi_desc->control);
484}
485
486static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
487{
488 return test_and_clear_bit(POSTED_INTR_ON,
489 (unsigned long *)&pi_desc->control);
490}
491
492static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
493{
494 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
495}
496
Feng Wuebbfc762015-09-18 22:29:46 +0800497static inline void pi_clear_sn(struct pi_desc *pi_desc)
498{
499 return clear_bit(POSTED_INTR_SN,
500 (unsigned long *)&pi_desc->control);
501}
502
503static inline void pi_set_sn(struct pi_desc *pi_desc)
504{
505 return set_bit(POSTED_INTR_SN,
506 (unsigned long *)&pi_desc->control);
507}
508
509static inline int pi_test_on(struct pi_desc *pi_desc)
510{
511 return test_bit(POSTED_INTR_ON,
512 (unsigned long *)&pi_desc->control);
513}
514
515static inline int pi_test_sn(struct pi_desc *pi_desc)
516{
517 return test_bit(POSTED_INTR_SN,
518 (unsigned long *)&pi_desc->control);
519}
520
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400521struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000522 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300523 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300524 u8 fail;
Avi Kivity9d58b932011-03-07 16:52:07 +0200525 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300526 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200527 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200528 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300529 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400530 int nmsrs;
531 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800532 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400533#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300534 u64 msr_host_kernel_gs_base;
535 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400536#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200537 u32 vm_entry_controls_shadow;
538 u32 vm_exit_controls_shadow;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300539 /*
540 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
541 * non-nested (L1) guest, it always points to vmcs01. For a nested
542 * guest (L2), it points to a different VMCS.
543 */
544 struct loaded_vmcs vmcs01;
545 struct loaded_vmcs *loaded_vmcs;
546 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300547 struct msr_autoload {
548 unsigned nr;
549 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
550 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
551 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400552 struct {
553 int loaded;
554 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300555#ifdef CONFIG_X86_64
556 u16 ds_sel, es_sel;
557#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200558 int gs_ldt_reload_needed;
559 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000560 u64 msr_host_bndcfgs;
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700561 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400562 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200563 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300564 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300565 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300566 struct kvm_segment segs[8];
567 } rmode;
568 struct {
569 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300570 struct kvm_save_segment {
571 u16 selector;
572 unsigned long base;
573 u32 limit;
574 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300575 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300576 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800577 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300578 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200579
580 /* Support for vnmi-less CPUs */
581 int soft_vnmi_blocked;
582 ktime_t entry_time;
583 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800584 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800585
Yang Zhang01e439b2013-04-11 19:25:12 +0800586 /* Posted interrupt descriptor */
587 struct pi_desc pi_desc;
588
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300589 /* Support for a guest hypervisor (nested VMX) */
590 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200591
592 /* Dynamic PLE window. */
593 int ple_window;
594 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800595
596 /* Support for PML */
597#define PML_ENTITY_NUM 512
598 struct page *pml_pg;
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);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800866static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200867static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300868static void vmx_set_segment(struct kvm_vcpu *vcpu,
869 struct kvm_segment *var, int seg);
870static void vmx_get_segment(struct kvm_vcpu *vcpu,
871 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200872static bool guest_state_valid(struct kvm_vcpu *vcpu);
873static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300874static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300875static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800876static int alloc_identity_pagetable(struct kvm *kvm);
Avi Kivity75880a02007-06-20 11:20:04 +0300877
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878static DEFINE_PER_CPU(struct vmcs *, vmxarea);
879static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300880/*
881 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
882 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
883 */
884static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300885static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886
Feng Wubf9f6ac2015-09-18 22:29:55 +0800887/*
888 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
889 * can find which vCPU should be waken up.
890 */
891static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
892static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
893
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200894static unsigned long *vmx_io_bitmap_a;
895static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200896static unsigned long *vmx_msr_bitmap_legacy;
897static unsigned long *vmx_msr_bitmap_longmode;
Yang Zhang8d146952013-01-25 10:18:50 +0800898static unsigned long *vmx_msr_bitmap_legacy_x2apic;
899static unsigned long *vmx_msr_bitmap_longmode_x2apic;
Wincy Van3af18d92015-02-03 23:49:31 +0800900static unsigned long *vmx_msr_bitmap_nested;
Abel Gordon4607c2d2013-04-18 14:35:55 +0300901static unsigned long *vmx_vmread_bitmap;
902static unsigned long *vmx_vmwrite_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300903
Avi Kivity110312c2010-12-21 12:54:20 +0200904static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200905static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200906
Sheng Yang2384d2b2008-01-17 15:14:33 +0800907static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
908static DEFINE_SPINLOCK(vmx_vpid_lock);
909
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300910static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 int size;
912 int order;
913 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300914 u32 pin_based_exec_ctrl;
915 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800916 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300917 u32 vmexit_ctrl;
918 u32 vmentry_ctrl;
919} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920
Hannes Ederefff9e52008-11-28 17:02:06 +0100921static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800922 u32 ept;
923 u32 vpid;
924} vmx_capability;
925
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926#define VMX_SEGMENT_FIELD(seg) \
927 [VCPU_SREG_##seg] = { \
928 .selector = GUEST_##seg##_SELECTOR, \
929 .base = GUEST_##seg##_BASE, \
930 .limit = GUEST_##seg##_LIMIT, \
931 .ar_bytes = GUEST_##seg##_AR_BYTES, \
932 }
933
Mathias Krause772e0312012-08-30 01:30:19 +0200934static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800935 unsigned selector;
936 unsigned base;
937 unsigned limit;
938 unsigned ar_bytes;
939} kvm_vmx_segment_fields[] = {
940 VMX_SEGMENT_FIELD(CS),
941 VMX_SEGMENT_FIELD(DS),
942 VMX_SEGMENT_FIELD(ES),
943 VMX_SEGMENT_FIELD(FS),
944 VMX_SEGMENT_FIELD(GS),
945 VMX_SEGMENT_FIELD(SS),
946 VMX_SEGMENT_FIELD(TR),
947 VMX_SEGMENT_FIELD(LDTR),
948};
949
Avi Kivity26bb0982009-09-07 11:14:12 +0300950static u64 host_efer;
951
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300952static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
953
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300954/*
Brian Gerst8c065852010-07-17 09:03:26 -0400955 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300956 * away by decrementing the array size.
957 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800959#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300960 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400962 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963};
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964
Jan Kiszka5bb16012016-02-09 20:14:21 +0100965static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966{
967 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
968 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +0100969 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
970}
971
Jan Kiszka6f054852016-02-09 20:15:18 +0100972static inline bool is_debug(u32 intr_info)
973{
974 return is_exception_n(intr_info, DB_VECTOR);
975}
976
977static inline bool is_breakpoint(u32 intr_info)
978{
979 return is_exception_n(intr_info, BP_VECTOR);
980}
981
Jan Kiszka5bb16012016-02-09 20:14:21 +0100982static inline bool is_page_fault(u32 intr_info)
983{
984 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985}
986
Gui Jianfeng31299942010-03-15 17:29:09 +0800987static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300988{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100989 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300990}
991
Gui Jianfeng31299942010-03-15 17:29:09 +0800992static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500993{
Jan Kiszka5bb16012016-02-09 20:14:21 +0100994 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500995}
996
Gui Jianfeng31299942010-03-15 17:29:09 +0800997static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998{
999 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1000 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1001}
1002
Gui Jianfeng31299942010-03-15 17:29:09 +08001003static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001004{
1005 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1006 INTR_INFO_VALID_MASK)) ==
1007 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1008}
1009
Gui Jianfeng31299942010-03-15 17:29:09 +08001010static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001011{
Sheng Yang04547152009-04-01 15:52:31 +08001012 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001013}
1014
Gui Jianfeng31299942010-03-15 17:29:09 +08001015static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001016{
Sheng Yang04547152009-04-01 15:52:31 +08001017 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001018}
1019
Paolo Bonzini35754c92015-07-29 12:05:37 +02001020static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001021{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001022 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001023}
1024
Gui Jianfeng31299942010-03-15 17:29:09 +08001025static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001026{
Sheng Yang04547152009-04-01 15:52:31 +08001027 return vmcs_config.cpu_based_exec_ctrl &
1028 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001029}
1030
Avi Kivity774ead32007-12-26 13:57:04 +02001031static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001032{
Sheng Yang04547152009-04-01 15:52:31 +08001033 return vmcs_config.cpu_based_2nd_exec_ctrl &
1034 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1035}
1036
Yang Zhang8d146952013-01-25 10:18:50 +08001037static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1038{
1039 return vmcs_config.cpu_based_2nd_exec_ctrl &
1040 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1041}
1042
Yang Zhang83d4c282013-01-25 10:18:49 +08001043static inline bool cpu_has_vmx_apic_register_virt(void)
1044{
1045 return vmcs_config.cpu_based_2nd_exec_ctrl &
1046 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1047}
1048
Yang Zhangc7c9c562013-01-25 10:18:51 +08001049static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1050{
1051 return vmcs_config.cpu_based_2nd_exec_ctrl &
1052 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1053}
1054
Yang Zhang01e439b2013-04-11 19:25:12 +08001055static inline bool cpu_has_vmx_posted_intr(void)
1056{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001057 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1058 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001059}
1060
1061static inline bool cpu_has_vmx_apicv(void)
1062{
1063 return cpu_has_vmx_apic_register_virt() &&
1064 cpu_has_vmx_virtual_intr_delivery() &&
1065 cpu_has_vmx_posted_intr();
1066}
1067
Sheng Yang04547152009-04-01 15:52:31 +08001068static inline bool cpu_has_vmx_flexpriority(void)
1069{
1070 return cpu_has_vmx_tpr_shadow() &&
1071 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001072}
1073
Marcelo Tosattie7997942009-06-11 12:07:40 -03001074static inline bool cpu_has_vmx_ept_execute_only(void)
1075{
Gui Jianfeng31299942010-03-15 17:29:09 +08001076 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001077}
1078
Marcelo Tosattie7997942009-06-11 12:07:40 -03001079static inline bool cpu_has_vmx_ept_2m_page(void)
1080{
Gui Jianfeng31299942010-03-15 17:29:09 +08001081 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001082}
1083
Sheng Yang878403b2010-01-05 19:02:29 +08001084static inline bool cpu_has_vmx_ept_1g_page(void)
1085{
Gui Jianfeng31299942010-03-15 17:29:09 +08001086 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001087}
1088
Sheng Yang4bc9b982010-06-02 14:05:24 +08001089static inline bool cpu_has_vmx_ept_4levels(void)
1090{
1091 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1092}
1093
Xudong Hao83c3a332012-05-28 19:33:35 +08001094static inline bool cpu_has_vmx_ept_ad_bits(void)
1095{
1096 return vmx_capability.ept & VMX_EPT_AD_BIT;
1097}
1098
Gui Jianfeng31299942010-03-15 17:29:09 +08001099static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001100{
Gui Jianfeng31299942010-03-15 17:29:09 +08001101 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001102}
1103
Gui Jianfeng31299942010-03-15 17:29:09 +08001104static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001105{
Gui Jianfeng31299942010-03-15 17:29:09 +08001106 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001107}
1108
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001109static inline bool cpu_has_vmx_invvpid_single(void)
1110{
1111 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1112}
1113
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001114static inline bool cpu_has_vmx_invvpid_global(void)
1115{
1116 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1117}
1118
Gui Jianfeng31299942010-03-15 17:29:09 +08001119static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001120{
Sheng Yang04547152009-04-01 15:52:31 +08001121 return vmcs_config.cpu_based_2nd_exec_ctrl &
1122 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001123}
1124
Gui Jianfeng31299942010-03-15 17:29:09 +08001125static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001126{
1127 return vmcs_config.cpu_based_2nd_exec_ctrl &
1128 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1129}
1130
Gui Jianfeng31299942010-03-15 17:29:09 +08001131static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001132{
1133 return vmcs_config.cpu_based_2nd_exec_ctrl &
1134 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1135}
1136
Paolo Bonzini35754c92015-07-29 12:05:37 +02001137static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001138{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001139 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001140}
1141
Gui Jianfeng31299942010-03-15 17:29:09 +08001142static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001143{
Sheng Yang04547152009-04-01 15:52:31 +08001144 return vmcs_config.cpu_based_2nd_exec_ctrl &
1145 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001146}
1147
Gui Jianfeng31299942010-03-15 17:29:09 +08001148static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001149{
1150 return vmcs_config.cpu_based_2nd_exec_ctrl &
1151 SECONDARY_EXEC_RDTSCP;
1152}
1153
Mao, Junjiead756a12012-07-02 01:18:48 +00001154static inline bool cpu_has_vmx_invpcid(void)
1155{
1156 return vmcs_config.cpu_based_2nd_exec_ctrl &
1157 SECONDARY_EXEC_ENABLE_INVPCID;
1158}
1159
Gui Jianfeng31299942010-03-15 17:29:09 +08001160static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +08001161{
1162 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1163}
1164
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001165static inline bool cpu_has_vmx_wbinvd_exit(void)
1166{
1167 return vmcs_config.cpu_based_2nd_exec_ctrl &
1168 SECONDARY_EXEC_WBINVD_EXITING;
1169}
1170
Abel Gordonabc4fc52013-04-18 14:35:25 +03001171static inline bool cpu_has_vmx_shadow_vmcs(void)
1172{
1173 u64 vmx_msr;
1174 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1175 /* check if the cpu supports writing r/o exit information fields */
1176 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1177 return false;
1178
1179 return vmcs_config.cpu_based_2nd_exec_ctrl &
1180 SECONDARY_EXEC_SHADOW_VMCS;
1181}
1182
Kai Huang843e4332015-01-28 10:54:28 +08001183static inline bool cpu_has_vmx_pml(void)
1184{
1185 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1186}
1187
Haozhong Zhang64903d62015-10-20 15:39:09 +08001188static inline bool cpu_has_vmx_tsc_scaling(void)
1189{
1190 return vmcs_config.cpu_based_2nd_exec_ctrl &
1191 SECONDARY_EXEC_TSC_SCALING;
1192}
1193
Sheng Yang04547152009-04-01 15:52:31 +08001194static inline bool report_flexpriority(void)
1195{
1196 return flexpriority_enabled;
1197}
1198
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001199static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1200{
1201 return vmcs12->cpu_based_vm_exec_control & bit;
1202}
1203
1204static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1205{
1206 return (vmcs12->cpu_based_vm_exec_control &
1207 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1208 (vmcs12->secondary_vm_exec_control & bit);
1209}
1210
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001211static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001212{
1213 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1214}
1215
Jan Kiszkaf4124502014-03-07 20:03:13 +01001216static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1217{
1218 return vmcs12->pin_based_vm_exec_control &
1219 PIN_BASED_VMX_PREEMPTION_TIMER;
1220}
1221
Nadav Har'El155a97a2013-08-05 11:07:16 +03001222static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1223{
1224 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1225}
1226
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001227static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1228{
1229 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) &&
1230 vmx_xsaves_supported();
1231}
1232
Wincy Vanf2b93282015-02-03 23:56:03 +08001233static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1234{
1235 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1236}
1237
Wanpeng Li5c614b32015-10-13 09:18:36 -07001238static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1239{
1240 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1241}
1242
Wincy Van82f0dd42015-02-03 23:57:18 +08001243static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1244{
1245 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1246}
1247
Wincy Van608406e2015-02-03 23:57:51 +08001248static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1249{
1250 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1251}
1252
Wincy Van705699a2015-02-03 23:58:17 +08001253static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1254{
1255 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1256}
1257
Nadav Har'El644d7112011-05-25 23:12:35 +03001258static inline bool is_exception(u32 intr_info)
1259{
1260 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1261 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1262}
1263
Jan Kiszka533558b2014-01-04 18:47:20 +01001264static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1265 u32 exit_intr_info,
1266 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001267static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1268 struct vmcs12 *vmcs12,
1269 u32 reason, unsigned long qualification);
1270
Rusty Russell8b9cf982007-07-30 16:31:43 +10001271static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001272{
1273 int i;
1274
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001275 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001276 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001277 return i;
1278 return -1;
1279}
1280
Sheng Yang2384d2b2008-01-17 15:14:33 +08001281static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1282{
1283 struct {
1284 u64 vpid : 16;
1285 u64 rsvd : 48;
1286 u64 gva;
1287 } operand = { vpid, 0, gva };
1288
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001289 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001290 /* CF==1 or ZF==1 --> rc = -1 */
1291 "; ja 1f ; ud2 ; 1:"
1292 : : "a"(&operand), "c"(ext) : "cc", "memory");
1293}
1294
Sheng Yang14394422008-04-28 12:24:45 +08001295static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1296{
1297 struct {
1298 u64 eptp, gpa;
1299 } operand = {eptp, gpa};
1300
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001301 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001302 /* CF==1 or ZF==1 --> rc = -1 */
1303 "; ja 1f ; ud2 ; 1:\n"
1304 : : "a" (&operand), "c" (ext) : "cc", "memory");
1305}
1306
Avi Kivity26bb0982009-09-07 11:14:12 +03001307static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001308{
1309 int i;
1310
Rusty Russell8b9cf982007-07-30 16:31:43 +10001311 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001312 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001313 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001314 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001315}
1316
Avi Kivity6aa8b732006-12-10 02:21:36 -08001317static void vmcs_clear(struct vmcs *vmcs)
1318{
1319 u64 phys_addr = __pa(vmcs);
1320 u8 error;
1321
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001322 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001323 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001324 : "cc", "memory");
1325 if (error)
1326 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1327 vmcs, phys_addr);
1328}
1329
Nadav Har'Eld462b812011-05-24 15:26:10 +03001330static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1331{
1332 vmcs_clear(loaded_vmcs->vmcs);
1333 loaded_vmcs->cpu = -1;
1334 loaded_vmcs->launched = 0;
1335}
1336
Dongxiao Xu7725b892010-05-11 18:29:38 +08001337static void vmcs_load(struct vmcs *vmcs)
1338{
1339 u64 phys_addr = __pa(vmcs);
1340 u8 error;
1341
1342 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001343 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001344 : "cc", "memory");
1345 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001346 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001347 vmcs, phys_addr);
1348}
1349
Dave Young2965faa2015-09-09 15:38:55 -07001350#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001351/*
1352 * This bitmap is used to indicate whether the vmclear
1353 * operation is enabled on all cpus. All disabled by
1354 * default.
1355 */
1356static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1357
1358static inline void crash_enable_local_vmclear(int cpu)
1359{
1360 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1361}
1362
1363static inline void crash_disable_local_vmclear(int cpu)
1364{
1365 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1366}
1367
1368static inline int crash_local_vmclear_enabled(int cpu)
1369{
1370 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1371}
1372
1373static void crash_vmclear_local_loaded_vmcss(void)
1374{
1375 int cpu = raw_smp_processor_id();
1376 struct loaded_vmcs *v;
1377
1378 if (!crash_local_vmclear_enabled(cpu))
1379 return;
1380
1381 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1382 loaded_vmcss_on_cpu_link)
1383 vmcs_clear(v->vmcs);
1384}
1385#else
1386static inline void crash_enable_local_vmclear(int cpu) { }
1387static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001388#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001389
Nadav Har'Eld462b812011-05-24 15:26:10 +03001390static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001391{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001392 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001393 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394
Nadav Har'Eld462b812011-05-24 15:26:10 +03001395 if (loaded_vmcs->cpu != cpu)
1396 return; /* vcpu migration can race with cpu offline */
1397 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001399 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001400 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001401
1402 /*
1403 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1404 * is before setting loaded_vmcs->vcpu to -1 which is done in
1405 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1406 * then adds the vmcs into percpu list before it is deleted.
1407 */
1408 smp_wmb();
1409
Nadav Har'Eld462b812011-05-24 15:26:10 +03001410 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001411 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412}
1413
Nadav Har'Eld462b812011-05-24 15:26:10 +03001414static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001415{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001416 int cpu = loaded_vmcs->cpu;
1417
1418 if (cpu != -1)
1419 smp_call_function_single(cpu,
1420 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001421}
1422
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001423static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001424{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001425 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001426 return;
1427
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001428 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001429 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001430}
1431
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001432static inline void vpid_sync_vcpu_global(void)
1433{
1434 if (cpu_has_vmx_invvpid_global())
1435 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1436}
1437
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001438static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001439{
1440 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001441 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001442 else
1443 vpid_sync_vcpu_global();
1444}
1445
Sheng Yang14394422008-04-28 12:24:45 +08001446static inline void ept_sync_global(void)
1447{
1448 if (cpu_has_vmx_invept_global())
1449 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1450}
1451
1452static inline void ept_sync_context(u64 eptp)
1453{
Avi Kivity089d0342009-03-23 18:26:32 +02001454 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001455 if (cpu_has_vmx_invept_context())
1456 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1457 else
1458 ept_sync_global();
1459 }
1460}
1461
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001462static __always_inline void vmcs_check16(unsigned long field)
1463{
1464 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1465 "16-bit accessor invalid for 64-bit field");
1466 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1467 "16-bit accessor invalid for 64-bit high field");
1468 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1469 "16-bit accessor invalid for 32-bit high field");
1470 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1471 "16-bit accessor invalid for natural width field");
1472}
1473
1474static __always_inline void vmcs_check32(unsigned long field)
1475{
1476 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1477 "32-bit accessor invalid for 16-bit field");
1478 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1479 "32-bit accessor invalid for natural width field");
1480}
1481
1482static __always_inline void vmcs_check64(unsigned long field)
1483{
1484 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1485 "64-bit accessor invalid for 16-bit field");
1486 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1487 "64-bit accessor invalid for 64-bit high field");
1488 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1489 "64-bit accessor invalid for 32-bit field");
1490 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1491 "64-bit accessor invalid for natural width field");
1492}
1493
1494static __always_inline void vmcs_checkl(unsigned long field)
1495{
1496 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1497 "Natural width accessor invalid for 16-bit field");
1498 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1499 "Natural width accessor invalid for 64-bit field");
1500 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1501 "Natural width accessor invalid for 64-bit high field");
1502 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1503 "Natural width accessor invalid for 32-bit field");
1504}
1505
1506static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507{
Avi Kivity5e520e62011-05-15 10:13:12 -04001508 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509
Avi Kivity5e520e62011-05-15 10:13:12 -04001510 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1511 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512 return value;
1513}
1514
Avi Kivity96304212011-05-15 10:13:13 -04001515static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001516{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001517 vmcs_check16(field);
1518 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001519}
1520
Avi Kivity96304212011-05-15 10:13:13 -04001521static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001523 vmcs_check32(field);
1524 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001525}
1526
Avi Kivity96304212011-05-15 10:13:13 -04001527static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001528{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001529 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001530#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001531 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001532#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001533 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001534#endif
1535}
1536
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001537static __always_inline unsigned long vmcs_readl(unsigned long field)
1538{
1539 vmcs_checkl(field);
1540 return __vmcs_readl(field);
1541}
1542
Avi Kivitye52de1b2007-01-05 16:36:56 -08001543static noinline void vmwrite_error(unsigned long field, unsigned long value)
1544{
1545 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1546 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1547 dump_stack();
1548}
1549
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001550static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001551{
1552 u8 error;
1553
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001554 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001555 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001556 if (unlikely(error))
1557 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558}
1559
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001560static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001562 vmcs_check16(field);
1563 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564}
1565
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001566static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001568 vmcs_check32(field);
1569 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570}
1571
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001572static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001574 vmcs_check64(field);
1575 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001576#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001578 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579#endif
1580}
1581
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001582static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001583{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001584 vmcs_checkl(field);
1585 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001586}
1587
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001588static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001589{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001590 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1591 "vmcs_clear_bits does not support 64-bit fields");
1592 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1593}
1594
1595static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1596{
1597 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1598 "vmcs_set_bits does not support 64-bit fields");
1599 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001600}
1601
Gleb Natapov2961e8762013-11-25 15:37:13 +02001602static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1603{
1604 vmcs_write32(VM_ENTRY_CONTROLS, val);
1605 vmx->vm_entry_controls_shadow = val;
1606}
1607
1608static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1609{
1610 if (vmx->vm_entry_controls_shadow != val)
1611 vm_entry_controls_init(vmx, val);
1612}
1613
1614static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1615{
1616 return vmx->vm_entry_controls_shadow;
1617}
1618
1619
1620static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1621{
1622 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1623}
1624
1625static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1626{
1627 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1628}
1629
1630static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1631{
1632 vmcs_write32(VM_EXIT_CONTROLS, val);
1633 vmx->vm_exit_controls_shadow = val;
1634}
1635
1636static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1637{
1638 if (vmx->vm_exit_controls_shadow != val)
1639 vm_exit_controls_init(vmx, val);
1640}
1641
1642static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1643{
1644 return vmx->vm_exit_controls_shadow;
1645}
1646
1647
1648static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1649{
1650 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1651}
1652
1653static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1654{
1655 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1656}
1657
Avi Kivity2fb92db2011-04-27 19:42:18 +03001658static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1659{
1660 vmx->segment_cache.bitmask = 0;
1661}
1662
1663static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1664 unsigned field)
1665{
1666 bool ret;
1667 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1668
1669 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1670 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1671 vmx->segment_cache.bitmask = 0;
1672 }
1673 ret = vmx->segment_cache.bitmask & mask;
1674 vmx->segment_cache.bitmask |= mask;
1675 return ret;
1676}
1677
1678static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1679{
1680 u16 *p = &vmx->segment_cache.seg[seg].selector;
1681
1682 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1683 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1684 return *p;
1685}
1686
1687static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1688{
1689 ulong *p = &vmx->segment_cache.seg[seg].base;
1690
1691 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1692 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1693 return *p;
1694}
1695
1696static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1697{
1698 u32 *p = &vmx->segment_cache.seg[seg].limit;
1699
1700 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1701 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1702 return *p;
1703}
1704
1705static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1706{
1707 u32 *p = &vmx->segment_cache.seg[seg].ar;
1708
1709 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1710 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1711 return *p;
1712}
1713
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001714static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1715{
1716 u32 eb;
1717
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001718 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Eric Northup54a20552015-11-03 18:03:53 +01001719 (1u << NM_VECTOR) | (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001720 if ((vcpu->guest_debug &
1721 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1722 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1723 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001724 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001725 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001726 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001727 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001728 if (vcpu->fpu_active)
1729 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001730
1731 /* When we are running a nested L2 guest and L1 specified for it a
1732 * certain exception bitmap, we must trap the same exceptions and pass
1733 * them to L1. When running L2, we will only handle the exceptions
1734 * specified above if L1 did not want them.
1735 */
1736 if (is_guest_mode(vcpu))
1737 eb |= get_vmcs12(vcpu)->exception_bitmap;
1738
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001739 vmcs_write32(EXCEPTION_BITMAP, eb);
1740}
1741
Gleb Natapov2961e8762013-11-25 15:37:13 +02001742static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1743 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001744{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001745 vm_entry_controls_clearbit(vmx, entry);
1746 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001747}
1748
Avi Kivity61d2ef22010-04-28 16:40:38 +03001749static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1750{
1751 unsigned i;
1752 struct msr_autoload *m = &vmx->msr_autoload;
1753
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001754 switch (msr) {
1755 case MSR_EFER:
1756 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001757 clear_atomic_switch_msr_special(vmx,
1758 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001759 VM_EXIT_LOAD_IA32_EFER);
1760 return;
1761 }
1762 break;
1763 case MSR_CORE_PERF_GLOBAL_CTRL:
1764 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001765 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001766 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1767 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1768 return;
1769 }
1770 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001771 }
1772
Avi Kivity61d2ef22010-04-28 16:40:38 +03001773 for (i = 0; i < m->nr; ++i)
1774 if (m->guest[i].index == msr)
1775 break;
1776
1777 if (i == m->nr)
1778 return;
1779 --m->nr;
1780 m->guest[i] = m->guest[m->nr];
1781 m->host[i] = m->host[m->nr];
1782 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1783 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1784}
1785
Gleb Natapov2961e8762013-11-25 15:37:13 +02001786static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1787 unsigned long entry, unsigned long exit,
1788 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1789 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001790{
1791 vmcs_write64(guest_val_vmcs, guest_val);
1792 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001793 vm_entry_controls_setbit(vmx, entry);
1794 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001795}
1796
Avi Kivity61d2ef22010-04-28 16:40:38 +03001797static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1798 u64 guest_val, u64 host_val)
1799{
1800 unsigned i;
1801 struct msr_autoload *m = &vmx->msr_autoload;
1802
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001803 switch (msr) {
1804 case MSR_EFER:
1805 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001806 add_atomic_switch_msr_special(vmx,
1807 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001808 VM_EXIT_LOAD_IA32_EFER,
1809 GUEST_IA32_EFER,
1810 HOST_IA32_EFER,
1811 guest_val, host_val);
1812 return;
1813 }
1814 break;
1815 case MSR_CORE_PERF_GLOBAL_CTRL:
1816 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001817 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001818 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1819 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1820 GUEST_IA32_PERF_GLOBAL_CTRL,
1821 HOST_IA32_PERF_GLOBAL_CTRL,
1822 guest_val, host_val);
1823 return;
1824 }
1825 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001826 case MSR_IA32_PEBS_ENABLE:
1827 /* PEBS needs a quiescent period after being disabled (to write
1828 * a record). Disabling PEBS through VMX MSR swapping doesn't
1829 * provide that period, so a CPU could write host's record into
1830 * guest's memory.
1831 */
1832 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001833 }
1834
Avi Kivity61d2ef22010-04-28 16:40:38 +03001835 for (i = 0; i < m->nr; ++i)
1836 if (m->guest[i].index == msr)
1837 break;
1838
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001839 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02001840 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02001841 "Can't add msr %x\n", msr);
1842 return;
1843 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001844 ++m->nr;
1845 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1846 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1847 }
1848
1849 m->guest[i].index = msr;
1850 m->guest[i].value = guest_val;
1851 m->host[i].index = msr;
1852 m->host[i].value = host_val;
1853}
1854
Avi Kivity33ed6322007-05-02 16:54:03 +03001855static void reload_tss(void)
1856{
Avi Kivity33ed6322007-05-02 16:54:03 +03001857 /*
1858 * VT restores TR but not its size. Useless.
1859 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001860 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001861 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001862
Avi Kivityd3591922010-07-26 18:32:39 +03001863 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001864 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1865 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001866}
1867
Avi Kivity92c0d902009-10-29 11:00:16 +02001868static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001869{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001870 u64 guest_efer = vmx->vcpu.arch.efer;
1871 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03001872
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001873 if (!enable_ept) {
1874 /*
1875 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
1876 * host CPUID is more efficient than testing guest CPUID
1877 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
1878 */
1879 if (boot_cpu_has(X86_FEATURE_SMEP))
1880 guest_efer |= EFER_NX;
1881 else if (!(guest_efer & EFER_NX))
1882 ignore_bits |= EFER_NX;
1883 }
Roel Kluin3a34a882009-08-04 02:08:45 -07001884
Avi Kivity51c6cf62007-08-29 03:48:05 +03001885 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001886 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03001887 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001888 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001889#ifdef CONFIG_X86_64
1890 ignore_bits |= EFER_LMA | EFER_LME;
1891 /* SCE is meaningful only in long mode on Intel */
1892 if (guest_efer & EFER_LMA)
1893 ignore_bits &= ~(u64)EFER_SCE;
1894#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03001895
1896 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08001897
1898 /*
1899 * On EPT, we can't emulate NX, so we must switch EFER atomically.
1900 * On CPUs that support "load IA32_EFER", always switch EFER
1901 * atomically, since it's faster than switching it manually.
1902 */
1903 if (cpu_has_load_ia32_efer ||
1904 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03001905 if (!(guest_efer & EFER_LMA))
1906 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08001907 if (guest_efer != host_efer)
1908 add_atomic_switch_msr(vmx, MSR_EFER,
1909 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03001910 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001911 } else {
1912 guest_efer &= ~ignore_bits;
1913 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001914
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01001915 vmx->guest_msrs[efer_offset].data = guest_efer;
1916 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
1917
1918 return true;
1919 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03001920}
1921
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001922static unsigned long segment_base(u16 selector)
1923{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001924 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001925 struct desc_struct *d;
1926 unsigned long table_base;
1927 unsigned long v;
1928
1929 if (!(selector & ~3))
1930 return 0;
1931
Avi Kivityd3591922010-07-26 18:32:39 +03001932 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001933
1934 if (selector & 4) { /* from ldt */
1935 u16 ldt_selector = kvm_read_ldt();
1936
1937 if (!(ldt_selector & ~3))
1938 return 0;
1939
1940 table_base = segment_base(ldt_selector);
1941 }
1942 d = (struct desc_struct *)(table_base + (selector & ~7));
1943 v = get_desc_base(d);
1944#ifdef CONFIG_X86_64
1945 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1946 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1947#endif
1948 return v;
1949}
1950
1951static inline unsigned long kvm_read_tr_base(void)
1952{
1953 u16 tr;
1954 asm("str %0" : "=g"(tr));
1955 return segment_base(tr);
1956}
1957
Avi Kivity04d2cc72007-09-10 18:10:54 +03001958static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001959{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001960 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001961 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001962
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001963 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001964 return;
1965
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001966 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001967 /*
1968 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1969 * allow segment selectors with cpl > 0 or ti == 1.
1970 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001971 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001972 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001973 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001974 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001975 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001976 vmx->host_state.fs_reload_needed = 0;
1977 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001978 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001979 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001980 }
Avi Kivity9581d442010-10-19 16:46:55 +02001981 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001982 if (!(vmx->host_state.gs_sel & 7))
1983 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001984 else {
1985 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001986 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001987 }
1988
1989#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03001990 savesegment(ds, vmx->host_state.ds_sel);
1991 savesegment(es, vmx->host_state.es_sel);
1992#endif
1993
1994#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03001995 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1996 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1997#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001998 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1999 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002000#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002001
2002#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002003 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2004 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002005 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002006#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002007 if (boot_cpu_has(X86_FEATURE_MPX))
2008 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002009 for (i = 0; i < vmx->save_nmsrs; ++i)
2010 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002011 vmx->guest_msrs[i].data,
2012 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002013}
2014
Avi Kivitya9b21b62008-06-24 11:48:49 +03002015static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002016{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002017 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002018 return;
2019
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002020 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002021 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002022#ifdef CONFIG_X86_64
2023 if (is_long_mode(&vmx->vcpu))
2024 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2025#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002026 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002027 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002028#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002029 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002030#else
2031 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002032#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002033 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002034 if (vmx->host_state.fs_reload_needed)
2035 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002036#ifdef CONFIG_X86_64
2037 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2038 loadsegment(ds, vmx->host_state.ds_sel);
2039 loadsegment(es, vmx->host_state.es_sel);
2040 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002041#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002042 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002043#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002044 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002045#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002046 if (vmx->host_state.msr_host_bndcfgs)
2047 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002048 /*
2049 * If the FPU is not active (through the host task or
2050 * the guest vcpu), then restore the cr0.TS bit.
2051 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +02002052 if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded)
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07002053 stts();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002054 load_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03002055}
2056
Avi Kivitya9b21b62008-06-24 11:48:49 +03002057static void vmx_load_host_state(struct vcpu_vmx *vmx)
2058{
2059 preempt_disable();
2060 __vmx_load_host_state(vmx);
2061 preempt_enable();
2062}
2063
Feng Wu28b835d2015-09-18 22:29:54 +08002064static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2065{
2066 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2067 struct pi_desc old, new;
2068 unsigned int dest;
2069
2070 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2071 !irq_remapping_cap(IRQ_POSTING_CAP))
2072 return;
2073
2074 do {
2075 old.control = new.control = pi_desc->control;
2076
2077 /*
2078 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2079 * are two possible cases:
2080 * 1. After running 'pre_block', context switch
2081 * happened. For this case, 'sn' was set in
2082 * vmx_vcpu_put(), so we need to clear it here.
2083 * 2. After running 'pre_block', we were blocked,
2084 * and woken up by some other guy. For this case,
2085 * we don't need to do anything, 'pi_post_block'
2086 * will do everything for us. However, we cannot
2087 * check whether it is case #1 or case #2 here
2088 * (maybe, not needed), so we also clear sn here,
2089 * I think it is not a big deal.
2090 */
2091 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2092 if (vcpu->cpu != cpu) {
2093 dest = cpu_physical_id(cpu);
2094
2095 if (x2apic_enabled())
2096 new.ndst = dest;
2097 else
2098 new.ndst = (dest << 8) & 0xFF00;
2099 }
2100
2101 /* set 'NV' to 'notification vector' */
2102 new.nv = POSTED_INTR_VECTOR;
2103 }
2104
2105 /* Allow posting non-urgent interrupts */
2106 new.sn = 0;
2107 } while (cmpxchg(&pi_desc->control, old.control,
2108 new.control) != old.control);
2109}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110/*
2111 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2112 * vcpu mutex is already taken.
2113 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002114static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002116 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002117 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002119 if (!vmm_exclusive)
2120 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03002121 else if (vmx->loaded_vmcs->cpu != cpu)
2122 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123
Nadav Har'Eld462b812011-05-24 15:26:10 +03002124 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2125 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2126 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002127 }
2128
Nadav Har'Eld462b812011-05-24 15:26:10 +03002129 if (vmx->loaded_vmcs->cpu != cpu) {
Christoph Lameter89cbc762014-08-17 12:30:40 -05002130 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002131 unsigned long sysenter_esp;
2132
Avi Kivitya8eeb042010-05-10 12:34:53 +03002133 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002134 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002135 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002136
2137 /*
2138 * Read loaded_vmcs->cpu should be before fetching
2139 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2140 * See the comments in __loaded_vmcs_clear().
2141 */
2142 smp_rmb();
2143
Nadav Har'Eld462b812011-05-24 15:26:10 +03002144 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2145 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002146 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002147 local_irq_enable();
2148
Avi Kivity6aa8b732006-12-10 02:21:36 -08002149 /*
2150 * Linux uses per-cpu TSS and GDT, so set these when switching
2151 * processors.
2152 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002153 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03002154 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002155
2156 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2157 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002158
Nadav Har'Eld462b812011-05-24 15:26:10 +03002159 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002160 }
Feng Wu28b835d2015-09-18 22:29:54 +08002161
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002162 /* Setup TSC multiplier */
2163 if (kvm_has_tsc_control &&
2164 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) {
2165 vmx->current_tsc_ratio = vcpu->arch.tsc_scaling_ratio;
2166 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2167 }
2168
Feng Wu28b835d2015-09-18 22:29:54 +08002169 vmx_vcpu_pi_load(vcpu, cpu);
2170}
2171
2172static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2173{
2174 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2175
2176 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
2177 !irq_remapping_cap(IRQ_POSTING_CAP))
2178 return;
2179
2180 /* Set SN when the vCPU is preempted */
2181 if (vcpu->preempted)
2182 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183}
2184
2185static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2186{
Feng Wu28b835d2015-09-18 22:29:54 +08002187 vmx_vcpu_pi_put(vcpu);
2188
Avi Kivitya9b21b62008-06-24 11:48:49 +03002189 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002190 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002191 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
2192 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002193 kvm_cpu_vmxoff();
2194 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002195}
2196
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002197static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
2198{
Avi Kivity81231c62010-01-24 16:26:40 +02002199 ulong cr0;
2200
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002201 if (vcpu->fpu_active)
2202 return;
2203 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02002204 cr0 = vmcs_readl(GUEST_CR0);
2205 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
2206 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
2207 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002208 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002209 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002210 if (is_guest_mode(vcpu))
2211 vcpu->arch.cr0_guest_owned_bits &=
2212 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02002213 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002214}
2215
Avi Kivityedcafe32009-12-30 18:07:40 +02002216static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2217
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002218/*
2219 * Return the cr0 value that a nested guest would read. This is a combination
2220 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2221 * its hypervisor (cr0_read_shadow).
2222 */
2223static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2224{
2225 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2226 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2227}
2228static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2229{
2230 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2231 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2232}
2233
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002234static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
2235{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002236 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
2237 * set this *before* calling this function.
2238 */
Avi Kivityedcafe32009-12-30 18:07:40 +02002239 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02002240 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002241 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02002242 vcpu->arch.cr0_guest_owned_bits = 0;
2243 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002244 if (is_guest_mode(vcpu)) {
2245 /*
2246 * L1's specified read shadow might not contain the TS bit,
2247 * so now that we turned on shadowing of this bit, we need to
2248 * set this bit of the shadow. Like in nested_vmx_run we need
2249 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
2250 * up-to-date here because we just decached cr0.TS (and we'll
2251 * only update vmcs12->guest_cr0 on nested exit).
2252 */
2253 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2254 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
2255 (vcpu->arch.cr0 & X86_CR0_TS);
2256 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2257 } else
2258 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002259}
2260
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2262{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002263 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002264
Avi Kivity6de12732011-03-07 12:51:22 +02002265 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2266 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2267 rflags = vmcs_readl(GUEST_RFLAGS);
2268 if (to_vmx(vcpu)->rmode.vm86_active) {
2269 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2270 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2271 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2272 }
2273 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002274 }
Avi Kivity6de12732011-03-07 12:51:22 +02002275 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276}
2277
2278static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2279{
Avi Kivity6de12732011-03-07 12:51:22 +02002280 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2281 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002282 if (to_vmx(vcpu)->rmode.vm86_active) {
2283 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002284 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002285 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002286 vmcs_writel(GUEST_RFLAGS, rflags);
2287}
2288
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002289static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002290{
2291 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2292 int ret = 0;
2293
2294 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002295 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002296 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002297 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002298
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002299 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002300}
2301
2302static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2303{
2304 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2305 u32 interruptibility = interruptibility_old;
2306
2307 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2308
Jan Kiszka48005f62010-02-19 19:38:07 +01002309 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002310 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002311 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002312 interruptibility |= GUEST_INTR_STATE_STI;
2313
2314 if ((interruptibility != interruptibility_old))
2315 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2316}
2317
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2319{
2320 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002322 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002323 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002324 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325
Glauber Costa2809f5d2009-05-12 16:21:05 -04002326 /* skipping an emulated instruction also counts */
2327 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328}
2329
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002330/*
2331 * KVM wants to inject page-faults which it got to the guest. This function
2332 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002333 */
Gleb Natapove011c662013-09-25 12:51:35 +03002334static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002335{
2336 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2337
Gleb Natapove011c662013-09-25 12:51:35 +03002338 if (!(vmcs12->exception_bitmap & (1u << nr)))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002339 return 0;
2340
Jan Kiszka533558b2014-01-04 18:47:20 +01002341 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2342 vmcs_read32(VM_EXIT_INTR_INFO),
2343 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002344 return 1;
2345}
2346
Avi Kivity298101d2007-11-25 13:41:11 +02002347static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02002348 bool has_error_code, u32 error_code,
2349 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02002350{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002351 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002352 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002353
Gleb Natapove011c662013-09-25 12:51:35 +03002354 if (!reinject && is_guest_mode(vcpu) &&
2355 nested_vmx_check_exception(vcpu, nr))
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002356 return;
2357
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002358 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002359 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002360 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2361 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002362
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002363 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002364 int inc_eip = 0;
2365 if (kvm_exception_is_soft(nr))
2366 inc_eip = vcpu->arch.event_exit_inst_len;
2367 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002368 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002369 return;
2370 }
2371
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002372 if (kvm_exception_is_soft(nr)) {
2373 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2374 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002375 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2376 } else
2377 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2378
2379 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002380}
2381
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002382static bool vmx_rdtscp_supported(void)
2383{
2384 return cpu_has_vmx_rdtscp();
2385}
2386
Mao, Junjiead756a12012-07-02 01:18:48 +00002387static bool vmx_invpcid_supported(void)
2388{
2389 return cpu_has_vmx_invpcid() && enable_ept;
2390}
2391
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392/*
Eddie Donga75beee2007-05-17 18:55:15 +03002393 * Swap MSR entry in host/guest MSR entry array.
2394 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002395static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002396{
Avi Kivity26bb0982009-09-07 11:14:12 +03002397 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002398
2399 tmp = vmx->guest_msrs[to];
2400 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2401 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002402}
2403
Yang Zhang8d146952013-01-25 10:18:50 +08002404static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2405{
2406 unsigned long *msr_bitmap;
2407
Wincy Van670125b2015-03-04 14:31:56 +08002408 if (is_guest_mode(vcpu))
2409 msr_bitmap = vmx_msr_bitmap_nested;
Jan Kiszka8a9781f2015-05-04 08:32:32 +02002410 else if (vcpu->arch.apic_base & X2APIC_ENABLE) {
Yang Zhang8d146952013-01-25 10:18:50 +08002411 if (is_long_mode(vcpu))
2412 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2413 else
2414 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2415 } else {
2416 if (is_long_mode(vcpu))
2417 msr_bitmap = vmx_msr_bitmap_longmode;
2418 else
2419 msr_bitmap = vmx_msr_bitmap_legacy;
2420 }
2421
2422 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2423}
2424
Eddie Donga75beee2007-05-17 18:55:15 +03002425/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002426 * Set up the vmcs to automatically save and restore system
2427 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2428 * mode, as fiddling with msrs is very expensive.
2429 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002430static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002431{
Avi Kivity26bb0982009-09-07 11:14:12 +03002432 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002433
Eddie Donga75beee2007-05-17 18:55:15 +03002434 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002435#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002436 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002437 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002438 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002439 move_msr_up(vmx, index, save_nmsrs++);
2440 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002441 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002442 move_msr_up(vmx, index, save_nmsrs++);
2443 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002444 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002445 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002446 index = __find_msr_index(vmx, MSR_TSC_AUX);
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08002447 if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002448 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002449 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002450 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002451 * if efer.sce is enabled.
2452 */
Brian Gerst8c065852010-07-17 09:03:26 -04002453 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002454 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002455 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002456 }
Eddie Donga75beee2007-05-17 18:55:15 +03002457#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002458 index = __find_msr_index(vmx, MSR_EFER);
2459 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002460 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002461
Avi Kivity26bb0982009-09-07 11:14:12 +03002462 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002463
Yang Zhang8d146952013-01-25 10:18:50 +08002464 if (cpu_has_vmx_msr_bitmap())
2465 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002466}
2467
2468/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002469 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002470 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2471 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002473static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474{
2475 u64 host_tsc, tsc_offset;
2476
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002477 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002479 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002480}
2481
2482/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002483 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2484 * counter, even if a nested guest (L2) is currently running.
2485 */
Paolo Bonzini48d89b92014-08-26 13:27:46 +02002486static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002487{
Marcelo Tosatti886b4702012-11-27 23:28:58 -02002488 u64 tsc_offset;
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002489
Nadav Har'Eld5c17852011-08-02 15:54:20 +03002490 tsc_offset = is_guest_mode(vcpu) ?
2491 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2492 vmcs_read64(TSC_OFFSET);
2493 return host_tsc + tsc_offset;
2494}
2495
Will Auldba904632012-11-29 12:42:50 -08002496static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2497{
2498 return vmcs_read64(TSC_OFFSET);
2499}
2500
Joerg Roedel4051b182011-03-25 09:44:49 +01002501/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002502 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002503 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002504static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002506 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002507 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002508 * We're here if L1 chose not to trap WRMSR to TSC. According
2509 * to the spec, this should set L1's TSC; The offset that L1
2510 * set for L2 remains unchanged, and still needs to be added
2511 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002512 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002513 struct vmcs12 *vmcs12;
2514 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2515 /* recalculate vmcs02.TSC_OFFSET: */
2516 vmcs12 = get_vmcs12(vcpu);
2517 vmcs_write64(TSC_OFFSET, offset +
2518 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2519 vmcs12->tsc_offset : 0));
2520 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002521 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2522 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002523 vmcs_write64(TSC_OFFSET, offset);
2524 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002525}
2526
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002527static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment)
Zachary Amsdene48672f2010-08-19 22:07:23 -10002528{
2529 u64 offset = vmcs_read64(TSC_OFFSET);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002530
Zachary Amsdene48672f2010-08-19 22:07:23 -10002531 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03002532 if (is_guest_mode(vcpu)) {
2533 /* Even when running L2, the adjustment needs to apply to L1 */
2534 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002535 } else
2536 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2537 offset + adjustment);
Zachary Amsdene48672f2010-08-19 22:07:23 -10002538}
2539
Nadav Har'El801d3422011-05-25 23:02:23 +03002540static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2541{
2542 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2543 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2544}
2545
2546/*
2547 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2548 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2549 * all guests if the "nested" module option is off, and can also be disabled
2550 * for a single guest by disabling its VMX cpuid bit.
2551 */
2552static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2553{
2554 return nested && guest_cpuid_has_vmx(vcpu);
2555}
2556
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002558 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2559 * returned for the various VMX controls MSRs when nested VMX is enabled.
2560 * The same values should also be used to verify that vmcs12 control fields are
2561 * valid during nested entry from L1 to L2.
2562 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2563 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2564 * bit in the high half is on if the corresponding bit in the control field
2565 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002566 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002567static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002568{
2569 /*
2570 * Note that as a general rule, the high half of the MSRs (bits in
2571 * the control fields which may be 1) should be initialized by the
2572 * intersection of the underlying hardware's MSR (i.e., features which
2573 * can be supported) and the list of features we want to expose -
2574 * because they are known to be properly supported in our code.
2575 * Also, usually, the low half of the MSRs (bits which must be 1) can
2576 * be set to 0, meaning that L1 may turn off any of these bits. The
2577 * reason is that if one of these bits is necessary, it will appear
2578 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2579 * fields of vmcs01 and vmcs02, will turn these bits off - and
2580 * nested_vmx_exit_handled() will not pass related exits to L1.
2581 * These rules have exceptions below.
2582 */
2583
2584 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002585 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002586 vmx->nested.nested_vmx_pinbased_ctls_low,
2587 vmx->nested.nested_vmx_pinbased_ctls_high);
2588 vmx->nested.nested_vmx_pinbased_ctls_low |=
2589 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2590 vmx->nested.nested_vmx_pinbased_ctls_high &=
2591 PIN_BASED_EXT_INTR_MASK |
2592 PIN_BASED_NMI_EXITING |
2593 PIN_BASED_VIRTUAL_NMIS;
2594 vmx->nested.nested_vmx_pinbased_ctls_high |=
2595 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002596 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002597 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002598 vmx->nested.nested_vmx_pinbased_ctls_high |=
2599 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002600
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002601 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002602 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002603 vmx->nested.nested_vmx_exit_ctls_low,
2604 vmx->nested.nested_vmx_exit_ctls_high);
2605 vmx->nested.nested_vmx_exit_ctls_low =
2606 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002607
Wincy Vanb9c237b2015-02-03 23:56:30 +08002608 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002609#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002610 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002611#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002612 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002613 vmx->nested.nested_vmx_exit_ctls_high |=
2614 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002615 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002616 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2617
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002618 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002619 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002620
Jan Kiszka2996fca2014-06-16 13:59:43 +02002621 /* We support free control of debug control saving. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002622 vmx->nested.nested_vmx_true_exit_ctls_low =
2623 vmx->nested.nested_vmx_exit_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002624 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2625
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002626 /* entry controls */
2627 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002628 vmx->nested.nested_vmx_entry_ctls_low,
2629 vmx->nested.nested_vmx_entry_ctls_high);
2630 vmx->nested.nested_vmx_entry_ctls_low =
2631 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2632 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002633#ifdef CONFIG_X86_64
2634 VM_ENTRY_IA32E_MODE |
2635#endif
2636 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002637 vmx->nested.nested_vmx_entry_ctls_high |=
2638 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002639 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002640 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002641
Jan Kiszka2996fca2014-06-16 13:59:43 +02002642 /* We support free control of debug control loading. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002643 vmx->nested.nested_vmx_true_entry_ctls_low =
2644 vmx->nested.nested_vmx_entry_ctls_low &
Jan Kiszka2996fca2014-06-16 13:59:43 +02002645 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2646
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002647 /* cpu-based controls */
2648 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002649 vmx->nested.nested_vmx_procbased_ctls_low,
2650 vmx->nested.nested_vmx_procbased_ctls_high);
2651 vmx->nested.nested_vmx_procbased_ctls_low =
2652 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2653 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002654 CPU_BASED_VIRTUAL_INTR_PENDING |
2655 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002656 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2657 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2658 CPU_BASED_CR3_STORE_EXITING |
2659#ifdef CONFIG_X86_64
2660 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2661#endif
2662 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002663 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2664 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2665 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2666 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002667 /*
2668 * We can allow some features even when not supported by the
2669 * hardware. For example, L1 can specify an MSR bitmap - and we
2670 * can use it to avoid exits to L1 - even when L0 runs L2
2671 * without MSR bitmaps.
2672 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002673 vmx->nested.nested_vmx_procbased_ctls_high |=
2674 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002675 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002676
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002677 /* We support free control of CR3 access interception. */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002678 vmx->nested.nested_vmx_true_procbased_ctls_low =
2679 vmx->nested.nested_vmx_procbased_ctls_low &
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002680 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2681
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002682 /* secondary cpu-based controls */
2683 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002684 vmx->nested.nested_vmx_secondary_ctls_low,
2685 vmx->nested.nested_vmx_secondary_ctls_high);
2686 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2687 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002688 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01002689 SECONDARY_EXEC_RDTSCP |
Wincy Vanf2b93282015-02-03 23:56:03 +08002690 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wanpeng Li5c614b32015-10-13 09:18:36 -07002691 SECONDARY_EXEC_ENABLE_VPID |
Wincy Van82f0dd42015-02-03 23:57:18 +08002692 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002693 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li81dc01f2014-12-04 19:11:07 +08002694 SECONDARY_EXEC_WBINVD_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08002695 SECONDARY_EXEC_XSAVES |
2696 SECONDARY_EXEC_PCOMMIT;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002697
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002698 if (enable_ept) {
2699 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002700 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002701 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002702 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Jan Kiszkad3134db2013-10-23 14:40:31 +01002703 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2704 VMX_EPT_INVEPT_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002705 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002706 /*
Bandan Das4b855072014-04-19 18:17:44 -04002707 * For nested guests, we don't do anything specific
2708 * for single context invalidation. Hence, only advertise
2709 * support for global context invalidation.
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002710 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002711 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002712 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002713 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002714
Paolo Bonzinief697a72016-03-18 16:58:38 +01002715 /*
2716 * Old versions of KVM use the single-context version without
2717 * checking for support, so declare that it is supported even
2718 * though it is treated as global context. The alternative is
2719 * not failing the single-context invvpid, and it is worse.
2720 */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002721 if (enable_vpid)
2722 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Paolo Bonzinief697a72016-03-18 16:58:38 +01002723 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT |
Wanpeng Li089d7b62015-10-13 09:18:37 -07002724 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
2725 else
2726 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002727
Radim Krčmář0790ec12015-03-17 14:02:32 +01002728 if (enable_unrestricted_guest)
2729 vmx->nested.nested_vmx_secondary_ctls_high |=
2730 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2731
Jan Kiszkac18911a2013-03-13 16:06:41 +01002732 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002733 rdmsr(MSR_IA32_VMX_MISC,
2734 vmx->nested.nested_vmx_misc_low,
2735 vmx->nested.nested_vmx_misc_high);
2736 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2737 vmx->nested.nested_vmx_misc_low |=
2738 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002739 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002740 vmx->nested.nested_vmx_misc_high = 0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002741}
2742
2743static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2744{
2745 /*
2746 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2747 */
2748 return ((control & high) | low) == control;
2749}
2750
2751static inline u64 vmx_control_msr(u32 low, u32 high)
2752{
2753 return low | ((u64)high << 32);
2754}
2755
Jan Kiszkacae50132014-01-04 18:47:22 +01002756/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002757static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2758{
Wincy Vanb9c237b2015-02-03 23:56:30 +08002759 struct vcpu_vmx *vmx = to_vmx(vcpu);
2760
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002761 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002762 case MSR_IA32_VMX_BASIC:
2763 /*
2764 * This MSR reports some information about VMX support. We
2765 * should return information about the VMX we emulate for the
2766 * guest, and the VMCS structure we give it - not about the
2767 * VMX support of the underlying hardware.
2768 */
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002769 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002770 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2771 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2772 break;
2773 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2774 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002775 *pdata = vmx_control_msr(
2776 vmx->nested.nested_vmx_pinbased_ctls_low,
2777 vmx->nested.nested_vmx_pinbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002778 break;
2779 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002780 *pdata = vmx_control_msr(
2781 vmx->nested.nested_vmx_true_procbased_ctls_low,
2782 vmx->nested.nested_vmx_procbased_ctls_high);
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002783 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002784 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002785 *pdata = vmx_control_msr(
2786 vmx->nested.nested_vmx_procbased_ctls_low,
2787 vmx->nested.nested_vmx_procbased_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002788 break;
2789 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002790 *pdata = vmx_control_msr(
2791 vmx->nested.nested_vmx_true_exit_ctls_low,
2792 vmx->nested.nested_vmx_exit_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002793 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002794 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002795 *pdata = vmx_control_msr(
2796 vmx->nested.nested_vmx_exit_ctls_low,
2797 vmx->nested.nested_vmx_exit_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002798 break;
2799 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002800 *pdata = vmx_control_msr(
2801 vmx->nested.nested_vmx_true_entry_ctls_low,
2802 vmx->nested.nested_vmx_entry_ctls_high);
Jan Kiszka2996fca2014-06-16 13:59:43 +02002803 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002804 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002805 *pdata = vmx_control_msr(
2806 vmx->nested.nested_vmx_entry_ctls_low,
2807 vmx->nested.nested_vmx_entry_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002808 break;
2809 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002810 *pdata = vmx_control_msr(
2811 vmx->nested.nested_vmx_misc_low,
2812 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 break;
2814 /*
2815 * These MSRs specify bits which the guest must keep fixed (on or off)
2816 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2817 * We picked the standard core2 setting.
2818 */
2819#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2820#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2821 case MSR_IA32_VMX_CR0_FIXED0:
2822 *pdata = VMXON_CR0_ALWAYSON;
2823 break;
2824 case MSR_IA32_VMX_CR0_FIXED1:
2825 *pdata = -1ULL;
2826 break;
2827 case MSR_IA32_VMX_CR4_FIXED0:
2828 *pdata = VMXON_CR4_ALWAYSON;
2829 break;
2830 case MSR_IA32_VMX_CR4_FIXED1:
2831 *pdata = -1ULL;
2832 break;
2833 case MSR_IA32_VMX_VMCS_ENUM:
Jan Kiszka53814172014-06-16 13:59:44 +02002834 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002835 break;
2836 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08002837 *pdata = vmx_control_msr(
2838 vmx->nested.nested_vmx_secondary_ctls_low,
2839 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002840 break;
2841 case MSR_IA32_VMX_EPT_VPID_CAP:
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002842 /* Currently, no nested vpid support */
Wanpeng Li089d7b62015-10-13 09:18:37 -07002843 *pdata = vmx->nested.nested_vmx_ept_caps |
2844 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002845 break;
2846 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002847 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08002848 }
2849
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002850 return 0;
2851}
2852
2853/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854 * Reads an msr value (of 'msr_index') into 'pdata'.
2855 * Returns 0 on success, non-0 otherwise.
2856 * Assumes vcpu_load() was already called.
2857 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002858static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002859{
Avi Kivity26bb0982009-09-07 11:14:12 +03002860 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002861
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002862 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002863#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002865 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 break;
2867 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002868 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002870 case MSR_KERNEL_GS_BASE:
2871 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002872 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002873 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002874#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002875 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002876 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302877 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002878 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879 break;
2880 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002881 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002882 break;
2883 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002884 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 break;
2886 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002887 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002889 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002890 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002891 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002892 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002893 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002894 case MSR_IA32_FEATURE_CONTROL:
2895 if (!nested_vmx_allowed(vcpu))
2896 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002897 msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01002898 break;
2899 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2900 if (!nested_vmx_allowed(vcpu))
2901 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002902 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08002903 case MSR_IA32_XSS:
2904 if (!vmx_xsaves_supported())
2905 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002906 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08002907 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002908 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08002909 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002910 return 1;
2911 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002913 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002914 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002915 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08002916 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002918 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002919 }
2920
Avi Kivity6aa8b732006-12-10 02:21:36 -08002921 return 0;
2922}
2923
Jan Kiszkacae50132014-01-04 18:47:22 +01002924static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2925
Avi Kivity6aa8b732006-12-10 02:21:36 -08002926/*
2927 * Writes msr value into into the appropriate "register".
2928 * Returns 0 on success, non-0 otherwise.
2929 * Assumes vcpu_load() was already called.
2930 */
Will Auld8fe8ab42012-11-29 12:42:12 -08002931static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002933 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002934 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002935 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08002936 u32 msr_index = msr_info->index;
2937 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03002938
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002940 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08002941 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03002942 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002943#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002945 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946 vmcs_writel(GUEST_FS_BASE, data);
2947 break;
2948 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002949 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002950 vmcs_writel(GUEST_GS_BASE, data);
2951 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002952 case MSR_KERNEL_GS_BASE:
2953 vmx_load_host_state(vmx);
2954 vmx->msr_guest_kernel_gs_base = data;
2955 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002956#endif
2957 case MSR_IA32_SYSENTER_CS:
2958 vmcs_write32(GUEST_SYSENTER_CS, data);
2959 break;
2960 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002961 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962 break;
2963 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002964 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002966 case MSR_IA32_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002967 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01002968 return 1;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00002969 vmcs_write64(GUEST_BNDCFGS, data);
2970 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302971 case MSR_IA32_TSC:
Will Auld8fe8ab42012-11-29 12:42:12 -08002972 kvm_write_tsc(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002974 case MSR_IA32_CR_PAT:
2975 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03002976 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
2977 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08002978 vmcs_write64(GUEST_IA32_PAT, data);
2979 vcpu->arch.pat = data;
2980 break;
2981 }
Will Auld8fe8ab42012-11-29 12:42:12 -08002982 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002983 break;
Will Auldba904632012-11-29 12:42:50 -08002984 case MSR_IA32_TSC_ADJUST:
2985 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002986 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01002987 case MSR_IA32_FEATURE_CONTROL:
2988 if (!nested_vmx_allowed(vcpu) ||
2989 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2990 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2991 return 1;
2992 vmx->nested.msr_ia32_feature_control = data;
2993 if (msr_info->host_initiated && data == 0)
2994 vmx_leave_nested(vcpu);
2995 break;
2996 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2997 return 1; /* they are read-only */
Wanpeng Li20300092014-12-02 19:14:59 +08002998 case MSR_IA32_XSS:
2999 if (!vmx_xsaves_supported())
3000 return 1;
3001 /*
3002 * The only supported bit as of Skylake is bit 8, but
3003 * it is not supported on KVM.
3004 */
3005 if (data != 0)
3006 return 1;
3007 vcpu->arch.ia32_xss = data;
3008 if (vcpu->arch.ia32_xss != host_xss)
3009 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3010 vcpu->arch.ia32_xss, host_xss);
3011 else
3012 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3013 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003014 case MSR_TSC_AUX:
Haozhong Zhang81b1b9c2015-12-14 23:13:38 +08003015 if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003016 return 1;
3017 /* Check reserved bit, higher 32 bits should be zero */
3018 if ((data >> 32) != 0)
3019 return 1;
3020 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003021 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003022 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003023 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003024 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003025 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003026 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3027 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003028 ret = kvm_set_shared_msr(msr->index, msr->data,
3029 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003030 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003031 if (ret)
3032 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003033 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003034 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003036 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037 }
3038
Eddie Dong2cc51562007-05-21 07:28:09 +03003039 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003040}
3041
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003042static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003044 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3045 switch (reg) {
3046 case VCPU_REGS_RSP:
3047 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3048 break;
3049 case VCPU_REGS_RIP:
3050 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3051 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003052 case VCPU_EXREG_PDPTR:
3053 if (enable_ept)
3054 ept_save_pdptrs(vcpu);
3055 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003056 default:
3057 break;
3058 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003059}
3060
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061static __init int cpu_has_kvm_support(void)
3062{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003063 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003064}
3065
3066static __init int vmx_disabled_by_bios(void)
3067{
3068 u64 msr;
3069
3070 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003071 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003072 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003073 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3074 && tboot_enabled())
3075 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003076 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003077 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003078 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003079 && !tboot_enabled()) {
3080 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003081 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003082 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003083 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003084 /* launched w/o TXT and VMX disabled */
3085 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3086 && !tboot_enabled())
3087 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003088 }
3089
3090 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003091}
3092
Dongxiao Xu7725b892010-05-11 18:29:38 +08003093static void kvm_cpu_vmxon(u64 addr)
3094{
3095 asm volatile (ASM_VMX_VMXON_RAX
3096 : : "a"(&addr), "m"(addr)
3097 : "memory", "cc");
3098}
3099
Radim Krčmář13a34e02014-08-28 15:13:03 +02003100static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003101{
3102 int cpu = raw_smp_processor_id();
3103 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003104 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003106 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003107 return -EBUSY;
3108
Nadav Har'Eld462b812011-05-24 15:26:10 +03003109 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003110 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3111 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003112
3113 /*
3114 * Now we can enable the vmclear operation in kdump
3115 * since the loaded_vmcss_on_cpu list on this cpu
3116 * has been initialized.
3117 *
3118 * Though the cpu is not in VMX operation now, there
3119 * is no problem to enable the vmclear operation
3120 * for the loaded_vmcss_on_cpu list is empty!
3121 */
3122 crash_enable_local_vmclear(cpu);
3123
Avi Kivity6aa8b732006-12-10 02:21:36 -08003124 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003125
3126 test_bits = FEATURE_CONTROL_LOCKED;
3127 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3128 if (tboot_enabled())
3129 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3130
3131 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003132 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003133 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3134 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003135 cr4_set_bits(X86_CR4_VMXE);
Alexander Graf10474ae2009-09-15 11:37:46 +02003136
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003137 if (vmm_exclusive) {
3138 kvm_cpu_vmxon(phys_addr);
3139 ept_sync_global();
3140 }
Alexander Graf10474ae2009-09-15 11:37:46 +02003141
Christoph Lameter89cbc762014-08-17 12:30:40 -05003142 native_store_gdt(this_cpu_ptr(&host_gdt));
Avi Kivity3444d7d2010-07-26 18:32:38 +03003143
Alexander Graf10474ae2009-09-15 11:37:46 +02003144 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003145}
3146
Nadav Har'Eld462b812011-05-24 15:26:10 +03003147static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003148{
3149 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003150 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003151
Nadav Har'Eld462b812011-05-24 15:26:10 +03003152 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3153 loaded_vmcss_on_cpu_link)
3154 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003155}
3156
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003157
3158/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3159 * tricks.
3160 */
3161static void kvm_cpu_vmxoff(void)
3162{
3163 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003164}
3165
Radim Krčmář13a34e02014-08-28 15:13:03 +02003166static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003168 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03003169 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08003170 kvm_cpu_vmxoff();
3171 }
Andy Lutomirski375074c2014-10-24 15:58:07 -07003172 cr4_clear_bits(X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003173}
3174
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003175static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003176 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003177{
3178 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003179 u32 ctl = ctl_min | ctl_opt;
3180
3181 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3182
3183 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3184 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3185
3186 /* Ensure minimum (required) set of control bits are supported. */
3187 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003188 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003189
3190 *result = ctl;
3191 return 0;
3192}
3193
Avi Kivity110312c2010-12-21 12:54:20 +02003194static __init bool allow_1_setting(u32 msr, u32 ctl)
3195{
3196 u32 vmx_msr_low, vmx_msr_high;
3197
3198 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3199 return vmx_msr_high & ctl;
3200}
3201
Yang, Sheng002c7f72007-07-31 14:23:01 +03003202static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003203{
3204 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003205 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003206 u32 _pin_based_exec_control = 0;
3207 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003208 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003209 u32 _vmexit_control = 0;
3210 u32 _vmentry_control = 0;
3211
Raghavendra K T10166742012-02-07 23:19:20 +05303212 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003213#ifdef CONFIG_X86_64
3214 CPU_BASED_CR8_LOAD_EXITING |
3215 CPU_BASED_CR8_STORE_EXITING |
3216#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003217 CPU_BASED_CR3_LOAD_EXITING |
3218 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003219 CPU_BASED_USE_IO_BITMAPS |
3220 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003221 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08003222 CPU_BASED_MWAIT_EXITING |
3223 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003224 CPU_BASED_INVLPG_EXITING |
3225 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003226
Sheng Yangf78e0e22007-10-29 09:40:42 +08003227 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003228 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003229 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003230 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3231 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003232 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003233#ifdef CONFIG_X86_64
3234 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3235 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3236 ~CPU_BASED_CR8_STORE_EXITING;
3237#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003238 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003239 min2 = 0;
3240 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003241 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003242 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003243 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003244 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003245 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003246 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003247 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003248 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003249 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003250 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003251 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003252 SECONDARY_EXEC_XSAVES |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003253 SECONDARY_EXEC_ENABLE_PML |
Haozhong Zhang64903d62015-10-20 15:39:09 +08003254 SECONDARY_EXEC_PCOMMIT |
3255 SECONDARY_EXEC_TSC_SCALING;
Sheng Yangd56f5462008-04-25 10:13:16 +08003256 if (adjust_vmx_controls(min2, opt2,
3257 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003258 &_cpu_based_2nd_exec_control) < 0)
3259 return -EIO;
3260 }
3261#ifndef CONFIG_X86_64
3262 if (!(_cpu_based_2nd_exec_control &
3263 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3264 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3265#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003266
3267 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3268 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003269 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003270 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3271 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003272
Sheng Yangd56f5462008-04-25 10:13:16 +08003273 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003274 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3275 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003276 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3277 CPU_BASED_CR3_STORE_EXITING |
3278 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003279 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3280 vmx_capability.ept, vmx_capability.vpid);
3281 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003282
Paolo Bonzini81908bf2014-02-21 10:32:27 +01003283 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003284#ifdef CONFIG_X86_64
3285 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3286#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003287 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003288 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003289 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3290 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003291 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003292
Yang Zhang01e439b2013-04-11 19:25:12 +08003293 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
3294 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
3295 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3296 &_pin_based_exec_control) < 0)
3297 return -EIO;
3298
3299 if (!(_cpu_based_2nd_exec_control &
3300 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
3301 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
3302 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3303
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003304 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003305 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003306 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3307 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003308 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003309
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003310 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003311
3312 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3313 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003314 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003315
3316#ifdef CONFIG_X86_64
3317 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3318 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003319 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003320#endif
3321
3322 /* Require Write-Back (WB) memory type for VMCS accesses. */
3323 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003324 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003325
Yang, Sheng002c7f72007-07-31 14:23:01 +03003326 vmcs_conf->size = vmx_msr_high & 0x1fff;
3327 vmcs_conf->order = get_order(vmcs_config.size);
3328 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003329
Yang, Sheng002c7f72007-07-31 14:23:01 +03003330 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3331 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003332 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003333 vmcs_conf->vmexit_ctrl = _vmexit_control;
3334 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003335
Avi Kivity110312c2010-12-21 12:54:20 +02003336 cpu_has_load_ia32_efer =
3337 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3338 VM_ENTRY_LOAD_IA32_EFER)
3339 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3340 VM_EXIT_LOAD_IA32_EFER);
3341
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003342 cpu_has_load_perf_global_ctrl =
3343 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3344 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3345 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3346 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3347
3348 /*
3349 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
3350 * but due to arrata below it can't be used. Workaround is to use
3351 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3352 *
3353 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3354 *
3355 * AAK155 (model 26)
3356 * AAP115 (model 30)
3357 * AAT100 (model 37)
3358 * BC86,AAY89,BD102 (model 44)
3359 * BA97 (model 46)
3360 *
3361 */
3362 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3363 switch (boot_cpu_data.x86_model) {
3364 case 26:
3365 case 30:
3366 case 37:
3367 case 44:
3368 case 46:
3369 cpu_has_load_perf_global_ctrl = false;
3370 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3371 "does not work properly. Using workaround\n");
3372 break;
3373 default:
3374 break;
3375 }
3376 }
3377
Wanpeng Li20300092014-12-02 19:14:59 +08003378 if (cpu_has_xsaves)
3379 rdmsrl(MSR_IA32_XSS, host_xss);
3380
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003381 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003382}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003383
3384static struct vmcs *alloc_vmcs_cpu(int cpu)
3385{
3386 int node = cpu_to_node(cpu);
3387 struct page *pages;
3388 struct vmcs *vmcs;
3389
Vlastimil Babka96db8002015-09-08 15:03:50 -07003390 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003391 if (!pages)
3392 return NULL;
3393 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003394 memset(vmcs, 0, vmcs_config.size);
3395 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003396 return vmcs;
3397}
3398
3399static struct vmcs *alloc_vmcs(void)
3400{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003401 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003402}
3403
3404static void free_vmcs(struct vmcs *vmcs)
3405{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003406 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407}
3408
Nadav Har'Eld462b812011-05-24 15:26:10 +03003409/*
3410 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3411 */
3412static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3413{
3414 if (!loaded_vmcs->vmcs)
3415 return;
3416 loaded_vmcs_clear(loaded_vmcs);
3417 free_vmcs(loaded_vmcs->vmcs);
3418 loaded_vmcs->vmcs = NULL;
3419}
3420
Sam Ravnborg39959582007-06-01 00:47:13 -07003421static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003422{
3423 int cpu;
3424
Zachary Amsden3230bb42009-09-29 11:38:37 -10003425 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003426 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003427 per_cpu(vmxarea, cpu) = NULL;
3428 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429}
3430
Bandan Dasfe2b2012014-04-21 15:20:14 -04003431static void init_vmcs_shadow_fields(void)
3432{
3433 int i, j;
3434
3435 /* No checks for read only fields yet */
3436
3437 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3438 switch (shadow_read_write_fields[i]) {
3439 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003440 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003441 continue;
3442 break;
3443 default:
3444 break;
3445 }
3446
3447 if (j < i)
3448 shadow_read_write_fields[j] =
3449 shadow_read_write_fields[i];
3450 j++;
3451 }
3452 max_shadow_read_write_fields = j;
3453
3454 /* shadowed fields guest access without vmexit */
3455 for (i = 0; i < max_shadow_read_write_fields; i++) {
3456 clear_bit(shadow_read_write_fields[i],
3457 vmx_vmwrite_bitmap);
3458 clear_bit(shadow_read_write_fields[i],
3459 vmx_vmread_bitmap);
3460 }
3461 for (i = 0; i < max_shadow_read_only_fields; i++)
3462 clear_bit(shadow_read_only_fields[i],
3463 vmx_vmread_bitmap);
3464}
3465
Avi Kivity6aa8b732006-12-10 02:21:36 -08003466static __init int alloc_kvm_area(void)
3467{
3468 int cpu;
3469
Zachary Amsden3230bb42009-09-29 11:38:37 -10003470 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003471 struct vmcs *vmcs;
3472
3473 vmcs = alloc_vmcs_cpu(cpu);
3474 if (!vmcs) {
3475 free_kvm_area();
3476 return -ENOMEM;
3477 }
3478
3479 per_cpu(vmxarea, cpu) = vmcs;
3480 }
3481 return 0;
3482}
3483
Gleb Natapov14168782013-01-21 15:36:49 +02003484static bool emulation_required(struct kvm_vcpu *vcpu)
3485{
3486 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3487}
3488
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003489static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003490 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003491{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003492 if (!emulate_invalid_guest_state) {
3493 /*
3494 * CS and SS RPL should be equal during guest entry according
3495 * to VMX spec, but in reality it is not always so. Since vcpu
3496 * is in the middle of the transition from real mode to
3497 * protected mode it is safe to assume that RPL 0 is a good
3498 * default value.
3499 */
3500 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003501 save->selector &= ~SEGMENT_RPL_MASK;
3502 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003503 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003504 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003505 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506}
3507
3508static void enter_pmode(struct kvm_vcpu *vcpu)
3509{
3510 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003511 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512
Gleb Natapovd99e4152012-12-20 16:57:45 +02003513 /*
3514 * Update real mode segment cache. It may be not up-to-date if sement
3515 * register was written while vcpu was in a guest mode.
3516 */
3517 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3518 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3519 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3520 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3521 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3522 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3523
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003524 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525
Avi Kivity2fb92db2011-04-27 19:42:18 +03003526 vmx_segment_cache_clear(vmx);
3527
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003528 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003529
3530 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003531 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3532 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003533 vmcs_writel(GUEST_RFLAGS, flags);
3534
Rusty Russell66aee912007-07-17 23:34:16 +10003535 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3536 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003537
3538 update_exception_bitmap(vcpu);
3539
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003540 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3541 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3542 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3543 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3544 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3545 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003546}
3547
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003548static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003549{
Mathias Krause772e0312012-08-30 01:30:19 +02003550 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003551 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552
Gleb Natapovd99e4152012-12-20 16:57:45 +02003553 var.dpl = 0x3;
3554 if (seg == VCPU_SREG_CS)
3555 var.type = 0x3;
3556
3557 if (!emulate_invalid_guest_state) {
3558 var.selector = var.base >> 4;
3559 var.base = var.base & 0xffff0;
3560 var.limit = 0xffff;
3561 var.g = 0;
3562 var.db = 0;
3563 var.present = 1;
3564 var.s = 1;
3565 var.l = 0;
3566 var.unusable = 0;
3567 var.type = 0x3;
3568 var.avl = 0;
3569 if (save->base & 0xf)
3570 printk_once(KERN_WARNING "kvm: segment base is not "
3571 "paragraph aligned when entering "
3572 "protected mode (seg=%d)", seg);
3573 }
3574
3575 vmcs_write16(sf->selector, var.selector);
3576 vmcs_write32(sf->base, var.base);
3577 vmcs_write32(sf->limit, var.limit);
3578 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003579}
3580
3581static void enter_rmode(struct kvm_vcpu *vcpu)
3582{
3583 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003584 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003585
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003586 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3587 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3588 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3589 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3590 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003591 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3592 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003593
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003594 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003595
Gleb Natapov776e58e2011-03-13 12:34:27 +02003596 /*
3597 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003598 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02003599 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003600 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02003601 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3602 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02003603
Avi Kivity2fb92db2011-04-27 19:42:18 +03003604 vmx_segment_cache_clear(vmx);
3605
Jan Kiszka4918c6c2013-03-15 08:38:56 +01003606 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003607 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003608 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3609
3610 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003611 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003612
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01003613 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003614
3615 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10003616 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003617 update_exception_bitmap(vcpu);
3618
Gleb Natapovd99e4152012-12-20 16:57:45 +02003619 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3620 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3621 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3622 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3623 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3624 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003625
Eddie Dong8668a3c2007-10-10 14:26:45 +08003626 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627}
3628
Amit Shah401d10d2009-02-20 22:53:37 +05303629static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3630{
3631 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003632 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3633
3634 if (!msr)
3635 return;
Amit Shah401d10d2009-02-20 22:53:37 +05303636
Avi Kivity44ea2b12009-09-06 15:55:37 +03003637 /*
3638 * Force kernel_gs_base reloading before EFER changes, as control
3639 * of this msr depends on is_long_mode().
3640 */
3641 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02003642 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05303643 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003644 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303645 msr->data = efer;
3646 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02003647 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05303648
3649 msr->data = efer & ~EFER_LME;
3650 }
3651 setup_msrs(vmx);
3652}
3653
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003654#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003655
3656static void enter_lmode(struct kvm_vcpu *vcpu)
3657{
3658 u32 guest_tr_ar;
3659
Avi Kivity2fb92db2011-04-27 19:42:18 +03003660 vmx_segment_cache_clear(to_vmx(vcpu));
3661
Avi Kivity6aa8b732006-12-10 02:21:36 -08003662 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003663 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02003664 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3665 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003666 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003667 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
3668 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669 }
Avi Kivityda38f432010-07-06 11:30:49 +03003670 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003671}
3672
3673static void exit_lmode(struct kvm_vcpu *vcpu)
3674{
Gleb Natapov2961e8762013-11-25 15:37:13 +02003675 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03003676 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003677}
3678
3679#endif
3680
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003681static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003682{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003683 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003684 if (enable_ept) {
3685 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3686 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08003687 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08003688 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08003689}
3690
Wanpeng Lidd5f5342015-09-23 18:26:57 +08003691static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3692{
3693 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
3694}
3695
Avi Kivitye8467fd2009-12-29 18:43:06 +02003696static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3697{
3698 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3699
3700 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3701 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3702}
3703
Avi Kivityaff48ba2010-12-05 18:56:11 +02003704static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3705{
3706 if (enable_ept && is_paging(vcpu))
3707 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3708 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3709}
3710
Anthony Liguori25c4c272007-04-27 09:29:21 +03003711static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08003712{
Avi Kivityfc78f512009-12-07 12:16:48 +02003713 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3714
3715 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3716 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08003717}
3718
Sheng Yang14394422008-04-28 12:24:45 +08003719static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3720{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003721 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3722
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003723 if (!test_bit(VCPU_EXREG_PDPTR,
3724 (unsigned long *)&vcpu->arch.regs_dirty))
3725 return;
3726
Sheng Yang14394422008-04-28 12:24:45 +08003727 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003728 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3729 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3730 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3731 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08003732 }
3733}
3734
Avi Kivity8f5d5492009-05-31 18:41:29 +03003735static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3736{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003737 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3738
Avi Kivity8f5d5492009-05-31 18:41:29 +03003739 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03003740 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3741 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3742 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3743 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003744 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003745
3746 __set_bit(VCPU_EXREG_PDPTR,
3747 (unsigned long *)&vcpu->arch.regs_avail);
3748 __set_bit(VCPU_EXREG_PDPTR,
3749 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03003750}
3751
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003752static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08003753
3754static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3755 unsigned long cr0,
3756 struct kvm_vcpu *vcpu)
3757{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03003758 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3759 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003760 if (!(cr0 & X86_CR0_PG)) {
3761 /* From paging/starting to nonpaging */
3762 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003763 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08003764 (CPU_BASED_CR3_LOAD_EXITING |
3765 CPU_BASED_CR3_STORE_EXITING));
3766 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003767 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003768 } else if (!is_paging(vcpu)) {
3769 /* From nonpaging to paging */
3770 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08003771 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08003772 ~(CPU_BASED_CR3_LOAD_EXITING |
3773 CPU_BASED_CR3_STORE_EXITING));
3774 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02003775 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08003776 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08003777
3778 if (!(cr0 & X86_CR0_WP))
3779 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08003780}
3781
Avi Kivity6aa8b732006-12-10 02:21:36 -08003782static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3783{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003784 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003785 unsigned long hw_cr0;
3786
Gleb Natapov50378782013-02-04 16:00:28 +02003787 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003788 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02003789 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02003790 else {
Gleb Natapov50378782013-02-04 16:00:28 +02003791 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08003792
Gleb Natapov218e7632013-01-21 15:36:45 +02003793 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3794 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003795
Gleb Natapov218e7632013-01-21 15:36:45 +02003796 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3797 enter_rmode(vcpu);
3798 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003799
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003800#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02003801 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10003802 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10003804 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003805 exit_lmode(vcpu);
3806 }
3807#endif
3808
Avi Kivity089d0342009-03-23 18:26:32 +02003809 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003810 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3811
Avi Kivity02daab22009-12-30 12:40:26 +02003812 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02003813 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02003814
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08003816 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003817 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02003818
3819 /* depends on vcpu->arch.cr0 to be set to a new value */
3820 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821}
3822
Sheng Yang14394422008-04-28 12:24:45 +08003823static u64 construct_eptp(unsigned long root_hpa)
3824{
3825 u64 eptp;
3826
3827 /* TODO write the value reading from MSR */
3828 eptp = VMX_EPT_DEFAULT_MT |
3829 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
Xudong Haob38f9932012-05-28 19:33:36 +08003830 if (enable_ept_ad_bits)
3831 eptp |= VMX_EPT_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08003832 eptp |= (root_hpa & PAGE_MASK);
3833
3834 return eptp;
3835}
3836
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3838{
Sheng Yang14394422008-04-28 12:24:45 +08003839 unsigned long guest_cr3;
3840 u64 eptp;
3841
3842 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003843 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003844 eptp = construct_eptp(cr3);
3845 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02003846 if (is_paging(vcpu) || is_guest_mode(vcpu))
3847 guest_cr3 = kvm_read_cr3(vcpu);
3848 else
3849 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02003850 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003851 }
3852
Sheng Yang2384d2b2008-01-17 15:14:33 +08003853 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003854 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003855}
3856
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003857static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003858{
Ben Serebrin085e68e2015-04-16 11:58:05 -07003859 /*
3860 * Pass through host's Machine Check Enable value to hw_cr4, which
3861 * is in force while we are in guest mode. Do not let guests control
3862 * this bit, even if host CR4.MCE == 0.
3863 */
3864 unsigned long hw_cr4 =
3865 (cr4_read_shadow() & X86_CR4_MCE) |
3866 (cr4 & ~X86_CR4_MCE) |
3867 (to_vmx(vcpu)->rmode.vm86_active ?
3868 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08003869
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003870 if (cr4 & X86_CR4_VMXE) {
3871 /*
3872 * To use VMXON (and later other VMX instructions), a guest
3873 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3874 * So basically the check on whether to allow nested VMX
3875 * is here.
3876 */
3877 if (!nested_vmx_allowed(vcpu))
3878 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01003879 }
3880 if (to_vmx(vcpu)->nested.vmxon &&
3881 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003882 return 1;
3883
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003884 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003885 if (enable_ept) {
3886 if (!is_paging(vcpu)) {
3887 hw_cr4 &= ~X86_CR4_PAE;
3888 hw_cr4 |= X86_CR4_PSE;
3889 } else if (!(cr4 & X86_CR4_PAE)) {
3890 hw_cr4 &= ~X86_CR4_PAE;
3891 }
3892 }
Sheng Yang14394422008-04-28 12:24:45 +08003893
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003894 if (!enable_unrestricted_guest && !is_paging(vcpu))
3895 /*
Huaitong Handdba2622016-03-22 16:51:15 +08003896 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
3897 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
3898 * to be manually disabled when guest switches to non-paging
3899 * mode.
3900 *
3901 * If !enable_unrestricted_guest, the CPU is always running
3902 * with CR0.PG=1 and CR4 needs to be modified.
3903 * If enable_unrestricted_guest, the CPU automatically
3904 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003905 */
Huaitong Handdba2622016-03-22 16:51:15 +08003906 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01003907
Sheng Yang14394422008-04-28 12:24:45 +08003908 vmcs_writel(CR4_READ_SHADOW, cr4);
3909 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003910 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003911}
3912
Avi Kivity6aa8b732006-12-10 02:21:36 -08003913static void vmx_get_segment(struct kvm_vcpu *vcpu,
3914 struct kvm_segment *var, int seg)
3915{
Avi Kivitya9179492011-01-03 14:28:52 +02003916 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917 u32 ar;
3918
Gleb Natapovc6ad11532012-12-12 19:10:51 +02003919 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003920 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02003921 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003922 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003923 return;
Avi Kivity1390a282012-08-21 17:07:08 +03003924 var->base = vmx_read_guest_seg_base(vmx, seg);
3925 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3926 return;
Avi Kivitya9179492011-01-03 14:28:52 +02003927 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003928 var->base = vmx_read_guest_seg_base(vmx, seg);
3929 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3930 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3931 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03003932 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003933 var->type = ar & 15;
3934 var->s = (ar >> 4) & 1;
3935 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03003936 /*
3937 * Some userspaces do not preserve unusable property. Since usable
3938 * segment has to be present according to VMX spec we can use present
3939 * property to amend userspace bug by making unusable segment always
3940 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3941 * segment as unusable.
3942 */
3943 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944 var->avl = (ar >> 12) & 1;
3945 var->l = (ar >> 13) & 1;
3946 var->db = (ar >> 14) & 1;
3947 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003948}
3949
Avi Kivitya9179492011-01-03 14:28:52 +02003950static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3951{
Avi Kivitya9179492011-01-03 14:28:52 +02003952 struct kvm_segment s;
3953
3954 if (to_vmx(vcpu)->rmode.vm86_active) {
3955 vmx_get_segment(vcpu, &s, seg);
3956 return s.base;
3957 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003958 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003959}
3960
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003961static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003962{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02003963 struct vcpu_vmx *vmx = to_vmx(vcpu);
3964
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003965 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003966 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02003967 else {
3968 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07003969 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003970 }
Avi Kivity69c73022011-03-07 15:26:44 +02003971}
3972
Avi Kivity653e3102007-05-07 10:55:37 +03003973static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003974{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975 u32 ar;
3976
Avi Kivityf0495f92012-06-07 17:06:10 +03003977 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003978 ar = 1 << 16;
3979 else {
3980 ar = var->type & 15;
3981 ar |= (var->s & 1) << 4;
3982 ar |= (var->dpl & 3) << 5;
3983 ar |= (var->present & 1) << 7;
3984 ar |= (var->avl & 1) << 12;
3985 ar |= (var->l & 1) << 13;
3986 ar |= (var->db & 1) << 14;
3987 ar |= (var->g & 1) << 15;
3988 }
Avi Kivity653e3102007-05-07 10:55:37 +03003989
3990 return ar;
3991}
3992
3993static void vmx_set_segment(struct kvm_vcpu *vcpu,
3994 struct kvm_segment *var, int seg)
3995{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003996 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02003997 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03003998
Avi Kivity2fb92db2011-04-27 19:42:18 +03003999 vmx_segment_cache_clear(vmx);
4000
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004001 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4002 vmx->rmode.segs[seg] = *var;
4003 if (seg == VCPU_SREG_TR)
4004 vmcs_write16(sf->selector, var->selector);
4005 else if (var->s)
4006 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004007 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004008 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004009
Avi Kivity653e3102007-05-07 10:55:37 +03004010 vmcs_writel(sf->base, var->base);
4011 vmcs_write32(sf->limit, var->limit);
4012 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004013
4014 /*
4015 * Fix the "Accessed" bit in AR field of segment registers for older
4016 * qemu binaries.
4017 * IA32 arch specifies that at the time of processor reset the
4018 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004019 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004020 * state vmexit when "unrestricted guest" mode is turned on.
4021 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4022 * tree. Newer qemu binaries with that qemu fix would not need this
4023 * kvm hack.
4024 */
4025 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004026 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004027
Gleb Natapovf924d662012-12-12 19:10:55 +02004028 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004029
4030out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004031 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032}
4033
Avi Kivity6aa8b732006-12-10 02:21:36 -08004034static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4035{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004036 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004037
4038 *db = (ar >> 14) & 1;
4039 *l = (ar >> 13) & 1;
4040}
4041
Gleb Natapov89a27f42010-02-16 10:51:48 +02004042static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004043{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004044 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4045 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004046}
4047
Gleb Natapov89a27f42010-02-16 10:51:48 +02004048static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004049{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004050 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4051 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052}
4053
Gleb Natapov89a27f42010-02-16 10:51:48 +02004054static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004055{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004056 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4057 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058}
4059
Gleb Natapov89a27f42010-02-16 10:51:48 +02004060static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004062 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4063 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064}
4065
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004066static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4067{
4068 struct kvm_segment var;
4069 u32 ar;
4070
4071 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004072 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004073 if (seg == VCPU_SREG_CS)
4074 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004075 ar = vmx_segment_access_rights(&var);
4076
4077 if (var.base != (var.selector << 4))
4078 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004079 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004080 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004081 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004082 return false;
4083
4084 return true;
4085}
4086
4087static bool code_segment_valid(struct kvm_vcpu *vcpu)
4088{
4089 struct kvm_segment cs;
4090 unsigned int cs_rpl;
4091
4092 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004093 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004094
Avi Kivity1872a3f2009-01-04 23:26:52 +02004095 if (cs.unusable)
4096 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004097 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004098 return false;
4099 if (!cs.s)
4100 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004101 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004102 if (cs.dpl > cs_rpl)
4103 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004104 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004105 if (cs.dpl != cs_rpl)
4106 return false;
4107 }
4108 if (!cs.present)
4109 return false;
4110
4111 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4112 return true;
4113}
4114
4115static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4116{
4117 struct kvm_segment ss;
4118 unsigned int ss_rpl;
4119
4120 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004121 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004122
Avi Kivity1872a3f2009-01-04 23:26:52 +02004123 if (ss.unusable)
4124 return true;
4125 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004126 return false;
4127 if (!ss.s)
4128 return false;
4129 if (ss.dpl != ss_rpl) /* DPL != RPL */
4130 return false;
4131 if (!ss.present)
4132 return false;
4133
4134 return true;
4135}
4136
4137static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4138{
4139 struct kvm_segment var;
4140 unsigned int rpl;
4141
4142 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004143 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004144
Avi Kivity1872a3f2009-01-04 23:26:52 +02004145 if (var.unusable)
4146 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004147 if (!var.s)
4148 return false;
4149 if (!var.present)
4150 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004151 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004152 if (var.dpl < rpl) /* DPL < RPL */
4153 return false;
4154 }
4155
4156 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4157 * rights flags
4158 */
4159 return true;
4160}
4161
4162static bool tr_valid(struct kvm_vcpu *vcpu)
4163{
4164 struct kvm_segment tr;
4165
4166 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4167
Avi Kivity1872a3f2009-01-04 23:26:52 +02004168 if (tr.unusable)
4169 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004170 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004171 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004172 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004173 return false;
4174 if (!tr.present)
4175 return false;
4176
4177 return true;
4178}
4179
4180static bool ldtr_valid(struct kvm_vcpu *vcpu)
4181{
4182 struct kvm_segment ldtr;
4183
4184 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4185
Avi Kivity1872a3f2009-01-04 23:26:52 +02004186 if (ldtr.unusable)
4187 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004188 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004189 return false;
4190 if (ldtr.type != 2)
4191 return false;
4192 if (!ldtr.present)
4193 return false;
4194
4195 return true;
4196}
4197
4198static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4199{
4200 struct kvm_segment cs, ss;
4201
4202 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4203 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4204
Nadav Amitb32a9912015-03-29 16:33:04 +03004205 return ((cs.selector & SEGMENT_RPL_MASK) ==
4206 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004207}
4208
4209/*
4210 * Check if guest state is valid. Returns true if valid, false if
4211 * not.
4212 * We assume that registers are always usable
4213 */
4214static bool guest_state_valid(struct kvm_vcpu *vcpu)
4215{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004216 if (enable_unrestricted_guest)
4217 return true;
4218
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004219 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004220 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004221 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4222 return false;
4223 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4224 return false;
4225 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4226 return false;
4227 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4228 return false;
4229 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4230 return false;
4231 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4232 return false;
4233 } else {
4234 /* protected mode guest state checks */
4235 if (!cs_ss_rpl_check(vcpu))
4236 return false;
4237 if (!code_segment_valid(vcpu))
4238 return false;
4239 if (!stack_segment_valid(vcpu))
4240 return false;
4241 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4242 return false;
4243 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4244 return false;
4245 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4246 return false;
4247 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4248 return false;
4249 if (!tr_valid(vcpu))
4250 return false;
4251 if (!ldtr_valid(vcpu))
4252 return false;
4253 }
4254 /* TODO:
4255 * - Add checks on RIP
4256 * - Add checks on RFLAGS
4257 */
4258
4259 return true;
4260}
4261
Mike Dayd77c26f2007-10-08 09:02:08 -04004262static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004263{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004264 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004265 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004266 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004267
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004268 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004269 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004270 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4271 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004272 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004273 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004274 r = kvm_write_guest_page(kvm, fn++, &data,
4275 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004276 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004277 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004278 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4279 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004280 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004281 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4282 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004283 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004284 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004285 r = kvm_write_guest_page(kvm, fn, &data,
4286 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4287 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004288out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004289 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004290 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291}
4292
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004293static int init_rmode_identity_map(struct kvm *kvm)
4294{
Tang Chenf51770e2014-09-16 18:41:59 +08004295 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004296 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004297 u32 tmp;
4298
Avi Kivity089d0342009-03-23 18:26:32 +02004299 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004300 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004301
4302 /* Protect kvm->arch.ept_identity_pagetable_done. */
4303 mutex_lock(&kvm->slots_lock);
4304
Tang Chenf51770e2014-09-16 18:41:59 +08004305 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004306 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004307
Sheng Yangb927a3c2009-07-21 10:42:48 +08004308 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004309
4310 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004311 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004312 goto out2;
4313
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004314 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004315 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4316 if (r < 0)
4317 goto out;
4318 /* Set up identity-mapping pagetable for EPT in real mode */
4319 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4320 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4321 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4322 r = kvm_write_guest_page(kvm, identity_map_pfn,
4323 &tmp, i * sizeof(tmp), sizeof(tmp));
4324 if (r < 0)
4325 goto out;
4326 }
4327 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004328
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004329out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004330 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004331
4332out2:
4333 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004334 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004335}
4336
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337static void seg_setup(int seg)
4338{
Mathias Krause772e0312012-08-30 01:30:19 +02004339 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004340 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004341
4342 vmcs_write16(sf->selector, 0);
4343 vmcs_writel(sf->base, 0);
4344 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004345 ar = 0x93;
4346 if (seg == VCPU_SREG_CS)
4347 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004348
4349 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004350}
4351
Sheng Yangf78e0e22007-10-29 09:40:42 +08004352static int alloc_apic_access_page(struct kvm *kvm)
4353{
Xiao Guangrong44841412012-09-07 14:14:20 +08004354 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004355 int r = 0;
4356
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004357 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004358 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004359 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004360 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4361 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004362 if (r)
4363 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004364
Tang Chen73a6d942014-09-11 13:38:00 +08004365 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004366 if (is_error_page(page)) {
4367 r = -EFAULT;
4368 goto out;
4369 }
4370
Tang Chenc24ae0d2014-09-24 15:57:58 +08004371 /*
4372 * Do not pin the page in memory, so that memory hot-unplug
4373 * is able to migrate it.
4374 */
4375 put_page(page);
4376 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004377out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004378 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004379 return r;
4380}
4381
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004382static int alloc_identity_pagetable(struct kvm *kvm)
4383{
Tang Chena255d472014-09-16 18:41:58 +08004384 /* Called with kvm->slots_lock held. */
4385
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004386 int r = 0;
4387
Tang Chena255d472014-09-16 18:41:58 +08004388 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4389
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004390 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4391 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004392
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004393 return r;
4394}
4395
Wanpeng Li991e7a02015-09-16 17:30:05 +08004396static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004397{
4398 int vpid;
4399
Avi Kivity919818a2009-03-23 18:01:29 +02004400 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004401 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004402 spin_lock(&vmx_vpid_lock);
4403 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004404 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004405 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004406 else
4407 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004408 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004409 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004410}
4411
Wanpeng Li991e7a02015-09-16 17:30:05 +08004412static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004413{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004414 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004415 return;
4416 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004417 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004418 spin_unlock(&vmx_vpid_lock);
4419}
4420
Yang Zhang8d146952013-01-25 10:18:50 +08004421#define MSR_TYPE_R 1
4422#define MSR_TYPE_W 2
4423static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4424 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004425{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004426 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004427
4428 if (!cpu_has_vmx_msr_bitmap())
4429 return;
4430
4431 /*
4432 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4433 * have the write-low and read-high bitmap offsets the wrong way round.
4434 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4435 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004436 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004437 if (type & MSR_TYPE_R)
4438 /* read-low */
4439 __clear_bit(msr, msr_bitmap + 0x000 / f);
4440
4441 if (type & MSR_TYPE_W)
4442 /* write-low */
4443 __clear_bit(msr, msr_bitmap + 0x800 / f);
4444
Sheng Yang25c5f222008-03-28 13:18:56 +08004445 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4446 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004447 if (type & MSR_TYPE_R)
4448 /* read-high */
4449 __clear_bit(msr, msr_bitmap + 0x400 / f);
4450
4451 if (type & MSR_TYPE_W)
4452 /* write-high */
4453 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4454
4455 }
4456}
4457
4458static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4459 u32 msr, int type)
4460{
4461 int f = sizeof(unsigned long);
4462
4463 if (!cpu_has_vmx_msr_bitmap())
4464 return;
4465
4466 /*
4467 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4468 * have the write-low and read-high bitmap offsets the wrong way round.
4469 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4470 */
4471 if (msr <= 0x1fff) {
4472 if (type & MSR_TYPE_R)
4473 /* read-low */
4474 __set_bit(msr, msr_bitmap + 0x000 / f);
4475
4476 if (type & MSR_TYPE_W)
4477 /* write-low */
4478 __set_bit(msr, msr_bitmap + 0x800 / f);
4479
4480 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4481 msr &= 0x1fff;
4482 if (type & MSR_TYPE_R)
4483 /* read-high */
4484 __set_bit(msr, msr_bitmap + 0x400 / f);
4485
4486 if (type & MSR_TYPE_W)
4487 /* write-high */
4488 __set_bit(msr, msr_bitmap + 0xc00 / f);
4489
Sheng Yang25c5f222008-03-28 13:18:56 +08004490 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004491}
4492
Wincy Vanf2b93282015-02-03 23:56:03 +08004493/*
4494 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4495 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4496 */
4497static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4498 unsigned long *msr_bitmap_nested,
4499 u32 msr, int type)
4500{
4501 int f = sizeof(unsigned long);
4502
4503 if (!cpu_has_vmx_msr_bitmap()) {
4504 WARN_ON(1);
4505 return;
4506 }
4507
4508 /*
4509 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4510 * have the write-low and read-high bitmap offsets the wrong way round.
4511 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4512 */
4513 if (msr <= 0x1fff) {
4514 if (type & MSR_TYPE_R &&
4515 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4516 /* read-low */
4517 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4518
4519 if (type & MSR_TYPE_W &&
4520 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4521 /* write-low */
4522 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4523
4524 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4525 msr &= 0x1fff;
4526 if (type & MSR_TYPE_R &&
4527 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4528 /* read-high */
4529 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4530
4531 if (type & MSR_TYPE_W &&
4532 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4533 /* write-high */
4534 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4535
4536 }
4537}
4538
Avi Kivity58972972009-02-24 22:26:47 +02004539static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4540{
4541 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08004542 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4543 msr, MSR_TYPE_R | MSR_TYPE_W);
4544 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4545 msr, MSR_TYPE_R | MSR_TYPE_W);
4546}
4547
4548static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4549{
4550 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4551 msr, MSR_TYPE_R);
4552 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4553 msr, MSR_TYPE_R);
4554}
4555
4556static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4557{
4558 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4559 msr, MSR_TYPE_R);
4560 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4561 msr, MSR_TYPE_R);
4562}
4563
4564static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4565{
4566 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4567 msr, MSR_TYPE_W);
4568 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4569 msr, MSR_TYPE_W);
Avi Kivity58972972009-02-24 22:26:47 +02004570}
4571
Andrey Smetanind62caab2015-11-10 15:36:33 +03004572static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004573{
Andrey Smetanind62caab2015-11-10 15:36:33 +03004574 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02004575}
4576
Wincy Van705699a2015-02-03 23:58:17 +08004577static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
4578{
4579 struct vcpu_vmx *vmx = to_vmx(vcpu);
4580 int max_irr;
4581 void *vapic_page;
4582 u16 status;
4583
4584 if (vmx->nested.pi_desc &&
4585 vmx->nested.pi_pending) {
4586 vmx->nested.pi_pending = false;
4587 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
4588 return 0;
4589
4590 max_irr = find_last_bit(
4591 (unsigned long *)vmx->nested.pi_desc->pir, 256);
4592
4593 if (max_irr == 256)
4594 return 0;
4595
4596 vapic_page = kmap(vmx->nested.virtual_apic_page);
4597 if (!vapic_page) {
4598 WARN_ON(1);
4599 return -ENOMEM;
4600 }
4601 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
4602 kunmap(vmx->nested.virtual_apic_page);
4603
4604 status = vmcs_read16(GUEST_INTR_STATUS);
4605 if ((u8)max_irr > ((u8)status & 0xff)) {
4606 status &= ~0xff;
4607 status |= (u8)max_irr;
4608 vmcs_write16(GUEST_INTR_STATUS, status);
4609 }
4610 }
4611 return 0;
4612}
4613
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004614static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu)
4615{
4616#ifdef CONFIG_SMP
4617 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08004618 struct vcpu_vmx *vmx = to_vmx(vcpu);
4619
4620 /*
4621 * Currently, we don't support urgent interrupt,
4622 * all interrupts are recognized as non-urgent
4623 * interrupt, so we cannot post interrupts when
4624 * 'SN' is set.
4625 *
4626 * If the vcpu is in guest mode, it means it is
4627 * running instead of being scheduled out and
4628 * waiting in the run queue, and that's the only
4629 * case when 'SN' is set currently, warning if
4630 * 'SN' is set.
4631 */
4632 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
4633
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004634 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4635 POSTED_INTR_VECTOR);
4636 return true;
4637 }
4638#endif
4639 return false;
4640}
4641
Wincy Van705699a2015-02-03 23:58:17 +08004642static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
4643 int vector)
4644{
4645 struct vcpu_vmx *vmx = to_vmx(vcpu);
4646
4647 if (is_guest_mode(vcpu) &&
4648 vector == vmx->nested.posted_intr_nv) {
4649 /* the PIR and ON have been set by L1. */
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004650 kvm_vcpu_trigger_posted_interrupt(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08004651 /*
4652 * If a posted intr is not recognized by hardware,
4653 * we will accomplish it in the next vmentry.
4654 */
4655 vmx->nested.pi_pending = true;
4656 kvm_make_request(KVM_REQ_EVENT, vcpu);
4657 return 0;
4658 }
4659 return -1;
4660}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004661/*
Yang Zhanga20ed542013-04-11 19:25:15 +08004662 * Send interrupt to vcpu via posted interrupt way.
4663 * 1. If target vcpu is running(non-root mode), send posted interrupt
4664 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4665 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4666 * interrupt from PIR in next vmentry.
4667 */
4668static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4669{
4670 struct vcpu_vmx *vmx = to_vmx(vcpu);
4671 int r;
4672
Wincy Van705699a2015-02-03 23:58:17 +08004673 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
4674 if (!r)
4675 return;
4676
Yang Zhanga20ed542013-04-11 19:25:15 +08004677 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4678 return;
4679
4680 r = pi_test_and_set_on(&vmx->pi_desc);
4681 kvm_make_request(KVM_REQ_EVENT, vcpu);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01004682 if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu))
Yang Zhanga20ed542013-04-11 19:25:15 +08004683 kvm_vcpu_kick(vcpu);
4684}
4685
4686static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4687{
4688 struct vcpu_vmx *vmx = to_vmx(vcpu);
4689
4690 if (!pi_test_and_clear_on(&vmx->pi_desc))
4691 return;
4692
4693 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4694}
4695
Avi Kivity6aa8b732006-12-10 02:21:36 -08004696/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004697 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4698 * will not change in the lifetime of the guest.
4699 * Note that host-state that does change is set elsewhere. E.g., host-state
4700 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4701 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004702static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004703{
4704 u32 low32, high32;
4705 unsigned long tmpl;
4706 struct desc_ptr dt;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004707 unsigned long cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004708
Suresh Siddhab1a74bf2012-09-20 11:01:49 -07004709 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004710 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4711
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004712 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07004713 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07004714 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
4715 vmx->host_state.vmcs_host_cr4 = cr4;
4716
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004717 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004718#ifdef CONFIG_X86_64
4719 /*
4720 * Load null selectors, so we can avoid reloading them in
4721 * __vmx_load_host_state(), in case userspace uses the null selectors
4722 * too (the expected case).
4723 */
4724 vmcs_write16(HOST_DS_SELECTOR, 0);
4725 vmcs_write16(HOST_ES_SELECTOR, 0);
4726#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004727 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4728 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03004729#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004730 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4731 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4732
4733 native_store_idt(&dt);
4734 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004735 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004736
Avi Kivity83287ea422012-09-16 15:10:57 +03004737 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004738
4739 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4740 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4741 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4742 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4743
4744 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4745 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4746 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4747 }
4748}
4749
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004750static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4751{
4752 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4753 if (enable_ept)
4754 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004755 if (is_guest_mode(&vmx->vcpu))
4756 vmx->vcpu.arch.cr4_guest_owned_bits &=
4757 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004758 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4759}
4760
Yang Zhang01e439b2013-04-11 19:25:12 +08004761static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4762{
4763 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4764
Andrey Smetanind62caab2015-11-10 15:36:33 +03004765 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08004766 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4767 return pin_based_exec_ctrl;
4768}
4769
Andrey Smetanind62caab2015-11-10 15:36:33 +03004770static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
4771{
4772 struct vcpu_vmx *vmx = to_vmx(vcpu);
4773
4774 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
4775}
4776
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004777static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4778{
4779 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01004780
4781 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4782 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4783
Paolo Bonzini35754c92015-07-29 12:05:37 +02004784 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004785 exec_control &= ~CPU_BASED_TPR_SHADOW;
4786#ifdef CONFIG_X86_64
4787 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4788 CPU_BASED_CR8_LOAD_EXITING;
4789#endif
4790 }
4791 if (!enable_ept)
4792 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4793 CPU_BASED_CR3_LOAD_EXITING |
4794 CPU_BASED_INVLPG_EXITING;
4795 return exec_control;
4796}
4797
4798static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4799{
4800 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004801 if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004802 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4803 if (vmx->vpid == 0)
4804 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4805 if (!enable_ept) {
4806 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4807 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00004808 /* Enable INVPCID for non-ept guests may cause performance regression. */
4809 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004810 }
4811 if (!enable_unrestricted_guest)
4812 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4813 if (!ple_gap)
4814 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Andrey Smetanind62caab2015-11-10 15:36:33 +03004815 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08004816 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4817 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08004818 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03004819 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4820 (handle_vmptrld).
4821 We can NOT enable shadow_vmcs here because we don't have yet
4822 a current VMCS12
4823 */
4824 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08004825
4826 if (!enable_pml)
4827 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08004828
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004829 /* Currently, we allow L1 guest to directly run pcommit instruction. */
4830 exec_control &= ~SECONDARY_EXEC_PCOMMIT;
4831
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004832 return exec_control;
4833}
4834
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004835static void ept_set_mmio_spte_mask(void)
4836{
4837 /*
4838 * EPT Misconfigurations can be generated if the value of bits 2:0
4839 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrong885032b2013-06-07 16:51:23 +08004840 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004841 * spte.
4842 */
Xiao Guangrong885032b2013-06-07 16:51:23 +08004843 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004844}
4845
Wanpeng Lif53cd632014-12-02 19:14:58 +08004846#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03004847/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004848 * Sets up the vmcs for emulated real mode.
4849 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10004850static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004851{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004852#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004853 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02004854#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08004855 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004856
Avi Kivity6aa8b732006-12-10 02:21:36 -08004857 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004858 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4859 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860
Abel Gordon4607c2d2013-04-18 14:35:55 +03004861 if (enable_shadow_vmcs) {
4862 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4863 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4864 }
Sheng Yang25c5f222008-03-28 13:18:56 +08004865 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02004866 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08004867
Avi Kivity6aa8b732006-12-10 02:21:36 -08004868 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4869
Avi Kivity6aa8b732006-12-10 02:21:36 -08004870 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08004871 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004872
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004873 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004874
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004875 if (cpu_has_secondary_exec_ctrls())
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004876 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4877 vmx_secondary_exec_control(vmx));
Sheng Yangf78e0e22007-10-29 09:40:42 +08004878
Andrey Smetanind62caab2015-11-10 15:36:33 +03004879 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08004880 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4881 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4882 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4883 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4884
4885 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08004886
Li RongQing0bcf2612015-12-03 13:29:34 +08004887 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08004888 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08004889 }
4890
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004891 if (ple_gap) {
4892 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02004893 vmx->ple_window = ple_window;
4894 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004895 }
4896
Xiao Guangrongc3707952011-07-12 03:28:04 +08004897 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4898 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004899 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4900
Avi Kivity9581d442010-10-19 16:46:55 +02004901 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4902 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08004903 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004904#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004905 rdmsrl(MSR_FS_BASE, a);
4906 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4907 rdmsrl(MSR_GS_BASE, a);
4908 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4909#else
4910 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4911 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4912#endif
4913
Eddie Dong2cc51562007-05-21 07:28:09 +03004914 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4915 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004916 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03004917 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03004918 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004919
Radim Krčmář74545702015-04-27 15:11:25 +02004920 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
4921 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08004922
Paolo Bonzini03916db2014-07-24 14:21:57 +02004923 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004924 u32 index = vmx_msr_index[i];
4925 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004926 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004927
4928 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4929 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08004930 if (wrmsr_safe(index, data_low, data_high) < 0)
4931 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03004932 vmx->guest_msrs[j].index = i;
4933 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02004934 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004935 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004936 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004937
Gleb Natapov2961e8762013-11-25 15:37:13 +02004938
4939 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004940
4941 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02004942 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004943
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004944 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03004945 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004946
Wanpeng Lif53cd632014-12-02 19:14:58 +08004947 if (vmx_xsaves_supported())
4948 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
4949
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004950 return 0;
4951}
4952
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004953static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004954{
4955 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01004956 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004957 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004958
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004959 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004960
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004961 vmx->soft_vnmi_blocked = 0;
4962
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004963 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004964 kvm_set_cr8(vcpu, 0);
4965
4966 if (!init_event) {
4967 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
4968 MSR_IA32_APICBASE_ENABLE;
4969 if (kvm_vcpu_is_reset_bsp(vcpu))
4970 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4971 apic_base_msr.host_initiated = true;
4972 kvm_set_apic_base(vcpu, &apic_base_msr);
4973 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004974
Avi Kivity2fb92db2011-04-27 19:42:18 +03004975 vmx_segment_cache_clear(vmx);
4976
Avi Kivity5706be02008-08-20 15:07:31 +03004977 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01004978 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01004979 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02004980
4981 seg_setup(VCPU_SREG_DS);
4982 seg_setup(VCPU_SREG_ES);
4983 seg_setup(VCPU_SREG_FS);
4984 seg_setup(VCPU_SREG_GS);
4985 seg_setup(VCPU_SREG_SS);
4986
4987 vmcs_write16(GUEST_TR_SELECTOR, 0);
4988 vmcs_writel(GUEST_TR_BASE, 0);
4989 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4990 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4991
4992 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4993 vmcs_writel(GUEST_LDTR_BASE, 0);
4994 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4995 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4996
Nadav Amitd28bc9d2015-04-13 14:34:08 +03004997 if (!init_event) {
4998 vmcs_write32(GUEST_SYSENTER_CS, 0);
4999 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5000 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5001 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5002 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005003
5004 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005005 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005006
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005007 vmcs_writel(GUEST_GDTR_BASE, 0);
5008 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5009
5010 vmcs_writel(GUEST_IDTR_BASE, 0);
5011 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5012
Anthony Liguori443381a2010-12-06 10:53:38 -06005013 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005014 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005015 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005016
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005017 setup_msrs(vmx);
5018
Avi Kivity6aa8b732006-12-10 02:21:36 -08005019 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5020
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005021 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005022 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005023 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005024 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005025 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005026 vmcs_write32(TPR_THRESHOLD, 0);
5027 }
5028
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005029 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005030
Andrey Smetanind62caab2015-11-10 15:36:33 +03005031 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005032 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5033
Sheng Yang2384d2b2008-01-17 15:14:33 +08005034 if (vmx->vpid != 0)
5035 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5036
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005037 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
5038 vmx_set_cr0(vcpu, cr0); /* enter rmode */
5039 vmx->vcpu.arch.cr0 = cr0;
5040 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005041 vmx_set_efer(vcpu, 0);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005042 vmx_fpu_activate(vcpu);
5043 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005044
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005045 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005046}
5047
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005048/*
5049 * In nested virtualization, check if L1 asked to exit on external interrupts.
5050 * For most existing hypervisors, this will always return true.
5051 */
5052static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5053{
5054 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5055 PIN_BASED_EXT_INTR_MASK;
5056}
5057
Bandan Das77b0f5d2014-04-19 18:17:45 -04005058/*
5059 * In nested virtualization, check if L1 has set
5060 * VM_EXIT_ACK_INTR_ON_EXIT
5061 */
5062static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5063{
5064 return get_vmcs12(vcpu)->vm_exit_controls &
5065 VM_EXIT_ACK_INTR_ON_EXIT;
5066}
5067
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005068static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5069{
5070 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5071 PIN_BASED_NMI_EXITING;
5072}
5073
Jan Kiszkac9a79532014-03-07 20:03:15 +01005074static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005075{
5076 u32 cpu_based_vm_exec_control;
Jan Kiszka730dca42013-04-28 10:50:52 +02005077
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005078 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5079 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
5080 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5081}
5082
Jan Kiszkac9a79532014-03-07 20:03:15 +01005083static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005084{
5085 u32 cpu_based_vm_exec_control;
5086
Jan Kiszkac9a79532014-03-07 20:03:15 +01005087 if (!cpu_has_virtual_nmis() ||
5088 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
5089 enable_irq_window(vcpu);
5090 return;
5091 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005092
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005093 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5094 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
5095 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5096}
5097
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005098static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005099{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005100 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005101 uint32_t intr;
5102 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005103
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005104 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005105
Avi Kivityfa89a812008-09-01 15:57:51 +03005106 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005107 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005108 int inc_eip = 0;
5109 if (vcpu->arch.interrupt.soft)
5110 inc_eip = vcpu->arch.event_exit_inst_len;
5111 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005112 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005113 return;
5114 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005115 intr = irq | INTR_INFO_VALID_MASK;
5116 if (vcpu->arch.interrupt.soft) {
5117 intr |= INTR_TYPE_SOFT_INTR;
5118 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5119 vmx->vcpu.arch.event_exit_inst_len);
5120 } else
5121 intr |= INTR_TYPE_EXT_INTR;
5122 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005123}
5124
Sheng Yangf08864b2008-05-15 18:23:25 +08005125static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5126{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005127 struct vcpu_vmx *vmx = to_vmx(vcpu);
5128
Nadav Har'El0b6ac342011-05-25 23:13:36 +03005129 if (is_guest_mode(vcpu))
5130 return;
5131
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005132 if (!cpu_has_virtual_nmis()) {
5133 /*
5134 * Tracking the NMI-blocked state in software is built upon
5135 * finding the next open IRQ window. This, in turn, depends on
5136 * well-behaving guests: They have to keep IRQs disabled at
5137 * least as long as the NMI handler runs. Otherwise we may
5138 * cause NMI nesting, maybe breaking the guest. But as this is
5139 * highly unlikely, we can live with the residual risk.
5140 */
5141 vmx->soft_vnmi_blocked = 1;
5142 vmx->vnmi_blocked_time = 0;
5143 }
5144
Jan Kiszka487b3912008-09-26 09:30:56 +02005145 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02005146 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005147 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005148 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005149 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005150 return;
5151 }
Sheng Yangf08864b2008-05-15 18:23:25 +08005152 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5153 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005154}
5155
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005156static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5157{
5158 if (!cpu_has_virtual_nmis())
5159 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02005160 if (to_vmx(vcpu)->nmi_known_unmasked)
5161 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03005162 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005163}
5164
5165static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5166{
5167 struct vcpu_vmx *vmx = to_vmx(vcpu);
5168
5169 if (!cpu_has_virtual_nmis()) {
5170 if (vmx->soft_vnmi_blocked != masked) {
5171 vmx->soft_vnmi_blocked = masked;
5172 vmx->vnmi_blocked_time = 0;
5173 }
5174 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02005175 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005176 if (masked)
5177 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5178 GUEST_INTR_STATE_NMI);
5179 else
5180 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5181 GUEST_INTR_STATE_NMI);
5182 }
5183}
5184
Jan Kiszka2505dc92013-04-14 12:12:47 +02005185static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5186{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005187 if (to_vmx(vcpu)->nested.nested_run_pending)
5188 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005189
Jan Kiszka2505dc92013-04-14 12:12:47 +02005190 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
5191 return 0;
5192
5193 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5194 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5195 | GUEST_INTR_STATE_NMI));
5196}
5197
Gleb Natapov78646122009-03-23 12:12:11 +02005198static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5199{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005200 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5201 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005202 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5203 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005204}
5205
Izik Eiduscbc94022007-10-25 00:29:55 +02005206static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5207{
5208 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005209
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005210 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5211 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005212 if (ret)
5213 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005214 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005215 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005216}
5217
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005218static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005219{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005220 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005221 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005222 /*
5223 * Update instruction length as we may reinject the exception
5224 * from user space while in guest debugging mode.
5225 */
5226 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5227 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005228 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005229 return false;
5230 /* fall through */
5231 case DB_VECTOR:
5232 if (vcpu->guest_debug &
5233 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5234 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005235 /* fall through */
5236 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005237 case OF_VECTOR:
5238 case BR_VECTOR:
5239 case UD_VECTOR:
5240 case DF_VECTOR:
5241 case SS_VECTOR:
5242 case GP_VECTOR:
5243 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005244 return true;
5245 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005246 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005247 return false;
5248}
5249
5250static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5251 int vec, u32 err_code)
5252{
5253 /*
5254 * Instruction with address size override prefix opcode 0x67
5255 * Cause the #SS fault with 0 error code in VM86 mode.
5256 */
5257 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5258 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5259 if (vcpu->arch.halt_request) {
5260 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005261 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005262 }
5263 return 1;
5264 }
5265 return 0;
5266 }
5267
5268 /*
5269 * Forward all other exceptions that are valid in real mode.
5270 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5271 * the required debugging infrastructure rework.
5272 */
5273 kvm_queue_exception(vcpu, vec);
5274 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005275}
5276
Andi Kleena0861c02009-06-08 17:37:09 +08005277/*
5278 * Trigger machine check on the host. We assume all the MSRs are already set up
5279 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5280 * We pass a fake environment to the machine check handler because we want
5281 * the guest to be always treated like user space, no matter what context
5282 * it used internally.
5283 */
5284static void kvm_machine_check(void)
5285{
5286#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5287 struct pt_regs regs = {
5288 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5289 .flags = X86_EFLAGS_IF,
5290 };
5291
5292 do_machine_check(&regs, 0);
5293#endif
5294}
5295
Avi Kivity851ba692009-08-24 11:10:17 +03005296static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005297{
5298 /* already handled by vcpu_run */
5299 return 1;
5300}
5301
Avi Kivity851ba692009-08-24 11:10:17 +03005302static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005303{
Avi Kivity1155f762007-11-22 11:30:47 +02005304 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005305 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005306 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005307 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005308 u32 vect_info;
5309 enum emulation_result er;
5310
Avi Kivity1155f762007-11-22 11:30:47 +02005311 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005312 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005313
Andi Kleena0861c02009-06-08 17:37:09 +08005314 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005315 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005316
Jan Kiszkae4a41882008-09-26 09:30:46 +02005317 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02005318 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005319
5320 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03005321 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005322 return 1;
5323 }
5324
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005325 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005326 if (is_guest_mode(vcpu)) {
5327 kvm_queue_exception(vcpu, UD_VECTOR);
5328 return 1;
5329 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005330 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005331 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005332 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005333 return 1;
5334 }
5335
Avi Kivity6aa8b732006-12-10 02:21:36 -08005336 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005337 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005338 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005339
5340 /*
5341 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5342 * MMIO, it is better to report an internal error.
5343 * See the comments in vmx_handle_exit.
5344 */
5345 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5346 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5347 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5348 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005349 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005350 vcpu->run->internal.data[0] = vect_info;
5351 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005352 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005353 return 0;
5354 }
5355
Avi Kivity6aa8b732006-12-10 02:21:36 -08005356 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08005357 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02005358 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005359 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005360 trace_kvm_page_fault(cr2, error_code);
5361
Gleb Natapov3298b752009-05-11 13:35:46 +03005362 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03005363 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01005364 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005365 }
5366
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005367 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005368
5369 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5370 return handle_rmode_exception(vcpu, ex_no, error_code);
5371
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005372 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005373 case AC_VECTOR:
5374 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5375 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005376 case DB_VECTOR:
5377 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5378 if (!(vcpu->guest_debug &
5379 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005380 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005381 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005382 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5383 skip_emulated_instruction(vcpu);
5384
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005385 kvm_queue_exception(vcpu, DB_VECTOR);
5386 return 1;
5387 }
5388 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5389 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5390 /* fall through */
5391 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005392 /*
5393 * Update instruction length as we may reinject #BP from
5394 * user space while in guest debugging mode. Reading it for
5395 * #DB as well causes no harm, it is not used in that case.
5396 */
5397 vmx->vcpu.arch.event_exit_inst_len =
5398 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005399 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005400 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005401 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5402 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005403 break;
5404 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005405 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5406 kvm_run->ex.exception = ex_no;
5407 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005408 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005409 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005410 return 0;
5411}
5412
Avi Kivity851ba692009-08-24 11:10:17 +03005413static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005414{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005415 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005416 return 1;
5417}
5418
Avi Kivity851ba692009-08-24 11:10:17 +03005419static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005420{
Avi Kivity851ba692009-08-24 11:10:17 +03005421 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08005422 return 0;
5423}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005424
Avi Kivity851ba692009-08-24 11:10:17 +03005425static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005426{
He, Qingbfdaab02007-09-12 14:18:28 +08005427 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01005428 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02005429 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005430
He, Qingbfdaab02007-09-12 14:18:28 +08005431 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005432 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005433 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005434
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005435 ++vcpu->stat.io_exits;
5436
5437 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005438 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005439
5440 port = exit_qualification >> 16;
5441 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01005442 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005443
5444 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445}
5446
Ingo Molnar102d8322007-02-19 14:37:47 +02005447static void
5448vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
5449{
5450 /*
5451 * Patch in the VMCALL instruction:
5452 */
5453 hypercall[0] = 0x0f;
5454 hypercall[1] = 0x01;
5455 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02005456}
5457
Wincy Vanb9c237b2015-02-03 23:56:30 +08005458static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005459{
5460 unsigned long always_on = VMXON_CR0_ALWAYSON;
Wincy Vanb9c237b2015-02-03 23:56:30 +08005461 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005462
Wincy Vanb9c237b2015-02-03 23:56:30 +08005463 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
Jan Kiszka92fbc7b2013-08-08 16:26:33 +02005464 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
5465 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
5466 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
5467 return (val & always_on) == always_on;
5468}
5469
Guo Chao0fa06072012-06-28 15:16:19 +08005470/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005471static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
5472{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005473 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005474 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5475 unsigned long orig_val = val;
5476
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005477 /*
5478 * We get here when L2 changed cr0 in a way that did not change
5479 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005480 * but did change L0 shadowed bits. So we first calculate the
5481 * effective cr0 value that L1 would like to write into the
5482 * hardware. It consists of the L2-owned bits from the new
5483 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005484 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005485 val = (val & ~vmcs12->cr0_guest_host_mask) |
5486 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5487
Wincy Vanb9c237b2015-02-03 23:56:30 +08005488 if (!nested_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005489 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005490
5491 if (kvm_set_cr0(vcpu, val))
5492 return 1;
5493 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005494 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005495 } else {
5496 if (to_vmx(vcpu)->nested.vmxon &&
5497 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5498 return 1;
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005499 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005500 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005501}
5502
5503static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5504{
5505 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005506 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5507 unsigned long orig_val = val;
5508
5509 /* analogously to handle_set_cr0 */
5510 val = (val & ~vmcs12->cr4_guest_host_mask) |
5511 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5512 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005513 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01005514 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005515 return 0;
5516 } else
5517 return kvm_set_cr4(vcpu, val);
5518}
5519
5520/* called to set cr0 as approriate for clts instruction exit. */
5521static void handle_clts(struct kvm_vcpu *vcpu)
5522{
5523 if (is_guest_mode(vcpu)) {
5524 /*
5525 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5526 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5527 * just pretend it's off (also in arch.cr0 for fpu_activate).
5528 */
5529 vmcs_writel(CR0_READ_SHADOW,
5530 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5531 vcpu->arch.cr0 &= ~X86_CR0_TS;
5532 } else
5533 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5534}
5535
Avi Kivity851ba692009-08-24 11:10:17 +03005536static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005537{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005538 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005539 int cr;
5540 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03005541 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005542
He, Qingbfdaab02007-09-12 14:18:28 +08005543 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005544 cr = exit_qualification & 15;
5545 reg = (exit_qualification >> 8) & 15;
5546 switch ((exit_qualification >> 4) & 3) {
5547 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03005548 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005549 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005550 switch (cr) {
5551 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005552 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005553 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005554 return 1;
5555 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03005556 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005557 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005558 return 1;
5559 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005560 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005561 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005562 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005563 case 8: {
5564 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03005565 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01005566 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01005567 kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005568 if (lapic_in_kernel(vcpu))
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005569 return 1;
5570 if (cr8_prev <= cr8)
5571 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03005572 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03005573 return 0;
5574 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02005575 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005576 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03005577 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03005578 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02005579 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03005580 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02005581 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03005582 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005583 case 1: /*mov from cr*/
5584 switch (cr) {
5585 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02005586 val = kvm_read_cr3(vcpu);
5587 kvm_register_write(vcpu, reg, val);
5588 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005589 skip_emulated_instruction(vcpu);
5590 return 1;
5591 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005592 val = kvm_get_cr8(vcpu);
5593 kvm_register_write(vcpu, reg, val);
5594 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005595 skip_emulated_instruction(vcpu);
5596 return 1;
5597 }
5598 break;
5599 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02005600 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02005601 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02005602 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005603
5604 skip_emulated_instruction(vcpu);
5605 return 1;
5606 default:
5607 break;
5608 }
Avi Kivity851ba692009-08-24 11:10:17 +03005609 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03005610 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08005611 (int)(exit_qualification >> 4) & 3, cr);
5612 return 0;
5613}
5614
Avi Kivity851ba692009-08-24 11:10:17 +03005615static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005616{
He, Qingbfdaab02007-09-12 14:18:28 +08005617 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005618 int dr, dr7, reg;
5619
5620 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5621 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5622
5623 /* First, if DR does not exist, trigger UD */
5624 if (!kvm_require_dr(vcpu, dr))
5625 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005626
Jan Kiszkaf2483412010-01-20 18:20:20 +01005627 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03005628 if (!kvm_require_cpl(vcpu, 0))
5629 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005630 dr7 = vmcs_readl(GUEST_DR7);
5631 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005632 /*
5633 * As the vm-exit takes precedence over the debug trap, we
5634 * need to emulate the latter, either for the host or the
5635 * guest debugging itself.
5636 */
5637 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03005638 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03005639 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02005640 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005641 vcpu->run->debug.arch.exception = DB_VECTOR;
5642 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005643 return 0;
5644 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02005645 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005646 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005647 kvm_queue_exception(vcpu, DB_VECTOR);
5648 return 1;
5649 }
5650 }
5651
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005652 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01005653 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
5654 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005655
5656 /*
5657 * No more DR vmexits; force a reload of the debug registers
5658 * and reenter on this instruction. The next vmexit will
5659 * retrieve the full state of the debug registers.
5660 */
5661 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5662 return 1;
5663 }
5664
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005665 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5666 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03005667 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005668
5669 if (kvm_get_dr(vcpu, dr, &val))
5670 return 1;
5671 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03005672 } else
Nadav Amit57773922014-06-18 17:19:23 +03005673 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01005674 return 1;
5675
Avi Kivity6aa8b732006-12-10 02:21:36 -08005676 skip_emulated_instruction(vcpu);
5677 return 1;
5678}
5679
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01005680static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5681{
5682 return vcpu->arch.dr6;
5683}
5684
5685static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5686{
5687}
5688
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005689static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5690{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005691 get_debugreg(vcpu->arch.db[0], 0);
5692 get_debugreg(vcpu->arch.db[1], 1);
5693 get_debugreg(vcpu->arch.db[2], 2);
5694 get_debugreg(vcpu->arch.db[3], 3);
5695 get_debugreg(vcpu->arch.dr6, 6);
5696 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5697
5698 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01005699 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01005700}
5701
Gleb Natapov020df072010-04-13 10:05:23 +03005702static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5703{
5704 vmcs_writel(GUEST_DR7, val);
5705}
5706
Avi Kivity851ba692009-08-24 11:10:17 +03005707static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708{
Avi Kivity06465c52007-02-28 20:46:53 +02005709 kvm_emulate_cpuid(vcpu);
5710 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005711}
5712
Avi Kivity851ba692009-08-24 11:10:17 +03005713static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005714{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005715 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005716 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005717
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005718 msr_info.index = ecx;
5719 msr_info.host_initiated = false;
5720 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02005721 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005722 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005723 return 1;
5724 }
5725
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005726 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005727
Avi Kivity6aa8b732006-12-10 02:21:36 -08005728 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005729 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
5730 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005731 skip_emulated_instruction(vcpu);
5732 return 1;
5733}
5734
Avi Kivity851ba692009-08-24 11:10:17 +03005735static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005736{
Will Auld8fe8ab42012-11-29 12:42:12 -08005737 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005738 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5739 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5740 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005741
Will Auld8fe8ab42012-11-29 12:42:12 -08005742 msr.data = data;
5743 msr.index = ecx;
5744 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03005745 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02005746 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02005747 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005748 return 1;
5749 }
5750
Avi Kivity59200272010-01-25 19:47:02 +02005751 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005752 skip_emulated_instruction(vcpu);
5753 return 1;
5754}
5755
Avi Kivity851ba692009-08-24 11:10:17 +03005756static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005757{
Avi Kivity3842d132010-07-27 12:30:24 +03005758 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005759 return 1;
5760}
5761
Avi Kivity851ba692009-08-24 11:10:17 +03005762static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005763{
Eddie Dong85f455f2007-07-06 12:20:49 +03005764 u32 cpu_based_vm_exec_control;
5765
5766 /* clear pending irq */
5767 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5768 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5769 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005770
Avi Kivity3842d132010-07-27 12:30:24 +03005771 kvm_make_request(KVM_REQ_EVENT, vcpu);
5772
Jan Kiszkaa26bf122008-09-26 09:30:45 +02005773 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005774 return 1;
5775}
5776
Avi Kivity851ba692009-08-24 11:10:17 +03005777static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005778{
Avi Kivityd3bef152007-06-05 15:53:05 +03005779 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005780}
5781
Avi Kivity851ba692009-08-24 11:10:17 +03005782static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02005783{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03005784 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02005785}
5786
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005787static int handle_invd(struct kvm_vcpu *vcpu)
5788{
Andre Przywara51d8b662010-12-21 11:12:02 +01005789 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005790}
5791
Avi Kivity851ba692009-08-24 11:10:17 +03005792static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03005793{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005794 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03005795
5796 kvm_mmu_invlpg(vcpu, exit_qualification);
5797 skip_emulated_instruction(vcpu);
5798 return 1;
5799}
5800
Avi Kivityfee84b02011-11-10 14:57:25 +02005801static int handle_rdpmc(struct kvm_vcpu *vcpu)
5802{
5803 int err;
5804
5805 err = kvm_rdpmc(vcpu);
5806 kvm_complete_insn_gp(vcpu, err);
5807
5808 return 1;
5809}
5810
Avi Kivity851ba692009-08-24 11:10:17 +03005811static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02005812{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005813 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02005814 return 1;
5815}
5816
Dexuan Cui2acf9232010-06-10 11:27:12 +08005817static int handle_xsetbv(struct kvm_vcpu *vcpu)
5818{
5819 u64 new_bv = kvm_read_edx_eax(vcpu);
5820 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5821
5822 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5823 skip_emulated_instruction(vcpu);
5824 return 1;
5825}
5826
Wanpeng Lif53cd632014-12-02 19:14:58 +08005827static int handle_xsaves(struct kvm_vcpu *vcpu)
5828{
5829 skip_emulated_instruction(vcpu);
5830 WARN(1, "this should never happen\n");
5831 return 1;
5832}
5833
5834static int handle_xrstors(struct kvm_vcpu *vcpu)
5835{
5836 skip_emulated_instruction(vcpu);
5837 WARN(1, "this should never happen\n");
5838 return 1;
5839}
5840
Avi Kivity851ba692009-08-24 11:10:17 +03005841static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005842{
Kevin Tian58fbbf22011-08-30 13:56:17 +03005843 if (likely(fasteoi)) {
5844 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5845 int access_type, offset;
5846
5847 access_type = exit_qualification & APIC_ACCESS_TYPE;
5848 offset = exit_qualification & APIC_ACCESS_OFFSET;
5849 /*
5850 * Sane guest uses MOV to write EOI, with written value
5851 * not cared. So make a short-circuit here by avoiding
5852 * heavy instruction emulation.
5853 */
5854 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5855 (offset == APIC_EOI)) {
5856 kvm_lapic_set_eoi(vcpu);
5857 skip_emulated_instruction(vcpu);
5858 return 1;
5859 }
5860 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005861 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005862}
5863
Yang Zhangc7c9c562013-01-25 10:18:51 +08005864static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5865{
5866 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5867 int vector = exit_qualification & 0xff;
5868
5869 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5870 kvm_apic_set_eoi_accelerated(vcpu, vector);
5871 return 1;
5872}
5873
Yang Zhang83d4c282013-01-25 10:18:49 +08005874static int handle_apic_write(struct kvm_vcpu *vcpu)
5875{
5876 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5877 u32 offset = exit_qualification & 0xfff;
5878
5879 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5880 kvm_apic_write_nodecode(vcpu, offset);
5881 return 1;
5882}
5883
Avi Kivity851ba692009-08-24 11:10:17 +03005884static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02005885{
Jan Kiszka60637aa2008-09-26 09:30:47 +02005886 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02005887 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02005888 bool has_error_code = false;
5889 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02005890 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005891 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005892
5893 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005894 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005895 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02005896
5897 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5898
5899 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005900 if (reason == TASK_SWITCH_GATE && idt_v) {
5901 switch (type) {
5902 case INTR_TYPE_NMI_INTR:
5903 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02005904 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005905 break;
5906 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005907 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005908 kvm_clear_interrupt_queue(vcpu);
5909 break;
5910 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02005911 if (vmx->idt_vectoring_info &
5912 VECTORING_INFO_DELIVER_CODE_MASK) {
5913 has_error_code = true;
5914 error_code =
5915 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5916 }
5917 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005918 case INTR_TYPE_SOFT_EXCEPTION:
5919 kvm_clear_exception_queue(vcpu);
5920 break;
5921 default:
5922 break;
5923 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02005924 }
Izik Eidus37817f22008-03-24 23:14:53 +02005925 tss_selector = exit_qualification;
5926
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005927 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5928 type != INTR_TYPE_EXT_INTR &&
5929 type != INTR_TYPE_NMI_INTR))
5930 skip_emulated_instruction(vcpu);
5931
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01005932 if (kvm_task_switch(vcpu, tss_selector,
5933 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5934 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03005935 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5936 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5937 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005938 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03005939 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005940
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005941 /*
5942 * TODO: What about debug traps on tss switch?
5943 * Are we supposed to inject them and update dr6?
5944 */
5945
5946 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02005947}
5948
Avi Kivity851ba692009-08-24 11:10:17 +03005949static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08005950{
Sheng Yangf9c617f2009-03-25 10:08:52 +08005951 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08005952 gpa_t gpa;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005953 u32 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08005954 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08005955
Sheng Yangf9c617f2009-03-25 10:08:52 +08005956 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08005957
Sheng Yang14394422008-04-28 12:24:45 +08005958 gla_validity = (exit_qualification >> 7) & 0x3;
5959 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
5960 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
5961 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
5962 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08005963 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08005964 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
5965 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03005966 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5967 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03005968 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08005969 }
5970
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005971 /*
5972 * EPT violation happened while executing iret from NMI,
5973 * "blocked by NMI" bit has to be set before next VM entry.
5974 * There are errata that may cause this bit to not be set:
5975 * AAK134, BY25.
5976 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03005977 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
5978 cpu_has_virtual_nmis() &&
5979 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03005980 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5981
Sheng Yang14394422008-04-28 12:24:45 +08005982 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005983 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005984
5985 /* It is a write fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005986 error_code = exit_qualification & PFERR_WRITE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03005987 /* It is a fetch fault? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005988 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005989 /* ept page table is present? */
Tiejun Chen81ed33e2014-11-18 17:12:56 +08005990 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005991
Yang Zhang25d92082013-08-06 12:00:32 +03005992 vcpu->arch.exit_qualification = exit_qualification;
5993
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08005994 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08005995}
5996
Avi Kivity851ba692009-08-24 11:10:17 +03005997static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005998{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08005999 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006000 gpa_t gpa;
6001
6002 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006003 if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006004 skip_emulated_instruction(vcpu);
Jason Wang931c33b2015-09-15 14:41:58 +08006005 trace_kvm_fast_mmio(gpa);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006006 return 1;
6007 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006008
Paolo Bonzini450869d2015-11-04 13:41:21 +01006009 ret = handle_mmio_page_fault(vcpu, gpa, true);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006010 if (likely(ret == RET_MMIO_PF_EMULATE))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006011 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
6012 EMULATE_DONE;
Xiao Guangrongf8f55942013-06-07 16:51:26 +08006013
6014 if (unlikely(ret == RET_MMIO_PF_INVALID))
6015 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
6016
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08006017 if (unlikely(ret == RET_MMIO_PF_RETRY))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006018 return 1;
6019
6020 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006021 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006022
Avi Kivity851ba692009-08-24 11:10:17 +03006023 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6024 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006025
6026 return 0;
6027}
6028
Avi Kivity851ba692009-08-24 11:10:17 +03006029static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006030{
6031 u32 cpu_based_vm_exec_control;
6032
6033 /* clear pending NMI */
6034 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6035 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6036 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
6037 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006038 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006039
6040 return 1;
6041}
6042
Mohammed Gamal80ced182009-09-01 12:48:18 +02006043static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006044{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006045 struct vcpu_vmx *vmx = to_vmx(vcpu);
6046 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006047 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006048 u32 cpu_exec_ctrl;
6049 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006050 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006051
6052 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6053 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006054
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006055 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006056 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006057 return handle_interrupt_window(&vmx->vcpu);
6058
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006059 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
6060 return 1;
6061
Gleb Natapov991eebf2013-04-11 12:10:51 +03006062 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006063
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006064 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006065 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006066 ret = 0;
6067 goto out;
6068 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006069
Avi Kivityde5f70e2012-06-12 20:22:28 +03006070 if (err != EMULATE_DONE) {
6071 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6072 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6073 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006074 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006075 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006076
Gleb Natapov8d76c492013-05-08 18:38:44 +03006077 if (vcpu->arch.halt_request) {
6078 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006079 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006080 goto out;
6081 }
6082
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006083 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006084 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006085 if (need_resched())
6086 schedule();
6087 }
6088
Mohammed Gamal80ced182009-09-01 12:48:18 +02006089out:
6090 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006091}
6092
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006093static int __grow_ple_window(int val)
6094{
6095 if (ple_window_grow < 1)
6096 return ple_window;
6097
6098 val = min(val, ple_window_actual_max);
6099
6100 if (ple_window_grow < ple_window)
6101 val *= ple_window_grow;
6102 else
6103 val += ple_window_grow;
6104
6105 return val;
6106}
6107
6108static int __shrink_ple_window(int val, int modifier, int minimum)
6109{
6110 if (modifier < 1)
6111 return ple_window;
6112
6113 if (modifier < ple_window)
6114 val /= modifier;
6115 else
6116 val -= modifier;
6117
6118 return max(val, minimum);
6119}
6120
6121static void grow_ple_window(struct kvm_vcpu *vcpu)
6122{
6123 struct vcpu_vmx *vmx = to_vmx(vcpu);
6124 int old = vmx->ple_window;
6125
6126 vmx->ple_window = __grow_ple_window(old);
6127
6128 if (vmx->ple_window != old)
6129 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006130
6131 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006132}
6133
6134static void shrink_ple_window(struct kvm_vcpu *vcpu)
6135{
6136 struct vcpu_vmx *vmx = to_vmx(vcpu);
6137 int old = vmx->ple_window;
6138
6139 vmx->ple_window = __shrink_ple_window(old,
6140 ple_window_shrink, ple_window);
6141
6142 if (vmx->ple_window != old)
6143 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006144
6145 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006146}
6147
6148/*
6149 * ple_window_actual_max is computed to be one grow_ple_window() below
6150 * ple_window_max. (See __grow_ple_window for the reason.)
6151 * This prevents overflows, because ple_window_max is int.
6152 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6153 * this process.
6154 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6155 */
6156static void update_ple_window_actual_max(void)
6157{
6158 ple_window_actual_max =
6159 __shrink_ple_window(max(ple_window_max, ple_window),
6160 ple_window_grow, INT_MIN);
6161}
6162
Feng Wubf9f6ac2015-09-18 22:29:55 +08006163/*
6164 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6165 */
6166static void wakeup_handler(void)
6167{
6168 struct kvm_vcpu *vcpu;
6169 int cpu = smp_processor_id();
6170
6171 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6172 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6173 blocked_vcpu_list) {
6174 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6175
6176 if (pi_test_on(pi_desc) == 1)
6177 kvm_vcpu_kick(vcpu);
6178 }
6179 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6180}
6181
Tiejun Chenf2c76482014-10-28 10:14:47 +08006182static __init int hardware_setup(void)
6183{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006184 int r = -ENOMEM, i, msr;
6185
6186 rdmsrl_safe(MSR_EFER, &host_efer);
6187
6188 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6189 kvm_define_shared_msr(i, vmx_msr_index[i]);
6190
6191 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
6192 if (!vmx_io_bitmap_a)
6193 return r;
6194
6195 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
6196 if (!vmx_io_bitmap_b)
6197 goto out;
6198
6199 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6200 if (!vmx_msr_bitmap_legacy)
6201 goto out1;
6202
6203 vmx_msr_bitmap_legacy_x2apic =
6204 (unsigned long *)__get_free_page(GFP_KERNEL);
6205 if (!vmx_msr_bitmap_legacy_x2apic)
6206 goto out2;
6207
6208 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6209 if (!vmx_msr_bitmap_longmode)
6210 goto out3;
6211
6212 vmx_msr_bitmap_longmode_x2apic =
6213 (unsigned long *)__get_free_page(GFP_KERNEL);
6214 if (!vmx_msr_bitmap_longmode_x2apic)
6215 goto out4;
Wincy Van3af18d92015-02-03 23:49:31 +08006216
6217 if (nested) {
6218 vmx_msr_bitmap_nested =
6219 (unsigned long *)__get_free_page(GFP_KERNEL);
6220 if (!vmx_msr_bitmap_nested)
6221 goto out5;
6222 }
6223
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006224 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6225 if (!vmx_vmread_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006226 goto out6;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006227
6228 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
6229 if (!vmx_vmwrite_bitmap)
Wincy Van3af18d92015-02-03 23:49:31 +08006230 goto out7;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006231
6232 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6233 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6234
6235 /*
6236 * Allow direct access to the PC debug port (it is often used for I/O
6237 * delays, but the vmexits simply slow things down).
6238 */
6239 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6240 clear_bit(0x80, vmx_io_bitmap_a);
6241
6242 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6243
6244 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6245 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Wincy Van3af18d92015-02-03 23:49:31 +08006246 if (nested)
6247 memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006248
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006249 if (setup_vmcs_config(&vmcs_config) < 0) {
6250 r = -EIO;
Wincy Van3af18d92015-02-03 23:49:31 +08006251 goto out8;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006252 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006253
6254 if (boot_cpu_has(X86_FEATURE_NX))
6255 kvm_enable_efer_bits(EFER_NX);
6256
6257 if (!cpu_has_vmx_vpid())
6258 enable_vpid = 0;
6259 if (!cpu_has_vmx_shadow_vmcs())
6260 enable_shadow_vmcs = 0;
6261 if (enable_shadow_vmcs)
6262 init_vmcs_shadow_fields();
6263
6264 if (!cpu_has_vmx_ept() ||
6265 !cpu_has_vmx_ept_4levels()) {
6266 enable_ept = 0;
6267 enable_unrestricted_guest = 0;
6268 enable_ept_ad_bits = 0;
6269 }
6270
6271 if (!cpu_has_vmx_ept_ad_bits())
6272 enable_ept_ad_bits = 0;
6273
6274 if (!cpu_has_vmx_unrestricted_guest())
6275 enable_unrestricted_guest = 0;
6276
Paolo Bonziniad15a292015-01-30 16:18:49 +01006277 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006278 flexpriority_enabled = 0;
6279
Paolo Bonziniad15a292015-01-30 16:18:49 +01006280 /*
6281 * set_apic_access_page_addr() is used to reload apic access
6282 * page upon invalidation. No need to do anything if not
6283 * using the APIC_ACCESS_ADDR VMCS field.
6284 */
6285 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006286 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006287
6288 if (!cpu_has_vmx_tpr_shadow())
6289 kvm_x86_ops->update_cr8_intercept = NULL;
6290
6291 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6292 kvm_disable_largepages();
6293
6294 if (!cpu_has_vmx_ple())
6295 ple_gap = 0;
6296
6297 if (!cpu_has_vmx_apicv())
6298 enable_apicv = 0;
6299
Haozhong Zhang64903d62015-10-20 15:39:09 +08006300 if (cpu_has_vmx_tsc_scaling()) {
6301 kvm_has_tsc_control = true;
6302 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6303 kvm_tsc_scaling_ratio_frac_bits = 48;
6304 }
6305
Tiejun Chenbaa03522014-12-23 16:21:11 +08006306 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6307 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6308 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6309 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6310 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6311 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
6312 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
6313
6314 memcpy(vmx_msr_bitmap_legacy_x2apic,
6315 vmx_msr_bitmap_legacy, PAGE_SIZE);
6316 memcpy(vmx_msr_bitmap_longmode_x2apic,
6317 vmx_msr_bitmap_longmode, PAGE_SIZE);
6318
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006319 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6320
Tiejun Chenbaa03522014-12-23 16:21:11 +08006321 if (enable_apicv) {
6322 for (msr = 0x800; msr <= 0x8ff; msr++)
6323 vmx_disable_intercept_msr_read_x2apic(msr);
6324
6325 /* According SDM, in x2apic mode, the whole id reg is used.
6326 * But in KVM, it only use the highest eight bits. Need to
6327 * intercept it */
6328 vmx_enable_intercept_msr_read_x2apic(0x802);
6329 /* TMCCT */
6330 vmx_enable_intercept_msr_read_x2apic(0x839);
6331 /* TPR */
6332 vmx_disable_intercept_msr_write_x2apic(0x808);
6333 /* EOI */
6334 vmx_disable_intercept_msr_write_x2apic(0x80b);
6335 /* SELF-IPI */
6336 vmx_disable_intercept_msr_write_x2apic(0x83f);
6337 }
6338
6339 if (enable_ept) {
6340 kvm_mmu_set_mask_ptes(0ull,
6341 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
6342 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
6343 0ull, VMX_EPT_EXECUTABLE_MASK);
6344 ept_set_mmio_spte_mask();
6345 kvm_enable_tdp();
6346 } else
6347 kvm_disable_tdp();
6348
6349 update_ple_window_actual_max();
6350
Kai Huang843e4332015-01-28 10:54:28 +08006351 /*
6352 * Only enable PML when hardware supports PML feature, and both EPT
6353 * and EPT A/D bit features are enabled -- PML depends on them to work.
6354 */
6355 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6356 enable_pml = 0;
6357
6358 if (!enable_pml) {
6359 kvm_x86_ops->slot_enable_log_dirty = NULL;
6360 kvm_x86_ops->slot_disable_log_dirty = NULL;
6361 kvm_x86_ops->flush_log_dirty = NULL;
6362 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6363 }
6364
Feng Wubf9f6ac2015-09-18 22:29:55 +08006365 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6366
Tiejun Chenf2c76482014-10-28 10:14:47 +08006367 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006368
Wincy Van3af18d92015-02-03 23:49:31 +08006369out8:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006370 free_page((unsigned long)vmx_vmwrite_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006371out7:
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006372 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006373out6:
6374 if (nested)
6375 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006376out5:
6377 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6378out4:
6379 free_page((unsigned long)vmx_msr_bitmap_longmode);
6380out3:
6381 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6382out2:
6383 free_page((unsigned long)vmx_msr_bitmap_legacy);
6384out1:
6385 free_page((unsigned long)vmx_io_bitmap_b);
6386out:
6387 free_page((unsigned long)vmx_io_bitmap_a);
6388
6389 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006390}
6391
6392static __exit void hardware_unsetup(void)
6393{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006394 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
6395 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
6396 free_page((unsigned long)vmx_msr_bitmap_legacy);
6397 free_page((unsigned long)vmx_msr_bitmap_longmode);
6398 free_page((unsigned long)vmx_io_bitmap_b);
6399 free_page((unsigned long)vmx_io_bitmap_a);
6400 free_page((unsigned long)vmx_vmwrite_bitmap);
6401 free_page((unsigned long)vmx_vmread_bitmap);
Wincy Van3af18d92015-02-03 23:49:31 +08006402 if (nested)
6403 free_page((unsigned long)vmx_msr_bitmap_nested);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006404
Tiejun Chenf2c76482014-10-28 10:14:47 +08006405 free_kvm_area();
6406}
6407
Avi Kivity6aa8b732006-12-10 02:21:36 -08006408/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006409 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6410 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6411 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006412static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006413{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006414 if (ple_gap)
6415 grow_ple_window(vcpu);
6416
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006417 skip_emulated_instruction(vcpu);
6418 kvm_vcpu_on_spin(vcpu);
6419
6420 return 1;
6421}
6422
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006423static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006424{
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006425 skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006426 return 1;
6427}
6428
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006429static int handle_mwait(struct kvm_vcpu *vcpu)
6430{
6431 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6432 return handle_nop(vcpu);
6433}
6434
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006435static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6436{
6437 return 1;
6438}
6439
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006440static int handle_monitor(struct kvm_vcpu *vcpu)
6441{
6442 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6443 return handle_nop(vcpu);
6444}
6445
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006446/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006447 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6448 * We could reuse a single VMCS for all the L2 guests, but we also want the
6449 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6450 * allows keeping them loaded on the processor, and in the future will allow
6451 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6452 * every entry if they never change.
6453 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6454 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6455 *
6456 * The following functions allocate and free a vmcs02 in this pool.
6457 */
6458
6459/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6460static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6461{
6462 struct vmcs02_list *item;
6463 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6464 if (item->vmptr == vmx->nested.current_vmptr) {
6465 list_move(&item->list, &vmx->nested.vmcs02_pool);
6466 return &item->vmcs02;
6467 }
6468
6469 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6470 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006471 item = list_last_entry(&vmx->nested.vmcs02_pool,
6472 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006473 item->vmptr = vmx->nested.current_vmptr;
6474 list_move(&item->list, &vmx->nested.vmcs02_pool);
6475 return &item->vmcs02;
6476 }
6477
6478 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006479 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006480 if (!item)
6481 return NULL;
6482 item->vmcs02.vmcs = alloc_vmcs();
6483 if (!item->vmcs02.vmcs) {
6484 kfree(item);
6485 return NULL;
6486 }
6487 loaded_vmcs_init(&item->vmcs02);
6488 item->vmptr = vmx->nested.current_vmptr;
6489 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6490 vmx->nested.vmcs02_num++;
6491 return &item->vmcs02;
6492}
6493
6494/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6495static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6496{
6497 struct vmcs02_list *item;
6498 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6499 if (item->vmptr == vmptr) {
6500 free_loaded_vmcs(&item->vmcs02);
6501 list_del(&item->list);
6502 kfree(item);
6503 vmx->nested.vmcs02_num--;
6504 return;
6505 }
6506}
6507
6508/*
6509 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006510 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
6511 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006512 */
6513static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
6514{
6515 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006516
6517 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006518 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006519 /*
6520 * Something will leak if the above WARN triggers. Better than
6521 * a use-after-free.
6522 */
6523 if (vmx->loaded_vmcs == &item->vmcs02)
6524 continue;
6525
6526 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006527 list_del(&item->list);
6528 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006529 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006530 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006531}
6532
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006533/*
6534 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
6535 * set the success or error code of an emulated VMX instruction, as specified
6536 * by Vol 2B, VMX Instruction Reference, "Conventions".
6537 */
6538static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
6539{
6540 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
6541 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6542 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
6543}
6544
6545static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
6546{
6547 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6548 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
6549 X86_EFLAGS_SF | X86_EFLAGS_OF))
6550 | X86_EFLAGS_CF);
6551}
6552
Abel Gordon145c28d2013-04-18 14:36:55 +03006553static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08006554 u32 vm_instruction_error)
6555{
6556 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
6557 /*
6558 * failValid writes the error number to the current VMCS, which
6559 * can't be done there isn't a current VMCS.
6560 */
6561 nested_vmx_failInvalid(vcpu);
6562 return;
6563 }
6564 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
6565 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
6566 X86_EFLAGS_SF | X86_EFLAGS_OF))
6567 | X86_EFLAGS_ZF);
6568 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
6569 /*
6570 * We don't need to force a shadow sync because
6571 * VM_INSTRUCTION_ERROR is not shadowed
6572 */
6573}
Abel Gordon145c28d2013-04-18 14:36:55 +03006574
Wincy Vanff651cb2014-12-11 08:52:58 +03006575static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
6576{
6577 /* TODO: not to reset guest simply here. */
6578 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6579 pr_warn("kvm: nested vmx abort, indicator %d\n", indicator);
6580}
6581
Jan Kiszkaf4124502014-03-07 20:03:13 +01006582static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
6583{
6584 struct vcpu_vmx *vmx =
6585 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
6586
6587 vmx->nested.preemption_timer_expired = true;
6588 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6589 kvm_vcpu_kick(&vmx->vcpu);
6590
6591 return HRTIMER_NORESTART;
6592}
6593
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006594/*
Bandan Das19677e32014-05-06 02:19:15 -04006595 * Decode the memory-address operand of a vmx instruction, as recorded on an
6596 * exit caused by such an instruction (run by a guest hypervisor).
6597 * On success, returns 0. When the operand is invalid, returns 1 and throws
6598 * #UD or #GP.
6599 */
6600static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
6601 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006602 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04006603{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006604 gva_t off;
6605 bool exn;
6606 struct kvm_segment s;
6607
Bandan Das19677e32014-05-06 02:19:15 -04006608 /*
6609 * According to Vol. 3B, "Information for VM Exits Due to Instruction
6610 * Execution", on an exit, vmx_instruction_info holds most of the
6611 * addressing components of the operand. Only the displacement part
6612 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
6613 * For how an actual address is calculated from all these components,
6614 * refer to Vol. 1, "Operand Addressing".
6615 */
6616 int scaling = vmx_instruction_info & 3;
6617 int addr_size = (vmx_instruction_info >> 7) & 7;
6618 bool is_reg = vmx_instruction_info & (1u << 10);
6619 int seg_reg = (vmx_instruction_info >> 15) & 7;
6620 int index_reg = (vmx_instruction_info >> 18) & 0xf;
6621 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
6622 int base_reg = (vmx_instruction_info >> 23) & 0xf;
6623 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
6624
6625 if (is_reg) {
6626 kvm_queue_exception(vcpu, UD_VECTOR);
6627 return 1;
6628 }
6629
6630 /* Addr = segment_base + offset */
6631 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006632 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04006633 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006634 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04006635 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006636 off += kvm_register_read(vcpu, index_reg)<<scaling;
6637 vmx_get_segment(vcpu, &s, seg_reg);
6638 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04006639
6640 if (addr_size == 1) /* 32 bit */
6641 *ret &= 0xffffffff;
6642
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006643 /* Checks for #GP/#SS exceptions. */
6644 exn = false;
6645 if (is_protmode(vcpu)) {
6646 /* Protected mode: apply checks for segment validity in the
6647 * following order:
6648 * - segment type check (#GP(0) may be thrown)
6649 * - usability check (#GP(0)/#SS(0))
6650 * - limit check (#GP(0)/#SS(0))
6651 */
6652 if (wr)
6653 /* #GP(0) if the destination operand is located in a
6654 * read-only data segment or any code segment.
6655 */
6656 exn = ((s.type & 0xa) == 0 || (s.type & 8));
6657 else
6658 /* #GP(0) if the source operand is located in an
6659 * execute-only code segment
6660 */
6661 exn = ((s.type & 0xa) == 8);
6662 }
6663 if (exn) {
6664 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
6665 return 1;
6666 }
6667 if (is_long_mode(vcpu)) {
6668 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
6669 * non-canonical form. This is an only check for long mode.
6670 */
6671 exn = is_noncanonical_address(*ret);
6672 } else if (is_protmode(vcpu)) {
6673 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
6674 */
6675 exn = (s.unusable != 0);
6676 /* Protected mode: #GP(0)/#SS(0) if the memory
6677 * operand is outside the segment limit.
6678 */
6679 exn = exn || (off + sizeof(u64) > s.limit);
6680 }
6681 if (exn) {
6682 kvm_queue_exception_e(vcpu,
6683 seg_reg == VCPU_SREG_SS ?
6684 SS_VECTOR : GP_VECTOR,
6685 0);
6686 return 1;
6687 }
6688
Bandan Das19677e32014-05-06 02:19:15 -04006689 return 0;
6690}
6691
6692/*
Bandan Das3573e222014-05-06 02:19:16 -04006693 * This function performs the various checks including
6694 * - if it's 4KB aligned
6695 * - No bits beyond the physical address width are set
6696 * - Returns 0 on success or else 1
Bandan Das4291b582014-05-06 02:19:18 -04006697 * (Intel SDM Section 30.3)
Bandan Das3573e222014-05-06 02:19:16 -04006698 */
Bandan Das4291b582014-05-06 02:19:18 -04006699static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6700 gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04006701{
6702 gva_t gva;
6703 gpa_t vmptr;
6704 struct x86_exception e;
6705 struct page *page;
6706 struct vcpu_vmx *vmx = to_vmx(vcpu);
6707 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6708
6709 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00006710 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04006711 return 1;
6712
6713 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6714 sizeof(vmptr), &e)) {
6715 kvm_inject_page_fault(vcpu, &e);
6716 return 1;
6717 }
6718
6719 switch (exit_reason) {
6720 case EXIT_REASON_VMON:
6721 /*
6722 * SDM 3: 24.11.5
6723 * The first 4 bytes of VMXON region contain the supported
6724 * VMCS revision identifier
6725 *
6726 * Note - IA32_VMX_BASIC[48] will never be 1
6727 * for the nested case;
6728 * which replaces physical address width with 32
6729 *
6730 */
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006731 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das3573e222014-05-06 02:19:16 -04006732 nested_vmx_failInvalid(vcpu);
6733 skip_emulated_instruction(vcpu);
6734 return 1;
6735 }
6736
6737 page = nested_get_page(vcpu, vmptr);
6738 if (page == NULL ||
6739 *(u32 *)kmap(page) != VMCS12_REVISION) {
6740 nested_vmx_failInvalid(vcpu);
6741 kunmap(page);
6742 skip_emulated_instruction(vcpu);
6743 return 1;
6744 }
6745 kunmap(page);
6746 vmx->nested.vmxon_ptr = vmptr;
6747 break;
Bandan Das4291b582014-05-06 02:19:18 -04006748 case EXIT_REASON_VMCLEAR:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006749 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006750 nested_vmx_failValid(vcpu,
6751 VMXERR_VMCLEAR_INVALID_ADDRESS);
6752 skip_emulated_instruction(vcpu);
6753 return 1;
6754 }
Bandan Das3573e222014-05-06 02:19:16 -04006755
Bandan Das4291b582014-05-06 02:19:18 -04006756 if (vmptr == vmx->nested.vmxon_ptr) {
6757 nested_vmx_failValid(vcpu,
6758 VMXERR_VMCLEAR_VMXON_POINTER);
6759 skip_emulated_instruction(vcpu);
6760 return 1;
6761 }
6762 break;
6763 case EXIT_REASON_VMPTRLD:
Fabian Frederickbc39c4d2014-06-14 23:44:29 +02006764 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
Bandan Das4291b582014-05-06 02:19:18 -04006765 nested_vmx_failValid(vcpu,
6766 VMXERR_VMPTRLD_INVALID_ADDRESS);
6767 skip_emulated_instruction(vcpu);
6768 return 1;
6769 }
6770
6771 if (vmptr == vmx->nested.vmxon_ptr) {
6772 nested_vmx_failValid(vcpu,
6773 VMXERR_VMCLEAR_VMXON_POINTER);
6774 skip_emulated_instruction(vcpu);
6775 return 1;
6776 }
6777 break;
Bandan Das3573e222014-05-06 02:19:16 -04006778 default:
6779 return 1; /* shouldn't happen */
6780 }
6781
Bandan Das4291b582014-05-06 02:19:18 -04006782 if (vmpointer)
6783 *vmpointer = vmptr;
Bandan Das3573e222014-05-06 02:19:16 -04006784 return 0;
6785}
6786
6787/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006788 * Emulate the VMXON instruction.
6789 * Currently, we just remember that VMX is active, and do not save or even
6790 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6791 * do not currently need to store anything in that guest-allocated memory
6792 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6793 * argument is different from the VMXON pointer (which the spec says they do).
6794 */
6795static int handle_vmon(struct kvm_vcpu *vcpu)
6796{
6797 struct kvm_segment cs;
6798 struct vcpu_vmx *vmx = to_vmx(vcpu);
Abel Gordon8de48832013-04-18 14:37:25 +03006799 struct vmcs *shadow_vmcs;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006800 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6801 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006802
6803 /* The Intel VMX Instruction Reference lists a bunch of bits that
6804 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6805 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6806 * Otherwise, we should fail with #UD. We test these now:
6807 */
6808 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6809 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6810 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6811 kvm_queue_exception(vcpu, UD_VECTOR);
6812 return 1;
6813 }
6814
6815 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6816 if (is_long_mode(vcpu) && !cs.l) {
6817 kvm_queue_exception(vcpu, UD_VECTOR);
6818 return 1;
6819 }
6820
6821 if (vmx_get_cpl(vcpu)) {
6822 kvm_inject_gp(vcpu, 0);
6823 return 1;
6824 }
Bandan Das3573e222014-05-06 02:19:16 -04006825
Bandan Das4291b582014-05-06 02:19:18 -04006826 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
Bandan Das3573e222014-05-06 02:19:16 -04006827 return 1;
6828
Abel Gordon145c28d2013-04-18 14:36:55 +03006829 if (vmx->nested.vmxon) {
6830 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6831 skip_emulated_instruction(vcpu);
6832 return 1;
6833 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08006834
6835 if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
6836 != VMXON_NEEDED_FEATURES) {
6837 kvm_inject_gp(vcpu, 0);
6838 return 1;
6839 }
6840
Abel Gordon8de48832013-04-18 14:37:25 +03006841 if (enable_shadow_vmcs) {
6842 shadow_vmcs = alloc_vmcs();
6843 if (!shadow_vmcs)
6844 return -ENOMEM;
6845 /* mark vmcs as shadow */
6846 shadow_vmcs->revision_id |= (1u << 31);
6847 /* init shadow vmcs */
6848 vmcs_clear(shadow_vmcs);
6849 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6850 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006851
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006852 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6853 vmx->nested.vmcs02_num = 0;
6854
Jan Kiszkaf4124502014-03-07 20:03:13 +01006855 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6856 HRTIMER_MODE_REL);
6857 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6858
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006859 vmx->nested.vmxon = true;
6860
6861 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006862 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006863 return 1;
6864}
6865
6866/*
6867 * Intel's VMX Instruction Reference specifies a common set of prerequisites
6868 * for running VMX instructions (except VMXON, whose prerequisites are
6869 * slightly different). It also specifies what exception to inject otherwise.
6870 */
6871static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
6872{
6873 struct kvm_segment cs;
6874 struct vcpu_vmx *vmx = to_vmx(vcpu);
6875
6876 if (!vmx->nested.vmxon) {
6877 kvm_queue_exception(vcpu, UD_VECTOR);
6878 return 0;
6879 }
6880
6881 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6882 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
6883 (is_long_mode(vcpu) && !cs.l)) {
6884 kvm_queue_exception(vcpu, UD_VECTOR);
6885 return 0;
6886 }
6887
6888 if (vmx_get_cpl(vcpu)) {
6889 kvm_inject_gp(vcpu, 0);
6890 return 0;
6891 }
6892
6893 return 1;
6894}
6895
Abel Gordone7953d72013-04-18 14:37:55 +03006896static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
6897{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006898 if (vmx->nested.current_vmptr == -1ull)
6899 return;
6900
6901 /* current_vmptr and current_vmcs12 are always set/reset together */
6902 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
6903 return;
6904
Abel Gordon012f83c2013-04-18 14:39:25 +03006905 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006906 /* copy to memory all shadowed fields in case
6907 they were modified */
6908 copy_shadow_to_vmcs12(vmx);
6909 vmx->nested.sync_shadow_vmcs = false;
Xiao Guangrong7ec36292015-09-09 14:05:56 +08006910 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
6911 SECONDARY_EXEC_SHADOW_VMCS);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006912 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Abel Gordon012f83c2013-04-18 14:39:25 +03006913 }
Wincy Van705699a2015-02-03 23:58:17 +08006914 vmx->nested.posted_intr_nv = -1;
Abel Gordone7953d72013-04-18 14:37:55 +03006915 kunmap(vmx->nested.current_vmcs12_page);
6916 nested_release_page(vmx->nested.current_vmcs12_page);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006917 vmx->nested.current_vmptr = -1ull;
6918 vmx->nested.current_vmcs12 = NULL;
Abel Gordone7953d72013-04-18 14:37:55 +03006919}
6920
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006921/*
6922 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
6923 * just stops using VMX.
6924 */
6925static void free_nested(struct vcpu_vmx *vmx)
6926{
6927 if (!vmx->nested.vmxon)
6928 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006929
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006930 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07006931 free_vpid(vmx->nested.vpid02);
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006932 nested_release_vmcs12(vmx);
Abel Gordone7953d72013-04-18 14:37:55 +03006933 if (enable_shadow_vmcs)
6934 free_vmcs(vmx->nested.current_shadow_vmcs);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006935 /* Unpin physical memory we referred to in current vmcs02 */
6936 if (vmx->nested.apic_access_page) {
6937 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006938 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006939 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006940 if (vmx->nested.virtual_apic_page) {
6941 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02006942 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08006943 }
Wincy Van705699a2015-02-03 23:58:17 +08006944 if (vmx->nested.pi_desc_page) {
6945 kunmap(vmx->nested.pi_desc_page);
6946 nested_release_page(vmx->nested.pi_desc_page);
6947 vmx->nested.pi_desc_page = NULL;
6948 vmx->nested.pi_desc = NULL;
6949 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006950
6951 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006952}
6953
6954/* Emulate the VMXOFF instruction */
6955static int handle_vmoff(struct kvm_vcpu *vcpu)
6956{
6957 if (!nested_vmx_check_permission(vcpu))
6958 return 1;
6959 free_nested(to_vmx(vcpu));
6960 skip_emulated_instruction(vcpu);
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08006961 nested_vmx_succeed(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006962 return 1;
6963}
6964
Nadav Har'El27d6c862011-05-25 23:06:59 +03006965/* Emulate the VMCLEAR instruction */
6966static int handle_vmclear(struct kvm_vcpu *vcpu)
6967{
6968 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006969 gpa_t vmptr;
6970 struct vmcs12 *vmcs12;
6971 struct page *page;
Nadav Har'El27d6c862011-05-25 23:06:59 +03006972
6973 if (!nested_vmx_check_permission(vcpu))
6974 return 1;
6975
Bandan Das4291b582014-05-06 02:19:18 -04006976 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03006977 return 1;
6978
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02006979 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03006980 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03006981
6982 page = nested_get_page(vcpu, vmptr);
6983 if (page == NULL) {
6984 /*
6985 * For accurate processor emulation, VMCLEAR beyond available
6986 * physical memory should do nothing at all. However, it is
6987 * possible that a nested vmx bug, not a guest hypervisor bug,
6988 * resulted in this case, so let's shut down before doing any
6989 * more damage:
6990 */
6991 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6992 return 1;
6993 }
6994 vmcs12 = kmap(page);
6995 vmcs12->launch_state = 0;
6996 kunmap(page);
6997 nested_release_page(page);
6998
6999 nested_free_vmcs02(vmx, vmptr);
7000
7001 skip_emulated_instruction(vcpu);
7002 nested_vmx_succeed(vcpu);
7003 return 1;
7004}
7005
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007006static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7007
7008/* Emulate the VMLAUNCH instruction */
7009static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7010{
7011 return nested_vmx_run(vcpu, true);
7012}
7013
7014/* Emulate the VMRESUME instruction */
7015static int handle_vmresume(struct kvm_vcpu *vcpu)
7016{
7017
7018 return nested_vmx_run(vcpu, false);
7019}
7020
Nadav Har'El49f705c2011-05-25 23:08:30 +03007021enum vmcs_field_type {
7022 VMCS_FIELD_TYPE_U16 = 0,
7023 VMCS_FIELD_TYPE_U64 = 1,
7024 VMCS_FIELD_TYPE_U32 = 2,
7025 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
7026};
7027
7028static inline int vmcs_field_type(unsigned long field)
7029{
7030 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
7031 return VMCS_FIELD_TYPE_U32;
7032 return (field >> 13) & 0x3 ;
7033}
7034
7035static inline int vmcs_field_readonly(unsigned long field)
7036{
7037 return (((field >> 10) & 0x3) == 1);
7038}
7039
7040/*
7041 * Read a vmcs12 field. Since these can have varying lengths and we return
7042 * one type, we chose the biggest type (u64) and zero-extend the return value
7043 * to that size. Note that the caller, handle_vmread, might need to use only
7044 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7045 * 64-bit fields are to be returned).
7046 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007047static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7048 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007049{
7050 short offset = vmcs_field_to_offset(field);
7051 char *p;
7052
7053 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007054 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007055
7056 p = ((char *)(get_vmcs12(vcpu))) + offset;
7057
7058 switch (vmcs_field_type(field)) {
7059 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7060 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007061 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007062 case VMCS_FIELD_TYPE_U16:
7063 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007064 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007065 case VMCS_FIELD_TYPE_U32:
7066 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007067 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007068 case VMCS_FIELD_TYPE_U64:
7069 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007070 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007071 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007072 WARN_ON(1);
7073 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007074 }
7075}
7076
Abel Gordon20b97fe2013-04-18 14:36:25 +03007077
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007078static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7079 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007080 short offset = vmcs_field_to_offset(field);
7081 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7082 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007083 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007084
7085 switch (vmcs_field_type(field)) {
7086 case VMCS_FIELD_TYPE_U16:
7087 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007088 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007089 case VMCS_FIELD_TYPE_U32:
7090 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007091 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007092 case VMCS_FIELD_TYPE_U64:
7093 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007094 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007095 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7096 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007097 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007098 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007099 WARN_ON(1);
7100 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007101 }
7102
7103}
7104
Abel Gordon16f5b902013-04-18 14:38:25 +03007105static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7106{
7107 int i;
7108 unsigned long field;
7109 u64 field_value;
7110 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007111 const unsigned long *fields = shadow_read_write_fields;
7112 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007113
Jan Kiszka282da872014-10-08 18:05:39 +02007114 preempt_disable();
7115
Abel Gordon16f5b902013-04-18 14:38:25 +03007116 vmcs_load(shadow_vmcs);
7117
7118 for (i = 0; i < num_fields; i++) {
7119 field = fields[i];
7120 switch (vmcs_field_type(field)) {
7121 case VMCS_FIELD_TYPE_U16:
7122 field_value = vmcs_read16(field);
7123 break;
7124 case VMCS_FIELD_TYPE_U32:
7125 field_value = vmcs_read32(field);
7126 break;
7127 case VMCS_FIELD_TYPE_U64:
7128 field_value = vmcs_read64(field);
7129 break;
7130 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7131 field_value = vmcs_readl(field);
7132 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007133 default:
7134 WARN_ON(1);
7135 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007136 }
7137 vmcs12_write_any(&vmx->vcpu, field, field_value);
7138 }
7139
7140 vmcs_clear(shadow_vmcs);
7141 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007142
7143 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007144}
7145
Abel Gordonc3114422013-04-18 14:38:55 +03007146static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7147{
Mathias Krausec2bae892013-06-26 20:36:21 +02007148 const unsigned long *fields[] = {
7149 shadow_read_write_fields,
7150 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007151 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007152 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007153 max_shadow_read_write_fields,
7154 max_shadow_read_only_fields
7155 };
7156 int i, q;
7157 unsigned long field;
7158 u64 field_value = 0;
7159 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
7160
7161 vmcs_load(shadow_vmcs);
7162
Mathias Krausec2bae892013-06-26 20:36:21 +02007163 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007164 for (i = 0; i < max_fields[q]; i++) {
7165 field = fields[q][i];
7166 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7167
7168 switch (vmcs_field_type(field)) {
7169 case VMCS_FIELD_TYPE_U16:
7170 vmcs_write16(field, (u16)field_value);
7171 break;
7172 case VMCS_FIELD_TYPE_U32:
7173 vmcs_write32(field, (u32)field_value);
7174 break;
7175 case VMCS_FIELD_TYPE_U64:
7176 vmcs_write64(field, (u64)field_value);
7177 break;
7178 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7179 vmcs_writel(field, (long)field_value);
7180 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007181 default:
7182 WARN_ON(1);
7183 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007184 }
7185 }
7186 }
7187
7188 vmcs_clear(shadow_vmcs);
7189 vmcs_load(vmx->loaded_vmcs->vmcs);
7190}
7191
Nadav Har'El49f705c2011-05-25 23:08:30 +03007192/*
7193 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7194 * used before) all generate the same failure when it is missing.
7195 */
7196static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7197{
7198 struct vcpu_vmx *vmx = to_vmx(vcpu);
7199 if (vmx->nested.current_vmptr == -1ull) {
7200 nested_vmx_failInvalid(vcpu);
7201 skip_emulated_instruction(vcpu);
7202 return 0;
7203 }
7204 return 1;
7205}
7206
7207static int handle_vmread(struct kvm_vcpu *vcpu)
7208{
7209 unsigned long field;
7210 u64 field_value;
7211 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7212 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7213 gva_t gva = 0;
7214
7215 if (!nested_vmx_check_permission(vcpu) ||
7216 !nested_vmx_check_vmcs12(vcpu))
7217 return 1;
7218
7219 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007220 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007221 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007222 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007223 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7224 skip_emulated_instruction(vcpu);
7225 return 1;
7226 }
7227 /*
7228 * Now copy part of this value to register or memory, as requested.
7229 * Note that the number of bits actually copied is 32 or 64 depending
7230 * on the guest's mode (32 or 64 bit), not on the given field's length.
7231 */
7232 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007233 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007234 field_value);
7235 } else {
7236 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007237 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007238 return 1;
7239 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
7240 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7241 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7242 }
7243
7244 nested_vmx_succeed(vcpu);
7245 skip_emulated_instruction(vcpu);
7246 return 1;
7247}
7248
7249
7250static int handle_vmwrite(struct kvm_vcpu *vcpu)
7251{
7252 unsigned long field;
7253 gva_t gva;
7254 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7255 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007256 /* The value to write might be 32 or 64 bits, depending on L1's long
7257 * mode, and eventually we need to write that into a field of several
7258 * possible lengths. The code below first zero-extends the value to 64
7259 * bit (field_value), and then copies only the approriate number of
7260 * bits into the vmcs12 field.
7261 */
7262 u64 field_value = 0;
7263 struct x86_exception e;
7264
7265 if (!nested_vmx_check_permission(vcpu) ||
7266 !nested_vmx_check_vmcs12(vcpu))
7267 return 1;
7268
7269 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007270 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007271 (((vmx_instruction_info) >> 3) & 0xf));
7272 else {
7273 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007274 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007275 return 1;
7276 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007277 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007278 kvm_inject_page_fault(vcpu, &e);
7279 return 1;
7280 }
7281 }
7282
7283
Nadav Amit27e6fb52014-06-18 17:19:26 +03007284 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007285 if (vmcs_field_readonly(field)) {
7286 nested_vmx_failValid(vcpu,
7287 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
7288 skip_emulated_instruction(vcpu);
7289 return 1;
7290 }
7291
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007292 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007293 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
7294 skip_emulated_instruction(vcpu);
7295 return 1;
7296 }
7297
7298 nested_vmx_succeed(vcpu);
7299 skip_emulated_instruction(vcpu);
7300 return 1;
7301}
7302
Nadav Har'El63846662011-05-25 23:07:29 +03007303/* Emulate the VMPTRLD instruction */
7304static int handle_vmptrld(struct kvm_vcpu *vcpu)
7305{
7306 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007307 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007308
7309 if (!nested_vmx_check_permission(vcpu))
7310 return 1;
7311
Bandan Das4291b582014-05-06 02:19:18 -04007312 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007313 return 1;
7314
Nadav Har'El63846662011-05-25 23:07:29 +03007315 if (vmx->nested.current_vmptr != vmptr) {
7316 struct vmcs12 *new_vmcs12;
7317 struct page *page;
7318 page = nested_get_page(vcpu, vmptr);
7319 if (page == NULL) {
7320 nested_vmx_failInvalid(vcpu);
7321 skip_emulated_instruction(vcpu);
7322 return 1;
7323 }
7324 new_vmcs12 = kmap(page);
7325 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7326 kunmap(page);
7327 nested_release_page_clean(page);
7328 nested_vmx_failValid(vcpu,
7329 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
7330 skip_emulated_instruction(vcpu);
7331 return 1;
7332 }
Nadav Har'El63846662011-05-25 23:07:29 +03007333
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007334 nested_release_vmcs12(vmx);
Nadav Har'El63846662011-05-25 23:07:29 +03007335 vmx->nested.current_vmptr = vmptr;
7336 vmx->nested.current_vmcs12 = new_vmcs12;
7337 vmx->nested.current_vmcs12_page = page;
Abel Gordon012f83c2013-04-18 14:39:25 +03007338 if (enable_shadow_vmcs) {
Xiao Guangrong7ec36292015-09-09 14:05:56 +08007339 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7340 SECONDARY_EXEC_SHADOW_VMCS);
Abel Gordon8a1b9dd2013-04-18 14:39:55 +03007341 vmcs_write64(VMCS_LINK_POINTER,
7342 __pa(vmx->nested.current_shadow_vmcs));
Abel Gordon012f83c2013-04-18 14:39:25 +03007343 vmx->nested.sync_shadow_vmcs = true;
7344 }
Nadav Har'El63846662011-05-25 23:07:29 +03007345 }
7346
7347 nested_vmx_succeed(vcpu);
7348 skip_emulated_instruction(vcpu);
7349 return 1;
7350}
7351
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007352/* Emulate the VMPTRST instruction */
7353static int handle_vmptrst(struct kvm_vcpu *vcpu)
7354{
7355 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7356 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7357 gva_t vmcs_gva;
7358 struct x86_exception e;
7359
7360 if (!nested_vmx_check_permission(vcpu))
7361 return 1;
7362
7363 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007364 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007365 return 1;
7366 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
7367 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7368 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7369 sizeof(u64), &e)) {
7370 kvm_inject_page_fault(vcpu, &e);
7371 return 1;
7372 }
7373 nested_vmx_succeed(vcpu);
7374 skip_emulated_instruction(vcpu);
7375 return 1;
7376}
7377
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007378/* Emulate the INVEPT instruction */
7379static int handle_invept(struct kvm_vcpu *vcpu)
7380{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007381 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007382 u32 vmx_instruction_info, types;
7383 unsigned long type;
7384 gva_t gva;
7385 struct x86_exception e;
7386 struct {
7387 u64 eptp, gpa;
7388 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007389
Wincy Vanb9c237b2015-02-03 23:56:30 +08007390 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7391 SECONDARY_EXEC_ENABLE_EPT) ||
7392 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007393 kvm_queue_exception(vcpu, UD_VECTOR);
7394 return 1;
7395 }
7396
7397 if (!nested_vmx_check_permission(vcpu))
7398 return 1;
7399
7400 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
7401 kvm_queue_exception(vcpu, UD_VECTOR);
7402 return 1;
7403 }
7404
7405 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007406 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007407
Wincy Vanb9c237b2015-02-03 23:56:30 +08007408 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007409
7410 if (!(types & (1UL << type))) {
7411 nested_vmx_failValid(vcpu,
7412 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Paolo Bonzini2849eb42016-03-18 16:53:29 +01007413 skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007414 return 1;
7415 }
7416
7417 /* According to the Intel VMX instruction reference, the memory
7418 * operand is read even if it isn't needed (e.g., for type==global)
7419 */
7420 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007421 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007422 return 1;
7423 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7424 sizeof(operand), &e)) {
7425 kvm_inject_page_fault(vcpu, &e);
7426 return 1;
7427 }
7428
7429 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007430 case VMX_EPT_EXTENT_GLOBAL:
7431 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007432 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007433 nested_vmx_succeed(vcpu);
7434 break;
7435 default:
Bandan Das4b855072014-04-19 18:17:44 -04007436 /* Trap single context invalidation invept calls */
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007437 BUG_ON(1);
7438 break;
7439 }
7440
7441 skip_emulated_instruction(vcpu);
7442 return 1;
7443}
7444
Petr Matouseka642fc32014-09-23 20:22:30 +02007445static int handle_invvpid(struct kvm_vcpu *vcpu)
7446{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007447 struct vcpu_vmx *vmx = to_vmx(vcpu);
7448 u32 vmx_instruction_info;
7449 unsigned long type, types;
7450 gva_t gva;
7451 struct x86_exception e;
7452 int vpid;
7453
7454 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7455 SECONDARY_EXEC_ENABLE_VPID) ||
7456 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7457 kvm_queue_exception(vcpu, UD_VECTOR);
7458 return 1;
7459 }
7460
7461 if (!nested_vmx_check_permission(vcpu))
7462 return 1;
7463
7464 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7465 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7466
7467 types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7;
7468
7469 if (!(types & (1UL << type))) {
7470 nested_vmx_failValid(vcpu,
7471 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Paolo Bonzinif6870ee2016-03-18 16:53:42 +01007472 skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007473 return 1;
7474 }
7475
7476 /* according to the intel vmx instruction reference, the memory
7477 * operand is read even if it isn't needed (e.g., for type==global)
7478 */
7479 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7480 vmx_instruction_info, false, &gva))
7481 return 1;
7482 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid,
7483 sizeof(u32), &e)) {
7484 kvm_inject_page_fault(vcpu, &e);
7485 return 1;
7486 }
7487
7488 switch (type) {
Paolo Bonzinief697a72016-03-18 16:58:38 +01007489 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
7490 /*
7491 * Old versions of KVM use the single-context version so we
7492 * have to support it; just treat it the same as all-context.
7493 */
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007494 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li5c614b32015-10-13 09:18:36 -07007495 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007496 nested_vmx_succeed(vcpu);
7497 break;
7498 default:
Paolo Bonzinief697a72016-03-18 16:58:38 +01007499 /* Trap individual address invalidation invvpid calls */
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007500 BUG_ON(1);
7501 break;
7502 }
7503
7504 skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007505 return 1;
7506}
7507
Kai Huang843e4332015-01-28 10:54:28 +08007508static int handle_pml_full(struct kvm_vcpu *vcpu)
7509{
7510 unsigned long exit_qualification;
7511
7512 trace_kvm_pml_full(vcpu->vcpu_id);
7513
7514 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7515
7516 /*
7517 * PML buffer FULL happened while executing iret from NMI,
7518 * "blocked by NMI" bit has to be set before next VM entry.
7519 */
7520 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
7521 cpu_has_virtual_nmis() &&
7522 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7523 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7524 GUEST_INTR_STATE_NMI);
7525
7526 /*
7527 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7528 * here.., and there's no userspace involvement needed for PML.
7529 */
7530 return 1;
7531}
7532
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007533static int handle_pcommit(struct kvm_vcpu *vcpu)
7534{
7535 /* we never catch pcommit instruct for L1 guest. */
7536 WARN_ON(1);
7537 return 1;
7538}
7539
Nadav Har'El0140cae2011-05-25 23:06:28 +03007540/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08007541 * The exit handlers return 1 if the exit was handled fully and guest execution
7542 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
7543 * to be done to userspace and return 0.
7544 */
Mathias Krause772e0312012-08-30 01:30:19 +02007545static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007546 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
7547 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08007548 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08007549 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007550 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007551 [EXIT_REASON_CR_ACCESS] = handle_cr,
7552 [EXIT_REASON_DR_ACCESS] = handle_dr,
7553 [EXIT_REASON_CPUID] = handle_cpuid,
7554 [EXIT_REASON_MSR_READ] = handle_rdmsr,
7555 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
7556 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
7557 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02007558 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03007559 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02007560 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02007561 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03007562 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007563 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03007564 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007565 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007566 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007567 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007568 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007569 [EXIT_REASON_VMOFF] = handle_vmoff,
7570 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08007571 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
7572 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08007573 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08007574 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02007575 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08007576 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02007577 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08007578 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007579 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
7580 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007581 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007582 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007583 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007584 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007585 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02007586 [EXIT_REASON_INVVPID] = handle_invvpid,
Wanpeng Lif53cd632014-12-02 19:14:58 +08007587 [EXIT_REASON_XSAVES] = handle_xsaves,
7588 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08007589 [EXIT_REASON_PML_FULL] = handle_pml_full,
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007590 [EXIT_REASON_PCOMMIT] = handle_pcommit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007591};
7592
7593static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04007594 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08007595
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007596static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
7597 struct vmcs12 *vmcs12)
7598{
7599 unsigned long exit_qualification;
7600 gpa_t bitmap, last_bitmap;
7601 unsigned int port;
7602 int size;
7603 u8 b;
7604
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007605 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05007606 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007607
7608 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7609
7610 port = exit_qualification >> 16;
7611 size = (exit_qualification & 7) + 1;
7612
7613 last_bitmap = (gpa_t)-1;
7614 b = -1;
7615
7616 while (size > 0) {
7617 if (port < 0x8000)
7618 bitmap = vmcs12->io_bitmap_a;
7619 else if (port < 0x10000)
7620 bitmap = vmcs12->io_bitmap_b;
7621 else
Joe Perches1d804d02015-03-30 16:46:09 -07007622 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007623 bitmap += (port & 0x7fff) / 8;
7624
7625 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007626 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007627 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007628 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07007629 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007630
7631 port++;
7632 size--;
7633 last_bitmap = bitmap;
7634 }
7635
Joe Perches1d804d02015-03-30 16:46:09 -07007636 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007637}
7638
Nadav Har'El644d7112011-05-25 23:12:35 +03007639/*
7640 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
7641 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
7642 * disinterest in the current event (read or write a specific MSR) by using an
7643 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
7644 */
7645static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
7646 struct vmcs12 *vmcs12, u32 exit_reason)
7647{
7648 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
7649 gpa_t bitmap;
7650
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01007651 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07007652 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007653
7654 /*
7655 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
7656 * for the four combinations of read/write and low/high MSR numbers.
7657 * First we need to figure out which of the four to use:
7658 */
7659 bitmap = vmcs12->msr_bitmap;
7660 if (exit_reason == EXIT_REASON_MSR_WRITE)
7661 bitmap += 2048;
7662 if (msr_index >= 0xc0000000) {
7663 msr_index -= 0xc0000000;
7664 bitmap += 1024;
7665 }
7666
7667 /* Then read the msr_index'th bit from this bitmap: */
7668 if (msr_index < 1024*8) {
7669 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007670 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07007671 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007672 return 1 & (b >> (msr_index & 7));
7673 } else
Joe Perches1d804d02015-03-30 16:46:09 -07007674 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03007675}
7676
7677/*
7678 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
7679 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
7680 * intercept (via guest_host_mask etc.) the current event.
7681 */
7682static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
7683 struct vmcs12 *vmcs12)
7684{
7685 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7686 int cr = exit_qualification & 15;
7687 int reg = (exit_qualification >> 8) & 15;
Nadav Amit1e32c072014-06-18 17:19:25 +03007688 unsigned long val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03007689
7690 switch ((exit_qualification >> 4) & 3) {
7691 case 0: /* mov to cr */
7692 switch (cr) {
7693 case 0:
7694 if (vmcs12->cr0_guest_host_mask &
7695 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007696 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007697 break;
7698 case 3:
7699 if ((vmcs12->cr3_target_count >= 1 &&
7700 vmcs12->cr3_target_value0 == val) ||
7701 (vmcs12->cr3_target_count >= 2 &&
7702 vmcs12->cr3_target_value1 == val) ||
7703 (vmcs12->cr3_target_count >= 3 &&
7704 vmcs12->cr3_target_value2 == val) ||
7705 (vmcs12->cr3_target_count >= 4 &&
7706 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07007707 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007708 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007709 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007710 break;
7711 case 4:
7712 if (vmcs12->cr4_guest_host_mask &
7713 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07007714 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007715 break;
7716 case 8:
7717 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07007718 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007719 break;
7720 }
7721 break;
7722 case 2: /* clts */
7723 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
7724 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007725 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007726 break;
7727 case 1: /* mov from cr */
7728 switch (cr) {
7729 case 3:
7730 if (vmcs12->cpu_based_vm_exec_control &
7731 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007732 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007733 break;
7734 case 8:
7735 if (vmcs12->cpu_based_vm_exec_control &
7736 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07007737 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007738 break;
7739 }
7740 break;
7741 case 3: /* lmsw */
7742 /*
7743 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
7744 * cr0. Other attempted changes are ignored, with no exit.
7745 */
7746 if (vmcs12->cr0_guest_host_mask & 0xe &
7747 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07007748 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007749 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
7750 !(vmcs12->cr0_read_shadow & 0x1) &&
7751 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07007752 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007753 break;
7754 }
Joe Perches1d804d02015-03-30 16:46:09 -07007755 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007756}
7757
7758/*
7759 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
7760 * should handle it ourselves in L0 (and then continue L2). Only call this
7761 * when in is_guest_mode (L2).
7762 */
7763static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
7764{
Nadav Har'El644d7112011-05-25 23:12:35 +03007765 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7766 struct vcpu_vmx *vmx = to_vmx(vcpu);
7767 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jan Kiszka957c8972013-02-24 14:11:34 +01007768 u32 exit_reason = vmx->exit_reason;
Nadav Har'El644d7112011-05-25 23:12:35 +03007769
Jan Kiszka542060e2014-01-04 18:47:21 +01007770 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
7771 vmcs_readl(EXIT_QUALIFICATION),
7772 vmx->idt_vectoring_info,
7773 intr_info,
7774 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
7775 KVM_ISA_VMX);
7776
Nadav Har'El644d7112011-05-25 23:12:35 +03007777 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07007778 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007779
7780 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02007781 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
7782 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07007783 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007784 }
7785
7786 switch (exit_reason) {
7787 case EXIT_REASON_EXCEPTION_NMI:
7788 if (!is_exception(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07007789 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007790 else if (is_page_fault(intr_info))
7791 return enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01007792 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01007793 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07007794 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01007795 else if (is_debug(intr_info) &&
7796 vcpu->guest_debug &
7797 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
7798 return false;
7799 else if (is_breakpoint(intr_info) &&
7800 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
7801 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007802 return vmcs12->exception_bitmap &
7803 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
7804 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07007805 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007806 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07007807 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007808 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007809 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007810 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02007811 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03007812 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07007813 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007814 case EXIT_REASON_CPUID:
Marcelo Tosattibc613492014-09-18 18:24:57 -03007815 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
Joe Perches1d804d02015-03-30 16:46:09 -07007816 return false;
7817 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007818 case EXIT_REASON_HLT:
7819 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
7820 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07007821 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007822 case EXIT_REASON_INVLPG:
7823 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
7824 case EXIT_REASON_RDPMC:
7825 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01007826 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03007827 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7828 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7829 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7830 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7831 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7832 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02007833 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03007834 /*
7835 * VMX instructions trap unconditionally. This allows L1 to
7836 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7837 */
Joe Perches1d804d02015-03-30 16:46:09 -07007838 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007839 case EXIT_REASON_CR_ACCESS:
7840 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7841 case EXIT_REASON_DR_ACCESS:
7842 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7843 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01007844 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Nadav Har'El644d7112011-05-25 23:12:35 +03007845 case EXIT_REASON_MSR_READ:
7846 case EXIT_REASON_MSR_WRITE:
7847 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7848 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07007849 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007850 case EXIT_REASON_MWAIT_INSTRUCTION:
7851 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007852 case EXIT_REASON_MONITOR_TRAP_FLAG:
7853 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03007854 case EXIT_REASON_MONITOR_INSTRUCTION:
7855 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7856 case EXIT_REASON_PAUSE_INSTRUCTION:
7857 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7858 nested_cpu_has2(vmcs12,
7859 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7860 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07007861 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007862 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007863 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03007864 case EXIT_REASON_APIC_ACCESS:
7865 return nested_cpu_has2(vmcs12,
7866 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08007867 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08007868 case EXIT_REASON_EOI_INDUCED:
7869 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07007870 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007871 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007872 /*
7873 * L0 always deals with the EPT violation. If nested EPT is
7874 * used, and the nested mmu code discovers that the address is
7875 * missing in the guest EPT table (EPT12), the EPT violation
7876 * will be injected with nested_ept_inject_page_fault()
7877 */
Joe Perches1d804d02015-03-30 16:46:09 -07007878 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007879 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03007880 /*
7881 * L2 never uses directly L1's EPT, but rather L0's own EPT
7882 * table (shadow on EPT) or a merged EPT table that L0 built
7883 * (EPT on EPT). So any problems with the structure of the
7884 * table is L0's fault.
7885 */
Joe Perches1d804d02015-03-30 16:46:09 -07007886 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03007887 case EXIT_REASON_WBINVD:
7888 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7889 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07007890 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08007891 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
7892 /*
7893 * This should never happen, since it is not possible to
7894 * set XSS to a non-zero value---neither in L1 nor in L2.
7895 * If if it were, XSS would have to be checked against
7896 * the XSS exit bitmap in vmcs12.
7897 */
7898 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08007899 case EXIT_REASON_PCOMMIT:
7900 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT);
Nadav Har'El644d7112011-05-25 23:12:35 +03007901 default:
Joe Perches1d804d02015-03-30 16:46:09 -07007902 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03007903 }
7904}
7905
Avi Kivity586f9602010-11-18 13:09:54 +02007906static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7907{
7908 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7909 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7910}
7911
Kai Huanga3eaa862015-11-04 13:46:05 +08007912static int vmx_create_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007913{
7914 struct page *pml_pg;
Kai Huang843e4332015-01-28 10:54:28 +08007915
7916 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
7917 if (!pml_pg)
7918 return -ENOMEM;
7919
7920 vmx->pml_pg = pml_pg;
7921
7922 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
7923 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7924
Kai Huang843e4332015-01-28 10:54:28 +08007925 return 0;
7926}
7927
Kai Huanga3eaa862015-11-04 13:46:05 +08007928static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08007929{
Kai Huanga3eaa862015-11-04 13:46:05 +08007930 if (vmx->pml_pg) {
7931 __free_page(vmx->pml_pg);
7932 vmx->pml_pg = NULL;
7933 }
Kai Huang843e4332015-01-28 10:54:28 +08007934}
7935
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007936static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08007937{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007938 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08007939 u64 *pml_buf;
7940 u16 pml_idx;
7941
7942 pml_idx = vmcs_read16(GUEST_PML_INDEX);
7943
7944 /* Do nothing if PML buffer is empty */
7945 if (pml_idx == (PML_ENTITY_NUM - 1))
7946 return;
7947
7948 /* PML index always points to next available PML buffer entity */
7949 if (pml_idx >= PML_ENTITY_NUM)
7950 pml_idx = 0;
7951 else
7952 pml_idx++;
7953
7954 pml_buf = page_address(vmx->pml_pg);
7955 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
7956 u64 gpa;
7957
7958 gpa = pml_buf[pml_idx];
7959 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02007960 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08007961 }
7962
7963 /* reset PML index */
7964 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
7965}
7966
7967/*
7968 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
7969 * Called before reporting dirty_bitmap to userspace.
7970 */
7971static void kvm_flush_pml_buffers(struct kvm *kvm)
7972{
7973 int i;
7974 struct kvm_vcpu *vcpu;
7975 /*
7976 * We only need to kick vcpu out of guest mode here, as PML buffer
7977 * is flushed at beginning of all VMEXITs, and it's obvious that only
7978 * vcpus running in guest are possible to have unflushed GPAs in PML
7979 * buffer.
7980 */
7981 kvm_for_each_vcpu(i, vcpu, kvm)
7982 kvm_vcpu_kick(vcpu);
7983}
7984
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02007985static void vmx_dump_sel(char *name, uint32_t sel)
7986{
7987 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
7988 name, vmcs_read32(sel),
7989 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
7990 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
7991 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
7992}
7993
7994static void vmx_dump_dtsel(char *name, uint32_t limit)
7995{
7996 pr_err("%s limit=0x%08x, base=0x%016lx\n",
7997 name, vmcs_read32(limit),
7998 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
7999}
8000
8001static void dump_vmcs(void)
8002{
8003 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8004 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8005 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8006 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8007 u32 secondary_exec_control = 0;
8008 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008009 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008010 int i, n;
8011
8012 if (cpu_has_secondary_exec_ctrls())
8013 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8014
8015 pr_err("*** Guest State ***\n");
8016 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8017 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8018 vmcs_readl(CR0_GUEST_HOST_MASK));
8019 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8020 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8021 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8022 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8023 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8024 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008025 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8026 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8027 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8028 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008029 }
8030 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8031 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8032 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8033 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8034 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8035 vmcs_readl(GUEST_SYSENTER_ESP),
8036 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8037 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8038 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8039 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8040 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8041 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8042 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8043 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8044 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8045 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8046 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8047 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8048 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008049 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8050 efer, vmcs_read64(GUEST_IA32_PAT));
8051 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8052 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008053 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8054 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008055 pr_err("PerfGlobCtl = 0x%016llx\n",
8056 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008057 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008058 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008059 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8060 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8061 vmcs_read32(GUEST_ACTIVITY_STATE));
8062 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8063 pr_err("InterruptStatus = %04x\n",
8064 vmcs_read16(GUEST_INTR_STATUS));
8065
8066 pr_err("*** Host State ***\n");
8067 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8068 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8069 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8070 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8071 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8072 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8073 vmcs_read16(HOST_TR_SELECTOR));
8074 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8075 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8076 vmcs_readl(HOST_TR_BASE));
8077 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8078 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8079 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8080 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8081 vmcs_readl(HOST_CR4));
8082 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8083 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8084 vmcs_read32(HOST_IA32_SYSENTER_CS),
8085 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8086 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008087 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8088 vmcs_read64(HOST_IA32_EFER),
8089 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008090 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008091 pr_err("PerfGlobCtl = 0x%016llx\n",
8092 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008093
8094 pr_err("*** Control State ***\n");
8095 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8096 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8097 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8098 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8099 vmcs_read32(EXCEPTION_BITMAP),
8100 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8101 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8102 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8103 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8104 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8105 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8106 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8107 vmcs_read32(VM_EXIT_INTR_INFO),
8108 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8109 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8110 pr_err(" reason=%08x qualification=%016lx\n",
8111 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8112 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8113 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8114 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008115 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008116 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008117 pr_err("TSC Multiplier = 0x%016llx\n",
8118 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008119 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8120 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8121 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8122 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8123 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008124 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008125 n = vmcs_read32(CR3_TARGET_COUNT);
8126 for (i = 0; i + 1 < n; i += 4)
8127 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8128 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8129 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8130 if (i < n)
8131 pr_err("CR3 target%u=%016lx\n",
8132 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8133 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8134 pr_err("PLE Gap=%08x Window=%08x\n",
8135 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8136 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8137 pr_err("Virtual processor ID = 0x%04x\n",
8138 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8139}
8140
Avi Kivity6aa8b732006-12-10 02:21:36 -08008141/*
8142 * The guest has exited. See if we can fix it or if we need userspace
8143 * assistance.
8144 */
Avi Kivity851ba692009-08-24 11:10:17 +03008145static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008146{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008147 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008148 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008149 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008150
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008151 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8152
Kai Huang843e4332015-01-28 10:54:28 +08008153 /*
8154 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8155 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8156 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8157 * mode as if vcpus is in root mode, the PML buffer must has been
8158 * flushed already.
8159 */
8160 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008161 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008162
Mohammed Gamal80ced182009-09-01 12:48:18 +02008163 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008164 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008165 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008166
Nadav Har'El644d7112011-05-25 23:12:35 +03008167 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
Jan Kiszka533558b2014-01-04 18:47:20 +01008168 nested_vmx_vmexit(vcpu, exit_reason,
8169 vmcs_read32(VM_EXIT_INTR_INFO),
8170 vmcs_readl(EXIT_QUALIFICATION));
Nadav Har'El644d7112011-05-25 23:12:35 +03008171 return 1;
8172 }
8173
Mohammed Gamal51207022010-05-31 22:40:54 +03008174 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008175 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008176 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8177 vcpu->run->fail_entry.hardware_entry_failure_reason
8178 = exit_reason;
8179 return 0;
8180 }
8181
Avi Kivity29bd8a72007-09-10 17:27:03 +03008182 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008183 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8184 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008185 = vmcs_read32(VM_INSTRUCTION_ERROR);
8186 return 0;
8187 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008188
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008189 /*
8190 * Note:
8191 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8192 * delivery event since it indicates guest is accessing MMIO.
8193 * The vm-exit can be triggered again after return to guest that
8194 * will cause infinite loop.
8195 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008196 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008197 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008198 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008199 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8200 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8201 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
8202 vcpu->run->internal.ndata = 2;
8203 vcpu->run->internal.data[0] = vectoring_info;
8204 vcpu->run->internal.data[1] = exit_reason;
8205 return 0;
8206 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008207
Nadav Har'El644d7112011-05-25 23:12:35 +03008208 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
8209 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
Nadav Har'Elf5c43682013-08-05 11:07:20 +03008210 get_vmcs12(vcpu))))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03008211 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008212 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008213 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01008214 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008215 /*
8216 * This CPU don't support us in finding the end of an
8217 * NMI-blocked window if the guest runs with IRQs
8218 * disabled. So we pull the trigger after 1 s of
8219 * futile waiting, but inform the user about this.
8220 */
8221 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
8222 "state on VCPU %d after 1 s timeout\n",
8223 __func__, vcpu->vcpu_id);
8224 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008225 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008226 }
8227
Avi Kivity6aa8b732006-12-10 02:21:36 -08008228 if (exit_reason < kvm_vmx_max_exit_handlers
8229 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008230 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008231 else {
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008232 WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason);
8233 kvm_queue_exception(vcpu, UD_VECTOR);
8234 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008235 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008236}
8237
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008238static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008239{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008240 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8241
8242 if (is_guest_mode(vcpu) &&
8243 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8244 return;
8245
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008246 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008247 vmcs_write32(TPR_THRESHOLD, 0);
8248 return;
8249 }
8250
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008251 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008252}
8253
Yang Zhang8d146952013-01-25 10:18:50 +08008254static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8255{
8256 u32 sec_exec_control;
8257
8258 /*
8259 * There is not point to enable virtualize x2apic without enable
8260 * apicv
8261 */
Yang Zhangc7c9c562013-01-25 10:18:51 +08008262 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
Andrey Smetanind62caab2015-11-10 15:36:33 +03008263 !kvm_vcpu_apicv_active(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008264 return;
8265
Paolo Bonzini35754c92015-07-29 12:05:37 +02008266 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008267 return;
8268
8269 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8270
8271 if (set) {
8272 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8273 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8274 } else {
8275 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8276 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8277 }
8278 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8279
8280 vmx_set_msr_bitmap(vcpu);
8281}
8282
Tang Chen38b99172014-09-24 15:57:54 +08008283static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8284{
8285 struct vcpu_vmx *vmx = to_vmx(vcpu);
8286
8287 /*
8288 * Currently we do not handle the nested case where L2 has an
8289 * APIC access page of its own; that page is still pinned.
8290 * Hence, we skip the case where the VCPU is in guest mode _and_
8291 * L1 prepared an APIC access page for L2.
8292 *
8293 * For the case where L1 and L2 share the same APIC access page
8294 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8295 * in the vmcs12), this function will only update either the vmcs01
8296 * or the vmcs02. If the former, the vmcs02 will be updated by
8297 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8298 * the next L2->L1 exit.
8299 */
8300 if (!is_guest_mode(vcpu) ||
8301 !nested_cpu_has2(vmx->nested.current_vmcs12,
8302 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
8303 vmcs_write64(APIC_ACCESS_ADDR, hpa);
8304}
8305
Yang Zhangc7c9c562013-01-25 10:18:51 +08008306static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
8307{
8308 u16 status;
8309 u8 old;
8310
Yang Zhangc7c9c562013-01-25 10:18:51 +08008311 if (isr == -1)
8312 isr = 0;
8313
8314 status = vmcs_read16(GUEST_INTR_STATUS);
8315 old = status >> 8;
8316 if (isr != old) {
8317 status &= 0xff;
8318 status |= isr << 8;
8319 vmcs_write16(GUEST_INTR_STATUS, status);
8320 }
8321}
8322
8323static void vmx_set_rvi(int vector)
8324{
8325 u16 status;
8326 u8 old;
8327
Wei Wang4114c272014-11-05 10:53:43 +08008328 if (vector == -1)
8329 vector = 0;
8330
Yang Zhangc7c9c562013-01-25 10:18:51 +08008331 status = vmcs_read16(GUEST_INTR_STATUS);
8332 old = (u8)status & 0xff;
8333 if ((u8)vector != old) {
8334 status &= ~0xff;
8335 status |= (u8)vector;
8336 vmcs_write16(GUEST_INTR_STATUS, status);
8337 }
8338}
8339
8340static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8341{
Wanpeng Li963fee12014-07-17 19:03:00 +08008342 if (!is_guest_mode(vcpu)) {
8343 vmx_set_rvi(max_irr);
8344 return;
8345 }
8346
Wei Wang4114c272014-11-05 10:53:43 +08008347 if (max_irr == -1)
8348 return;
8349
Wanpeng Li963fee12014-07-17 19:03:00 +08008350 /*
Wei Wang4114c272014-11-05 10:53:43 +08008351 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8352 * handles it.
8353 */
8354 if (nested_exit_on_intr(vcpu))
8355 return;
8356
8357 /*
8358 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008359 * is run without virtual interrupt delivery.
8360 */
8361 if (!kvm_event_needs_reinjection(vcpu) &&
8362 vmx_interrupt_allowed(vcpu)) {
8363 kvm_queue_interrupt(vcpu, max_irr, false);
8364 vmx_inject_irq(vcpu);
8365 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008366}
8367
Andrey Smetanin63086302015-11-10 15:36:32 +03008368static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008369{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008370 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008371 return;
8372
Yang Zhangc7c9c562013-01-25 10:18:51 +08008373 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
8374 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
8375 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
8376 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
8377}
8378
Avi Kivity51aa01d2010-07-20 14:31:20 +03008379static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03008380{
Avi Kivity00eba012011-03-07 17:24:54 +02008381 u32 exit_intr_info;
8382
8383 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
8384 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
8385 return;
8386
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008387 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02008388 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08008389
8390 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008391 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08008392 kvm_machine_check();
8393
Gleb Natapov20f65982009-05-11 13:35:55 +03008394 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02008395 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008396 (exit_intr_info & INTR_INFO_VALID_MASK)) {
8397 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03008398 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008399 kvm_after_handle_nmi(&vmx->vcpu);
8400 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03008401}
Gleb Natapov20f65982009-05-11 13:35:55 +03008402
Yang Zhanga547c6d2013-04-11 19:25:10 +08008403static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
8404{
8405 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06008406 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08008407
8408 /*
8409 * If external interrupt exists, IF bit is set in rflags/eflags on the
8410 * interrupt stack frame, and interrupt will be enabled on a return
8411 * from interrupt handler.
8412 */
8413 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
8414 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
8415 unsigned int vector;
8416 unsigned long entry;
8417 gate_desc *desc;
8418 struct vcpu_vmx *vmx = to_vmx(vcpu);
8419#ifdef CONFIG_X86_64
8420 unsigned long tmp;
8421#endif
8422
8423 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8424 desc = (gate_desc *)vmx->host_idt_base + vector;
8425 entry = gate_offset(*desc);
8426 asm volatile(
8427#ifdef CONFIG_X86_64
8428 "mov %%" _ASM_SP ", %[sp]\n\t"
8429 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
8430 "push $%c[ss]\n\t"
8431 "push %[sp]\n\t"
8432#endif
8433 "pushf\n\t"
8434 "orl $0x200, (%%" _ASM_SP ")\n\t"
8435 __ASM_SIZE(push) " $%c[cs]\n\t"
8436 "call *%[entry]\n\t"
8437 :
8438#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06008439 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08008440#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06008441 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08008442 :
8443 [entry]"r"(entry),
8444 [ss]"i"(__KERNEL_DS),
8445 [cs]"i"(__KERNEL_CS)
8446 );
8447 } else
8448 local_irq_enable();
8449}
8450
Paolo Bonzini6d396b52015-04-01 14:25:33 +02008451static bool vmx_has_high_real_mode_segbase(void)
8452{
8453 return enable_unrestricted_guest || emulate_invalid_guest_state;
8454}
8455
Liu, Jinsongda8999d2014-02-24 10:55:46 +00008456static bool vmx_mpx_supported(void)
8457{
8458 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
8459 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
8460}
8461
Wanpeng Li55412b22014-12-02 19:21:30 +08008462static bool vmx_xsaves_supported(void)
8463{
8464 return vmcs_config.cpu_based_2nd_exec_ctrl &
8465 SECONDARY_EXEC_XSAVES;
8466}
8467
Avi Kivity51aa01d2010-07-20 14:31:20 +03008468static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
8469{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008470 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03008471 bool unblock_nmi;
8472 u8 vector;
8473 bool idtv_info_valid;
8474
8475 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03008476
Avi Kivitycf393f72008-07-01 16:20:21 +03008477 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02008478 if (vmx->nmi_known_unmasked)
8479 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02008480 /*
8481 * Can't use vmx->exit_intr_info since we're not sure what
8482 * the exit reason is.
8483 */
8484 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03008485 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
8486 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
8487 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008488 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03008489 * Re-set bit "block by NMI" before VM entry if vmexit caused by
8490 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008491 * SDM 3: 23.2.2 (September 2008)
8492 * Bit 12 is undefined in any of the following cases:
8493 * If the VM exit sets the valid bit in the IDT-vectoring
8494 * information field.
8495 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03008496 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008497 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
8498 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03008499 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8500 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02008501 else
8502 vmx->nmi_known_unmasked =
8503 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
8504 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008505 } else if (unlikely(vmx->soft_vnmi_blocked))
8506 vmx->vnmi_blocked_time +=
8507 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03008508}
8509
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008510static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03008511 u32 idt_vectoring_info,
8512 int instr_len_field,
8513 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03008514{
Avi Kivity51aa01d2010-07-20 14:31:20 +03008515 u8 vector;
8516 int type;
8517 bool idtv_info_valid;
8518
8519 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03008520
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008521 vcpu->arch.nmi_injected = false;
8522 kvm_clear_exception_queue(vcpu);
8523 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008524
8525 if (!idtv_info_valid)
8526 return;
8527
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008528 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03008529
Avi Kivity668f6122008-07-02 09:28:55 +03008530 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
8531 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008532
Gleb Natapov64a7ec02009-03-30 16:03:29 +03008533 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03008534 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008535 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03008536 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03008537 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03008538 * Clear bit "block by NMI" before VM entry if a NMI
8539 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03008540 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008541 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008542 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03008543 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008544 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008545 /* fall through */
8546 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03008547 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03008548 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03008549 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03008550 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03008551 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008552 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008553 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008554 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03008555 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03008556 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008557 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03008558 break;
8559 default:
8560 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03008561 }
Avi Kivitycf393f72008-07-01 16:20:21 +03008562}
8563
Avi Kivity83422e12010-07-20 14:43:23 +03008564static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
8565{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008566 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03008567 VM_EXIT_INSTRUCTION_LEN,
8568 IDT_VECTORING_ERROR_CODE);
8569}
8570
Avi Kivityb463a6f2010-07-20 15:06:17 +03008571static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
8572{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01008573 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03008574 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8575 VM_ENTRY_INSTRUCTION_LEN,
8576 VM_ENTRY_EXCEPTION_ERROR_CODE);
8577
8578 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
8579}
8580
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008581static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
8582{
8583 int i, nr_msrs;
8584 struct perf_guest_switch_msr *msrs;
8585
8586 msrs = perf_guest_get_msrs(&nr_msrs);
8587
8588 if (!msrs)
8589 return;
8590
8591 for (i = 0; i < nr_msrs; i++)
8592 if (msrs[i].host == msrs[i].guest)
8593 clear_atomic_switch_msr(vmx, msrs[i].msr);
8594 else
8595 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
8596 msrs[i].host);
8597}
8598
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08008599static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008600{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008601 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008602 unsigned long debugctlmsr, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02008603
8604 /* Record the guest's net vcpu time for enforced NMI injections. */
8605 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
8606 vmx->entry_time = ktime_get();
8607
8608 /* Don't enter VMX if guest state is invalid, let the exit handler
8609 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02008610 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02008611 return;
8612
Radim Krčmářa7653ec2014-08-21 18:08:07 +02008613 if (vmx->ple_window_dirty) {
8614 vmx->ple_window_dirty = false;
8615 vmcs_write32(PLE_WINDOW, vmx->ple_window);
8616 }
8617
Abel Gordon012f83c2013-04-18 14:39:25 +03008618 if (vmx->nested.sync_shadow_vmcs) {
8619 copy_vmcs12_to_shadow(vmx);
8620 vmx->nested.sync_shadow_vmcs = false;
8621 }
8622
Avi Kivity104f2262010-11-18 13:12:52 +02008623 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
8624 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
8625 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
8626 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
8627
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07008628 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07008629 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
8630 vmcs_writel(HOST_CR4, cr4);
8631 vmx->host_state.vmcs_host_cr4 = cr4;
8632 }
8633
Avi Kivity104f2262010-11-18 13:12:52 +02008634 /* When single-stepping over STI and MOV SS, we must clear the
8635 * corresponding interruptibility bits in the guest state. Otherwise
8636 * vmentry fails as it then expects bit 14 (BS) in pending debug
8637 * exceptions being set, but that's not correct for the guest debugging
8638 * case. */
8639 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
8640 vmx_set_interrupt_shadow(vcpu, 0);
8641
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008642 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008643 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02008644
Nadav Har'Eld462b812011-05-24 15:26:10 +03008645 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02008646 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08008647 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008648 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
8649 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
8650 "push %%" _ASM_CX " \n\t"
8651 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008652 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008653 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008654 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03008655 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008656 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008657 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
8658 "mov %%cr2, %%" _ASM_DX " \n\t"
8659 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008660 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008661 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03008662 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008663 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02008664 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008665 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008666 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
8667 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
8668 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
8669 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
8670 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
8671 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008672#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008673 "mov %c[r8](%0), %%r8 \n\t"
8674 "mov %c[r9](%0), %%r9 \n\t"
8675 "mov %c[r10](%0), %%r10 \n\t"
8676 "mov %c[r11](%0), %%r11 \n\t"
8677 "mov %c[r12](%0), %%r12 \n\t"
8678 "mov %c[r13](%0), %%r13 \n\t"
8679 "mov %c[r14](%0), %%r14 \n\t"
8680 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008681#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008682 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03008683
Avi Kivity6aa8b732006-12-10 02:21:36 -08008684 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03008685 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03008686 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008687 "jmp 2f \n\t"
8688 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
8689 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08008690 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03008691 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02008692 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008693 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
8694 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
8695 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
8696 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
8697 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
8698 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
8699 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008700#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02008701 "mov %%r8, %c[r8](%0) \n\t"
8702 "mov %%r9, %c[r9](%0) \n\t"
8703 "mov %%r10, %c[r10](%0) \n\t"
8704 "mov %%r11, %c[r11](%0) \n\t"
8705 "mov %%r12, %c[r12](%0) \n\t"
8706 "mov %%r13, %c[r13](%0) \n\t"
8707 "mov %%r14, %c[r14](%0) \n\t"
8708 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08008709#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03008710 "mov %%cr2, %%" _ASM_AX " \n\t"
8711 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03008712
Avi Kivityb188c81f2012-09-16 15:10:58 +03008713 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02008714 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03008715 ".pushsection .rodata \n\t"
8716 ".global vmx_return \n\t"
8717 "vmx_return: " _ASM_PTR " 2b \n\t"
8718 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02008719 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03008720 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02008721 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03008722 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008723 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
8724 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
8725 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
8726 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
8727 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
8728 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
8729 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08008730#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008731 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
8732 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
8733 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
8734 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
8735 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
8736 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
8737 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
8738 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08008739#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02008740 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
8741 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02008742 : "cc", "memory"
8743#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03008744 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008745 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03008746#else
8747 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02008748#endif
8749 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08008750
Gleb Natapov2a7921b2012-08-12 16:12:29 +03008751 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
8752 if (debugctlmsr)
8753 update_debugctlmsr(debugctlmsr);
8754
Avi Kivityaa67f602012-08-01 16:48:03 +03008755#ifndef CONFIG_X86_64
8756 /*
8757 * The sysexit path does not restore ds/es, so we must set them to
8758 * a reasonable value ourselves.
8759 *
8760 * We can't defer this to vmx_load_host_state() since that function
8761 * may be executed in interrupt context, which saves and restore segments
8762 * around it, nullifying its effect.
8763 */
8764 loadsegment(ds, __USER_DS);
8765 loadsegment(es, __USER_DS);
8766#endif
8767
Avi Kivity6de4f3a2009-05-31 22:58:47 +03008768 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02008769 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008770 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03008771 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02008772 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008773 vcpu->arch.regs_dirty = 0;
8774
Avi Kivity1155f762007-11-22 11:30:47 +02008775 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
8776
Nadav Har'Eld462b812011-05-24 15:26:10 +03008777 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02008778
Avi Kivity51aa01d2010-07-20 14:31:20 +03008779 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03008780
Gleb Natapove0b890d2013-09-25 12:51:33 +03008781 /*
8782 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
8783 * we did not inject a still-pending event to L1 now because of
8784 * nested_run_pending, we need to re-enable this bit.
8785 */
8786 if (vmx->nested.nested_run_pending)
8787 kvm_make_request(KVM_REQ_EVENT, vcpu);
8788
8789 vmx->nested.nested_run_pending = 0;
8790
Avi Kivity51aa01d2010-07-20 14:31:20 +03008791 vmx_complete_atomic_exit(vmx);
8792 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03008793 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008794}
8795
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008796static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
8797{
8798 struct vcpu_vmx *vmx = to_vmx(vcpu);
8799 int cpu;
8800
8801 if (vmx->loaded_vmcs == &vmx->vmcs01)
8802 return;
8803
8804 cpu = get_cpu();
8805 vmx->loaded_vmcs = &vmx->vmcs01;
8806 vmx_vcpu_put(vcpu);
8807 vmx_vcpu_load(vcpu, cpu);
8808 vcpu->cpu = cpu;
8809 put_cpu();
8810}
8811
Avi Kivity6aa8b732006-12-10 02:21:36 -08008812static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
8813{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008814 struct vcpu_vmx *vmx = to_vmx(vcpu);
8815
Kai Huang843e4332015-01-28 10:54:28 +08008816 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08008817 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08008818 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008819 leave_guest_mode(vcpu);
8820 vmx_load_vmcs01(vcpu);
Marcelo Tosatti26a865f2014-01-03 17:00:51 -02008821 free_nested(vmx);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02008822 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008823 kfree(vmx->guest_msrs);
8824 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10008825 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008826}
8827
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008828static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008829{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008830 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10008831 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03008832 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008833
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008834 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008835 return ERR_PTR(-ENOMEM);
8836
Wanpeng Li991e7a02015-09-16 17:30:05 +08008837 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08008838
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008839 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
8840 if (err)
8841 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008842
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008843 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02008844 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
8845 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03008846
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008847 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008848 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008849 goto uninit_vcpu;
8850 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008851
Nadav Har'Eld462b812011-05-24 15:26:10 +03008852 vmx->loaded_vmcs = &vmx->vmcs01;
8853 vmx->loaded_vmcs->vmcs = alloc_vmcs();
8854 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008855 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03008856 if (!vmm_exclusive)
8857 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
8858 loaded_vmcs_init(vmx->loaded_vmcs);
8859 if (!vmm_exclusive)
8860 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04008861
Avi Kivity15ad7142007-07-11 18:17:21 +03008862 cpu = get_cpu();
8863 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10008864 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10008865 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008866 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03008867 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008868 if (err)
8869 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008870 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02008871 err = alloc_apic_access_page(kvm);
8872 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02008873 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02008874 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08008875
Sheng Yangb927a3c2009-07-21 10:42:48 +08008876 if (enable_ept) {
8877 if (!kvm->arch.ept_identity_map_addr)
8878 kvm->arch.ept_identity_map_addr =
8879 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08008880 err = init_rmode_identity_map(kvm);
8881 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02008882 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08008883 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08008884
Wanpeng Li5c614b32015-10-13 09:18:36 -07008885 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08008886 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07008887 vmx->nested.vpid02 = allocate_vpid();
8888 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08008889
Wincy Van705699a2015-02-03 23:58:17 +08008890 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03008891 vmx->nested.current_vmptr = -1ull;
8892 vmx->nested.current_vmcs12 = NULL;
8893
Kai Huang843e4332015-01-28 10:54:28 +08008894 /*
8895 * If PML is turned on, failure on enabling PML just results in failure
8896 * of creating the vcpu, therefore we can simplify PML logic (by
8897 * avoiding dealing with cases, such as enabling PML partially on vcpus
8898 * for the guest, etc.
8899 */
8900 if (enable_pml) {
Kai Huanga3eaa862015-11-04 13:46:05 +08008901 err = vmx_create_pml_buffer(vmx);
Kai Huang843e4332015-01-28 10:54:28 +08008902 if (err)
8903 goto free_vmcs;
8904 }
8905
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008906 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08008907
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008908free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07008909 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08008910 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008911free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008912 kfree(vmx->guest_msrs);
8913uninit_vcpu:
8914 kvm_vcpu_uninit(&vmx->vcpu);
8915free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08008916 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10008917 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10008918 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008919}
8920
Yang, Sheng002c7f72007-07-31 14:23:01 +03008921static void __init vmx_check_processor_compat(void *rtn)
8922{
8923 struct vmcs_config vmcs_conf;
8924
8925 *(int *)rtn = 0;
8926 if (setup_vmcs_config(&vmcs_conf) < 0)
8927 *(int *)rtn = -EIO;
8928 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
8929 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
8930 smp_processor_id());
8931 *(int *)rtn = -EIO;
8932 }
8933}
8934
Sheng Yang67253af2008-04-25 10:20:22 +08008935static int get_ept_level(void)
8936{
8937 return VMX_EPT_DEFAULT_GAW + 1;
8938}
8939
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008940static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08008941{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008942 u8 cache;
8943 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08008944
Sheng Yang522c68c2009-04-27 20:35:43 +08008945 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02008946 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08008947 * 2. EPT with VT-d:
8948 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02008949 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08008950 * b. VT-d with snooping control feature: snooping control feature of
8951 * VT-d engine can guarantee the cache correctness. Just set it
8952 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08008953 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08008954 * consistent with host MTRR
8955 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02008956 if (is_mmio) {
8957 cache = MTRR_TYPE_UNCACHABLE;
8958 goto exit;
8959 }
8960
8961 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008962 ipat = VMX_EPT_IPAT_BIT;
8963 cache = MTRR_TYPE_WRBACK;
8964 goto exit;
8965 }
8966
8967 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
8968 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02008969 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08008970 cache = MTRR_TYPE_WRBACK;
8971 else
8972 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008973 goto exit;
8974 }
8975
Xiao Guangrongff536042015-06-15 16:55:22 +08008976 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08008977
8978exit:
8979 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08008980}
8981
Sheng Yang17cc3932010-01-05 19:02:27 +08008982static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02008983{
Sheng Yang878403b2010-01-05 19:02:29 +08008984 if (enable_ept && !cpu_has_vmx_ept_1g_page())
8985 return PT_DIRECTORY_LEVEL;
8986 else
8987 /* For shadow and EPT supported 1GB page */
8988 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02008989}
8990
Xiao Guangrongfeda8052015-09-09 14:05:55 +08008991static void vmcs_set_secondary_exec_control(u32 new_ctl)
8992{
8993 /*
8994 * These bits in the secondary execution controls field
8995 * are dynamic, the others are mostly based on the hypervisor
8996 * architecture and the guest's CPUID. Do not touch the
8997 * dynamic bits.
8998 */
8999 u32 mask =
9000 SECONDARY_EXEC_SHADOW_VMCS |
9001 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9002 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9003
9004 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9005
9006 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9007 (new_ctl & ~mask) | (cur_ctl & mask));
9008}
9009
Sheng Yang0e851882009-12-18 16:48:46 +08009010static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9011{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009012 struct kvm_cpuid_entry2 *best;
9013 struct vcpu_vmx *vmx = to_vmx(vcpu);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009014 u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009015
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009016 if (vmx_rdtscp_supported()) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009017 bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu);
9018 if (!rdtscp_enabled)
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009019 secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP;
Xiao Guangrongf36201e2015-09-09 14:05:53 +08009020
Paolo Bonzini8b972652015-09-15 17:34:42 +02009021 if (nested) {
Xiao Guangrong1cea0ce2015-09-09 14:05:57 +08009022 if (rdtscp_enabled)
Paolo Bonzini8b972652015-09-15 17:34:42 +02009023 vmx->nested.nested_vmx_secondary_ctls_high |=
9024 SECONDARY_EXEC_RDTSCP;
9025 else
9026 vmx->nested.nested_vmx_secondary_ctls_high &=
9027 ~SECONDARY_EXEC_RDTSCP;
9028 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009029 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009030
Mao, Junjiead756a12012-07-02 01:18:48 +00009031 /* Exposing INVPCID only when PCID is exposed */
9032 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9033 if (vmx_invpcid_supported() &&
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009034 (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) ||
9035 !guest_cpuid_has_pcid(vcpu))) {
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009036 secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Xiao Guangrong29541bb2015-09-09 14:05:54 +08009037
Mao, Junjiead756a12012-07-02 01:18:48 +00009038 if (best)
Ren, Yongjie4f977042012-09-07 07:36:59 +00009039 best->ebx &= ~bit(X86_FEATURE_INVPCID);
Mao, Junjiead756a12012-07-02 01:18:48 +00009040 }
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009041
Huaitong Han45bdbcf2016-01-12 16:04:20 +08009042 if (cpu_has_secondary_exec_ctrls())
9043 vmcs_set_secondary_exec_control(secondary_exec_ctl);
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009044
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009045 if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) {
9046 if (guest_cpuid_has_pcommit(vcpu))
9047 vmx->nested.nested_vmx_secondary_ctls_high |=
9048 SECONDARY_EXEC_PCOMMIT;
9049 else
9050 vmx->nested.nested_vmx_secondary_ctls_high &=
9051 ~SECONDARY_EXEC_PCOMMIT;
9052 }
Sheng Yang0e851882009-12-18 16:48:46 +08009053}
9054
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009055static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9056{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009057 if (func == 1 && nested)
9058 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009059}
9060
Yang Zhang25d92082013-08-06 12:00:32 +03009061static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9062 struct x86_exception *fault)
9063{
Jan Kiszka533558b2014-01-04 18:47:20 +01009064 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9065 u32 exit_reason;
Yang Zhang25d92082013-08-06 12:00:32 +03009066
9067 if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009068 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009069 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009070 exit_reason = EXIT_REASON_EPT_VIOLATION;
9071 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009072 vmcs12->guest_physical_address = fault->address;
9073}
9074
Nadav Har'El155a97a2013-08-05 11:07:16 +03009075/* Callbacks for nested_ept_init_mmu_context: */
9076
9077static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9078{
9079 /* return the page table to be shadowed - in our case, EPT12 */
9080 return get_vmcs12(vcpu)->ept_pointer;
9081}
9082
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02009083static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009084{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009085 WARN_ON(mmu_is_nested(vcpu));
9086 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009087 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
9088 VMX_EPT_EXECUTE_ONLY_BIT);
Nadav Har'El155a97a2013-08-05 11:07:16 +03009089 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9090 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9091 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9092
9093 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009094}
9095
9096static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9097{
9098 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9099}
9100
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009101static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9102 u16 error_code)
9103{
9104 bool inequality, bit;
9105
9106 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9107 inequality =
9108 (error_code & vmcs12->page_fault_error_code_mask) !=
9109 vmcs12->page_fault_error_code_match;
9110 return inequality ^ bit;
9111}
9112
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009113static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9114 struct x86_exception *fault)
9115{
9116 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9117
9118 WARN_ON(!is_guest_mode(vcpu));
9119
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009120 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code))
Jan Kiszka533558b2014-01-04 18:47:20 +01009121 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
9122 vmcs_read32(VM_EXIT_INTR_INFO),
9123 vmcs_readl(EXIT_QUALIFICATION));
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009124 else
9125 kvm_inject_page_fault(vcpu, fault);
9126}
9127
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009128static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
9129 struct vmcs12 *vmcs12)
9130{
9131 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eugene Korenevsky90904222015-03-29 23:56:27 +03009132 int maxphyaddr = cpuid_maxphyaddr(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009133
9134 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009135 if (!PAGE_ALIGNED(vmcs12->apic_access_addr) ||
9136 vmcs12->apic_access_addr >> maxphyaddr)
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009137 return false;
9138
9139 /*
9140 * Translate L1 physical address to host physical
9141 * address for vmcs02. Keep the page pinned, so this
9142 * physical address remains valid. We keep a reference
9143 * to it so we can release it later.
9144 */
9145 if (vmx->nested.apic_access_page) /* shouldn't happen */
9146 nested_release_page(vmx->nested.apic_access_page);
9147 vmx->nested.apic_access_page =
9148 nested_get_page(vcpu, vmcs12->apic_access_addr);
9149 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009150
9151 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009152 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) ||
9153 vmcs12->virtual_apic_page_addr >> maxphyaddr)
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009154 return false;
9155
9156 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
9157 nested_release_page(vmx->nested.virtual_apic_page);
9158 vmx->nested.virtual_apic_page =
9159 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
9160
9161 /*
9162 * Failing the vm entry is _not_ what the processor does
9163 * but it's basically the only possibility we have.
9164 * We could still enter the guest if CR8 load exits are
9165 * enabled, CR8 store exits are enabled, and virtualize APIC
9166 * access is disabled; in this case the processor would never
9167 * use the TPR shadow and we could simply clear the bit from
9168 * the execution control. But such a configuration is useless,
9169 * so let's keep the code simple.
9170 */
9171 if (!vmx->nested.virtual_apic_page)
9172 return false;
9173 }
9174
Wincy Van705699a2015-02-03 23:58:17 +08009175 if (nested_cpu_has_posted_intr(vmcs12)) {
Eugene Korenevsky90904222015-03-29 23:56:27 +03009176 if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) ||
9177 vmcs12->posted_intr_desc_addr >> maxphyaddr)
Wincy Van705699a2015-02-03 23:58:17 +08009178 return false;
9179
9180 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9181 kunmap(vmx->nested.pi_desc_page);
9182 nested_release_page(vmx->nested.pi_desc_page);
9183 }
9184 vmx->nested.pi_desc_page =
9185 nested_get_page(vcpu, vmcs12->posted_intr_desc_addr);
9186 if (!vmx->nested.pi_desc_page)
9187 return false;
9188
9189 vmx->nested.pi_desc =
9190 (struct pi_desc *)kmap(vmx->nested.pi_desc_page);
9191 if (!vmx->nested.pi_desc) {
9192 nested_release_page_clean(vmx->nested.pi_desc_page);
9193 return false;
9194 }
9195 vmx->nested.pi_desc =
9196 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9197 (unsigned long)(vmcs12->posted_intr_desc_addr &
9198 (PAGE_SIZE - 1)));
9199 }
9200
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009201 return true;
9202}
9203
Jan Kiszkaf4124502014-03-07 20:03:13 +01009204static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9205{
9206 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9207 struct vcpu_vmx *vmx = to_vmx(vcpu);
9208
9209 if (vcpu->arch.virtual_tsc_khz == 0)
9210 return;
9211
9212 /* Make sure short timeouts reliably trigger an immediate vmexit.
9213 * hrtimer_start does not guarantee this. */
9214 if (preemption_timeout <= 1) {
9215 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9216 return;
9217 }
9218
9219 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9220 preemption_timeout *= 1000000;
9221 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9222 hrtimer_start(&vmx->nested.preemption_timer,
9223 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9224}
9225
Wincy Van3af18d92015-02-03 23:49:31 +08009226static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9227 struct vmcs12 *vmcs12)
9228{
9229 int maxphyaddr;
9230 u64 addr;
9231
9232 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9233 return 0;
9234
9235 if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) {
9236 WARN_ON(1);
9237 return -EINVAL;
9238 }
9239 maxphyaddr = cpuid_maxphyaddr(vcpu);
9240
9241 if (!PAGE_ALIGNED(vmcs12->msr_bitmap) ||
9242 ((addr + PAGE_SIZE) >> maxphyaddr))
9243 return -EINVAL;
9244
9245 return 0;
9246}
9247
9248/*
9249 * Merge L0's and L1's MSR bitmap, return false to indicate that
9250 * we do not use the hardware.
9251 */
9252static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9253 struct vmcs12 *vmcs12)
9254{
Wincy Van82f0dd42015-02-03 23:57:18 +08009255 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +08009256 struct page *page;
9257 unsigned long *msr_bitmap;
9258
9259 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
9260 return false;
9261
9262 page = nested_get_page(vcpu, vmcs12->msr_bitmap);
9263 if (!page) {
9264 WARN_ON(1);
9265 return false;
9266 }
9267 msr_bitmap = (unsigned long *)kmap(page);
9268 if (!msr_bitmap) {
9269 nested_release_page_clean(page);
9270 WARN_ON(1);
9271 return false;
9272 }
9273
9274 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +08009275 if (nested_cpu_has_apic_reg_virt(vmcs12))
9276 for (msr = 0x800; msr <= 0x8ff; msr++)
9277 nested_vmx_disable_intercept_for_msr(
9278 msr_bitmap,
9279 vmx_msr_bitmap_nested,
9280 msr, MSR_TYPE_R);
Wincy Vanf2b93282015-02-03 23:56:03 +08009281 /* TPR is allowed */
9282 nested_vmx_disable_intercept_for_msr(msr_bitmap,
9283 vmx_msr_bitmap_nested,
9284 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
9285 MSR_TYPE_R | MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009286 if (nested_cpu_has_vid(vmcs12)) {
9287 /* EOI and self-IPI are allowed */
9288 nested_vmx_disable_intercept_for_msr(
9289 msr_bitmap,
9290 vmx_msr_bitmap_nested,
9291 APIC_BASE_MSR + (APIC_EOI >> 4),
9292 MSR_TYPE_W);
9293 nested_vmx_disable_intercept_for_msr(
9294 msr_bitmap,
9295 vmx_msr_bitmap_nested,
9296 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9297 MSR_TYPE_W);
9298 }
Wincy Van82f0dd42015-02-03 23:57:18 +08009299 } else {
9300 /*
9301 * Enable reading intercept of all the x2apic
9302 * MSRs. We should not rely on vmcs12 to do any
9303 * optimizations here, it may have been modified
9304 * by L1.
9305 */
9306 for (msr = 0x800; msr <= 0x8ff; msr++)
9307 __vmx_enable_intercept_for_msr(
9308 vmx_msr_bitmap_nested,
9309 msr,
9310 MSR_TYPE_R);
9311
Wincy Vanf2b93282015-02-03 23:56:03 +08009312 __vmx_enable_intercept_for_msr(
9313 vmx_msr_bitmap_nested,
9314 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
Wincy Van82f0dd42015-02-03 23:57:18 +08009315 MSR_TYPE_W);
Wincy Van608406e2015-02-03 23:57:51 +08009316 __vmx_enable_intercept_for_msr(
9317 vmx_msr_bitmap_nested,
9318 APIC_BASE_MSR + (APIC_EOI >> 4),
9319 MSR_TYPE_W);
9320 __vmx_enable_intercept_for_msr(
9321 vmx_msr_bitmap_nested,
9322 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
9323 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +08009324 }
Wincy Vanf2b93282015-02-03 23:56:03 +08009325 kunmap(page);
9326 nested_release_page_clean(page);
9327
9328 return true;
9329}
9330
9331static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
9332 struct vmcs12 *vmcs12)
9333{
Wincy Van82f0dd42015-02-03 23:57:18 +08009334 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +08009335 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +08009336 !nested_cpu_has_vid(vmcs12) &&
9337 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +08009338 return 0;
9339
9340 /*
9341 * If virtualize x2apic mode is enabled,
9342 * virtualize apic access must be disabled.
9343 */
Wincy Van82f0dd42015-02-03 23:57:18 +08009344 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
9345 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +08009346 return -EINVAL;
9347
Wincy Van608406e2015-02-03 23:57:51 +08009348 /*
9349 * If virtual interrupt delivery is enabled,
9350 * we must exit on external interrupts.
9351 */
9352 if (nested_cpu_has_vid(vmcs12) &&
9353 !nested_exit_on_intr(vcpu))
9354 return -EINVAL;
9355
Wincy Van705699a2015-02-03 23:58:17 +08009356 /*
9357 * bits 15:8 should be zero in posted_intr_nv,
9358 * the descriptor address has been already checked
9359 * in nested_get_vmcs12_pages.
9360 */
9361 if (nested_cpu_has_posted_intr(vmcs12) &&
9362 (!nested_cpu_has_vid(vmcs12) ||
9363 !nested_exit_intr_ack_set(vcpu) ||
9364 vmcs12->posted_intr_nv & 0xff00))
9365 return -EINVAL;
9366
Wincy Vanf2b93282015-02-03 23:56:03 +08009367 /* tpr shadow is needed by all apicv features. */
9368 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9369 return -EINVAL;
9370
9371 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +08009372}
9373
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009374static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
9375 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009376 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +03009377{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009378 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009379 u64 count, addr;
9380
9381 if (vmcs12_read_any(vcpu, count_field, &count) ||
9382 vmcs12_read_any(vcpu, addr_field, &addr)) {
9383 WARN_ON(1);
9384 return -EINVAL;
9385 }
9386 if (count == 0)
9387 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009388 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009389 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
9390 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
9391 pr_warn_ratelimited(
9392 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
9393 addr_field, maxphyaddr, count, addr);
9394 return -EINVAL;
9395 }
9396 return 0;
9397}
9398
9399static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
9400 struct vmcs12 *vmcs12)
9401{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009402 if (vmcs12->vm_exit_msr_load_count == 0 &&
9403 vmcs12->vm_exit_msr_store_count == 0 &&
9404 vmcs12->vm_entry_msr_load_count == 0)
9405 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009406 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009407 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009408 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009409 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009410 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +03009411 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +03009412 return -EINVAL;
9413 return 0;
9414}
9415
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009416static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
9417 struct vmx_msr_entry *e)
9418{
9419 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +02009420 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009421 return -EINVAL;
9422 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
9423 e->index == MSR_IA32_UCODE_REV)
9424 return -EINVAL;
9425 if (e->reserved != 0)
9426 return -EINVAL;
9427 return 0;
9428}
9429
9430static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
9431 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +03009432{
9433 if (e->index == MSR_FS_BASE ||
9434 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009435 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
9436 nested_vmx_msr_check_common(vcpu, e))
9437 return -EINVAL;
9438 return 0;
9439}
9440
9441static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
9442 struct vmx_msr_entry *e)
9443{
9444 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
9445 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +03009446 return -EINVAL;
9447 return 0;
9448}
9449
9450/*
9451 * Load guest's/host's msr at nested entry/exit.
9452 * return 0 for success, entry index for failure.
9453 */
9454static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9455{
9456 u32 i;
9457 struct vmx_msr_entry e;
9458 struct msr_data msr;
9459
9460 msr.host_initiated = false;
9461 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009462 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
9463 &e, sizeof(e))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009464 pr_warn_ratelimited(
9465 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9466 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009467 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009468 }
9469 if (nested_vmx_load_msr_check(vcpu, &e)) {
9470 pr_warn_ratelimited(
9471 "%s check failed (%u, 0x%x, 0x%x)\n",
9472 __func__, i, e.index, e.reserved);
9473 goto fail;
9474 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009475 msr.index = e.index;
9476 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009477 if (kvm_set_msr(vcpu, &msr)) {
9478 pr_warn_ratelimited(
9479 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
9480 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +03009481 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009482 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009483 }
9484 return 0;
9485fail:
9486 return i + 1;
9487}
9488
9489static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
9490{
9491 u32 i;
9492 struct vmx_msr_entry e;
9493
9494 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009495 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009496 if (kvm_vcpu_read_guest(vcpu,
9497 gpa + i * sizeof(e),
9498 &e, 2 * sizeof(u32))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009499 pr_warn_ratelimited(
9500 "%s cannot read MSR entry (%u, 0x%08llx)\n",
9501 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +03009502 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009503 }
9504 if (nested_vmx_store_msr_check(vcpu, &e)) {
9505 pr_warn_ratelimited(
9506 "%s check failed (%u, 0x%x, 0x%x)\n",
9507 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +03009508 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009509 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009510 msr_info.host_initiated = false;
9511 msr_info.index = e.index;
9512 if (kvm_get_msr(vcpu, &msr_info)) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009513 pr_warn_ratelimited(
9514 "%s cannot read MSR (%u, 0x%x)\n",
9515 __func__, i, e.index);
9516 return -EINVAL;
9517 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009518 if (kvm_vcpu_write_guest(vcpu,
9519 gpa + i * sizeof(e) +
9520 offsetof(struct vmx_msr_entry, value),
9521 &msr_info.data, sizeof(msr_info.data))) {
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009522 pr_warn_ratelimited(
9523 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +02009524 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009525 return -EINVAL;
9526 }
Wincy Vanff651cb2014-12-11 08:52:58 +03009527 }
9528 return 0;
9529}
9530
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009531/*
9532 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
9533 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +08009534 * 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 +03009535 * guest in a way that will both be appropriate to L1's requests, and our
9536 * needs. In addition to modifying the active vmcs (which is vmcs02), this
9537 * function also has additional necessary side-effects, like setting various
9538 * vcpu->arch fields.
9539 */
9540static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
9541{
9542 struct vcpu_vmx *vmx = to_vmx(vcpu);
9543 u32 exec_control;
9544
9545 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
9546 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
9547 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
9548 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
9549 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
9550 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
9551 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
9552 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
9553 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
9554 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
9555 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
9556 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
9557 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
9558 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
9559 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
9560 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
9561 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
9562 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
9563 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
9564 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
9565 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
9566 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
9567 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
9568 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
9569 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
9570 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
9571 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
9572 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
9573 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
9574 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
9575 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
9576 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
9577 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
9578 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
9579 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
9580 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
9581
Jan Kiszka2996fca2014-06-16 13:59:43 +02009582 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
9583 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
9584 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
9585 } else {
9586 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
9587 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
9588 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009589 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
9590 vmcs12->vm_entry_intr_info_field);
9591 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
9592 vmcs12->vm_entry_exception_error_code);
9593 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
9594 vmcs12->vm_entry_instruction_len);
9595 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
9596 vmcs12->guest_interruptibility_info);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009597 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +03009598 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009599 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
9600 vmcs12->guest_pending_dbg_exceptions);
9601 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
9602 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
9603
Wanpeng Li81dc01f2014-12-04 19:11:07 +08009604 if (nested_cpu_has_xsaves(vmcs12))
9605 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009606 vmcs_write64(VMCS_LINK_POINTER, -1ull);
9607
Jan Kiszkaf4124502014-03-07 20:03:13 +01009608 exec_control = vmcs12->pin_based_vm_exec_control;
9609 exec_control |= vmcs_config.pin_based_exec_ctrl;
Wincy Van705699a2015-02-03 23:58:17 +08009610 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
9611
9612 if (nested_cpu_has_posted_intr(vmcs12)) {
9613 /*
9614 * Note that we use L0's vector here and in
9615 * vmx_deliver_nested_posted_interrupt.
9616 */
9617 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
9618 vmx->nested.pi_pending = false;
Li RongQing0bcf2612015-12-03 13:29:34 +08009619 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Wincy Van705699a2015-02-03 23:58:17 +08009620 vmcs_write64(POSTED_INTR_DESC_ADDR,
9621 page_to_phys(vmx->nested.pi_desc_page) +
9622 (unsigned long)(vmcs12->posted_intr_desc_addr &
9623 (PAGE_SIZE - 1)));
9624 } else
9625 exec_control &= ~PIN_BASED_POSTED_INTR;
9626
Jan Kiszkaf4124502014-03-07 20:03:13 +01009627 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009628
Jan Kiszkaf4124502014-03-07 20:03:13 +01009629 vmx->nested.preemption_timer_expired = false;
9630 if (nested_cpu_has_preemption_timer(vmcs12))
9631 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +01009632
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009633 /*
9634 * Whether page-faults are trapped is determined by a combination of
9635 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
9636 * If enable_ept, L0 doesn't care about page faults and we should
9637 * set all of these to L1's desires. However, if !enable_ept, L0 does
9638 * care about (at least some) page faults, and because it is not easy
9639 * (if at all possible?) to merge L0 and L1's desires, we simply ask
9640 * to exit on each and every L2 page fault. This is done by setting
9641 * MASK=MATCH=0 and (see below) EB.PF=1.
9642 * Note that below we don't need special code to set EB.PF beyond the
9643 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
9644 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
9645 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
9646 *
9647 * A problem with this approach (when !enable_ept) is that L1 may be
9648 * injected with more page faults than it asked for. This could have
9649 * caused problems, but in practice existing hypervisors don't care.
9650 * To fix this, we will need to emulate the PFEC checking (on the L1
9651 * page tables), using walk_addr(), when injecting PFs to L1.
9652 */
9653 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
9654 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
9655 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
9656 enable_ept ? vmcs12->page_fault_error_code_match : 0);
9657
9658 if (cpu_has_secondary_exec_ctrls()) {
Jan Kiszkaf4124502014-03-07 20:03:13 +01009659 exec_control = vmx_secondary_exec_control(vmx);
Xiao Guangronge2821622015-09-09 14:05:52 +08009660
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009661 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009662 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Jan Kiszkab3a2a902015-03-23 19:27:19 +01009663 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini696dfd92014-05-07 11:20:54 +02009664 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08009665 SECONDARY_EXEC_APIC_REGISTER_VIRT |
9666 SECONDARY_EXEC_PCOMMIT);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009667 if (nested_cpu_has(vmcs12,
9668 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
9669 exec_control |= vmcs12->secondary_vm_exec_control;
9670
9671 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
9672 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009673 * If translation failed, no matter: This feature asks
9674 * to exit when accessing the given address, and if it
9675 * can never be accessed, this feature won't do
9676 * anything anyway.
9677 */
9678 if (!vmx->nested.apic_access_page)
9679 exec_control &=
9680 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9681 else
9682 vmcs_write64(APIC_ACCESS_ADDR,
9683 page_to_phys(vmx->nested.apic_access_page));
Wincy Vanf2b93282015-02-03 23:56:03 +08009684 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
Paolo Bonzini35754c92015-07-29 12:05:37 +02009685 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkaca3f2572013-12-16 12:55:46 +01009686 exec_control |=
9687 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Tang Chen38b99172014-09-24 15:57:54 +08009688 kvm_vcpu_reload_apic_access_page(vcpu);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009689 }
9690
Wincy Van608406e2015-02-03 23:57:51 +08009691 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
9692 vmcs_write64(EOI_EXIT_BITMAP0,
9693 vmcs12->eoi_exit_bitmap0);
9694 vmcs_write64(EOI_EXIT_BITMAP1,
9695 vmcs12->eoi_exit_bitmap1);
9696 vmcs_write64(EOI_EXIT_BITMAP2,
9697 vmcs12->eoi_exit_bitmap2);
9698 vmcs_write64(EOI_EXIT_BITMAP3,
9699 vmcs12->eoi_exit_bitmap3);
9700 vmcs_write16(GUEST_INTR_STATUS,
9701 vmcs12->guest_intr_status);
9702 }
9703
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009704 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
9705 }
9706
9707
9708 /*
9709 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
9710 * Some constant fields are set here by vmx_set_constant_host_state().
9711 * Other fields are different per CPU, and will be set later when
9712 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
9713 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08009714 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009715
9716 /*
9717 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
9718 * entry, but only if the current (host) sp changed from the value
9719 * we wrote last (vmx->host_rsp). This cache is no longer relevant
9720 * if we switch vmcs, and rather than hold a separate cache per vmcs,
9721 * here we just force the write to happen on entry.
9722 */
9723 vmx->host_rsp = 0;
9724
9725 exec_control = vmx_exec_control(vmx); /* L0's desires */
9726 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
9727 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
9728 exec_control &= ~CPU_BASED_TPR_SHADOW;
9729 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009730
9731 if (exec_control & CPU_BASED_TPR_SHADOW) {
9732 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
9733 page_to_phys(vmx->nested.virtual_apic_page));
9734 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
9735 }
9736
Wincy Van3af18d92015-02-03 23:49:31 +08009737 if (cpu_has_vmx_msr_bitmap() &&
Wincy Van670125b2015-03-04 14:31:56 +08009738 exec_control & CPU_BASED_USE_MSR_BITMAPS) {
9739 nested_vmx_merge_msr_bitmap(vcpu, vmcs12);
9740 /* MSR_BITMAP will be set by following vmx_set_efer. */
Wincy Van3af18d92015-02-03 23:49:31 +08009741 } else
9742 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
9743
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009744 /*
Wincy Van3af18d92015-02-03 23:49:31 +08009745 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009746 * Rather, exit every time.
9747 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009748 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
9749 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
9750
9751 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
9752
9753 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
9754 * bitwise-or of what L1 wants to trap for L2, and what we want to
9755 * trap. Note that CR0.TS also needs updating - we do this later.
9756 */
9757 update_exception_bitmap(vcpu);
9758 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
9759 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
9760
Nadav Har'El8049d652013-08-05 11:07:06 +03009761 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
9762 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
9763 * bits are further modified by vmx_set_efer() below.
9764 */
Jan Kiszkaf4124502014-03-07 20:03:13 +01009765 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +03009766
9767 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
9768 * emulated by vmx_set_efer(), below.
9769 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02009770 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +03009771 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
9772 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009773 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
9774
Jan Kiszka44811c02013-08-04 17:17:27 +02009775 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009776 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +02009777 vcpu->arch.pat = vmcs12->guest_ia32_pat;
9778 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009779 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
9780
9781
9782 set_cr4_guest_host_mask(vmx);
9783
Paolo Bonzini36be0b92014-02-24 12:30:04 +01009784 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
9785 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
9786
Nadav Har'El27fc51b2011-08-02 15:54:52 +03009787 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
9788 vmcs_write64(TSC_OFFSET,
9789 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
9790 else
9791 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009792
9793 if (enable_vpid) {
9794 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -07009795 * There is no direct mapping between vpid02 and vpid12, the
9796 * vpid02 is per-vCPU for L0 and reused while the value of
9797 * vpid12 is changed w/ one invvpid during nested vmentry.
9798 * The vpid12 is allocated by L1 for L2, so it will not
9799 * influence global bitmap(for vpid01 and vpid02 allocation)
9800 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009801 */
Wanpeng Li5c614b32015-10-13 09:18:36 -07009802 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
9803 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
9804 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
9805 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
9806 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
9807 }
9808 } else {
9809 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
9810 vmx_flush_tlb(vcpu);
9811 }
9812
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009813 }
9814
Nadav Har'El155a97a2013-08-05 11:07:16 +03009815 if (nested_cpu_has_ept(vmcs12)) {
9816 kvm_mmu_unload(vcpu);
9817 nested_ept_init_mmu_context(vcpu);
9818 }
9819
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009820 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
9821 vcpu->arch.efer = vmcs12->guest_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +02009822 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009823 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
9824 else
9825 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
9826 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
9827 vmx_set_efer(vcpu, vcpu->arch.efer);
9828
9829 /*
9830 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
9831 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
9832 * The CR0_READ_SHADOW is what L2 should have expected to read given
9833 * the specifications by L1; It's not enough to take
9834 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
9835 * have more bits than L1 expected.
9836 */
9837 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
9838 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
9839
9840 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
9841 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
9842
9843 /* shadow page tables on either EPT or shadow page tables */
9844 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
9845 kvm_mmu_reset_context(vcpu);
9846
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009847 if (!enable_ept)
9848 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
9849
Nadav Har'El3633cfc2013-08-05 11:07:07 +03009850 /*
9851 * L1 may access the L2's PDPTR, so save them to construct vmcs12
9852 */
9853 if (enable_ept) {
9854 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
9855 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
9856 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
9857 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
9858 }
9859
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03009860 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
9861 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
9862}
9863
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009864/*
9865 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
9866 * for running an L2 nested guest.
9867 */
9868static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
9869{
9870 struct vmcs12 *vmcs12;
9871 struct vcpu_vmx *vmx = to_vmx(vcpu);
9872 int cpu;
9873 struct loaded_vmcs *vmcs02;
Jan Kiszka384bb782013-04-20 10:52:36 +02009874 bool ia32e;
Wincy Vanff651cb2014-12-11 08:52:58 +03009875 u32 msr_entry_idx;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03009876
9877 if (!nested_vmx_check_permission(vcpu) ||
9878 !nested_vmx_check_vmcs12(vcpu))
9879 return 1;
9880
9881 skip_emulated_instruction(vcpu);
9882 vmcs12 = get_vmcs12(vcpu);
9883
Abel Gordon012f83c2013-04-18 14:39:25 +03009884 if (enable_shadow_vmcs)
9885 copy_shadow_to_vmcs12(vmx);
9886
Nadav Har'El7c177932011-05-25 23:12:04 +03009887 /*
9888 * The nested entry process starts with enforcing various prerequisites
9889 * on vmcs12 as required by the Intel SDM, and act appropriately when
9890 * they fail: As the SDM explains, some conditions should cause the
9891 * instruction to fail, while others will cause the instruction to seem
9892 * to succeed, but return an EXIT_REASON_INVALID_STATE.
9893 * To speed up the normal (success) code path, we should avoid checking
9894 * for misconfigurations which will anyway be caught by the processor
9895 * when using the merged vmcs02.
9896 */
9897 if (vmcs12->launch_state == launch) {
9898 nested_vmx_failValid(vcpu,
9899 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
9900 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
9901 return 1;
9902 }
9903
Jan Kiszka6dfacad2013-12-04 08:58:54 +01009904 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
9905 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
Paolo Bonzini26539bd2013-04-15 15:00:27 +02009906 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9907 return 1;
9908 }
9909
Wincy Van3af18d92015-02-03 23:49:31 +08009910 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009911 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9912 return 1;
9913 }
9914
Wincy Van3af18d92015-02-03 23:49:31 +08009915 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) {
Nadav Har'El7c177932011-05-25 23:12:04 +03009916 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9917 return 1;
9918 }
9919
Wincy Vanf2b93282015-02-03 23:56:03 +08009920 if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) {
9921 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9922 return 1;
9923 }
9924
Eugene Korenevskye9ac0332014-12-11 08:53:27 +03009925 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) {
9926 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9927 return 1;
9928 }
9929
Nadav Har'El7c177932011-05-25 23:12:04 +03009930 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009931 vmx->nested.nested_vmx_true_procbased_ctls_low,
9932 vmx->nested.nested_vmx_procbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009933 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009934 vmx->nested.nested_vmx_secondary_ctls_low,
9935 vmx->nested.nested_vmx_secondary_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009936 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009937 vmx->nested.nested_vmx_pinbased_ctls_low,
9938 vmx->nested.nested_vmx_pinbased_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009939 !vmx_control_verify(vmcs12->vm_exit_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009940 vmx->nested.nested_vmx_true_exit_ctls_low,
9941 vmx->nested.nested_vmx_exit_ctls_high) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009942 !vmx_control_verify(vmcs12->vm_entry_controls,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009943 vmx->nested.nested_vmx_true_entry_ctls_low,
9944 vmx->nested.nested_vmx_entry_ctls_high))
Nadav Har'El7c177932011-05-25 23:12:04 +03009945 {
9946 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
9947 return 1;
9948 }
9949
9950 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
9951 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9952 nested_vmx_failValid(vcpu,
9953 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
9954 return 1;
9955 }
9956
Wincy Vanb9c237b2015-02-03 23:56:30 +08009957 if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) ||
Nadav Har'El7c177932011-05-25 23:12:04 +03009958 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
9959 nested_vmx_entry_failure(vcpu, vmcs12,
9960 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9961 return 1;
9962 }
9963 if (vmcs12->vmcs_link_pointer != -1ull) {
9964 nested_vmx_entry_failure(vcpu, vmcs12,
9965 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
9966 return 1;
9967 }
9968
9969 /*
Jan Kiszkacb0c8cda2013-04-27 12:58:00 +02009970 * If the load IA32_EFER VM-entry control is 1, the following checks
Jan Kiszka384bb782013-04-20 10:52:36 +02009971 * are performed on the field for the IA32_EFER MSR:
9972 * - Bits reserved in the IA32_EFER MSR must be 0.
9973 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
9974 * the IA-32e mode guest VM-exit control. It must also be identical
9975 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
9976 * CR0.PG) is 1.
9977 */
9978 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
9979 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
9980 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
9981 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
9982 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
9983 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
9984 nested_vmx_entry_failure(vcpu, vmcs12,
9985 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
9986 return 1;
9987 }
9988 }
9989
9990 /*
9991 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
9992 * IA32_EFER MSR must be 0 in the field for that register. In addition,
9993 * the values of the LMA and LME bits in the field must each be that of
9994 * the host address-space size VM-exit control.
9995 */
9996 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
9997 ia32e = (vmcs12->vm_exit_controls &
9998 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
9999 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10000 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10001 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
10002 nested_vmx_entry_failure(vcpu, vmcs12,
10003 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
10004 return 1;
10005 }
10006 }
10007
10008 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010009 * We're finally done with prerequisite checking, and can start with
10010 * the nested entry.
10011 */
10012
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010013 vmcs02 = nested_get_current_vmcs02(vmx);
10014 if (!vmcs02)
10015 return -ENOMEM;
10016
10017 enter_guest_mode(vcpu);
10018
10019 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
10020
Jan Kiszka2996fca2014-06-16 13:59:43 +020010021 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10022 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10023
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010024 cpu = get_cpu();
10025 vmx->loaded_vmcs = vmcs02;
10026 vmx_vcpu_put(vcpu);
10027 vmx_vcpu_load(vcpu, cpu);
10028 vcpu->cpu = cpu;
10029 put_cpu();
10030
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010031 vmx_segment_cache_clear(vmx);
10032
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010033 prepare_vmcs02(vcpu, vmcs12);
10034
Wincy Vanff651cb2014-12-11 08:52:58 +030010035 msr_entry_idx = nested_vmx_load_msr(vcpu,
10036 vmcs12->vm_entry_msr_load_addr,
10037 vmcs12->vm_entry_msr_load_count);
10038 if (msr_entry_idx) {
10039 leave_guest_mode(vcpu);
10040 vmx_load_vmcs01(vcpu);
10041 nested_vmx_entry_failure(vcpu, vmcs12,
10042 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10043 return 1;
10044 }
10045
10046 vmcs12->launch_state = 1;
10047
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010048 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010049 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010050
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010051 vmx->nested.nested_run_pending = 1;
10052
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010053 /*
10054 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10055 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10056 * returned as far as L1 is concerned. It will only return (and set
10057 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10058 */
10059 return 1;
10060}
10061
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010062/*
10063 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10064 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10065 * This function returns the new value we should put in vmcs12.guest_cr0.
10066 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10067 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10068 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10069 * didn't trap the bit, because if L1 did, so would L0).
10070 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10071 * been modified by L2, and L1 knows it. So just leave the old value of
10072 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10073 * isn't relevant, because if L0 traps this bit it can set it to anything.
10074 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10075 * changed these bits, and therefore they need to be updated, but L0
10076 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10077 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10078 */
10079static inline unsigned long
10080vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10081{
10082 return
10083 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10084 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10085 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10086 vcpu->arch.cr0_guest_owned_bits));
10087}
10088
10089static inline unsigned long
10090vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10091{
10092 return
10093 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10094 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10095 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10096 vcpu->arch.cr4_guest_owned_bits));
10097}
10098
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010099static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10100 struct vmcs12 *vmcs12)
10101{
10102 u32 idt_vectoring;
10103 unsigned int nr;
10104
Gleb Natapov851eb6672013-09-25 12:51:34 +030010105 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010106 nr = vcpu->arch.exception.nr;
10107 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10108
10109 if (kvm_exception_is_soft(nr)) {
10110 vmcs12->vm_exit_instruction_len =
10111 vcpu->arch.event_exit_inst_len;
10112 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10113 } else
10114 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10115
10116 if (vcpu->arch.exception.has_error_code) {
10117 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10118 vmcs12->idt_vectoring_error_code =
10119 vcpu->arch.exception.error_code;
10120 }
10121
10122 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010123 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010124 vmcs12->idt_vectoring_info_field =
10125 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10126 } else if (vcpu->arch.interrupt.pending) {
10127 nr = vcpu->arch.interrupt.nr;
10128 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10129
10130 if (vcpu->arch.interrupt.soft) {
10131 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10132 vmcs12->vm_entry_instruction_len =
10133 vcpu->arch.event_exit_inst_len;
10134 } else
10135 idt_vectoring |= INTR_TYPE_EXT_INTR;
10136
10137 vmcs12->idt_vectoring_info_field = idt_vectoring;
10138 }
10139}
10140
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010141static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
10142{
10143 struct vcpu_vmx *vmx = to_vmx(vcpu);
10144
Jan Kiszkaf4124502014-03-07 20:03:13 +010010145 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
10146 vmx->nested.preemption_timer_expired) {
10147 if (vmx->nested.nested_run_pending)
10148 return -EBUSY;
10149 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
10150 return 0;
10151 }
10152
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010153 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Jan Kiszka220c5672014-03-07 20:03:14 +010010154 if (vmx->nested.nested_run_pending ||
10155 vcpu->arch.interrupt.pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010156 return -EBUSY;
10157 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10158 NMI_VECTOR | INTR_TYPE_NMI_INTR |
10159 INTR_INFO_VALID_MASK, 0);
10160 /*
10161 * The NMI-triggered VM exit counts as injection:
10162 * clear this one and block further NMIs.
10163 */
10164 vcpu->arch.nmi_pending = 0;
10165 vmx_set_nmi_mask(vcpu, true);
10166 return 0;
10167 }
10168
10169 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
10170 nested_exit_on_intr(vcpu)) {
10171 if (vmx->nested.nested_run_pending)
10172 return -EBUSY;
10173 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080010174 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010175 }
10176
Wincy Van705699a2015-02-03 23:58:17 +080010177 return vmx_complete_nested_posted_interrupt(vcpu);
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010178}
10179
Jan Kiszkaf4124502014-03-07 20:03:13 +010010180static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
10181{
10182 ktime_t remaining =
10183 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
10184 u64 value;
10185
10186 if (ktime_to_ns(remaining) <= 0)
10187 return 0;
10188
10189 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
10190 do_div(value, 1000000);
10191 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10192}
10193
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010194/*
10195 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
10196 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
10197 * and this function updates it to reflect the changes to the guest state while
10198 * L2 was running (and perhaps made some exits which were handled directly by L0
10199 * without going back to L1), and to reflect the exit reason.
10200 * Note that we do not have to copy here all VMCS fields, just those that
10201 * could have changed by the L2 guest or the exit - i.e., the guest-state and
10202 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
10203 * which already writes to vmcs12 directly.
10204 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010205static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10206 u32 exit_reason, u32 exit_intr_info,
10207 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010208{
10209 /* update guest state fields: */
10210 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
10211 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
10212
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010213 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
10214 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
10215 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
10216
10217 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
10218 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
10219 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
10220 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
10221 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
10222 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
10223 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
10224 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
10225 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
10226 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
10227 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
10228 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
10229 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
10230 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
10231 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
10232 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
10233 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
10234 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
10235 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
10236 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
10237 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
10238 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
10239 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
10240 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
10241 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
10242 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
10243 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
10244 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
10245 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
10246 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
10247 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
10248 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
10249 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
10250 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
10251 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
10252 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
10253
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010254 vmcs12->guest_interruptibility_info =
10255 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
10256 vmcs12->guest_pending_dbg_exceptions =
10257 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010010258 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10259 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
10260 else
10261 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010262
Jan Kiszkaf4124502014-03-07 20:03:13 +010010263 if (nested_cpu_has_preemption_timer(vmcs12)) {
10264 if (vmcs12->vm_exit_controls &
10265 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
10266 vmcs12->vmx_preemption_timer_value =
10267 vmx_get_preemption_timer_value(vcpu);
10268 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
10269 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080010270
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010271 /*
10272 * In some cases (usually, nested EPT), L2 is allowed to change its
10273 * own CR3 without exiting. If it has changed it, we must keep it.
10274 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
10275 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
10276 *
10277 * Additionally, restore L2's PDPTR to vmcs12.
10278 */
10279 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010010280 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010281 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
10282 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
10283 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
10284 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
10285 }
10286
Wincy Van608406e2015-02-03 23:57:51 +080010287 if (nested_cpu_has_vid(vmcs12))
10288 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
10289
Jan Kiszkac18911a2013-03-13 16:06:41 +010010290 vmcs12->vm_entry_controls =
10291 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020010292 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010010293
Jan Kiszka2996fca2014-06-16 13:59:43 +020010294 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
10295 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
10296 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10297 }
10298
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010299 /* TODO: These cannot have changed unless we have MSR bitmaps and
10300 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020010301 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010302 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020010303 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
10304 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010305 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
10306 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
10307 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010010308 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010309 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010310 if (nested_cpu_has_xsaves(vmcs12))
10311 vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010312
10313 /* update exit information fields: */
10314
Jan Kiszka533558b2014-01-04 18:47:20 +010010315 vmcs12->vm_exit_reason = exit_reason;
10316 vmcs12->exit_qualification = exit_qualification;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010317
Jan Kiszka533558b2014-01-04 18:47:20 +010010318 vmcs12->vm_exit_intr_info = exit_intr_info;
Jan Kiszkac0d1c772013-04-14 12:12:50 +020010319 if ((vmcs12->vm_exit_intr_info &
10320 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
10321 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
10322 vmcs12->vm_exit_intr_error_code =
10323 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010324 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010325 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
10326 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
10327
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010328 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
10329 /* vm_entry_intr_info_field is cleared on exit. Emulate this
10330 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010331 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010332
10333 /*
10334 * Transfer the event that L0 or L1 may wanted to inject into
10335 * L2 to IDT_VECTORING_INFO_FIELD.
10336 */
10337 vmcs12_save_pending_event(vcpu, vmcs12);
10338 }
10339
10340 /*
10341 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
10342 * preserved above and would only end up incorrectly in L1.
10343 */
10344 vcpu->arch.nmi_injected = false;
10345 kvm_clear_exception_queue(vcpu);
10346 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010347}
10348
10349/*
10350 * A part of what we need to when the nested L2 guest exits and we want to
10351 * run its L1 parent, is to reset L1's guest state to the host state specified
10352 * in vmcs12.
10353 * This function is to be called not only on normal nested exit, but also on
10354 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
10355 * Failures During or After Loading Guest State").
10356 * This function should be called when the active VMCS is L1's (vmcs01).
10357 */
Jan Kiszka733568f2013-02-23 15:07:47 +010010358static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
10359 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010360{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010361 struct kvm_segment seg;
10362
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010363 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
10364 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020010365 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010366 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10367 else
10368 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10369 vmx_set_efer(vcpu, vcpu->arch.efer);
10370
10371 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
10372 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070010373 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010374 /*
10375 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
10376 * actually changed, because it depends on the current state of
10377 * fpu_active (which may have changed).
10378 * Note that vmx_set_cr0 refers to efer set above.
10379 */
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020010380 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010381 /*
10382 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
10383 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
10384 * but we also need to update cr0_guest_host_mask and exception_bitmap.
10385 */
10386 update_exception_bitmap(vcpu);
10387 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
10388 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10389
10390 /*
10391 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
10392 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
10393 */
10394 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
10395 kvm_set_cr4(vcpu, vmcs12->host_cr4);
10396
Jan Kiszka29bf08f2013-12-28 16:31:52 +010010397 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010398
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010399 kvm_set_cr3(vcpu, vmcs12->host_cr3);
10400 kvm_mmu_reset_context(vcpu);
10401
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010402 if (!enable_ept)
10403 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
10404
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010405 if (enable_vpid) {
10406 /*
10407 * Trivially support vpid by letting L2s share their parent
10408 * L1's vpid. TODO: move to a more elaborate solution, giving
10409 * each L2 its own vpid and exposing the vpid feature to L1.
10410 */
10411 vmx_flush_tlb(vcpu);
10412 }
10413
10414
10415 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
10416 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
10417 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
10418 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
10419 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010420
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010421 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
10422 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
10423 vmcs_write64(GUEST_BNDCFGS, 0);
10424
Jan Kiszka44811c02013-08-04 17:17:27 +020010425 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010426 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010427 vcpu->arch.pat = vmcs12->host_ia32_pat;
10428 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010429 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
10430 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
10431 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010432
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010433 /* Set L1 segment info according to Intel SDM
10434 27.5.2 Loading Host Segment and Descriptor-Table Registers */
10435 seg = (struct kvm_segment) {
10436 .base = 0,
10437 .limit = 0xFFFFFFFF,
10438 .selector = vmcs12->host_cs_selector,
10439 .type = 11,
10440 .present = 1,
10441 .s = 1,
10442 .g = 1
10443 };
10444 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
10445 seg.l = 1;
10446 else
10447 seg.db = 1;
10448 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
10449 seg = (struct kvm_segment) {
10450 .base = 0,
10451 .limit = 0xFFFFFFFF,
10452 .type = 3,
10453 .present = 1,
10454 .s = 1,
10455 .db = 1,
10456 .g = 1
10457 };
10458 seg.selector = vmcs12->host_ds_selector;
10459 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
10460 seg.selector = vmcs12->host_es_selector;
10461 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
10462 seg.selector = vmcs12->host_ss_selector;
10463 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
10464 seg.selector = vmcs12->host_fs_selector;
10465 seg.base = vmcs12->host_fs_base;
10466 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
10467 seg.selector = vmcs12->host_gs_selector;
10468 seg.base = vmcs12->host_gs_base;
10469 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
10470 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030010471 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080010472 .limit = 0x67,
10473 .selector = vmcs12->host_tr_selector,
10474 .type = 11,
10475 .present = 1
10476 };
10477 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
10478
Jan Kiszka503cd0c2013-03-03 13:05:44 +010010479 kvm_set_dr(vcpu, 7, 0x400);
10480 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030010481
Wincy Van3af18d92015-02-03 23:49:31 +080010482 if (cpu_has_vmx_msr_bitmap())
10483 vmx_set_msr_bitmap(vcpu);
10484
Wincy Vanff651cb2014-12-11 08:52:58 +030010485 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
10486 vmcs12->vm_exit_msr_load_count))
10487 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010488}
10489
10490/*
10491 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
10492 * and modify vmcs12 to make it see what it would expect to see there if
10493 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
10494 */
Jan Kiszka533558b2014-01-04 18:47:20 +010010495static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
10496 u32 exit_intr_info,
10497 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010498{
10499 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010500 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10501
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010502 /* trying to cancel vmlaunch/vmresume is a bug */
10503 WARN_ON_ONCE(vmx->nested.nested_run_pending);
10504
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010505 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010506 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
10507 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010508
Wincy Vanff651cb2014-12-11 08:52:58 +030010509 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
10510 vmcs12->vm_exit_msr_store_count))
10511 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
10512
Wanpeng Lif3380ca2014-08-05 12:42:23 +080010513 vmx_load_vmcs01(vcpu);
10514
Bandan Das77b0f5d2014-04-19 18:17:45 -040010515 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
10516 && nested_exit_intr_ack_set(vcpu)) {
10517 int irq = kvm_cpu_get_interrupt(vcpu);
10518 WARN_ON(irq < 0);
10519 vmcs12->vm_exit_intr_info = irq |
10520 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
10521 }
10522
Jan Kiszka542060e2014-01-04 18:47:21 +010010523 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
10524 vmcs12->exit_qualification,
10525 vmcs12->idt_vectoring_info_field,
10526 vmcs12->vm_exit_intr_info,
10527 vmcs12->vm_exit_intr_error_code,
10528 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010529
Gleb Natapov2961e8762013-11-25 15:37:13 +020010530 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
10531 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
Jan Kiszka36c3cc42013-02-23 22:35:37 +010010532 vmx_segment_cache_clear(vmx);
10533
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010534 /* if no vmcs02 cache requested, remove the one we used */
10535 if (VMCS02_POOL_SIZE == 0)
10536 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
10537
10538 load_vmcs12_host_state(vcpu, vmcs12);
10539
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010540 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010541 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
10542
10543 /* This is needed for same reason as it was needed in prepare_vmcs02 */
10544 vmx->host_rsp = 0;
10545
10546 /* Unpin physical memory we referred to in vmcs02 */
10547 if (vmx->nested.apic_access_page) {
10548 nested_release_page(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010549 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010550 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010551 if (vmx->nested.virtual_apic_page) {
10552 nested_release_page(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010553 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010554 }
Wincy Van705699a2015-02-03 23:58:17 +080010555 if (vmx->nested.pi_desc_page) {
10556 kunmap(vmx->nested.pi_desc_page);
10557 nested_release_page(vmx->nested.pi_desc_page);
10558 vmx->nested.pi_desc_page = NULL;
10559 vmx->nested.pi_desc = NULL;
10560 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010561
10562 /*
Tang Chen38b99172014-09-24 15:57:54 +080010563 * We are now running in L2, mmu_notifier will force to reload the
10564 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
10565 */
10566 kvm_vcpu_reload_apic_access_page(vcpu);
10567
10568 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010569 * Exiting from L2 to L1, we're now back to L1 which thinks it just
10570 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
10571 * success or failure flag accordingly.
10572 */
10573 if (unlikely(vmx->fail)) {
10574 vmx->fail = 0;
10575 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
10576 } else
10577 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010578 if (enable_shadow_vmcs)
10579 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010580
10581 /* in case we halted in L2 */
10582 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010583}
10584
Nadav Har'El7c177932011-05-25 23:12:04 +030010585/*
Jan Kiszka42124922014-01-04 18:47:19 +010010586 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
10587 */
10588static void vmx_leave_nested(struct kvm_vcpu *vcpu)
10589{
10590 if (is_guest_mode(vcpu))
Jan Kiszka533558b2014-01-04 18:47:20 +010010591 nested_vmx_vmexit(vcpu, -1, 0, 0);
Jan Kiszka42124922014-01-04 18:47:19 +010010592 free_nested(to_vmx(vcpu));
10593}
10594
10595/*
Nadav Har'El7c177932011-05-25 23:12:04 +030010596 * L1's failure to enter L2 is a subset of a normal exit, as explained in
10597 * 23.7 "VM-entry failures during or after loading guest state" (this also
10598 * lists the acceptable exit-reason and exit-qualification parameters).
10599 * It should only be called before L2 actually succeeded to run, and when
10600 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
10601 */
10602static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
10603 struct vmcs12 *vmcs12,
10604 u32 reason, unsigned long qualification)
10605{
10606 load_vmcs12_host_state(vcpu, vmcs12);
10607 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
10608 vmcs12->exit_qualification = qualification;
10609 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030010610 if (enable_shadow_vmcs)
10611 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030010612}
10613
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010614static int vmx_check_intercept(struct kvm_vcpu *vcpu,
10615 struct x86_instruction_info *info,
10616 enum x86_intercept_stage stage)
10617{
10618 return X86EMUL_CONTINUE;
10619}
10620
Paolo Bonzini48d89b92014-08-26 13:27:46 +020010621static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010622{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020010623 if (ple_gap)
10624 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010625}
10626
Kai Huang843e4332015-01-28 10:54:28 +080010627static void vmx_slot_enable_log_dirty(struct kvm *kvm,
10628 struct kvm_memory_slot *slot)
10629{
10630 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
10631 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
10632}
10633
10634static void vmx_slot_disable_log_dirty(struct kvm *kvm,
10635 struct kvm_memory_slot *slot)
10636{
10637 kvm_mmu_slot_set_dirty(kvm, slot);
10638}
10639
10640static void vmx_flush_log_dirty(struct kvm *kvm)
10641{
10642 kvm_flush_pml_buffers(kvm);
10643}
10644
10645static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
10646 struct kvm_memory_slot *memslot,
10647 gfn_t offset, unsigned long mask)
10648{
10649 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
10650}
10651
Feng Wuefc64402015-09-18 22:29:51 +080010652/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080010653 * This routine does the following things for vCPU which is going
10654 * to be blocked if VT-d PI is enabled.
10655 * - Store the vCPU to the wakeup list, so when interrupts happen
10656 * we can find the right vCPU to wake up.
10657 * - Change the Posted-interrupt descriptor as below:
10658 * 'NDST' <-- vcpu->pre_pcpu
10659 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
10660 * - If 'ON' is set during this process, which means at least one
10661 * interrupt is posted for this vCPU, we cannot block it, in
10662 * this case, return 1, otherwise, return 0.
10663 *
10664 */
10665static int vmx_pre_block(struct kvm_vcpu *vcpu)
10666{
10667 unsigned long flags;
10668 unsigned int dest;
10669 struct pi_desc old, new;
10670 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10671
10672 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10673 !irq_remapping_cap(IRQ_POSTING_CAP))
10674 return 0;
10675
10676 vcpu->pre_pcpu = vcpu->cpu;
10677 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10678 vcpu->pre_pcpu), flags);
10679 list_add_tail(&vcpu->blocked_vcpu_list,
10680 &per_cpu(blocked_vcpu_on_cpu,
10681 vcpu->pre_pcpu));
10682 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
10683 vcpu->pre_pcpu), flags);
10684
10685 do {
10686 old.control = new.control = pi_desc->control;
10687
10688 /*
10689 * We should not block the vCPU if
10690 * an interrupt is posted for it.
10691 */
10692 if (pi_test_on(pi_desc) == 1) {
10693 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
10694 vcpu->pre_pcpu), flags);
10695 list_del(&vcpu->blocked_vcpu_list);
10696 spin_unlock_irqrestore(
10697 &per_cpu(blocked_vcpu_on_cpu_lock,
10698 vcpu->pre_pcpu), flags);
10699 vcpu->pre_pcpu = -1;
10700
10701 return 1;
10702 }
10703
10704 WARN((pi_desc->sn == 1),
10705 "Warning: SN field of posted-interrupts "
10706 "is set before blocking\n");
10707
10708 /*
10709 * Since vCPU can be preempted during this process,
10710 * vcpu->cpu could be different with pre_pcpu, we
10711 * need to set pre_pcpu as the destination of wakeup
10712 * notification event, then we can find the right vCPU
10713 * to wakeup in wakeup handler if interrupts happen
10714 * when the vCPU is in blocked state.
10715 */
10716 dest = cpu_physical_id(vcpu->pre_pcpu);
10717
10718 if (x2apic_enabled())
10719 new.ndst = dest;
10720 else
10721 new.ndst = (dest << 8) & 0xFF00;
10722
10723 /* set 'NV' to 'wakeup vector' */
10724 new.nv = POSTED_INTR_WAKEUP_VECTOR;
10725 } while (cmpxchg(&pi_desc->control, old.control,
10726 new.control) != old.control);
10727
10728 return 0;
10729}
10730
10731static void vmx_post_block(struct kvm_vcpu *vcpu)
10732{
10733 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
10734 struct pi_desc old, new;
10735 unsigned int dest;
10736 unsigned long flags;
10737
10738 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
10739 !irq_remapping_cap(IRQ_POSTING_CAP))
10740 return;
10741
10742 do {
10743 old.control = new.control = pi_desc->control;
10744
10745 dest = cpu_physical_id(vcpu->cpu);
10746
10747 if (x2apic_enabled())
10748 new.ndst = dest;
10749 else
10750 new.ndst = (dest << 8) & 0xFF00;
10751
10752 /* Allow posting non-urgent interrupts */
10753 new.sn = 0;
10754
10755 /* set 'NV' to 'notification vector' */
10756 new.nv = POSTED_INTR_VECTOR;
10757 } while (cmpxchg(&pi_desc->control, old.control,
10758 new.control) != old.control);
10759
10760 if(vcpu->pre_pcpu != -1) {
10761 spin_lock_irqsave(
10762 &per_cpu(blocked_vcpu_on_cpu_lock,
10763 vcpu->pre_pcpu), flags);
10764 list_del(&vcpu->blocked_vcpu_list);
10765 spin_unlock_irqrestore(
10766 &per_cpu(blocked_vcpu_on_cpu_lock,
10767 vcpu->pre_pcpu), flags);
10768 vcpu->pre_pcpu = -1;
10769 }
10770}
10771
10772/*
Feng Wuefc64402015-09-18 22:29:51 +080010773 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
10774 *
10775 * @kvm: kvm
10776 * @host_irq: host irq of the interrupt
10777 * @guest_irq: gsi of the interrupt
10778 * @set: set or unset PI
10779 * returns 0 on success, < 0 on failure
10780 */
10781static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
10782 uint32_t guest_irq, bool set)
10783{
10784 struct kvm_kernel_irq_routing_entry *e;
10785 struct kvm_irq_routing_table *irq_rt;
10786 struct kvm_lapic_irq irq;
10787 struct kvm_vcpu *vcpu;
10788 struct vcpu_data vcpu_info;
10789 int idx, ret = -EINVAL;
10790
10791 if (!kvm_arch_has_assigned_device(kvm) ||
10792 !irq_remapping_cap(IRQ_POSTING_CAP))
10793 return 0;
10794
10795 idx = srcu_read_lock(&kvm->irq_srcu);
10796 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
10797 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
10798
10799 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
10800 if (e->type != KVM_IRQ_ROUTING_MSI)
10801 continue;
10802 /*
10803 * VT-d PI cannot support posting multicast/broadcast
10804 * interrupts to a vCPU, we still use interrupt remapping
10805 * for these kind of interrupts.
10806 *
10807 * For lowest-priority interrupts, we only support
10808 * those with single CPU as the destination, e.g. user
10809 * configures the interrupts via /proc/irq or uses
10810 * irqbalance to make the interrupts single-CPU.
10811 *
10812 * We will support full lowest-priority interrupt later.
10813 */
10814
10815 kvm_set_msi_irq(e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080010816 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
10817 /*
10818 * Make sure the IRTE is in remapped mode if
10819 * we don't handle it in posted mode.
10820 */
10821 ret = irq_set_vcpu_affinity(host_irq, NULL);
10822 if (ret < 0) {
10823 printk(KERN_INFO
10824 "failed to back to remapped mode, irq: %u\n",
10825 host_irq);
10826 goto out;
10827 }
10828
Feng Wuefc64402015-09-18 22:29:51 +080010829 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080010830 }
Feng Wuefc64402015-09-18 22:29:51 +080010831
10832 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
10833 vcpu_info.vector = irq.vector;
10834
Feng Wub6ce9782016-01-25 16:53:35 +080010835 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080010836 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
10837
10838 if (set)
10839 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
10840 else {
10841 /* suppress notification event before unposting */
10842 pi_set_sn(vcpu_to_pi_desc(vcpu));
10843 ret = irq_set_vcpu_affinity(host_irq, NULL);
10844 pi_clear_sn(vcpu_to_pi_desc(vcpu));
10845 }
10846
10847 if (ret < 0) {
10848 printk(KERN_INFO "%s: failed to update PI IRTE\n",
10849 __func__);
10850 goto out;
10851 }
10852 }
10853
10854 ret = 0;
10855out:
10856 srcu_read_unlock(&kvm->irq_srcu, idx);
10857 return ret;
10858}
10859
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030010860static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080010861 .cpu_has_kvm_support = cpu_has_kvm_support,
10862 .disabled_by_bios = vmx_disabled_by_bios,
10863 .hardware_setup = hardware_setup,
10864 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030010865 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010866 .hardware_enable = hardware_enable,
10867 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080010868 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020010869 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010870
10871 .vcpu_create = vmx_create_vcpu,
10872 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030010873 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010874
Avi Kivity04d2cc72007-09-10 18:10:54 +030010875 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010876 .vcpu_load = vmx_vcpu_load,
10877 .vcpu_put = vmx_vcpu_put,
10878
Paolo Bonzinia96036b2015-11-10 11:55:36 +010010879 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010880 .get_msr = vmx_get_msr,
10881 .set_msr = vmx_set_msr,
10882 .get_segment_base = vmx_get_segment_base,
10883 .get_segment = vmx_get_segment,
10884 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020010885 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010886 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020010887 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020010888 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030010889 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010890 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010891 .set_cr3 = vmx_set_cr3,
10892 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010893 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010894 .get_idt = vmx_get_idt,
10895 .set_idt = vmx_set_idt,
10896 .get_gdt = vmx_get_gdt,
10897 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010010898 .get_dr6 = vmx_get_dr6,
10899 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030010900 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010010901 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010902 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010903 .get_rflags = vmx_get_rflags,
10904 .set_rflags = vmx_set_rflags,
Paolo Bonzini0fdd74f2015-05-20 11:33:43 +020010905 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +020010906 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010907
10908 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010909
Avi Kivity6aa8b732006-12-10 02:21:36 -080010910 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020010911 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010912 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040010913 .set_interrupt_shadow = vmx_set_interrupt_shadow,
10914 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020010915 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030010916 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010917 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020010918 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030010919 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020010920 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010921 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010010922 .get_nmi_mask = vmx_get_nmi_mask,
10923 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010924 .enable_nmi_window = enable_nmi_window,
10925 .enable_irq_window = enable_irq_window,
10926 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080010927 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080010928 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030010929 .get_enable_apicv = vmx_get_enable_apicv,
10930 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080010931 .load_eoi_exitmap = vmx_load_eoi_exitmap,
10932 .hwapic_irr_update = vmx_hwapic_irr_update,
10933 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080010934 .sync_pir_to_irr = vmx_sync_pir_to_irr,
10935 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030010936
Izik Eiduscbc94022007-10-25 00:29:55 +020010937 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080010938 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010939 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010940
Avi Kivity586f9602010-11-18 13:09:54 +020010941 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020010942
Sheng Yang17cc3932010-01-05 19:02:27 +080010943 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080010944
10945 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010946
10947 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000010948 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010949
10950 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080010951
10952 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010953
Will Auldba904632012-11-29 12:42:50 -080010954 .read_tsc_offset = vmx_read_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100010955 .write_tsc_offset = vmx_write_tsc_offset,
Haozhong Zhang58ea6762015-10-20 15:39:06 +080010956 .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest,
Nadav Har'Eld5c17852011-08-02 15:54:20 +030010957 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020010958
10959 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020010960
10961 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080010962 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000010963 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080010964 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010010965
10966 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020010967
10968 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080010969
10970 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
10971 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
10972 .flush_log_dirty = vmx_flush_log_dirty,
10973 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Wei Huang25462f7f2015-06-19 15:45:05 +020010974
Feng Wubf9f6ac2015-09-18 22:29:55 +080010975 .pre_block = vmx_pre_block,
10976 .post_block = vmx_post_block,
10977
Wei Huang25462f7f2015-06-19 15:45:05 +020010978 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080010979
10980 .update_pi_irte = vmx_update_pi_irte,
Avi Kivity6aa8b732006-12-10 02:21:36 -080010981};
10982
10983static int __init vmx_init(void)
10984{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010985 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
10986 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030010987 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080010988 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080010989
Dave Young2965faa2015-09-09 15:38:55 -070010990#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080010991 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
10992 crash_vmclear_local_loaded_vmcss);
10993#endif
10994
He, Qingfdef3ad2007-04-30 09:45:24 +030010995 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010996}
10997
10998static void __exit vmx_exit(void)
10999{
Dave Young2965faa2015-09-09 15:38:55 -070011000#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053011001 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080011002 synchronize_rcu();
11003#endif
11004
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080011005 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080011006}
11007
11008module_init(vmx_init)
11009module_exit(vmx_exit)