blob: aa66ccd6ed6cc573b42a2584635f7f525dbe0713 [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>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Dan Williams085331d2018-01-31 17:47:03 -080037#include <linux/nospec.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030038#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030039#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040040
Feng Wu28b835d2015-09-18 22:29:54 +080041#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080042#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080043#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020044#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020045#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080046#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020047#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020048#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010049#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080050#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010051#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080052#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070053#include <asm/mmu_context.h>
David Woodhouse117cc7a2018-01-12 11:11:27 +000054#include <asm/nospec-branch.h>
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010055#include <asm/mshyperv.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080056
Marcelo Tosatti229456f2009-06-17 09:22:14 -030057#include "trace.h"
Wei Huang25462f72015-06-19 15:45:05 +020058#include "pmu.h"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010059#include "vmx_evmcs.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030060
Avi Kivity4ecac3f2008-05-13 13:23:38 +030061#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040062#define __ex_clear(x, reg) \
63 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030064
Avi Kivity6aa8b732006-12-10 02:21:36 -080065MODULE_AUTHOR("Qumranet");
66MODULE_LICENSE("GPL");
67
Josh Triplette9bda3b2012-03-20 23:33:51 -070068static const struct x86_cpu_id vmx_cpu_id[] = {
69 X86_FEATURE_MATCH(X86_FEATURE_VMX),
70 {}
71};
72MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
73
Rusty Russell476bc002012-01-13 09:32:18 +103074static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020075module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080076
Paolo Bonzinid02fcf52017-11-06 13:31:13 +010077static bool __read_mostly enable_vnmi = 1;
78module_param_named(vnmi, enable_vnmi, bool, S_IRUGO);
79
Rusty Russell476bc002012-01-13 09:32:18 +103080static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020081module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020082
Rusty Russell476bc002012-01-13 09:32:18 +103083static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020084module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080085
Rusty Russell476bc002012-01-13 09:32:18 +103086static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070087module_param_named(unrestricted_guest,
88 enable_unrestricted_guest, bool, S_IRUGO);
89
Xudong Hao83c3a332012-05-28 19:33:35 +080090static bool __read_mostly enable_ept_ad_bits = 1;
91module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
92
Avi Kivitya27685c2012-06-12 20:30:18 +030093static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020094module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030095
Rusty Russell476bc002012-01-13 09:32:18 +103096static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030097module_param(fasteoi, bool, S_IRUGO);
98
Yang Zhang5a717852013-04-11 19:25:16 +080099static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +0800100module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +0800101
Abel Gordonabc4fc52013-04-18 14:35:25 +0300102static bool __read_mostly enable_shadow_vmcs = 1;
103module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +0300104/*
105 * If nested=1, nested virtualization is supported, i.e., guests may use
106 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
107 * use VMX instructions.
108 */
Rusty Russell476bc002012-01-13 09:32:18 +1030109static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300110module_param(nested, bool, S_IRUGO);
111
Wanpeng Li20300092014-12-02 19:14:59 +0800112static u64 __read_mostly host_xss;
113
Kai Huang843e4332015-01-28 10:54:28 +0800114static bool __read_mostly enable_pml = 1;
115module_param_named(pml, enable_pml, bool, S_IRUGO);
116
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100117#define MSR_TYPE_R 1
118#define MSR_TYPE_W 2
119#define MSR_TYPE_RW 3
120
121#define MSR_BITMAP_MODE_X2APIC 1
122#define MSR_BITMAP_MODE_X2APIC_APICV 2
123#define MSR_BITMAP_MODE_LM 4
124
Haozhong Zhang64903d62015-10-20 15:39:09 +0800125#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
126
Yunhong Jiang64672c92016-06-13 14:19:59 -0700127/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
128static int __read_mostly cpu_preemption_timer_multi;
129static bool __read_mostly enable_preemption_timer = 1;
130#ifdef CONFIG_X86_64
131module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
132#endif
133
Gleb Natapov50378782013-02-04 16:00:28 +0200134#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
Sean Christopherson1706bd02018-03-05 12:04:38 -0800135#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR0_NE
136#define KVM_VM_CR0_ALWAYS_ON \
137 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | \
138 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200139#define KVM_CR4_GUEST_OWNED_BITS \
140 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800141 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200142
Sean Christopherson5dc1f042018-03-05 12:04:39 -0800143#define KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST X86_CR4_VMXE
Avi Kivitycdc0e242009-12-06 17:21:14 +0200144#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
145#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
146
Avi Kivity78ac8b42010-04-08 18:19:35 +0300147#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
148
Jan Kiszkaf4124502014-03-07 20:03:13 +0100149#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
150
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800151/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300152 * Hyper-V requires all of these, so mark them as supported even though
153 * they are just treated the same as all-context.
154 */
155#define VMX_VPID_EXTENT_SUPPORTED_MASK \
156 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
157 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
158 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
159 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
160
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800161/*
162 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
163 * ple_gap: upper bound on the amount of time between two successive
164 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500165 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800166 * ple_window: upper bound on the amount of time a guest is allowed to execute
167 * in a PAUSE loop. Tests indicate that most spinlocks are held for
168 * less than 2^12 cycles
169 * Time is measured based on a counter that runs at the same rate as the TSC,
170 * refer SDM volume 3b section 21.6.13 & 22.1.3.
171 */
Babu Mogerc8e88712018-03-16 16:37:24 -0400172static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200173
Babu Moger7fbc85a2018-03-16 16:37:22 -0400174static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
175module_param(ple_window, uint, 0444);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800176
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200177/* Default doubles per-vcpu window every exit. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400178static unsigned int ple_window_grow = KVM_DEFAULT_PLE_WINDOW_GROW;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400179module_param(ple_window_grow, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200180
181/* Default resets per-vcpu window every exit to ple_window. */
Babu Mogerc8e88712018-03-16 16:37:24 -0400182static unsigned int ple_window_shrink = KVM_DEFAULT_PLE_WINDOW_SHRINK;
Babu Moger7fbc85a2018-03-16 16:37:22 -0400183module_param(ple_window_shrink, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200184
185/* Default is to compute the maximum so we can never overflow. */
Babu Moger7fbc85a2018-03-16 16:37:22 -0400186static unsigned int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
187module_param(ple_window_max, uint, 0444);
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200188
Avi Kivity83287ea422012-09-16 15:10:57 +0300189extern const ulong vmx_return;
190
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700191struct kvm_vmx {
192 struct kvm kvm;
193
194 unsigned int tss_addr;
195 bool ept_identity_pagetable_done;
196 gpa_t ept_identity_map_addr;
197};
198
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200199#define NR_AUTOLOAD_MSRS 8
Avi Kivity61d2ef22010-04-28 16:40:38 +0300200
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400201struct vmcs {
202 u32 revision_id;
203 u32 abort;
204 char data[0];
205};
206
Nadav Har'Eld462b812011-05-24 15:26:10 +0300207/*
208 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
209 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
210 * loaded on this CPU (so we can clear them if the CPU goes down).
211 */
212struct loaded_vmcs {
213 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700214 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300215 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200216 bool launched;
217 bool nmi_known_unmasked;
Ladi Prosek44889942017-09-22 07:53:15 +0200218 unsigned long vmcs_host_cr3; /* May not match real cr3 */
219 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Paolo Bonzini8a1b4392017-11-06 13:31:12 +0100220 /* Support for vnmi-less CPUs */
221 int soft_vnmi_blocked;
222 ktime_t entry_time;
223 s64 vnmi_blocked_time;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100224 unsigned long *msr_bitmap;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300225 struct list_head loaded_vmcss_on_cpu_link;
226};
227
Avi Kivity26bb0982009-09-07 11:14:12 +0300228struct shared_msr_entry {
229 unsigned index;
230 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200231 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300232};
233
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300234/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300235 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
236 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
237 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
238 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
239 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
240 * More than one of these structures may exist, if L1 runs multiple L2 guests.
Jim Mattsonde3a0022017-11-27 17:22:25 -0600241 * nested_vmx_run() will use the data here to build the vmcs02: a VMCS for the
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300242 * underlying hardware which will be used to run L2.
243 * This structure is packed to ensure that its layout is identical across
244 * machines (necessary for live migration).
245 * If there are changes in this struct, VMCS12_REVISION must be changed.
246 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300247typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300248struct __packed vmcs12 {
249 /* According to the Intel spec, a VMCS region must start with the
250 * following two fields. Then follow implementation-specific data.
251 */
252 u32 revision_id;
253 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300254
Nadav Har'El27d6c862011-05-25 23:06:59 +0300255 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
256 u32 padding[7]; /* room for future expansion */
257
Nadav Har'El22bd0352011-05-25 23:05:57 +0300258 u64 io_bitmap_a;
259 u64 io_bitmap_b;
260 u64 msr_bitmap;
261 u64 vm_exit_msr_store_addr;
262 u64 vm_exit_msr_load_addr;
263 u64 vm_entry_msr_load_addr;
264 u64 tsc_offset;
265 u64 virtual_apic_page_addr;
266 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800267 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400268 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300269 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800270 u64 eoi_exit_bitmap0;
271 u64 eoi_exit_bitmap1;
272 u64 eoi_exit_bitmap2;
273 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400274 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800275 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300276 u64 guest_physical_address;
277 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400278 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300279 u64 guest_ia32_debugctl;
280 u64 guest_ia32_pat;
281 u64 guest_ia32_efer;
282 u64 guest_ia32_perf_global_ctrl;
283 u64 guest_pdptr0;
284 u64 guest_pdptr1;
285 u64 guest_pdptr2;
286 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100287 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300288 u64 host_ia32_pat;
289 u64 host_ia32_efer;
290 u64 host_ia32_perf_global_ctrl;
291 u64 padding64[8]; /* room for future expansion */
292 /*
293 * To allow migration of L1 (complete with its L2 guests) between
294 * machines of different natural widths (32 or 64 bit), we cannot have
295 * unsigned long fields with no explict size. We use u64 (aliased
296 * natural_width) instead. Luckily, x86 is little-endian.
297 */
298 natural_width cr0_guest_host_mask;
299 natural_width cr4_guest_host_mask;
300 natural_width cr0_read_shadow;
301 natural_width cr4_read_shadow;
302 natural_width cr3_target_value0;
303 natural_width cr3_target_value1;
304 natural_width cr3_target_value2;
305 natural_width cr3_target_value3;
306 natural_width exit_qualification;
307 natural_width guest_linear_address;
308 natural_width guest_cr0;
309 natural_width guest_cr3;
310 natural_width guest_cr4;
311 natural_width guest_es_base;
312 natural_width guest_cs_base;
313 natural_width guest_ss_base;
314 natural_width guest_ds_base;
315 natural_width guest_fs_base;
316 natural_width guest_gs_base;
317 natural_width guest_ldtr_base;
318 natural_width guest_tr_base;
319 natural_width guest_gdtr_base;
320 natural_width guest_idtr_base;
321 natural_width guest_dr7;
322 natural_width guest_rsp;
323 natural_width guest_rip;
324 natural_width guest_rflags;
325 natural_width guest_pending_dbg_exceptions;
326 natural_width guest_sysenter_esp;
327 natural_width guest_sysenter_eip;
328 natural_width host_cr0;
329 natural_width host_cr3;
330 natural_width host_cr4;
331 natural_width host_fs_base;
332 natural_width host_gs_base;
333 natural_width host_tr_base;
334 natural_width host_gdtr_base;
335 natural_width host_idtr_base;
336 natural_width host_ia32_sysenter_esp;
337 natural_width host_ia32_sysenter_eip;
338 natural_width host_rsp;
339 natural_width host_rip;
340 natural_width paddingl[8]; /* room for future expansion */
341 u32 pin_based_vm_exec_control;
342 u32 cpu_based_vm_exec_control;
343 u32 exception_bitmap;
344 u32 page_fault_error_code_mask;
345 u32 page_fault_error_code_match;
346 u32 cr3_target_count;
347 u32 vm_exit_controls;
348 u32 vm_exit_msr_store_count;
349 u32 vm_exit_msr_load_count;
350 u32 vm_entry_controls;
351 u32 vm_entry_msr_load_count;
352 u32 vm_entry_intr_info_field;
353 u32 vm_entry_exception_error_code;
354 u32 vm_entry_instruction_len;
355 u32 tpr_threshold;
356 u32 secondary_vm_exec_control;
357 u32 vm_instruction_error;
358 u32 vm_exit_reason;
359 u32 vm_exit_intr_info;
360 u32 vm_exit_intr_error_code;
361 u32 idt_vectoring_info_field;
362 u32 idt_vectoring_error_code;
363 u32 vm_exit_instruction_len;
364 u32 vmx_instruction_info;
365 u32 guest_es_limit;
366 u32 guest_cs_limit;
367 u32 guest_ss_limit;
368 u32 guest_ds_limit;
369 u32 guest_fs_limit;
370 u32 guest_gs_limit;
371 u32 guest_ldtr_limit;
372 u32 guest_tr_limit;
373 u32 guest_gdtr_limit;
374 u32 guest_idtr_limit;
375 u32 guest_es_ar_bytes;
376 u32 guest_cs_ar_bytes;
377 u32 guest_ss_ar_bytes;
378 u32 guest_ds_ar_bytes;
379 u32 guest_fs_ar_bytes;
380 u32 guest_gs_ar_bytes;
381 u32 guest_ldtr_ar_bytes;
382 u32 guest_tr_ar_bytes;
383 u32 guest_interruptibility_info;
384 u32 guest_activity_state;
385 u32 guest_sysenter_cs;
386 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100387 u32 vmx_preemption_timer_value;
388 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300389 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800390 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300391 u16 guest_es_selector;
392 u16 guest_cs_selector;
393 u16 guest_ss_selector;
394 u16 guest_ds_selector;
395 u16 guest_fs_selector;
396 u16 guest_gs_selector;
397 u16 guest_ldtr_selector;
398 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800399 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400400 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300401 u16 host_es_selector;
402 u16 host_cs_selector;
403 u16 host_ss_selector;
404 u16 host_ds_selector;
405 u16 host_fs_selector;
406 u16 host_gs_selector;
407 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300408};
409
410/*
411 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
412 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
413 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
414 */
415#define VMCS12_REVISION 0x11e57ed0
416
417/*
418 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
419 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
420 * current implementation, 4K are reserved to avoid future complications.
421 */
422#define VMCS12_SIZE 0x1000
423
424/*
Jim Mattson5b157062017-12-22 12:11:12 -0800425 * VMCS12_MAX_FIELD_INDEX is the highest index value used in any
426 * supported VMCS12 field encoding.
427 */
428#define VMCS12_MAX_FIELD_INDEX 0x17
429
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100430struct nested_vmx_msrs {
431 /*
432 * We only store the "true" versions of the VMX capability MSRs. We
433 * generate the "non-true" versions by setting the must-be-1 bits
434 * according to the SDM.
435 */
436 u32 procbased_ctls_low;
437 u32 procbased_ctls_high;
438 u32 secondary_ctls_low;
439 u32 secondary_ctls_high;
440 u32 pinbased_ctls_low;
441 u32 pinbased_ctls_high;
442 u32 exit_ctls_low;
443 u32 exit_ctls_high;
444 u32 entry_ctls_low;
445 u32 entry_ctls_high;
446 u32 misc_low;
447 u32 misc_high;
448 u32 ept_caps;
449 u32 vpid_caps;
450 u64 basic;
451 u64 cr0_fixed0;
452 u64 cr0_fixed1;
453 u64 cr4_fixed0;
454 u64 cr4_fixed1;
455 u64 vmcs_enum;
456 u64 vmfunc_controls;
457};
458
Jim Mattson5b157062017-12-22 12:11:12 -0800459/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300460 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
461 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
462 */
463struct nested_vmx {
464 /* Has the level1 guest done vmxon? */
465 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400466 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400467 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300468
469 /* The guest-physical address of the current VMCS L1 keeps for L2 */
470 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700471 /*
472 * Cache of the guest's VMCS, existing outside of guest memory.
473 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700474 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700475 */
476 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300477 /*
478 * Indicates if the shadow vmcs must be updated with the
479 * data hold by vmcs12
480 */
481 bool sync_shadow_vmcs;
Paolo Bonzini74a497f2017-12-20 13:55:39 +0100482 bool dirty_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300483
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200484 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300485 /* L2 must run next, and mustn't decide to exit to L1. */
486 bool nested_run_pending;
Jim Mattsonde3a0022017-11-27 17:22:25 -0600487
488 struct loaded_vmcs vmcs02;
489
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300490 /*
Jim Mattsonde3a0022017-11-27 17:22:25 -0600491 * Guest pages referred to in the vmcs02 with host-physical
492 * pointers, so we must keep them pinned while L2 runs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300493 */
494 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800495 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800496 struct page *pi_desc_page;
497 struct pi_desc *pi_desc;
498 bool pi_pending;
499 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100500
501 struct hrtimer preemption_timer;
502 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200503
504 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
505 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800506
Wanpeng Li5c614b32015-10-13 09:18:36 -0700507 u16 vpid02;
508 u16 last_vpid;
509
Paolo Bonzini6677f3d2018-02-26 13:40:08 +0100510 struct nested_vmx_msrs msrs;
Ladi Prosek72e9cbd2017-10-11 16:54:43 +0200511
512 /* SMM related state */
513 struct {
514 /* in VMX operation on SMM entry? */
515 bool vmxon;
516 /* in guest mode on SMM entry? */
517 bool guest_mode;
518 } smm;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300519};
520
Yang Zhang01e439b2013-04-11 19:25:12 +0800521#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800522#define POSTED_INTR_SN 1
523
Yang Zhang01e439b2013-04-11 19:25:12 +0800524/* Posted-Interrupt Descriptor */
525struct pi_desc {
526 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800527 union {
528 struct {
529 /* bit 256 - Outstanding Notification */
530 u16 on : 1,
531 /* bit 257 - Suppress Notification */
532 sn : 1,
533 /* bit 271:258 - Reserved */
534 rsvd_1 : 14;
535 /* bit 279:272 - Notification Vector */
536 u8 nv;
537 /* bit 287:280 - Reserved */
538 u8 rsvd_2;
539 /* bit 319:288 - Notification Destination */
540 u32 ndst;
541 };
542 u64 control;
543 };
544 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800545} __aligned(64);
546
Yang Zhanga20ed542013-04-11 19:25:15 +0800547static bool pi_test_and_set_on(struct pi_desc *pi_desc)
548{
549 return test_and_set_bit(POSTED_INTR_ON,
550 (unsigned long *)&pi_desc->control);
551}
552
553static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
554{
555 return test_and_clear_bit(POSTED_INTR_ON,
556 (unsigned long *)&pi_desc->control);
557}
558
559static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
560{
561 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
562}
563
Feng Wuebbfc762015-09-18 22:29:46 +0800564static inline void pi_clear_sn(struct pi_desc *pi_desc)
565{
566 return clear_bit(POSTED_INTR_SN,
567 (unsigned long *)&pi_desc->control);
568}
569
570static inline void pi_set_sn(struct pi_desc *pi_desc)
571{
572 return set_bit(POSTED_INTR_SN,
573 (unsigned long *)&pi_desc->control);
574}
575
Paolo Bonziniad361092016-09-20 16:15:05 +0200576static inline void pi_clear_on(struct pi_desc *pi_desc)
577{
578 clear_bit(POSTED_INTR_ON,
579 (unsigned long *)&pi_desc->control);
580}
581
Feng Wuebbfc762015-09-18 22:29:46 +0800582static inline int pi_test_on(struct pi_desc *pi_desc)
583{
584 return test_bit(POSTED_INTR_ON,
585 (unsigned long *)&pi_desc->control);
586}
587
588static inline int pi_test_sn(struct pi_desc *pi_desc)
589{
590 return test_bit(POSTED_INTR_SN,
591 (unsigned long *)&pi_desc->control);
592}
593
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400594struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000595 struct kvm_vcpu vcpu;
Avi Kivity313dbd492008-07-17 18:04:30 +0300596 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300597 u8 fail;
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100598 u8 msr_bitmap_mode;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300599 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200600 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200601 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300602 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400603 int nmsrs;
604 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800605 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400606#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300607 u64 msr_host_kernel_gs_base;
608 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400609#endif
Ashok Raj15d45072018-02-01 22:59:43 +0100610
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100611 u64 arch_capabilities;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +0100612 u64 spec_ctrl;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +0100613
Gleb Natapov2961e8762013-11-25 15:37:13 +0200614 u32 vm_entry_controls_shadow;
615 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200616 u32 secondary_exec_control;
617
Nadav Har'Eld462b812011-05-24 15:26:10 +0300618 /*
619 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
620 * non-nested (L1) guest, it always points to vmcs01. For a nested
621 * guest (L2), it points to a different VMCS.
622 */
623 struct loaded_vmcs vmcs01;
624 struct loaded_vmcs *loaded_vmcs;
625 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300626 struct msr_autoload {
627 unsigned nr;
628 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
629 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
630 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400631 struct {
632 int loaded;
633 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300634#ifdef CONFIG_X86_64
635 u16 ds_sel, es_sel;
636#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200637 int gs_ldt_reload_needed;
638 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000639 u64 msr_host_bndcfgs;
Mike Dayd77c26f2007-10-08 09:02:08 -0400640 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200641 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300642 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300643 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300644 struct kvm_segment segs[8];
645 } rmode;
646 struct {
647 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300648 struct kvm_save_segment {
649 u16 selector;
650 unsigned long base;
651 u32 limit;
652 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300653 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300654 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800655 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300656 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200657
Andi Kleena0861c02009-06-08 17:37:09 +0800658 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800659
Yang Zhang01e439b2013-04-11 19:25:12 +0800660 /* Posted interrupt descriptor */
661 struct pi_desc pi_desc;
662
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300663 /* Support for a guest hypervisor (nested VMX) */
664 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200665
666 /* Dynamic PLE window. */
667 int ple_window;
668 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800669
670 /* Support for PML */
671#define PML_ENTITY_NUM 512
672 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800673
Yunhong Jiang64672c92016-06-13 14:19:59 -0700674 /* apic deadline value in host tsc */
675 u64 hv_deadline_tsc;
676
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800677 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800678
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800679 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800680
Wanpeng Li74c55932017-11-29 01:31:20 -0800681 unsigned long host_debugctlmsr;
682
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800683 /*
684 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
685 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
686 * in msr_ia32_feature_control_valid_bits.
687 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800688 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800689 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400690};
691
Avi Kivity2fb92db2011-04-27 19:42:18 +0300692enum segment_cache_field {
693 SEG_FIELD_SEL = 0,
694 SEG_FIELD_BASE = 1,
695 SEG_FIELD_LIMIT = 2,
696 SEG_FIELD_AR = 3,
697
698 SEG_FIELD_NR = 4
699};
700
Sean Christopherson40bbb9d2018-03-20 12:17:20 -0700701static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm)
702{
703 return container_of(kvm, struct kvm_vmx, kvm);
704}
705
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400706static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
707{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000708 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400709}
710
Feng Wuefc64402015-09-18 22:29:51 +0800711static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
712{
713 return &(to_vmx(vcpu)->pi_desc);
714}
715
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800716#define ROL16(val, n) ((u16)(((u16)(val) << (n)) | ((u16)(val) >> (16 - (n)))))
Nadav Har'El22bd0352011-05-25 23:05:57 +0300717#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800718#define FIELD(number, name) [ROL16(number, 6)] = VMCS12_OFFSET(name)
719#define FIELD64(number, name) \
720 FIELD(number, name), \
721 [ROL16(number##_HIGH, 6)] = VMCS12_OFFSET(name) + sizeof(u32)
Nadav Har'El22bd0352011-05-25 23:05:57 +0300722
Abel Gordon4607c2d2013-04-18 14:35:55 +0300723
Paolo Bonzini44900ba2017-12-13 12:58:02 +0100724static u16 shadow_read_only_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +0100725#define SHADOW_FIELD_RO(x) x,
726#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +0300727};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400728static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300729 ARRAY_SIZE(shadow_read_only_fields);
730
Paolo Bonzini44900ba2017-12-13 12:58:02 +0100731static u16 shadow_read_write_fields[] = {
Paolo Bonzinic9e9dea2017-12-20 13:16:29 +0100732#define SHADOW_FIELD_RW(x) x,
733#include "vmx_shadow_fields.h"
Abel Gordon4607c2d2013-04-18 14:35:55 +0300734};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400735static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300736 ARRAY_SIZE(shadow_read_write_fields);
737
Mathias Krause772e0312012-08-30 01:30:19 +0200738static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300739 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800740 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300741 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
742 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
743 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
744 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
745 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
746 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
747 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
748 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800749 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400750 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300751 FIELD(HOST_ES_SELECTOR, host_es_selector),
752 FIELD(HOST_CS_SELECTOR, host_cs_selector),
753 FIELD(HOST_SS_SELECTOR, host_ss_selector),
754 FIELD(HOST_DS_SELECTOR, host_ds_selector),
755 FIELD(HOST_FS_SELECTOR, host_fs_selector),
756 FIELD(HOST_GS_SELECTOR, host_gs_selector),
757 FIELD(HOST_TR_SELECTOR, host_tr_selector),
758 FIELD64(IO_BITMAP_A, io_bitmap_a),
759 FIELD64(IO_BITMAP_B, io_bitmap_b),
760 FIELD64(MSR_BITMAP, msr_bitmap),
761 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
762 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
763 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
764 FIELD64(TSC_OFFSET, tsc_offset),
765 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
766 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800767 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400768 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300769 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800770 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
771 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
772 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
773 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400774 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800775 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300776 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
777 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400778 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300779 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
780 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
781 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
782 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
783 FIELD64(GUEST_PDPTR0, guest_pdptr0),
784 FIELD64(GUEST_PDPTR1, guest_pdptr1),
785 FIELD64(GUEST_PDPTR2, guest_pdptr2),
786 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100787 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300788 FIELD64(HOST_IA32_PAT, host_ia32_pat),
789 FIELD64(HOST_IA32_EFER, host_ia32_efer),
790 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
791 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
792 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
793 FIELD(EXCEPTION_BITMAP, exception_bitmap),
794 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
795 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
796 FIELD(CR3_TARGET_COUNT, cr3_target_count),
797 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
798 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
799 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
800 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
801 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
802 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
803 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
804 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
805 FIELD(TPR_THRESHOLD, tpr_threshold),
806 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
807 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
808 FIELD(VM_EXIT_REASON, vm_exit_reason),
809 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
810 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
811 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
812 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
813 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
814 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
815 FIELD(GUEST_ES_LIMIT, guest_es_limit),
816 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
817 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
818 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
819 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
820 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
821 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
822 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
823 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
824 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
825 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
826 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
827 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
828 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
829 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
830 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
831 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
832 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
833 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
834 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
835 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
836 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100837 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300838 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
839 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
840 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
841 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
842 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
843 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
844 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
845 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
846 FIELD(EXIT_QUALIFICATION, exit_qualification),
847 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
848 FIELD(GUEST_CR0, guest_cr0),
849 FIELD(GUEST_CR3, guest_cr3),
850 FIELD(GUEST_CR4, guest_cr4),
851 FIELD(GUEST_ES_BASE, guest_es_base),
852 FIELD(GUEST_CS_BASE, guest_cs_base),
853 FIELD(GUEST_SS_BASE, guest_ss_base),
854 FIELD(GUEST_DS_BASE, guest_ds_base),
855 FIELD(GUEST_FS_BASE, guest_fs_base),
856 FIELD(GUEST_GS_BASE, guest_gs_base),
857 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
858 FIELD(GUEST_TR_BASE, guest_tr_base),
859 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
860 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
861 FIELD(GUEST_DR7, guest_dr7),
862 FIELD(GUEST_RSP, guest_rsp),
863 FIELD(GUEST_RIP, guest_rip),
864 FIELD(GUEST_RFLAGS, guest_rflags),
865 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
866 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
867 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
868 FIELD(HOST_CR0, host_cr0),
869 FIELD(HOST_CR3, host_cr3),
870 FIELD(HOST_CR4, host_cr4),
871 FIELD(HOST_FS_BASE, host_fs_base),
872 FIELD(HOST_GS_BASE, host_gs_base),
873 FIELD(HOST_TR_BASE, host_tr_base),
874 FIELD(HOST_GDTR_BASE, host_gdtr_base),
875 FIELD(HOST_IDTR_BASE, host_idtr_base),
876 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
877 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
878 FIELD(HOST_RSP, host_rsp),
879 FIELD(HOST_RIP, host_rip),
880};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300881
882static inline short vmcs_field_to_offset(unsigned long field)
883{
Dan Williams085331d2018-01-31 17:47:03 -0800884 const size_t size = ARRAY_SIZE(vmcs_field_to_offset_table);
885 unsigned short offset;
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800886 unsigned index;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100887
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800888 if (field >> 15)
Andrew Honig75f139a2018-01-10 10:12:03 -0800889 return -ENOENT;
890
Jim Mattson58e9ffa2017-12-22 12:13:13 -0800891 index = ROL16(field, 6);
Linus Torvalds15303ba2018-02-10 13:16:35 -0800892 if (index >= size)
Andrew Honig75f139a2018-01-10 10:12:03 -0800893 return -ENOENT;
894
Linus Torvalds15303ba2018-02-10 13:16:35 -0800895 index = array_index_nospec(index, size);
896 offset = vmcs_field_to_offset_table[index];
Dan Williams085331d2018-01-31 17:47:03 -0800897 if (offset == 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100898 return -ENOENT;
Dan Williams085331d2018-01-31 17:47:03 -0800899 return offset;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300900}
901
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300902static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
903{
David Matlack4f2777b2016-07-13 17:16:37 -0700904 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300905}
906
Peter Feiner995f00a2017-06-30 17:26:32 -0700907static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300908static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700909static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800910static bool vmx_xsaves_supported(void);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300911static void vmx_set_segment(struct kvm_vcpu *vcpu,
912 struct kvm_segment *var, int seg);
913static void vmx_get_segment(struct kvm_vcpu *vcpu,
914 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200915static bool guest_state_valid(struct kvm_vcpu *vcpu);
916static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordon16f5b902013-04-18 14:38:25 +0300917static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200918static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
919static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
920static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
921 u16 error_code);
Paolo Bonzini904e14f2018-01-16 16:51:18 +0100922static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu);
Ashok Raj15d45072018-02-01 22:59:43 +0100923static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
924 u32 msr, int type);
Avi Kivity75880a02007-06-20 11:20:04 +0300925
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926static DEFINE_PER_CPU(struct vmcs *, vmxarea);
927static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300928/*
929 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
930 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
931 */
932static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933
Feng Wubf9f6ac2015-09-18 22:29:55 +0800934/*
935 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
936 * can find which vCPU should be waken up.
937 */
938static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
939static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
940
Radim Krčmář23611332016-09-29 22:41:33 +0200941enum {
Radim Krčmář23611332016-09-29 22:41:33 +0200942 VMX_VMREAD_BITMAP,
943 VMX_VMWRITE_BITMAP,
944 VMX_BITMAP_NR
945};
946
947static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
948
Radim Krčmář23611332016-09-29 22:41:33 +0200949#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
950#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300951
Avi Kivity110312c2010-12-21 12:54:20 +0200952static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200953static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200954
Sheng Yang2384d2b2008-01-17 15:14:33 +0800955static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
956static DEFINE_SPINLOCK(vmx_vpid_lock);
957
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300958static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959 int size;
960 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300961 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300963 u32 pin_based_exec_ctrl;
964 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800965 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300966 u32 vmexit_ctrl;
967 u32 vmentry_ctrl;
Paolo Bonzini13893092018-02-26 13:40:09 +0100968 struct nested_vmx_msrs nested;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300969} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970
Hannes Ederefff9e52008-11-28 17:02:06 +0100971static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800972 u32 ept;
973 u32 vpid;
974} vmx_capability;
975
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976#define VMX_SEGMENT_FIELD(seg) \
977 [VCPU_SREG_##seg] = { \
978 .selector = GUEST_##seg##_SELECTOR, \
979 .base = GUEST_##seg##_BASE, \
980 .limit = GUEST_##seg##_LIMIT, \
981 .ar_bytes = GUEST_##seg##_AR_BYTES, \
982 }
983
Mathias Krause772e0312012-08-30 01:30:19 +0200984static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 unsigned selector;
986 unsigned base;
987 unsigned limit;
988 unsigned ar_bytes;
989} kvm_vmx_segment_fields[] = {
990 VMX_SEGMENT_FIELD(CS),
991 VMX_SEGMENT_FIELD(DS),
992 VMX_SEGMENT_FIELD(ES),
993 VMX_SEGMENT_FIELD(FS),
994 VMX_SEGMENT_FIELD(GS),
995 VMX_SEGMENT_FIELD(SS),
996 VMX_SEGMENT_FIELD(TR),
997 VMX_SEGMENT_FIELD(LDTR),
998};
999
Avi Kivity26bb0982009-09-07 11:14:12 +03001000static u64 host_efer;
1001
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001002static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1003
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001004/*
Brian Gerst8c065852010-07-17 09:03:26 -04001005 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001006 * away by decrementing the array size.
1007 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001009#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001010 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001012 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001015DEFINE_STATIC_KEY_FALSE(enable_evmcs);
1016
1017#define current_evmcs ((struct hv_enlightened_vmcs *)this_cpu_read(current_vmcs))
1018
1019#define KVM_EVMCS_VERSION 1
1020
1021#if IS_ENABLED(CONFIG_HYPERV)
1022static bool __read_mostly enlightened_vmcs = true;
1023module_param(enlightened_vmcs, bool, 0444);
1024
1025static inline void evmcs_write64(unsigned long field, u64 value)
1026{
1027 u16 clean_field;
1028 int offset = get_evmcs_offset(field, &clean_field);
1029
1030 if (offset < 0)
1031 return;
1032
1033 *(u64 *)((char *)current_evmcs + offset) = value;
1034
1035 current_evmcs->hv_clean_fields &= ~clean_field;
1036}
1037
1038static inline void evmcs_write32(unsigned long field, u32 value)
1039{
1040 u16 clean_field;
1041 int offset = get_evmcs_offset(field, &clean_field);
1042
1043 if (offset < 0)
1044 return;
1045
1046 *(u32 *)((char *)current_evmcs + offset) = value;
1047 current_evmcs->hv_clean_fields &= ~clean_field;
1048}
1049
1050static inline void evmcs_write16(unsigned long field, u16 value)
1051{
1052 u16 clean_field;
1053 int offset = get_evmcs_offset(field, &clean_field);
1054
1055 if (offset < 0)
1056 return;
1057
1058 *(u16 *)((char *)current_evmcs + offset) = value;
1059 current_evmcs->hv_clean_fields &= ~clean_field;
1060}
1061
1062static inline u64 evmcs_read64(unsigned long field)
1063{
1064 int offset = get_evmcs_offset(field, NULL);
1065
1066 if (offset < 0)
1067 return 0;
1068
1069 return *(u64 *)((char *)current_evmcs + offset);
1070}
1071
1072static inline u32 evmcs_read32(unsigned long field)
1073{
1074 int offset = get_evmcs_offset(field, NULL);
1075
1076 if (offset < 0)
1077 return 0;
1078
1079 return *(u32 *)((char *)current_evmcs + offset);
1080}
1081
1082static inline u16 evmcs_read16(unsigned long field)
1083{
1084 int offset = get_evmcs_offset(field, NULL);
1085
1086 if (offset < 0)
1087 return 0;
1088
1089 return *(u16 *)((char *)current_evmcs + offset);
1090}
1091
1092static void evmcs_load(u64 phys_addr)
1093{
1094 struct hv_vp_assist_page *vp_ap =
1095 hv_get_vp_assist_page(smp_processor_id());
1096
1097 vp_ap->current_nested_vmcs = phys_addr;
1098 vp_ap->enlighten_vmentry = 1;
1099}
1100
1101static void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf)
1102{
1103 /*
1104 * Enlightened VMCSv1 doesn't support these:
1105 *
1106 * POSTED_INTR_NV = 0x00000002,
1107 * GUEST_INTR_STATUS = 0x00000810,
1108 * APIC_ACCESS_ADDR = 0x00002014,
1109 * POSTED_INTR_DESC_ADDR = 0x00002016,
1110 * EOI_EXIT_BITMAP0 = 0x0000201c,
1111 * EOI_EXIT_BITMAP1 = 0x0000201e,
1112 * EOI_EXIT_BITMAP2 = 0x00002020,
1113 * EOI_EXIT_BITMAP3 = 0x00002022,
1114 */
1115 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
1116 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1117 ~SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1118 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1119 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1120 vmcs_conf->cpu_based_2nd_exec_ctrl &=
1121 ~SECONDARY_EXEC_APIC_REGISTER_VIRT;
1122
1123 /*
1124 * GUEST_PML_INDEX = 0x00000812,
1125 * PML_ADDRESS = 0x0000200e,
1126 */
1127 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_PML;
1128
1129 /* VM_FUNCTION_CONTROL = 0x00002018, */
1130 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_ENABLE_VMFUNC;
1131
1132 /*
1133 * EPTP_LIST_ADDRESS = 0x00002024,
1134 * VMREAD_BITMAP = 0x00002026,
1135 * VMWRITE_BITMAP = 0x00002028,
1136 */
1137 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_SHADOW_VMCS;
1138
1139 /*
1140 * TSC_MULTIPLIER = 0x00002032,
1141 */
1142 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_TSC_SCALING;
1143
1144 /*
1145 * PLE_GAP = 0x00004020,
1146 * PLE_WINDOW = 0x00004022,
1147 */
1148 vmcs_conf->cpu_based_2nd_exec_ctrl &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1149
1150 /*
1151 * VMX_PREEMPTION_TIMER_VALUE = 0x0000482E,
1152 */
1153 vmcs_conf->pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
1154
1155 /*
1156 * GUEST_IA32_PERF_GLOBAL_CTRL = 0x00002808,
1157 * HOST_IA32_PERF_GLOBAL_CTRL = 0x00002c04,
1158 */
1159 vmcs_conf->vmexit_ctrl &= ~VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
1160 vmcs_conf->vmentry_ctrl &= ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
1161
1162 /*
1163 * Currently unsupported in KVM:
1164 * GUEST_IA32_RTIT_CTL = 0x00002814,
1165 */
1166}
1167#else /* !IS_ENABLED(CONFIG_HYPERV) */
1168static inline void evmcs_write64(unsigned long field, u64 value) {}
1169static inline void evmcs_write32(unsigned long field, u32 value) {}
1170static inline void evmcs_write16(unsigned long field, u16 value) {}
1171static inline u64 evmcs_read64(unsigned long field) { return 0; }
1172static inline u32 evmcs_read32(unsigned long field) { return 0; }
1173static inline u16 evmcs_read16(unsigned long field) { return 0; }
1174static inline void evmcs_load(u64 phys_addr) {}
1175static inline void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) {}
1176#endif /* IS_ENABLED(CONFIG_HYPERV) */
1177
Jan Kiszka5bb16012016-02-09 20:14:21 +01001178static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179{
1180 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1181 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001182 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1183}
1184
Jan Kiszka6f054852016-02-09 20:15:18 +01001185static inline bool is_debug(u32 intr_info)
1186{
1187 return is_exception_n(intr_info, DB_VECTOR);
1188}
1189
1190static inline bool is_breakpoint(u32 intr_info)
1191{
1192 return is_exception_n(intr_info, BP_VECTOR);
1193}
1194
Jan Kiszka5bb16012016-02-09 20:14:21 +01001195static inline bool is_page_fault(u32 intr_info)
1196{
1197 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001198}
1199
Gui Jianfeng31299942010-03-15 17:29:09 +08001200static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001201{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001202 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001203}
1204
Gui Jianfeng31299942010-03-15 17:29:09 +08001205static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001206{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001207 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001208}
1209
Liran Alon9e869482018-03-12 13:12:51 +02001210static inline bool is_gp_fault(u32 intr_info)
1211{
1212 return is_exception_n(intr_info, GP_VECTOR);
1213}
1214
Gui Jianfeng31299942010-03-15 17:29:09 +08001215static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001216{
1217 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1218 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1219}
1220
Gui Jianfeng31299942010-03-15 17:29:09 +08001221static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001222{
1223 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1224 INTR_INFO_VALID_MASK)) ==
1225 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1226}
1227
Linus Torvalds32d43cd2018-03-20 12:16:59 -07001228/* Undocumented: icebp/int1 */
1229static inline bool is_icebp(u32 intr_info)
1230{
1231 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1232 == (INTR_TYPE_PRIV_SW_EXCEPTION | INTR_INFO_VALID_MASK);
1233}
1234
Gui Jianfeng31299942010-03-15 17:29:09 +08001235static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001236{
Sheng Yang04547152009-04-01 15:52:31 +08001237 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001238}
1239
Gui Jianfeng31299942010-03-15 17:29:09 +08001240static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001241{
Sheng Yang04547152009-04-01 15:52:31 +08001242 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001243}
1244
Paolo Bonzini35754c92015-07-29 12:05:37 +02001245static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001246{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001247 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001248}
1249
Gui Jianfeng31299942010-03-15 17:29:09 +08001250static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001251{
Sheng Yang04547152009-04-01 15:52:31 +08001252 return vmcs_config.cpu_based_exec_ctrl &
1253 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001254}
1255
Avi Kivity774ead32007-12-26 13:57:04 +02001256static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001257{
Sheng Yang04547152009-04-01 15:52:31 +08001258 return vmcs_config.cpu_based_2nd_exec_ctrl &
1259 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1260}
1261
Yang Zhang8d146952013-01-25 10:18:50 +08001262static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1263{
1264 return vmcs_config.cpu_based_2nd_exec_ctrl &
1265 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1266}
1267
Yang Zhang83d4c282013-01-25 10:18:49 +08001268static inline bool cpu_has_vmx_apic_register_virt(void)
1269{
1270 return vmcs_config.cpu_based_2nd_exec_ctrl &
1271 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1272}
1273
Yang Zhangc7c9c562013-01-25 10:18:51 +08001274static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1275{
1276 return vmcs_config.cpu_based_2nd_exec_ctrl &
1277 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1278}
1279
Yunhong Jiang64672c92016-06-13 14:19:59 -07001280/*
1281 * Comment's format: document - errata name - stepping - processor name.
1282 * Refer from
1283 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1284 */
1285static u32 vmx_preemption_cpu_tfms[] = {
1286/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
12870x000206E6,
1288/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1289/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1290/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
12910x00020652,
1292/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
12930x00020655,
1294/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1295/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1296/*
1297 * 320767.pdf - AAP86 - B1 -
1298 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1299 */
13000x000106E5,
1301/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
13020x000106A0,
1303/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
13040x000106A1,
1305/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
13060x000106A4,
1307 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1308 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1309 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
13100x000106A5,
1311};
1312
1313static inline bool cpu_has_broken_vmx_preemption_timer(void)
1314{
1315 u32 eax = cpuid_eax(0x00000001), i;
1316
1317 /* Clear the reserved bits */
1318 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001319 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001320 if (eax == vmx_preemption_cpu_tfms[i])
1321 return true;
1322
1323 return false;
1324}
1325
1326static inline bool cpu_has_vmx_preemption_timer(void)
1327{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001328 return vmcs_config.pin_based_exec_ctrl &
1329 PIN_BASED_VMX_PREEMPTION_TIMER;
1330}
1331
Yang Zhang01e439b2013-04-11 19:25:12 +08001332static inline bool cpu_has_vmx_posted_intr(void)
1333{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001334 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1335 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001336}
1337
1338static inline bool cpu_has_vmx_apicv(void)
1339{
1340 return cpu_has_vmx_apic_register_virt() &&
1341 cpu_has_vmx_virtual_intr_delivery() &&
1342 cpu_has_vmx_posted_intr();
1343}
1344
Sheng Yang04547152009-04-01 15:52:31 +08001345static inline bool cpu_has_vmx_flexpriority(void)
1346{
1347 return cpu_has_vmx_tpr_shadow() &&
1348 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001349}
1350
Marcelo Tosattie7997942009-06-11 12:07:40 -03001351static inline bool cpu_has_vmx_ept_execute_only(void)
1352{
Gui Jianfeng31299942010-03-15 17:29:09 +08001353 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001354}
1355
Marcelo Tosattie7997942009-06-11 12:07:40 -03001356static inline bool cpu_has_vmx_ept_2m_page(void)
1357{
Gui Jianfeng31299942010-03-15 17:29:09 +08001358 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001359}
1360
Sheng Yang878403b2010-01-05 19:02:29 +08001361static inline bool cpu_has_vmx_ept_1g_page(void)
1362{
Gui Jianfeng31299942010-03-15 17:29:09 +08001363 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001364}
1365
Sheng Yang4bc9b982010-06-02 14:05:24 +08001366static inline bool cpu_has_vmx_ept_4levels(void)
1367{
1368 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1369}
1370
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001371static inline bool cpu_has_vmx_ept_mt_wb(void)
1372{
1373 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1374}
1375
Yu Zhang855feb62017-08-24 20:27:55 +08001376static inline bool cpu_has_vmx_ept_5levels(void)
1377{
1378 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1379}
1380
Xudong Hao83c3a332012-05-28 19:33:35 +08001381static inline bool cpu_has_vmx_ept_ad_bits(void)
1382{
1383 return vmx_capability.ept & VMX_EPT_AD_BIT;
1384}
1385
Gui Jianfeng31299942010-03-15 17:29:09 +08001386static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001387{
Gui Jianfeng31299942010-03-15 17:29:09 +08001388 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001389}
1390
Gui Jianfeng31299942010-03-15 17:29:09 +08001391static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001392{
Gui Jianfeng31299942010-03-15 17:29:09 +08001393 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001394}
1395
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001396static inline bool cpu_has_vmx_invvpid_single(void)
1397{
1398 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1399}
1400
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001401static inline bool cpu_has_vmx_invvpid_global(void)
1402{
1403 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1404}
1405
Wanpeng Li08d839c2017-03-23 05:30:08 -07001406static inline bool cpu_has_vmx_invvpid(void)
1407{
1408 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1409}
1410
Gui Jianfeng31299942010-03-15 17:29:09 +08001411static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001412{
Sheng Yang04547152009-04-01 15:52:31 +08001413 return vmcs_config.cpu_based_2nd_exec_ctrl &
1414 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001415}
1416
Gui Jianfeng31299942010-03-15 17:29:09 +08001417static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001418{
1419 return vmcs_config.cpu_based_2nd_exec_ctrl &
1420 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1421}
1422
Gui Jianfeng31299942010-03-15 17:29:09 +08001423static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001424{
1425 return vmcs_config.cpu_based_2nd_exec_ctrl &
1426 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1427}
1428
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001429static inline bool cpu_has_vmx_basic_inout(void)
1430{
1431 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1432}
1433
Paolo Bonzini35754c92015-07-29 12:05:37 +02001434static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001435{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001436 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001437}
1438
Gui Jianfeng31299942010-03-15 17:29:09 +08001439static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001440{
Sheng Yang04547152009-04-01 15:52:31 +08001441 return vmcs_config.cpu_based_2nd_exec_ctrl &
1442 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001443}
1444
Gui Jianfeng31299942010-03-15 17:29:09 +08001445static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001446{
1447 return vmcs_config.cpu_based_2nd_exec_ctrl &
1448 SECONDARY_EXEC_RDTSCP;
1449}
1450
Mao, Junjiead756a12012-07-02 01:18:48 +00001451static inline bool cpu_has_vmx_invpcid(void)
1452{
1453 return vmcs_config.cpu_based_2nd_exec_ctrl &
1454 SECONDARY_EXEC_ENABLE_INVPCID;
1455}
1456
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01001457static inline bool cpu_has_virtual_nmis(void)
1458{
1459 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1460}
1461
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001462static inline bool cpu_has_vmx_wbinvd_exit(void)
1463{
1464 return vmcs_config.cpu_based_2nd_exec_ctrl &
1465 SECONDARY_EXEC_WBINVD_EXITING;
1466}
1467
Abel Gordonabc4fc52013-04-18 14:35:25 +03001468static inline bool cpu_has_vmx_shadow_vmcs(void)
1469{
1470 u64 vmx_msr;
1471 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1472 /* check if the cpu supports writing r/o exit information fields */
1473 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1474 return false;
1475
1476 return vmcs_config.cpu_based_2nd_exec_ctrl &
1477 SECONDARY_EXEC_SHADOW_VMCS;
1478}
1479
Kai Huang843e4332015-01-28 10:54:28 +08001480static inline bool cpu_has_vmx_pml(void)
1481{
1482 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1483}
1484
Haozhong Zhang64903d62015-10-20 15:39:09 +08001485static inline bool cpu_has_vmx_tsc_scaling(void)
1486{
1487 return vmcs_config.cpu_based_2nd_exec_ctrl &
1488 SECONDARY_EXEC_TSC_SCALING;
1489}
1490
Bandan Das2a499e42017-08-03 15:54:41 -04001491static inline bool cpu_has_vmx_vmfunc(void)
1492{
1493 return vmcs_config.cpu_based_2nd_exec_ctrl &
1494 SECONDARY_EXEC_ENABLE_VMFUNC;
1495}
1496
Sheng Yang04547152009-04-01 15:52:31 +08001497static inline bool report_flexpriority(void)
1498{
1499 return flexpriority_enabled;
1500}
1501
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001502static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1503{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01001504 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.msrs.misc_low);
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001505}
1506
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001507static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1508{
1509 return vmcs12->cpu_based_vm_exec_control & bit;
1510}
1511
1512static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1513{
1514 return (vmcs12->cpu_based_vm_exec_control &
1515 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1516 (vmcs12->secondary_vm_exec_control & bit);
1517}
1518
Jan Kiszkaf4124502014-03-07 20:03:13 +01001519static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1520{
1521 return vmcs12->pin_based_vm_exec_control &
1522 PIN_BASED_VMX_PREEMPTION_TIMER;
1523}
1524
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05001525static inline bool nested_cpu_has_nmi_exiting(struct vmcs12 *vmcs12)
1526{
1527 return vmcs12->pin_based_vm_exec_control & PIN_BASED_NMI_EXITING;
1528}
1529
1530static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
1531{
1532 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1533}
1534
Nadav Har'El155a97a2013-08-05 11:07:16 +03001535static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1536{
1537 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1538}
1539
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001540static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1541{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001542 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001543}
1544
Bandan Dasc5f983f2017-05-05 15:25:14 -04001545static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1546{
1547 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1548}
1549
Wincy Vanf2b93282015-02-03 23:56:03 +08001550static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1551{
1552 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1553}
1554
Wanpeng Li5c614b32015-10-13 09:18:36 -07001555static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1556{
1557 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1558}
1559
Wincy Van82f0dd42015-02-03 23:57:18 +08001560static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1561{
1562 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1563}
1564
Wincy Van608406e2015-02-03 23:57:51 +08001565static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1566{
1567 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1568}
1569
Wincy Van705699a2015-02-03 23:58:17 +08001570static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1571{
1572 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1573}
1574
Bandan Das27c42a12017-08-03 15:54:42 -04001575static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1576{
1577 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1578}
1579
Bandan Das41ab9372017-08-03 15:54:43 -04001580static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1581{
1582 return nested_cpu_has_vmfunc(vmcs12) &&
1583 (vmcs12->vm_function_control &
1584 VMX_VMFUNC_EPTP_SWITCHING);
1585}
1586
Jim Mattsonef85b672016-12-12 11:01:37 -08001587static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001588{
1589 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001590 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001591}
1592
Jan Kiszka533558b2014-01-04 18:47:20 +01001593static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1594 u32 exit_intr_info,
1595 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001596static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1597 struct vmcs12 *vmcs12,
1598 u32 reason, unsigned long qualification);
1599
Rusty Russell8b9cf982007-07-30 16:31:43 +10001600static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001601{
1602 int i;
1603
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001604 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001605 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001606 return i;
1607 return -1;
1608}
1609
Sheng Yang2384d2b2008-01-17 15:14:33 +08001610static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1611{
1612 struct {
1613 u64 vpid : 16;
1614 u64 rsvd : 48;
1615 u64 gva;
1616 } operand = { vpid, 0, gva };
1617
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001618 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001619 /* CF==1 or ZF==1 --> rc = -1 */
1620 "; ja 1f ; ud2 ; 1:"
1621 : : "a"(&operand), "c"(ext) : "cc", "memory");
1622}
1623
Sheng Yang14394422008-04-28 12:24:45 +08001624static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1625{
1626 struct {
1627 u64 eptp, gpa;
1628 } operand = {eptp, gpa};
1629
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001630 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001631 /* CF==1 or ZF==1 --> rc = -1 */
1632 "; ja 1f ; ud2 ; 1:\n"
1633 : : "a" (&operand), "c" (ext) : "cc", "memory");
1634}
1635
Avi Kivity26bb0982009-09-07 11:14:12 +03001636static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001637{
1638 int i;
1639
Rusty Russell8b9cf982007-07-30 16:31:43 +10001640 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001641 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001642 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001643 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001644}
1645
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646static void vmcs_clear(struct vmcs *vmcs)
1647{
1648 u64 phys_addr = __pa(vmcs);
1649 u8 error;
1650
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001651 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001652 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653 : "cc", "memory");
1654 if (error)
1655 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1656 vmcs, phys_addr);
1657}
1658
Nadav Har'Eld462b812011-05-24 15:26:10 +03001659static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1660{
1661 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001662 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1663 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001664 loaded_vmcs->cpu = -1;
1665 loaded_vmcs->launched = 0;
1666}
1667
Dongxiao Xu7725b892010-05-11 18:29:38 +08001668static void vmcs_load(struct vmcs *vmcs)
1669{
1670 u64 phys_addr = __pa(vmcs);
1671 u8 error;
1672
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001673 if (static_branch_unlikely(&enable_evmcs))
1674 return evmcs_load(phys_addr);
1675
Dongxiao Xu7725b892010-05-11 18:29:38 +08001676 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001677 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001678 : "cc", "memory");
1679 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001680 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001681 vmcs, phys_addr);
1682}
1683
Dave Young2965faa2015-09-09 15:38:55 -07001684#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001685/*
1686 * This bitmap is used to indicate whether the vmclear
1687 * operation is enabled on all cpus. All disabled by
1688 * default.
1689 */
1690static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1691
1692static inline void crash_enable_local_vmclear(int cpu)
1693{
1694 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1695}
1696
1697static inline void crash_disable_local_vmclear(int cpu)
1698{
1699 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1700}
1701
1702static inline int crash_local_vmclear_enabled(int cpu)
1703{
1704 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1705}
1706
1707static void crash_vmclear_local_loaded_vmcss(void)
1708{
1709 int cpu = raw_smp_processor_id();
1710 struct loaded_vmcs *v;
1711
1712 if (!crash_local_vmclear_enabled(cpu))
1713 return;
1714
1715 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1716 loaded_vmcss_on_cpu_link)
1717 vmcs_clear(v->vmcs);
1718}
1719#else
1720static inline void crash_enable_local_vmclear(int cpu) { }
1721static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001722#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001723
Nadav Har'Eld462b812011-05-24 15:26:10 +03001724static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001726 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001727 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728
Nadav Har'Eld462b812011-05-24 15:26:10 +03001729 if (loaded_vmcs->cpu != cpu)
1730 return; /* vcpu migration can race with cpu offline */
1731 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001733 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001734 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001735
1736 /*
1737 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1738 * is before setting loaded_vmcs->vcpu to -1 which is done in
1739 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1740 * then adds the vmcs into percpu list before it is deleted.
1741 */
1742 smp_wmb();
1743
Nadav Har'Eld462b812011-05-24 15:26:10 +03001744 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001745 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746}
1747
Nadav Har'Eld462b812011-05-24 15:26:10 +03001748static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001749{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001750 int cpu = loaded_vmcs->cpu;
1751
1752 if (cpu != -1)
1753 smp_call_function_single(cpu,
1754 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001755}
1756
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001757static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001758{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001759 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001760 return;
1761
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001762 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001763 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001764}
1765
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001766static inline void vpid_sync_vcpu_global(void)
1767{
1768 if (cpu_has_vmx_invvpid_global())
1769 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1770}
1771
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001772static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001773{
1774 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001775 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001776 else
1777 vpid_sync_vcpu_global();
1778}
1779
Sheng Yang14394422008-04-28 12:24:45 +08001780static inline void ept_sync_global(void)
1781{
David Hildenbrandf5f51582017-08-24 20:51:30 +02001782 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
Sheng Yang14394422008-04-28 12:24:45 +08001783}
1784
1785static inline void ept_sync_context(u64 eptp)
1786{
David Hildenbrand0e1252d2017-08-24 20:51:28 +02001787 if (cpu_has_vmx_invept_context())
1788 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1789 else
1790 ept_sync_global();
Sheng Yang14394422008-04-28 12:24:45 +08001791}
1792
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001793static __always_inline void vmcs_check16(unsigned long field)
1794{
1795 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1796 "16-bit accessor invalid for 64-bit field");
1797 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1798 "16-bit accessor invalid for 64-bit high field");
1799 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1800 "16-bit accessor invalid for 32-bit high field");
1801 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1802 "16-bit accessor invalid for natural width field");
1803}
1804
1805static __always_inline void vmcs_check32(unsigned long field)
1806{
1807 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1808 "32-bit accessor invalid for 16-bit field");
1809 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1810 "32-bit accessor invalid for natural width field");
1811}
1812
1813static __always_inline void vmcs_check64(unsigned long field)
1814{
1815 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1816 "64-bit accessor invalid for 16-bit field");
1817 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1818 "64-bit accessor invalid for 64-bit high field");
1819 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1820 "64-bit accessor invalid for 32-bit field");
1821 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1822 "64-bit accessor invalid for natural width field");
1823}
1824
1825static __always_inline void vmcs_checkl(unsigned long field)
1826{
1827 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1828 "Natural width accessor invalid for 16-bit field");
1829 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1830 "Natural width accessor invalid for 64-bit field");
1831 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1832 "Natural width accessor invalid for 64-bit high field");
1833 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1834 "Natural width accessor invalid for 32-bit field");
1835}
1836
1837static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001838{
Avi Kivity5e520e62011-05-15 10:13:12 -04001839 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840
Avi Kivity5e520e62011-05-15 10:13:12 -04001841 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1842 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001843 return value;
1844}
1845
Avi Kivity96304212011-05-15 10:13:13 -04001846static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001848 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001849 if (static_branch_unlikely(&enable_evmcs))
1850 return evmcs_read16(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001851 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001852}
1853
Avi Kivity96304212011-05-15 10:13:13 -04001854static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001855{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001856 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001857 if (static_branch_unlikely(&enable_evmcs))
1858 return evmcs_read32(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001859 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001860}
1861
Avi Kivity96304212011-05-15 10:13:13 -04001862static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001864 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001865 if (static_branch_unlikely(&enable_evmcs))
1866 return evmcs_read64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001867#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001868 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001869#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001870 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871#endif
1872}
1873
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001874static __always_inline unsigned long vmcs_readl(unsigned long field)
1875{
1876 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001877 if (static_branch_unlikely(&enable_evmcs))
1878 return evmcs_read64(field);
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001879 return __vmcs_readl(field);
1880}
1881
Avi Kivitye52de1b2007-01-05 16:36:56 -08001882static noinline void vmwrite_error(unsigned long field, unsigned long value)
1883{
1884 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1885 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1886 dump_stack();
1887}
1888
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001889static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001890{
1891 u8 error;
1892
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001893 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001894 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001895 if (unlikely(error))
1896 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001897}
1898
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001899static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001900{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001901 vmcs_check16(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001902 if (static_branch_unlikely(&enable_evmcs))
1903 return evmcs_write16(field, value);
1904
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001905 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001906}
1907
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001908static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001910 vmcs_check32(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001911 if (static_branch_unlikely(&enable_evmcs))
1912 return evmcs_write32(field, value);
1913
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001914 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001915}
1916
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001917static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001918{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001919 vmcs_check64(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001920 if (static_branch_unlikely(&enable_evmcs))
1921 return evmcs_write64(field, value);
1922
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001923 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001924#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001925 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001926 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001927#endif
1928}
1929
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001930static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001931{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001932 vmcs_checkl(field);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001933 if (static_branch_unlikely(&enable_evmcs))
1934 return evmcs_write64(field, value);
1935
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001936 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001937}
1938
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001939static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001940{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001941 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1942 "vmcs_clear_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001943 if (static_branch_unlikely(&enable_evmcs))
1944 return evmcs_write32(field, evmcs_read32(field) & ~mask);
1945
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001946 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1947}
1948
1949static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1950{
1951 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1952 "vmcs_set_bits does not support 64-bit fields");
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01001953 if (static_branch_unlikely(&enable_evmcs))
1954 return evmcs_write32(field, evmcs_read32(field) | mask);
1955
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001956 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001957}
1958
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001959static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1960{
1961 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1962}
1963
Gleb Natapov2961e8762013-11-25 15:37:13 +02001964static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1965{
1966 vmcs_write32(VM_ENTRY_CONTROLS, val);
1967 vmx->vm_entry_controls_shadow = val;
1968}
1969
1970static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1971{
1972 if (vmx->vm_entry_controls_shadow != val)
1973 vm_entry_controls_init(vmx, val);
1974}
1975
1976static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1977{
1978 return vmx->vm_entry_controls_shadow;
1979}
1980
1981
1982static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1983{
1984 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1985}
1986
1987static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1988{
1989 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1990}
1991
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001992static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1993{
1994 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1995}
1996
Gleb Natapov2961e8762013-11-25 15:37:13 +02001997static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1998{
1999 vmcs_write32(VM_EXIT_CONTROLS, val);
2000 vmx->vm_exit_controls_shadow = val;
2001}
2002
2003static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
2004{
2005 if (vmx->vm_exit_controls_shadow != val)
2006 vm_exit_controls_init(vmx, val);
2007}
2008
2009static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
2010{
2011 return vmx->vm_exit_controls_shadow;
2012}
2013
2014
2015static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
2016{
2017 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
2018}
2019
2020static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
2021{
2022 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
2023}
2024
Avi Kivity2fb92db2011-04-27 19:42:18 +03002025static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
2026{
2027 vmx->segment_cache.bitmask = 0;
2028}
2029
2030static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
2031 unsigned field)
2032{
2033 bool ret;
2034 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
2035
2036 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
2037 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
2038 vmx->segment_cache.bitmask = 0;
2039 }
2040 ret = vmx->segment_cache.bitmask & mask;
2041 vmx->segment_cache.bitmask |= mask;
2042 return ret;
2043}
2044
2045static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
2046{
2047 u16 *p = &vmx->segment_cache.seg[seg].selector;
2048
2049 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
2050 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
2051 return *p;
2052}
2053
2054static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
2055{
2056 ulong *p = &vmx->segment_cache.seg[seg].base;
2057
2058 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
2059 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
2060 return *p;
2061}
2062
2063static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
2064{
2065 u32 *p = &vmx->segment_cache.seg[seg].limit;
2066
2067 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
2068 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
2069 return *p;
2070}
2071
2072static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
2073{
2074 u32 *p = &vmx->segment_cache.seg[seg].ar;
2075
2076 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
2077 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
2078 return *p;
2079}
2080
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002081static void update_exception_bitmap(struct kvm_vcpu *vcpu)
2082{
2083 u32 eb;
2084
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002085 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08002086 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Liran Alon9e869482018-03-12 13:12:51 +02002087 /*
2088 * Guest access to VMware backdoor ports could legitimately
2089 * trigger #GP because of TSS I/O permission bitmap.
2090 * We intercept those #GP and allow access to them anyway
2091 * as VMware does.
2092 */
2093 if (enable_vmware_backdoor)
2094 eb |= (1u << GP_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01002095 if ((vcpu->guest_debug &
2096 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
2097 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
2098 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002099 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002100 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02002101 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002102 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03002103
2104 /* When we are running a nested L2 guest and L1 specified for it a
2105 * certain exception bitmap, we must trap the same exceptions and pass
2106 * them to L1. When running L2, we will only handle the exceptions
2107 * specified above if L1 did not want them.
2108 */
2109 if (is_guest_mode(vcpu))
2110 eb |= get_vmcs12(vcpu)->exception_bitmap;
2111
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002112 vmcs_write32(EXCEPTION_BITMAP, eb);
2113}
2114
Ashok Raj15d45072018-02-01 22:59:43 +01002115/*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01002116 * Check if MSR is intercepted for currently loaded MSR bitmap.
2117 */
2118static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr)
2119{
2120 unsigned long *msr_bitmap;
2121 int f = sizeof(unsigned long);
2122
2123 if (!cpu_has_vmx_msr_bitmap())
2124 return true;
2125
2126 msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap;
2127
2128 if (msr <= 0x1fff) {
2129 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2130 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2131 msr &= 0x1fff;
2132 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2133 }
2134
2135 return true;
2136}
2137
2138/*
Ashok Raj15d45072018-02-01 22:59:43 +01002139 * Check if MSR is intercepted for L01 MSR bitmap.
2140 */
2141static bool msr_write_intercepted_l01(struct kvm_vcpu *vcpu, u32 msr)
2142{
2143 unsigned long *msr_bitmap;
2144 int f = sizeof(unsigned long);
2145
2146 if (!cpu_has_vmx_msr_bitmap())
2147 return true;
2148
2149 msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
2150
2151 if (msr <= 0x1fff) {
2152 return !!test_bit(msr, msr_bitmap + 0x800 / f);
2153 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2154 msr &= 0x1fff;
2155 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
2156 }
2157
2158 return true;
2159}
2160
Gleb Natapov2961e8762013-11-25 15:37:13 +02002161static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2162 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002163{
Gleb Natapov2961e8762013-11-25 15:37:13 +02002164 vm_entry_controls_clearbit(vmx, entry);
2165 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002166}
2167
Avi Kivity61d2ef22010-04-28 16:40:38 +03002168static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
2169{
2170 unsigned i;
2171 struct msr_autoload *m = &vmx->msr_autoload;
2172
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002173 switch (msr) {
2174 case MSR_EFER:
2175 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002176 clear_atomic_switch_msr_special(vmx,
2177 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002178 VM_EXIT_LOAD_IA32_EFER);
2179 return;
2180 }
2181 break;
2182 case MSR_CORE_PERF_GLOBAL_CTRL:
2183 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002184 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002185 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2186 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2187 return;
2188 }
2189 break;
Avi Kivity110312c2010-12-21 12:54:20 +02002190 }
2191
Avi Kivity61d2ef22010-04-28 16:40:38 +03002192 for (i = 0; i < m->nr; ++i)
2193 if (m->guest[i].index == msr)
2194 break;
2195
2196 if (i == m->nr)
2197 return;
2198 --m->nr;
2199 m->guest[i] = m->guest[m->nr];
2200 m->host[i] = m->host[m->nr];
2201 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2202 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2203}
2204
Gleb Natapov2961e8762013-11-25 15:37:13 +02002205static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
2206 unsigned long entry, unsigned long exit,
2207 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
2208 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002209{
2210 vmcs_write64(guest_val_vmcs, guest_val);
2211 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02002212 vm_entry_controls_setbit(vmx, entry);
2213 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002214}
2215
Avi Kivity61d2ef22010-04-28 16:40:38 +03002216static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
2217 u64 guest_val, u64 host_val)
2218{
2219 unsigned i;
2220 struct msr_autoload *m = &vmx->msr_autoload;
2221
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002222 switch (msr) {
2223 case MSR_EFER:
2224 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002225 add_atomic_switch_msr_special(vmx,
2226 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002227 VM_EXIT_LOAD_IA32_EFER,
2228 GUEST_IA32_EFER,
2229 HOST_IA32_EFER,
2230 guest_val, host_val);
2231 return;
2232 }
2233 break;
2234 case MSR_CORE_PERF_GLOBAL_CTRL:
2235 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02002236 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002237 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
2238 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
2239 GUEST_IA32_PERF_GLOBAL_CTRL,
2240 HOST_IA32_PERF_GLOBAL_CTRL,
2241 guest_val, host_val);
2242 return;
2243 }
2244 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01002245 case MSR_IA32_PEBS_ENABLE:
2246 /* PEBS needs a quiescent period after being disabled (to write
2247 * a record). Disabling PEBS through VMX MSR swapping doesn't
2248 * provide that period, so a CPU could write host's record into
2249 * guest's memory.
2250 */
2251 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02002252 }
2253
Avi Kivity61d2ef22010-04-28 16:40:38 +03002254 for (i = 0; i < m->nr; ++i)
2255 if (m->guest[i].index == msr)
2256 break;
2257
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002258 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002259 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002260 "Can't add msr %x\n", msr);
2261 return;
2262 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002263 ++m->nr;
2264 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2265 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2266 }
2267
2268 m->guest[i].index = msr;
2269 m->guest[i].value = guest_val;
2270 m->host[i].index = msr;
2271 m->host[i].value = host_val;
2272}
2273
Avi Kivity92c0d902009-10-29 11:00:16 +02002274static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002275{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002276 u64 guest_efer = vmx->vcpu.arch.efer;
2277 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002278
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002279 if (!enable_ept) {
2280 /*
2281 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2282 * host CPUID is more efficient than testing guest CPUID
2283 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2284 */
2285 if (boot_cpu_has(X86_FEATURE_SMEP))
2286 guest_efer |= EFER_NX;
2287 else if (!(guest_efer & EFER_NX))
2288 ignore_bits |= EFER_NX;
2289 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002290
Avi Kivity51c6cf62007-08-29 03:48:05 +03002291 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002292 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002293 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002294 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002295#ifdef CONFIG_X86_64
2296 ignore_bits |= EFER_LMA | EFER_LME;
2297 /* SCE is meaningful only in long mode on Intel */
2298 if (guest_efer & EFER_LMA)
2299 ignore_bits &= ~(u64)EFER_SCE;
2300#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002301
2302 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002303
2304 /*
2305 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2306 * On CPUs that support "load IA32_EFER", always switch EFER
2307 * atomically, since it's faster than switching it manually.
2308 */
2309 if (cpu_has_load_ia32_efer ||
2310 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002311 if (!(guest_efer & EFER_LMA))
2312 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002313 if (guest_efer != host_efer)
2314 add_atomic_switch_msr(vmx, MSR_EFER,
2315 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002316 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002317 } else {
2318 guest_efer &= ~ignore_bits;
2319 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002320
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002321 vmx->guest_msrs[efer_offset].data = guest_efer;
2322 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2323
2324 return true;
2325 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002326}
2327
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002328#ifdef CONFIG_X86_32
2329/*
2330 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2331 * VMCS rather than the segment table. KVM uses this helper to figure
2332 * out the current bases to poke them into the VMCS before entry.
2333 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002334static unsigned long segment_base(u16 selector)
2335{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002336 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002337 unsigned long v;
2338
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002339 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002340 return 0;
2341
Thomas Garnier45fc8752017-03-14 10:05:08 -07002342 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002343
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002344 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002345 u16 ldt_selector = kvm_read_ldt();
2346
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002347 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002348 return 0;
2349
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002350 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002351 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002352 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002353 return v;
2354}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002355#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002356
Avi Kivity04d2cc72007-09-10 18:10:54 +03002357static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002358{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002359 struct vcpu_vmx *vmx = to_vmx(vcpu);
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002360#ifdef CONFIG_X86_64
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002361 int cpu = raw_smp_processor_id();
Arnd Bergmann51e8a8c2018-04-04 12:44:14 +02002362#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03002363 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002364
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002365 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002366 return;
2367
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002368 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002369 /*
2370 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2371 * allow segment selectors with cpl > 0 or ti == 1.
2372 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002373 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002374 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002375
2376#ifdef CONFIG_X86_64
2377 save_fsgs_for_kvm();
2378 vmx->host_state.fs_sel = current->thread.fsindex;
2379 vmx->host_state.gs_sel = current->thread.gsindex;
2380#else
Avi Kivity9581d442010-10-19 16:46:55 +02002381 savesegment(fs, vmx->host_state.fs_sel);
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002382 savesegment(gs, vmx->host_state.gs_sel);
2383#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002384 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002385 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002386 vmx->host_state.fs_reload_needed = 0;
2387 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002388 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002389 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002390 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002391 if (!(vmx->host_state.gs_sel & 7))
2392 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002393 else {
2394 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002395 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002396 }
2397
2398#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002399 savesegment(ds, vmx->host_state.ds_sel);
2400 savesegment(es, vmx->host_state.es_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002401
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002402 vmcs_writel(HOST_FS_BASE, current->thread.fsbase);
Vitaly Kuznetsov35060ed2018-03-13 18:48:05 +01002403 vmcs_writel(HOST_GS_BASE, cpu_kernelmode_gs_base(cpu));
Avi Kivity707c0872007-05-02 17:33:43 +03002404
Vitaly Kuznetsov42b933b2018-03-13 18:48:04 +01002405 vmx->msr_host_kernel_gs_base = current->thread.gsbase;
Avi Kivityc8770e72010-11-11 12:37:26 +02002406 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002407 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity33ed6322007-05-02 16:54:03 +03002408#else
2409 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2410 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
2411#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002412 if (boot_cpu_has(X86_FEATURE_MPX))
2413 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002414 for (i = 0; i < vmx->save_nmsrs; ++i)
2415 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002416 vmx->guest_msrs[i].data,
2417 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002418}
2419
Avi Kivitya9b21b62008-06-24 11:48:49 +03002420static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002421{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002422 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002423 return;
2424
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002425 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002426 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002427#ifdef CONFIG_X86_64
2428 if (is_long_mode(&vmx->vcpu))
2429 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2430#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002431 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002432 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002433#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002434 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002435#else
2436 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002437#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002438 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002439 if (vmx->host_state.fs_reload_needed)
2440 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002441#ifdef CONFIG_X86_64
2442 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2443 loadsegment(ds, vmx->host_state.ds_sel);
2444 loadsegment(es, vmx->host_state.es_sel);
2445 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002446#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002447 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002448#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002449 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002450#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002451 if (vmx->host_state.msr_host_bndcfgs)
2452 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002453 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002454}
2455
Avi Kivitya9b21b62008-06-24 11:48:49 +03002456static void vmx_load_host_state(struct vcpu_vmx *vmx)
2457{
2458 preempt_disable();
2459 __vmx_load_host_state(vmx);
2460 preempt_enable();
2461}
2462
Feng Wu28b835d2015-09-18 22:29:54 +08002463static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2464{
2465 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2466 struct pi_desc old, new;
2467 unsigned int dest;
2468
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002469 /*
2470 * In case of hot-plug or hot-unplug, we may have to undo
2471 * vmx_vcpu_pi_put even if there is no assigned device. And we
2472 * always keep PI.NDST up to date for simplicity: it makes the
2473 * code easier, and CPU migration is not a fast path.
2474 */
2475 if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu)
Feng Wu28b835d2015-09-18 22:29:54 +08002476 return;
2477
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002478 /*
2479 * First handle the simple case where no cmpxchg is necessary; just
2480 * allow posting non-urgent interrupts.
2481 *
2482 * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change
2483 * PI.NDST: pi_post_block will do it for us and the wakeup_handler
2484 * expects the VCPU to be on the blocked_vcpu_list that matches
2485 * PI.NDST.
2486 */
2487 if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR ||
2488 vcpu->cpu == cpu) {
2489 pi_clear_sn(pi_desc);
2490 return;
2491 }
2492
2493 /* The full case. */
Feng Wu28b835d2015-09-18 22:29:54 +08002494 do {
2495 old.control = new.control = pi_desc->control;
2496
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002497 dest = cpu_physical_id(cpu);
Feng Wu28b835d2015-09-18 22:29:54 +08002498
Paolo Bonzini31afb2e2017-06-06 12:57:06 +02002499 if (x2apic_enabled())
2500 new.ndst = dest;
2501 else
2502 new.ndst = (dest << 8) & 0xFF00;
Feng Wu28b835d2015-09-18 22:29:54 +08002503
Feng Wu28b835d2015-09-18 22:29:54 +08002504 new.sn = 0;
Paolo Bonzinic0a16662017-09-28 17:58:41 +02002505 } while (cmpxchg64(&pi_desc->control, old.control,
2506 new.control) != old.control);
Feng Wu28b835d2015-09-18 22:29:54 +08002507}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002508
Peter Feinerc95ba922016-08-17 09:36:47 -07002509static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2510{
2511 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2512 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2513}
2514
Avi Kivity6aa8b732006-12-10 02:21:36 -08002515/*
2516 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2517 * vcpu mutex is already taken.
2518 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002519static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002521 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002522 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002524 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002525 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002526 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002527 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002528
2529 /*
2530 * Read loaded_vmcs->cpu should be before fetching
2531 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2532 * See the comments in __loaded_vmcs_clear().
2533 */
2534 smp_rmb();
2535
Nadav Har'Eld462b812011-05-24 15:26:10 +03002536 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2537 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002538 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002539 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002540 }
2541
2542 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2543 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2544 vmcs_load(vmx->loaded_vmcs->vmcs);
Ashok Raj15d45072018-02-01 22:59:43 +01002545 indirect_branch_prediction_barrier();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002546 }
2547
2548 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002549 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002550 unsigned long sysenter_esp;
2551
2552 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002553
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554 /*
2555 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002556 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002557 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002558 vmcs_writel(HOST_TR_BASE,
Andy Lutomirski72f5e082017-12-04 15:07:20 +01002559 (unsigned long)&get_cpu_entry_area(cpu)->tss.x86_tss);
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002560 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002562 /*
2563 * VM exits change the host TR limit to 0x67 after a VM
2564 * exit. This is okay, since 0x67 covers everything except
2565 * the IO bitmap and have have code to handle the IO bitmap
2566 * being lost after a VM exit.
2567 */
2568 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2569
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2571 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002572
Nadav Har'Eld462b812011-05-24 15:26:10 +03002573 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574 }
Feng Wu28b835d2015-09-18 22:29:54 +08002575
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002576 /* Setup TSC multiplier */
2577 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002578 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2579 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002580
Feng Wu28b835d2015-09-18 22:29:54 +08002581 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002582 vmx->host_pkru = read_pkru();
Wanpeng Li74c55932017-11-29 01:31:20 -08002583 vmx->host_debugctlmsr = get_debugctlmsr();
Feng Wu28b835d2015-09-18 22:29:54 +08002584}
2585
2586static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2587{
2588 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2589
2590 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002591 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2592 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002593 return;
2594
2595 /* Set SN when the vCPU is preempted */
2596 if (vcpu->preempted)
2597 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002598}
2599
2600static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2601{
Feng Wu28b835d2015-09-18 22:29:54 +08002602 vmx_vcpu_pi_put(vcpu);
2603
Avi Kivitya9b21b62008-06-24 11:48:49 +03002604 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605}
2606
Wanpeng Lif244dee2017-07-20 01:11:54 -07002607static bool emulation_required(struct kvm_vcpu *vcpu)
2608{
2609 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2610}
2611
Avi Kivityedcafe32009-12-30 18:07:40 +02002612static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2613
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002614/*
2615 * Return the cr0 value that a nested guest would read. This is a combination
2616 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2617 * its hypervisor (cr0_read_shadow).
2618 */
2619static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2620{
2621 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2622 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2623}
2624static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2625{
2626 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2627 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2628}
2629
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2631{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002632 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002633
Avi Kivity6de12732011-03-07 12:51:22 +02002634 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2635 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2636 rflags = vmcs_readl(GUEST_RFLAGS);
2637 if (to_vmx(vcpu)->rmode.vm86_active) {
2638 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2639 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2640 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2641 }
2642 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002643 }
Avi Kivity6de12732011-03-07 12:51:22 +02002644 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645}
2646
2647static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2648{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002649 unsigned long old_rflags = vmx_get_rflags(vcpu);
2650
Avi Kivity6de12732011-03-07 12:51:22 +02002651 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2652 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002653 if (to_vmx(vcpu)->rmode.vm86_active) {
2654 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002655 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002656 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002658
2659 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2660 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002661}
2662
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002663static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002664{
2665 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2666 int ret = 0;
2667
2668 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002669 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002670 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002671 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002672
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002673 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002674}
2675
2676static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2677{
2678 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2679 u32 interruptibility = interruptibility_old;
2680
2681 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2682
Jan Kiszka48005f62010-02-19 19:38:07 +01002683 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002684 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002685 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002686 interruptibility |= GUEST_INTR_STATE_STI;
2687
2688 if ((interruptibility != interruptibility_old))
2689 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2690}
2691
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2693{
2694 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002696 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002698 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699
Glauber Costa2809f5d2009-05-12 16:21:05 -04002700 /* skipping an emulated instruction also counts */
2701 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702}
2703
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002704static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2705 unsigned long exit_qual)
2706{
2707 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2708 unsigned int nr = vcpu->arch.exception.nr;
2709 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2710
2711 if (vcpu->arch.exception.has_error_code) {
2712 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2713 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2714 }
2715
2716 if (kvm_exception_is_soft(nr))
2717 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2718 else
2719 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2720
2721 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2722 vmx_get_nmi_mask(vcpu))
2723 intr_info |= INTR_INFO_UNBLOCK_NMI;
2724
2725 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2726}
2727
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002728/*
2729 * KVM wants to inject page-faults which it got to the guest. This function
2730 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002731 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002732static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002733{
2734 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002735 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002736
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002737 if (nr == PF_VECTOR) {
2738 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002739 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002740 return 1;
2741 }
2742 /*
2743 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2744 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2745 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2746 * can be written only when inject_pending_event runs. This should be
2747 * conditional on a new capability---if the capability is disabled,
2748 * kvm_multiple_exception would write the ancillary information to
2749 * CR2 or DR6, for backwards ABI-compatibility.
2750 */
2751 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2752 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002753 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002754 return 1;
2755 }
2756 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002757 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002758 if (nr == DB_VECTOR)
2759 *exit_qual = vcpu->arch.dr6;
2760 else
2761 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002762 return 1;
2763 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002764 }
2765
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002766 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002767}
2768
Wanpeng Licaa057a2018-03-12 04:53:03 -07002769static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
2770{
2771 /*
2772 * Ensure that we clear the HLT state in the VMCS. We don't need to
2773 * explicitly skip the instruction because if the HLT state is set,
2774 * then the instruction is already executing and RIP has already been
2775 * advanced.
2776 */
2777 if (kvm_hlt_in_guest(vcpu->kvm) &&
2778 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
2779 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
2780}
2781
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002782static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002783{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002784 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002785 unsigned nr = vcpu->arch.exception.nr;
2786 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002787 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002788 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002789
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002790 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002791 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002792 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2793 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002794
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002795 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002796 int inc_eip = 0;
2797 if (kvm_exception_is_soft(nr))
2798 inc_eip = vcpu->arch.event_exit_inst_len;
2799 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002800 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002801 return;
2802 }
2803
Sean Christophersonadd5ff72018-03-23 09:34:00 -07002804 WARN_ON_ONCE(vmx->emulation_required);
2805
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002806 if (kvm_exception_is_soft(nr)) {
2807 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2808 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002809 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2810 } else
2811 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2812
2813 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Wanpeng Licaa057a2018-03-12 04:53:03 -07002814
2815 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02002816}
2817
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002818static bool vmx_rdtscp_supported(void)
2819{
2820 return cpu_has_vmx_rdtscp();
2821}
2822
Mao, Junjiead756a12012-07-02 01:18:48 +00002823static bool vmx_invpcid_supported(void)
2824{
2825 return cpu_has_vmx_invpcid() && enable_ept;
2826}
2827
Avi Kivity6aa8b732006-12-10 02:21:36 -08002828/*
Eddie Donga75beee2007-05-17 18:55:15 +03002829 * Swap MSR entry in host/guest MSR entry array.
2830 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002831static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002832{
Avi Kivity26bb0982009-09-07 11:14:12 +03002833 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002834
2835 tmp = vmx->guest_msrs[to];
2836 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2837 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002838}
2839
2840/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002841 * Set up the vmcs to automatically save and restore system
2842 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2843 * mode, as fiddling with msrs is very expensive.
2844 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002845static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002846{
Avi Kivity26bb0982009-09-07 11:14:12 +03002847 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002848
Eddie Donga75beee2007-05-17 18:55:15 +03002849 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002850#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002851 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002852 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002853 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002854 move_msr_up(vmx, index, save_nmsrs++);
2855 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002856 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002857 move_msr_up(vmx, index, save_nmsrs++);
2858 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002859 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002860 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002861 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002862 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002863 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002864 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002865 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002866 * if efer.sce is enabled.
2867 */
Brian Gerst8c065852010-07-17 09:03:26 -04002868 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002869 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002870 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002871 }
Eddie Donga75beee2007-05-17 18:55:15 +03002872#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002873 index = __find_msr_index(vmx, MSR_EFER);
2874 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002875 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002876
Avi Kivity26bb0982009-09-07 11:14:12 +03002877 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002878
Yang Zhang8d146952013-01-25 10:18:50 +08002879 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01002880 vmx_update_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002881}
2882
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02002883static u64 vmx_read_l1_tsc_offset(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884{
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02002885 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886
KarimAllah Ahmede79f2452018-04-14 05:10:52 +02002887 if (is_guest_mode(vcpu) &&
2888 (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING))
2889 return vcpu->arch.tsc_offset - vmcs12->tsc_offset;
2890
2891 return vcpu->arch.tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002892}
2893
2894/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002895 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002896 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002897static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002899 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002900 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002901 * We're here if L1 chose not to trap WRMSR to TSC. According
2902 * to the spec, this should set L1's TSC; The offset that L1
2903 * set for L2 remains unchanged, and still needs to be added
2904 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002905 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002906 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002907 /* recalculate vmcs02.TSC_OFFSET: */
2908 vmcs12 = get_vmcs12(vcpu);
2909 vmcs_write64(TSC_OFFSET, offset +
2910 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2911 vmcs12->tsc_offset : 0));
2912 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002913 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2914 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002915 vmcs_write64(TSC_OFFSET, offset);
2916 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917}
2918
Nadav Har'El801d3422011-05-25 23:02:23 +03002919/*
2920 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2921 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2922 * all guests if the "nested" module option is off, and can also be disabled
2923 * for a single guest by disabling its VMX cpuid bit.
2924 */
2925static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2926{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002927 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002928}
2929
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002931 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2932 * returned for the various VMX controls MSRs when nested VMX is enabled.
2933 * The same values should also be used to verify that vmcs12 control fields are
2934 * valid during nested entry from L1 to L2.
2935 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2936 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2937 * bit in the high half is on if the corresponding bit in the control field
2938 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002939 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002940static void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, bool apicv)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002941{
Paolo Bonzini13893092018-02-26 13:40:09 +01002942 if (!nested) {
2943 memset(msrs, 0, sizeof(*msrs));
2944 return;
2945 }
2946
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002947 /*
2948 * Note that as a general rule, the high half of the MSRs (bits in
2949 * the control fields which may be 1) should be initialized by the
2950 * intersection of the underlying hardware's MSR (i.e., features which
2951 * can be supported) and the list of features we want to expose -
2952 * because they are known to be properly supported in our code.
2953 * Also, usually, the low half of the MSRs (bits which must be 1) can
2954 * be set to 0, meaning that L1 may turn off any of these bits. The
2955 * reason is that if one of these bits is necessary, it will appear
2956 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2957 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002958 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002959 * These rules have exceptions below.
2960 */
2961
2962 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002963 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002964 msrs->pinbased_ctls_low,
2965 msrs->pinbased_ctls_high);
2966 msrs->pinbased_ctls_low |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08002967 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002968 msrs->pinbased_ctls_high &=
Wincy Vanb9c237b2015-02-03 23:56:30 +08002969 PIN_BASED_EXT_INTR_MASK |
2970 PIN_BASED_NMI_EXITING |
Paolo Bonzini13893092018-02-26 13:40:09 +01002971 PIN_BASED_VIRTUAL_NMIS |
2972 (apicv ? PIN_BASED_POSTED_INTR : 0);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002973 msrs->pinbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08002974 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002975 PIN_BASED_VMX_PREEMPTION_TIMER;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002976
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002977 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002978 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002979 msrs->exit_ctls_low,
2980 msrs->exit_ctls_high);
2981 msrs->exit_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08002982 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002983
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002984 msrs->exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002985#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002986 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002987#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002988 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002989 msrs->exit_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08002990 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002991 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002992 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2993
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002994 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002995 msrs->exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002996
Jan Kiszka2996fca2014-06-16 13:59:43 +02002997 /* We support free control of debug control saving. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01002998 msrs->exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002999
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003000 /* entry controls */
3001 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003002 msrs->entry_ctls_low,
3003 msrs->entry_ctls_high);
3004 msrs->entry_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003005 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003006 msrs->entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02003007#ifdef CONFIG_X86_64
3008 VM_ENTRY_IA32E_MODE |
3009#endif
3010 VM_ENTRY_LOAD_IA32_PAT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003011 msrs->entry_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003012 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003013 if (kvm_mpx_supported())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003014 msrs->entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02003015
Jan Kiszka2996fca2014-06-16 13:59:43 +02003016 /* We support free control of debug control loading. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003017 msrs->entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02003018
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003019 /* cpu-based controls */
3020 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003021 msrs->procbased_ctls_low,
3022 msrs->procbased_ctls_high);
3023 msrs->procbased_ctls_low =
Wincy Vanb9c237b2015-02-03 23:56:30 +08003024 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003025 msrs->procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01003026 CPU_BASED_VIRTUAL_INTR_PENDING |
3027 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003028 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
3029 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
3030 CPU_BASED_CR3_STORE_EXITING |
3031#ifdef CONFIG_X86_64
3032 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
3033#endif
3034 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03003035 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
3036 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
3037 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
3038 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003039 /*
3040 * We can allow some features even when not supported by the
3041 * hardware. For example, L1 can specify an MSR bitmap - and we
3042 * can use it to avoid exits to L1 - even when L0 runs L2
3043 * without MSR bitmaps.
3044 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003045 msrs->procbased_ctls_high |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003046 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02003047 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003048
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003049 /* We support free control of CR3 access interception. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003050 msrs->procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02003051 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
3052
Paolo Bonzini80154d72017-08-24 13:55:35 +02003053 /*
3054 * secondary cpu-based controls. Do not include those that
3055 * depend on CPUID bits, they are added later by vmx_cpuid_update.
3056 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003057 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003058 msrs->secondary_ctls_low,
3059 msrs->secondary_ctls_high);
3060 msrs->secondary_ctls_low = 0;
3061 msrs->secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01003062 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02003063 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08003064 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08003065 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08003066 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02003067 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01003068
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003069 if (enable_ept) {
3070 /* nested EPT: emulate EPT also to L1 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003071 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003072 SECONDARY_EXEC_ENABLE_EPT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003073 msrs->ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003074 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04003075 if (cpu_has_vmx_ept_execute_only())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003076 msrs->ept_caps |=
Bandan Das02120c42016-07-12 18:18:52 -04003077 VMX_EPT_EXECUTE_ONLY_BIT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003078 msrs->ept_caps &= vmx_capability.ept;
3079 msrs->ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01003080 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
3081 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003082 if (enable_ept_ad_bits) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003083 msrs->secondary_ctls_high |=
Bandan Das03efce62017-05-05 15:25:15 -04003084 SECONDARY_EXEC_ENABLE_PML;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003085 msrs->ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04003086 }
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003087 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02003088
Bandan Das27c42a12017-08-03 15:54:42 -04003089 if (cpu_has_vmx_vmfunc()) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003090 msrs->secondary_ctls_high |=
Bandan Das27c42a12017-08-03 15:54:42 -04003091 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04003092 /*
3093 * Advertise EPTP switching unconditionally
3094 * since we emulate it
3095 */
Wanpeng Li575b3a22017-10-19 07:00:34 +08003096 if (enable_ept)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003097 msrs->vmfunc_controls =
Wanpeng Li575b3a22017-10-19 07:00:34 +08003098 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04003099 }
3100
Paolo Bonzinief697a72016-03-18 16:58:38 +01003101 /*
3102 * Old versions of KVM use the single-context version without
3103 * checking for support, so declare that it is supported even
3104 * though it is treated as global context. The alternative is
3105 * not failing the single-context invvpid, and it is worse.
3106 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003107 if (enable_vpid) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003108 msrs->secondary_ctls_high |=
Wanpeng Li63cb6d52017-03-20 21:18:53 -07003109 SECONDARY_EXEC_ENABLE_VPID;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003110 msrs->vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03003111 VMX_VPID_EXTENT_SUPPORTED_MASK;
David Hildenbrand1c13bff2017-08-24 20:51:33 +02003112 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07003113
Radim Krčmář0790ec12015-03-17 14:02:32 +01003114 if (enable_unrestricted_guest)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003115 msrs->secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01003116 SECONDARY_EXEC_UNRESTRICTED_GUEST;
3117
Jan Kiszkac18911a2013-03-13 16:06:41 +01003118 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08003119 rdmsr(MSR_IA32_VMX_MISC,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003120 msrs->misc_low,
3121 msrs->misc_high);
3122 msrs->misc_low &= VMX_MISC_SAVE_EFER_LMA;
3123 msrs->misc_low |=
Wincy Vanb9c237b2015-02-03 23:56:30 +08003124 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01003125 VMX_MISC_ACTIVITY_HLT;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003126 msrs->misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003127
3128 /*
3129 * This MSR reports some information about VMX support. We
3130 * should return information about the VMX we emulate for the
3131 * guest, and the VMCS structure we give it - not about the
3132 * VMX support of the underlying hardware.
3133 */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003134 msrs->basic =
David Matlack62cc6b9d2016-11-29 18:14:07 -08003135 VMCS12_REVISION |
3136 VMX_BASIC_TRUE_CTLS |
3137 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
3138 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
3139
3140 if (cpu_has_vmx_basic_inout())
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003141 msrs->basic |= VMX_BASIC_INOUT;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003142
3143 /*
David Matlack8322ebb2016-11-29 18:14:09 -08003144 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08003145 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
3146 * We picked the standard core2 setting.
3147 */
3148#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
3149#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003150 msrs->cr0_fixed0 = VMXON_CR0_ALWAYSON;
3151 msrs->cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08003152
3153 /* These MSRs specify bits which the guest must keep fixed off. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003154 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, msrs->cr0_fixed1);
3155 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, msrs->cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003156
3157 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003158 msrs->vmcs_enum = VMCS12_MAX_FIELD_INDEX << 1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003159}
3160
David Matlack38991522016-11-29 18:14:08 -08003161/*
3162 * if fixed0[i] == 1: val[i] must be 1
3163 * if fixed1[i] == 0: val[i] must be 0
3164 */
3165static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
3166{
3167 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003168}
3169
3170static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
3171{
David Matlack38991522016-11-29 18:14:08 -08003172 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003173}
3174
3175static inline u64 vmx_control_msr(u32 low, u32 high)
3176{
3177 return low | ((u64)high << 32);
3178}
3179
David Matlack62cc6b9d2016-11-29 18:14:07 -08003180static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
3181{
3182 superset &= mask;
3183 subset &= mask;
3184
3185 return (superset | subset) == superset;
3186}
3187
3188static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
3189{
3190 const u64 feature_and_reserved =
3191 /* feature (except bit 48; see below) */
3192 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
3193 /* reserved */
3194 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003195 u64 vmx_basic = vmx->nested.msrs.basic;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003196
3197 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
3198 return -EINVAL;
3199
3200 /*
3201 * KVM does not emulate a version of VMX that constrains physical
3202 * addresses of VMX structures (e.g. VMCS) to 32-bits.
3203 */
3204 if (data & BIT_ULL(48))
3205 return -EINVAL;
3206
3207 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
3208 vmx_basic_vmcs_revision_id(data))
3209 return -EINVAL;
3210
3211 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
3212 return -EINVAL;
3213
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003214 vmx->nested.msrs.basic = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003215 return 0;
3216}
3217
3218static int
3219vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3220{
3221 u64 supported;
3222 u32 *lowp, *highp;
3223
3224 switch (msr_index) {
3225 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003226 lowp = &vmx->nested.msrs.pinbased_ctls_low;
3227 highp = &vmx->nested.msrs.pinbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003228 break;
3229 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003230 lowp = &vmx->nested.msrs.procbased_ctls_low;
3231 highp = &vmx->nested.msrs.procbased_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003232 break;
3233 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003234 lowp = &vmx->nested.msrs.exit_ctls_low;
3235 highp = &vmx->nested.msrs.exit_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003236 break;
3237 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003238 lowp = &vmx->nested.msrs.entry_ctls_low;
3239 highp = &vmx->nested.msrs.entry_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003240 break;
3241 case MSR_IA32_VMX_PROCBASED_CTLS2:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003242 lowp = &vmx->nested.msrs.secondary_ctls_low;
3243 highp = &vmx->nested.msrs.secondary_ctls_high;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003244 break;
3245 default:
3246 BUG();
3247 }
3248
3249 supported = vmx_control_msr(*lowp, *highp);
3250
3251 /* Check must-be-1 bits are still 1. */
3252 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3253 return -EINVAL;
3254
3255 /* Check must-be-0 bits are still 0. */
3256 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3257 return -EINVAL;
3258
3259 *lowp = data;
3260 *highp = data >> 32;
3261 return 0;
3262}
3263
3264static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3265{
3266 const u64 feature_and_reserved_bits =
3267 /* feature */
3268 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3269 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3270 /* reserved */
3271 GENMASK_ULL(13, 9) | BIT_ULL(31);
3272 u64 vmx_misc;
3273
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003274 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
3275 vmx->nested.msrs.misc_high);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003276
3277 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3278 return -EINVAL;
3279
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003280 if ((vmx->nested.msrs.pinbased_ctls_high &
David Matlack62cc6b9d2016-11-29 18:14:07 -08003281 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3282 vmx_misc_preemption_timer_rate(data) !=
3283 vmx_misc_preemption_timer_rate(vmx_misc))
3284 return -EINVAL;
3285
3286 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3287 return -EINVAL;
3288
3289 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3290 return -EINVAL;
3291
3292 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3293 return -EINVAL;
3294
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003295 vmx->nested.msrs.misc_low = data;
3296 vmx->nested.msrs.misc_high = data >> 32;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003297 return 0;
3298}
3299
3300static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3301{
3302 u64 vmx_ept_vpid_cap;
3303
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003304 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps,
3305 vmx->nested.msrs.vpid_caps);
David Matlack62cc6b9d2016-11-29 18:14:07 -08003306
3307 /* Every bit is either reserved or a feature bit. */
3308 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3309 return -EINVAL;
3310
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003311 vmx->nested.msrs.ept_caps = data;
3312 vmx->nested.msrs.vpid_caps = data >> 32;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003313 return 0;
3314}
3315
3316static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3317{
3318 u64 *msr;
3319
3320 switch (msr_index) {
3321 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003322 msr = &vmx->nested.msrs.cr0_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003323 break;
3324 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003325 msr = &vmx->nested.msrs.cr4_fixed0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003326 break;
3327 default:
3328 BUG();
3329 }
3330
3331 /*
3332 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3333 * must be 1 in the restored value.
3334 */
3335 if (!is_bitwise_subset(data, *msr, -1ULL))
3336 return -EINVAL;
3337
3338 *msr = data;
3339 return 0;
3340}
3341
3342/*
3343 * Called when userspace is restoring VMX MSRs.
3344 *
3345 * Returns 0 on success, non-0 otherwise.
3346 */
3347static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3348{
3349 struct vcpu_vmx *vmx = to_vmx(vcpu);
3350
3351 switch (msr_index) {
3352 case MSR_IA32_VMX_BASIC:
3353 return vmx_restore_vmx_basic(vmx, data);
3354 case MSR_IA32_VMX_PINBASED_CTLS:
3355 case MSR_IA32_VMX_PROCBASED_CTLS:
3356 case MSR_IA32_VMX_EXIT_CTLS:
3357 case MSR_IA32_VMX_ENTRY_CTLS:
3358 /*
3359 * The "non-true" VMX capability MSRs are generated from the
3360 * "true" MSRs, so we do not support restoring them directly.
3361 *
3362 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3363 * should restore the "true" MSRs with the must-be-1 bits
3364 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3365 * DEFAULT SETTINGS".
3366 */
3367 return -EINVAL;
3368 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3369 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3370 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3371 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3372 case MSR_IA32_VMX_PROCBASED_CTLS2:
3373 return vmx_restore_control_msr(vmx, msr_index, data);
3374 case MSR_IA32_VMX_MISC:
3375 return vmx_restore_vmx_misc(vmx, data);
3376 case MSR_IA32_VMX_CR0_FIXED0:
3377 case MSR_IA32_VMX_CR4_FIXED0:
3378 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3379 case MSR_IA32_VMX_CR0_FIXED1:
3380 case MSR_IA32_VMX_CR4_FIXED1:
3381 /*
3382 * These MSRs are generated based on the vCPU's CPUID, so we
3383 * do not support restoring them directly.
3384 */
3385 return -EINVAL;
3386 case MSR_IA32_VMX_EPT_VPID_CAP:
3387 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3388 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003389 vmx->nested.msrs.vmcs_enum = data;
David Matlack62cc6b9d2016-11-29 18:14:07 -08003390 return 0;
3391 default:
3392 /*
3393 * The rest of the VMX capability MSRs do not support restore.
3394 */
3395 return -EINVAL;
3396 }
3397}
3398
Jan Kiszkacae50132014-01-04 18:47:22 +01003399/* Returns 0 on success, non-0 otherwise. */
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003400static int vmx_get_vmx_msr(struct nested_vmx_msrs *msrs, u32 msr_index, u64 *pdata)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003401{
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003402 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003403 case MSR_IA32_VMX_BASIC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003404 *pdata = msrs->basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003405 break;
3406 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3407 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003408 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003409 msrs->pinbased_ctls_low,
3410 msrs->pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003411 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3412 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003413 break;
3414 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3415 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003416 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003417 msrs->procbased_ctls_low,
3418 msrs->procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003419 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3420 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003421 break;
3422 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3423 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003424 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003425 msrs->exit_ctls_low,
3426 msrs->exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003427 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3428 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003429 break;
3430 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3431 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003432 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003433 msrs->entry_ctls_low,
3434 msrs->entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003435 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3436 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003437 break;
3438 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003439 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003440 msrs->misc_low,
3441 msrs->misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003442 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003443 case MSR_IA32_VMX_CR0_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003444 *pdata = msrs->cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003445 break;
3446 case MSR_IA32_VMX_CR0_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003447 *pdata = msrs->cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003448 break;
3449 case MSR_IA32_VMX_CR4_FIXED0:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003450 *pdata = msrs->cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003451 break;
3452 case MSR_IA32_VMX_CR4_FIXED1:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003453 *pdata = msrs->cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003454 break;
3455 case MSR_IA32_VMX_VMCS_ENUM:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003456 *pdata = msrs->vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003457 break;
3458 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003459 *pdata = vmx_control_msr(
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003460 msrs->secondary_ctls_low,
3461 msrs->secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003462 break;
3463 case MSR_IA32_VMX_EPT_VPID_CAP:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003464 *pdata = msrs->ept_caps |
3465 ((u64)msrs->vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003466 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003467 case MSR_IA32_VMX_VMFUNC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003468 *pdata = msrs->vmfunc_controls;
Bandan Das27c42a12017-08-03 15:54:42 -04003469 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003470 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003471 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003472 }
3473
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003474 return 0;
3475}
3476
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003477static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3478 uint64_t val)
3479{
3480 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3481
3482 return !(val & ~valid_bits);
3483}
3484
Tom Lendacky801e4592018-02-21 13:39:51 -06003485static int vmx_get_msr_feature(struct kvm_msr_entry *msr)
3486{
Paolo Bonzini13893092018-02-26 13:40:09 +01003487 switch (msr->index) {
3488 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3489 if (!nested)
3490 return 1;
3491 return vmx_get_vmx_msr(&vmcs_config.nested, msr->index, &msr->data);
3492 default:
3493 return 1;
3494 }
3495
3496 return 0;
Tom Lendacky801e4592018-02-21 13:39:51 -06003497}
3498
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003499/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003500 * Reads an msr value (of 'msr_index') into 'pdata'.
3501 * Returns 0 on success, non-0 otherwise.
3502 * Assumes vcpu_load() was already called.
3503 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003504static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003505{
Borislav Petkova6cb0992017-12-20 12:50:28 +01003506 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003507 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003508
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003509 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003510#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003511 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003512 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003513 break;
3514 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003515 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003516 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003517 case MSR_KERNEL_GS_BASE:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003518 vmx_load_host_state(vmx);
3519 msr_info->data = vmx->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003520 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003521#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003522 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003523 return kvm_get_msr_common(vcpu, msr_info);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003524 case MSR_IA32_SPEC_CTRL:
3525 if (!msr_info->host_initiated &&
3526 !guest_cpuid_has(vcpu, X86_FEATURE_IBRS) &&
3527 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3528 return 1;
3529
3530 msr_info->data = to_vmx(vcpu)->spec_ctrl;
3531 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01003532 case MSR_IA32_ARCH_CAPABILITIES:
3533 if (!msr_info->host_initiated &&
3534 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3535 return 1;
3536 msr_info->data = to_vmx(vcpu)->arch_capabilities;
3537 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003538 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003539 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003540 break;
3541 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003542 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543 break;
3544 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003545 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003546 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003547 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003548 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003549 (!msr_info->host_initiated &&
3550 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003551 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003552 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003553 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003554 case MSR_IA32_MCG_EXT_CTL:
3555 if (!msr_info->host_initiated &&
Borislav Petkova6cb0992017-12-20 12:50:28 +01003556 !(vmx->msr_ia32_feature_control &
Ashok Rajc45dcc72016-06-22 14:59:56 +08003557 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003558 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003559 msr_info->data = vcpu->arch.mcg_ext_ctl;
3560 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003561 case MSR_IA32_FEATURE_CONTROL:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003562 msr_info->data = vmx->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003563 break;
3564 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3565 if (!nested_vmx_allowed(vcpu))
3566 return 1;
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01003567 return vmx_get_vmx_msr(&vmx->nested.msrs, msr_info->index,
3568 &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003569 case MSR_IA32_XSS:
3570 if (!vmx_xsaves_supported())
3571 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003572 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003573 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003574 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003575 if (!msr_info->host_initiated &&
3576 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003577 return 1;
3578 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003579 default:
Borislav Petkova6cb0992017-12-20 12:50:28 +01003580 msr = find_msr_entry(vmx, msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003581 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003582 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003583 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003585 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003586 }
3587
Avi Kivity6aa8b732006-12-10 02:21:36 -08003588 return 0;
3589}
3590
Jan Kiszkacae50132014-01-04 18:47:22 +01003591static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3592
Avi Kivity6aa8b732006-12-10 02:21:36 -08003593/*
3594 * Writes msr value into into the appropriate "register".
3595 * Returns 0 on success, non-0 otherwise.
3596 * Assumes vcpu_load() was already called.
3597 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003598static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003599{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003600 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003601 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003602 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003603 u32 msr_index = msr_info->index;
3604 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003605
Avi Kivity6aa8b732006-12-10 02:21:36 -08003606 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003607 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003608 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003609 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003610#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003611 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003612 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003613 vmcs_writel(GUEST_FS_BASE, data);
3614 break;
3615 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003616 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003617 vmcs_writel(GUEST_GS_BASE, data);
3618 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003619 case MSR_KERNEL_GS_BASE:
3620 vmx_load_host_state(vmx);
3621 vmx->msr_guest_kernel_gs_base = data;
3622 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003623#endif
3624 case MSR_IA32_SYSENTER_CS:
3625 vmcs_write32(GUEST_SYSENTER_CS, data);
3626 break;
3627 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003628 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629 break;
3630 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003631 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003633 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003634 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003635 (!msr_info->host_initiated &&
3636 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003637 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003638 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003639 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003640 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003641 vmcs_write64(GUEST_BNDCFGS, data);
3642 break;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01003643 case MSR_IA32_SPEC_CTRL:
3644 if (!msr_info->host_initiated &&
3645 !guest_cpuid_has(vcpu, X86_FEATURE_IBRS) &&
3646 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3647 return 1;
3648
3649 /* The STIBP bit doesn't fault even if it's not advertised */
3650 if (data & ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP))
3651 return 1;
3652
3653 vmx->spec_ctrl = data;
3654
3655 if (!data)
3656 break;
3657
3658 /*
3659 * For non-nested:
3660 * When it's written (to non-zero) for the first time, pass
3661 * it through.
3662 *
3663 * For nested:
3664 * The handling of the MSR bitmap for L2 guests is done in
3665 * nested_vmx_merge_msr_bitmap. We should not touch the
3666 * vmcs02.msr_bitmap here since it gets completely overwritten
3667 * in the merging. We update the vmcs01 here for L1 as well
3668 * since it will end up touching the MSR anyway now.
3669 */
3670 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap,
3671 MSR_IA32_SPEC_CTRL,
3672 MSR_TYPE_RW);
3673 break;
Ashok Raj15d45072018-02-01 22:59:43 +01003674 case MSR_IA32_PRED_CMD:
3675 if (!msr_info->host_initiated &&
3676 !guest_cpuid_has(vcpu, X86_FEATURE_IBPB) &&
3677 !guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL))
3678 return 1;
3679
3680 if (data & ~PRED_CMD_IBPB)
3681 return 1;
3682
3683 if (!data)
3684 break;
3685
3686 wrmsrl(MSR_IA32_PRED_CMD, PRED_CMD_IBPB);
3687
3688 /*
3689 * For non-nested:
3690 * When it's written (to non-zero) for the first time, pass
3691 * it through.
3692 *
3693 * For nested:
3694 * The handling of the MSR bitmap for L2 guests is done in
3695 * nested_vmx_merge_msr_bitmap. We should not touch the
3696 * vmcs02.msr_bitmap here since it gets completely overwritten
3697 * in the merging.
3698 */
3699 vmx_disable_intercept_for_msr(vmx->vmcs01.msr_bitmap, MSR_IA32_PRED_CMD,
3700 MSR_TYPE_W);
3701 break;
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01003702 case MSR_IA32_ARCH_CAPABILITIES:
3703 if (!msr_info->host_initiated)
3704 return 1;
3705 vmx->arch_capabilities = data;
3706 break;
Sheng Yang468d4722008-10-09 16:01:55 +08003707 case MSR_IA32_CR_PAT:
3708 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003709 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3710 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003711 vmcs_write64(GUEST_IA32_PAT, data);
3712 vcpu->arch.pat = data;
3713 break;
3714 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003715 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003716 break;
Will Auldba904632012-11-29 12:42:50 -08003717 case MSR_IA32_TSC_ADJUST:
3718 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003719 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003720 case MSR_IA32_MCG_EXT_CTL:
3721 if ((!msr_info->host_initiated &&
3722 !(to_vmx(vcpu)->msr_ia32_feature_control &
3723 FEATURE_CONTROL_LMCE)) ||
3724 (data & ~MCG_EXT_CTL_LMCE_EN))
3725 return 1;
3726 vcpu->arch.mcg_ext_ctl = data;
3727 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003728 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003729 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003730 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003731 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3732 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003733 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003734 if (msr_info->host_initiated && data == 0)
3735 vmx_leave_nested(vcpu);
3736 break;
3737 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003738 if (!msr_info->host_initiated)
3739 return 1; /* they are read-only */
3740 if (!nested_vmx_allowed(vcpu))
3741 return 1;
3742 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003743 case MSR_IA32_XSS:
3744 if (!vmx_xsaves_supported())
3745 return 1;
3746 /*
3747 * The only supported bit as of Skylake is bit 8, but
3748 * it is not supported on KVM.
3749 */
3750 if (data != 0)
3751 return 1;
3752 vcpu->arch.ia32_xss = data;
3753 if (vcpu->arch.ia32_xss != host_xss)
3754 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3755 vcpu->arch.ia32_xss, host_xss);
3756 else
3757 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3758 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003759 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003760 if (!msr_info->host_initiated &&
3761 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003762 return 1;
3763 /* Check reserved bit, higher 32 bits should be zero */
3764 if ((data >> 32) != 0)
3765 return 1;
3766 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003767 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003768 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003769 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003770 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003771 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003772 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3773 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003774 ret = kvm_set_shared_msr(msr->index, msr->data,
3775 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003776 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003777 if (ret)
3778 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003779 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003780 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003781 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003782 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003783 }
3784
Eddie Dong2cc51562007-05-21 07:28:09 +03003785 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003786}
3787
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003788static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003789{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003790 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3791 switch (reg) {
3792 case VCPU_REGS_RSP:
3793 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3794 break;
3795 case VCPU_REGS_RIP:
3796 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3797 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003798 case VCPU_EXREG_PDPTR:
3799 if (enable_ept)
3800 ept_save_pdptrs(vcpu);
3801 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003802 default:
3803 break;
3804 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003805}
3806
Avi Kivity6aa8b732006-12-10 02:21:36 -08003807static __init int cpu_has_kvm_support(void)
3808{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003809 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810}
3811
3812static __init int vmx_disabled_by_bios(void)
3813{
3814 u64 msr;
3815
3816 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003817 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003818 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003819 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3820 && tboot_enabled())
3821 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003822 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003823 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003824 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003825 && !tboot_enabled()) {
3826 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003827 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003828 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003829 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003830 /* launched w/o TXT and VMX disabled */
3831 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3832 && !tboot_enabled())
3833 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003834 }
3835
3836 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837}
3838
Dongxiao Xu7725b892010-05-11 18:29:38 +08003839static void kvm_cpu_vmxon(u64 addr)
3840{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003841 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003842 intel_pt_handle_vmx(1);
3843
Dongxiao Xu7725b892010-05-11 18:29:38 +08003844 asm volatile (ASM_VMX_VMXON_RAX
3845 : : "a"(&addr), "m"(addr)
3846 : "memory", "cc");
3847}
3848
Radim Krčmář13a34e02014-08-28 15:13:03 +02003849static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003850{
3851 int cpu = raw_smp_processor_id();
3852 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003853 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003854
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003855 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003856 return -EBUSY;
3857
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01003858 /*
3859 * This can happen if we hot-added a CPU but failed to allocate
3860 * VP assist page for it.
3861 */
3862 if (static_branch_unlikely(&enable_evmcs) &&
3863 !hv_get_vp_assist_page(cpu))
3864 return -EFAULT;
3865
Nadav Har'Eld462b812011-05-24 15:26:10 +03003866 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003867 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3868 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003869
3870 /*
3871 * Now we can enable the vmclear operation in kdump
3872 * since the loaded_vmcss_on_cpu list on this cpu
3873 * has been initialized.
3874 *
3875 * Though the cpu is not in VMX operation now, there
3876 * is no problem to enable the vmclear operation
3877 * for the loaded_vmcss_on_cpu list is empty!
3878 */
3879 crash_enable_local_vmclear(cpu);
3880
Avi Kivity6aa8b732006-12-10 02:21:36 -08003881 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003882
3883 test_bits = FEATURE_CONTROL_LOCKED;
3884 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3885 if (tboot_enabled())
3886 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3887
3888 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003889 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003890 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3891 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003892 kvm_cpu_vmxon(phys_addr);
David Hildenbrandfdf288b2017-08-24 20:51:29 +02003893 if (enable_ept)
3894 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003895
3896 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003897}
3898
Nadav Har'Eld462b812011-05-24 15:26:10 +03003899static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003900{
3901 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003902 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003903
Nadav Har'Eld462b812011-05-24 15:26:10 +03003904 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3905 loaded_vmcss_on_cpu_link)
3906 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003907}
3908
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003909
3910/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3911 * tricks.
3912 */
3913static void kvm_cpu_vmxoff(void)
3914{
3915 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003916
3917 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003918 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003919}
3920
Radim Krčmář13a34e02014-08-28 15:13:03 +02003921static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003922{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003923 vmclear_local_loaded_vmcss();
3924 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003925}
3926
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003927static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003928 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003929{
3930 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003931 u32 ctl = ctl_min | ctl_opt;
3932
3933 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3934
3935 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3936 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3937
3938 /* Ensure minimum (required) set of control bits are supported. */
3939 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003940 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003941
3942 *result = ctl;
3943 return 0;
3944}
3945
Avi Kivity110312c2010-12-21 12:54:20 +02003946static __init bool allow_1_setting(u32 msr, u32 ctl)
3947{
3948 u32 vmx_msr_low, vmx_msr_high;
3949
3950 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3951 return vmx_msr_high & ctl;
3952}
3953
Yang, Sheng002c7f72007-07-31 14:23:01 +03003954static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003955{
3956 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003957 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003958 u32 _pin_based_exec_control = 0;
3959 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003960 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003961 u32 _vmexit_control = 0;
3962 u32 _vmentry_control = 0;
3963
Paolo Bonzini13893092018-02-26 13:40:09 +01003964 memset(vmcs_conf, 0, sizeof(*vmcs_conf));
Raghavendra K T10166742012-02-07 23:19:20 +05303965 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003966#ifdef CONFIG_X86_64
3967 CPU_BASED_CR8_LOAD_EXITING |
3968 CPU_BASED_CR8_STORE_EXITING |
3969#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003970 CPU_BASED_CR3_LOAD_EXITING |
3971 CPU_BASED_CR3_STORE_EXITING |
Quan Xu8eb73e22017-12-12 16:44:21 +08003972 CPU_BASED_UNCOND_IO_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003973 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003974 CPU_BASED_USE_TSC_OFFSETING |
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003975 CPU_BASED_MWAIT_EXITING |
3976 CPU_BASED_MONITOR_EXITING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003977 CPU_BASED_INVLPG_EXITING |
3978 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003979
Sheng Yangf78e0e22007-10-29 09:40:42 +08003980 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003981 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003982 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003983 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3984 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003985 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003986#ifdef CONFIG_X86_64
3987 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3988 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3989 ~CPU_BASED_CR8_STORE_EXITING;
3990#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003991 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003992 min2 = 0;
3993 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003994 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003995 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003996 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003997 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003998 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003999 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Paolo Bonzini0367f202016-07-12 10:44:55 +02004000 SECONDARY_EXEC_DESC |
Mao, Junjiead756a12012-07-02 01:18:48 +00004001 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08004002 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004003 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03004004 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08004005 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08004006 SECONDARY_EXEC_XSAVES |
David Hildenbrand736fdf72017-08-24 20:51:37 +02004007 SECONDARY_EXEC_RDSEED_EXITING |
4008 SECONDARY_EXEC_RDRAND_EXITING |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08004009 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04004010 SECONDARY_EXEC_TSC_SCALING |
4011 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08004012 if (adjust_vmx_controls(min2, opt2,
4013 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004014 &_cpu_based_2nd_exec_control) < 0)
4015 return -EIO;
4016 }
4017#ifndef CONFIG_X86_64
4018 if (!(_cpu_based_2nd_exec_control &
4019 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
4020 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
4021#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08004022
4023 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
4024 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08004025 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08004026 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
4027 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08004028
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004029 rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP,
4030 &vmx_capability.ept, &vmx_capability.vpid);
4031
Sheng Yangd56f5462008-04-25 10:13:16 +08004032 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03004033 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
4034 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03004035 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
4036 CPU_BASED_CR3_STORE_EXITING |
4037 CPU_BASED_INVLPG_EXITING);
Wanpeng Li61f1dd92017-10-18 16:02:19 -07004038 } else if (vmx_capability.ept) {
4039 vmx_capability.ept = 0;
4040 pr_warn_once("EPT CAP should not exist if not support "
4041 "1-setting enable EPT VM-execution control\n");
4042 }
4043 if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) &&
4044 vmx_capability.vpid) {
4045 vmx_capability.vpid = 0;
4046 pr_warn_once("VPID CAP should not exist if not support "
4047 "1-setting enable VPID VM-execution control\n");
Sheng Yangd56f5462008-04-25 10:13:16 +08004048 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004049
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004050 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004051#ifdef CONFIG_X86_64
4052 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
4053#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08004054 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004055 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004056 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
4057 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004058 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004059
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01004060 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
4061 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR |
4062 PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004063 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
4064 &_pin_based_exec_control) < 0)
4065 return -EIO;
4066
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02004067 if (cpu_has_broken_vmx_preemption_timer())
4068 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08004069 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02004070 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08004071 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
4072
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01004073 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00004074 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004075 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
4076 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004077 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004078
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004079 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004080
4081 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
4082 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004083 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004084
4085#ifdef CONFIG_X86_64
4086 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
4087 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03004088 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004089#endif
4090
4091 /* Require Write-Back (WB) memory type for VMCS accesses. */
4092 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03004093 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004094
Yang, Sheng002c7f72007-07-31 14:23:01 +03004095 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02004096 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03004097 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004098
4099 /* KVM supports Enlightened VMCS v1 only */
4100 if (static_branch_unlikely(&enable_evmcs))
4101 vmcs_conf->revision_id = KVM_EVMCS_VERSION;
4102 else
4103 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004104
Yang, Sheng002c7f72007-07-31 14:23:01 +03004105 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
4106 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004107 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03004108 vmcs_conf->vmexit_ctrl = _vmexit_control;
4109 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004110
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01004111 if (static_branch_unlikely(&enable_evmcs))
4112 evmcs_sanitize_exec_ctrls(vmcs_conf);
4113
Avi Kivity110312c2010-12-21 12:54:20 +02004114 cpu_has_load_ia32_efer =
4115 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4116 VM_ENTRY_LOAD_IA32_EFER)
4117 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4118 VM_EXIT_LOAD_IA32_EFER);
4119
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004120 cpu_has_load_perf_global_ctrl =
4121 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
4122 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
4123 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
4124 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
4125
4126 /*
4127 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02004128 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02004129 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
4130 *
4131 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
4132 *
4133 * AAK155 (model 26)
4134 * AAP115 (model 30)
4135 * AAT100 (model 37)
4136 * BC86,AAY89,BD102 (model 44)
4137 * BA97 (model 46)
4138 *
4139 */
4140 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
4141 switch (boot_cpu_data.x86_model) {
4142 case 26:
4143 case 30:
4144 case 37:
4145 case 44:
4146 case 46:
4147 cpu_has_load_perf_global_ctrl = false;
4148 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
4149 "does not work properly. Using workaround\n");
4150 break;
4151 default:
4152 break;
4153 }
4154 }
4155
Borislav Petkov782511b2016-04-04 22:25:03 +02004156 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08004157 rdmsrl(MSR_IA32_XSS, host_xss);
4158
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004159 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08004160}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161
4162static struct vmcs *alloc_vmcs_cpu(int cpu)
4163{
4164 int node = cpu_to_node(cpu);
4165 struct page *pages;
4166 struct vmcs *vmcs;
4167
Vlastimil Babka96db8002015-09-08 15:03:50 -07004168 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004169 if (!pages)
4170 return NULL;
4171 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004172 memset(vmcs, 0, vmcs_config.size);
4173 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 return vmcs;
4175}
4176
Avi Kivity6aa8b732006-12-10 02:21:36 -08004177static void free_vmcs(struct vmcs *vmcs)
4178{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03004179 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180}
4181
Nadav Har'Eld462b812011-05-24 15:26:10 +03004182/*
4183 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
4184 */
4185static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4186{
4187 if (!loaded_vmcs->vmcs)
4188 return;
4189 loaded_vmcs_clear(loaded_vmcs);
4190 free_vmcs(loaded_vmcs->vmcs);
4191 loaded_vmcs->vmcs = NULL;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004192 if (loaded_vmcs->msr_bitmap)
4193 free_page((unsigned long)loaded_vmcs->msr_bitmap);
Jim Mattson355f4fb2016-10-28 08:29:39 -07004194 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03004195}
4196
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004197static struct vmcs *alloc_vmcs(void)
4198{
4199 return alloc_vmcs_cpu(raw_smp_processor_id());
4200}
4201
4202static int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
4203{
4204 loaded_vmcs->vmcs = alloc_vmcs();
4205 if (!loaded_vmcs->vmcs)
4206 return -ENOMEM;
4207
4208 loaded_vmcs->shadow_vmcs = NULL;
4209 loaded_vmcs_init(loaded_vmcs);
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004210
4211 if (cpu_has_vmx_msr_bitmap()) {
4212 loaded_vmcs->msr_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
4213 if (!loaded_vmcs->msr_bitmap)
4214 goto out_vmcs;
4215 memset(loaded_vmcs->msr_bitmap, 0xff, PAGE_SIZE);
4216 }
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004217 return 0;
Paolo Bonzini904e14f2018-01-16 16:51:18 +01004218
4219out_vmcs:
4220 free_loaded_vmcs(loaded_vmcs);
4221 return -ENOMEM;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01004222}
4223
Sam Ravnborg39959582007-06-01 00:47:13 -07004224static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004225{
4226 int cpu;
4227
Zachary Amsden3230bb42009-09-29 11:38:37 -10004228 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004229 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10004230 per_cpu(vmxarea, cpu) = NULL;
4231 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232}
4233
Jim Mattsond37f4262017-12-22 12:12:16 -08004234enum vmcs_field_width {
4235 VMCS_FIELD_WIDTH_U16 = 0,
4236 VMCS_FIELD_WIDTH_U64 = 1,
4237 VMCS_FIELD_WIDTH_U32 = 2,
4238 VMCS_FIELD_WIDTH_NATURAL_WIDTH = 3
Jim Mattson85fd5142017-07-07 12:51:41 -07004239};
4240
Jim Mattsond37f4262017-12-22 12:12:16 -08004241static inline int vmcs_field_width(unsigned long field)
Jim Mattson85fd5142017-07-07 12:51:41 -07004242{
4243 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
Jim Mattsond37f4262017-12-22 12:12:16 -08004244 return VMCS_FIELD_WIDTH_U32;
Jim Mattson85fd5142017-07-07 12:51:41 -07004245 return (field >> 13) & 0x3 ;
4246}
4247
4248static inline int vmcs_field_readonly(unsigned long field)
4249{
4250 return (((field >> 10) & 0x3) == 1);
4251}
4252
Bandan Dasfe2b2012014-04-21 15:20:14 -04004253static void init_vmcs_shadow_fields(void)
4254{
4255 int i, j;
4256
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004257 for (i = j = 0; i < max_shadow_read_only_fields; i++) {
4258 u16 field = shadow_read_only_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004259 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004260 (i + 1 == max_shadow_read_only_fields ||
4261 shadow_read_only_fields[i + 1] != field + 1))
4262 pr_err("Missing field from shadow_read_only_field %x\n",
4263 field + 1);
4264
4265 clear_bit(field, vmx_vmread_bitmap);
4266#ifdef CONFIG_X86_64
4267 if (field & 1)
4268 continue;
4269#endif
4270 if (j < i)
4271 shadow_read_only_fields[j] = field;
4272 j++;
4273 }
4274 max_shadow_read_only_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004275
4276 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004277 u16 field = shadow_read_write_fields[i];
Jim Mattsond37f4262017-12-22 12:12:16 -08004278 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004279 (i + 1 == max_shadow_read_write_fields ||
4280 shadow_read_write_fields[i + 1] != field + 1))
4281 pr_err("Missing field from shadow_read_write_field %x\n",
4282 field + 1);
4283
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004284 /*
4285 * PML and the preemption timer can be emulated, but the
4286 * processor cannot vmwrite to fields that don't exist
4287 * on bare metal.
4288 */
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004289 switch (field) {
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01004290 case GUEST_PML_INDEX:
4291 if (!cpu_has_vmx_pml())
4292 continue;
4293 break;
4294 case VMX_PREEMPTION_TIMER_VALUE:
4295 if (!cpu_has_vmx_preemption_timer())
4296 continue;
4297 break;
4298 case GUEST_INTR_STATUS:
4299 if (!cpu_has_vmx_apicv())
Bandan Dasfe2b2012014-04-21 15:20:14 -04004300 continue;
4301 break;
4302 default:
4303 break;
4304 }
4305
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004306 clear_bit(field, vmx_vmwrite_bitmap);
4307 clear_bit(field, vmx_vmread_bitmap);
4308#ifdef CONFIG_X86_64
4309 if (field & 1)
4310 continue;
4311#endif
Bandan Dasfe2b2012014-04-21 15:20:14 -04004312 if (j < i)
Paolo Bonzini44900ba2017-12-13 12:58:02 +01004313 shadow_read_write_fields[j] = field;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004314 j++;
4315 }
4316 max_shadow_read_write_fields = j;
Bandan Dasfe2b2012014-04-21 15:20:14 -04004317}
4318
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319static __init int alloc_kvm_area(void)
4320{
4321 int cpu;
4322
Zachary Amsden3230bb42009-09-29 11:38:37 -10004323 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004324 struct vmcs *vmcs;
4325
4326 vmcs = alloc_vmcs_cpu(cpu);
4327 if (!vmcs) {
4328 free_kvm_area();
4329 return -ENOMEM;
4330 }
4331
4332 per_cpu(vmxarea, cpu) = vmcs;
4333 }
4334 return 0;
4335}
4336
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004337static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02004338 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004339{
Gleb Natapovd99e4152012-12-20 16:57:45 +02004340 if (!emulate_invalid_guest_state) {
4341 /*
4342 * CS and SS RPL should be equal during guest entry according
4343 * to VMX spec, but in reality it is not always so. Since vcpu
4344 * is in the middle of the transition from real mode to
4345 * protected mode it is safe to assume that RPL 0 is a good
4346 * default value.
4347 */
4348 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03004349 save->selector &= ~SEGMENT_RPL_MASK;
4350 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02004351 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004352 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02004353 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004354}
4355
4356static void enter_pmode(struct kvm_vcpu *vcpu)
4357{
4358 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004359 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004360
Gleb Natapovd99e4152012-12-20 16:57:45 +02004361 /*
4362 * Update real mode segment cache. It may be not up-to-date if sement
4363 * register was written while vcpu was in a guest mode.
4364 */
4365 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4366 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4367 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4368 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
4369 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4370 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
4371
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004372 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004373
Avi Kivity2fb92db2011-04-27 19:42:18 +03004374 vmx_segment_cache_clear(vmx);
4375
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004376 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004377
4378 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004379 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
4380 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004381 vmcs_writel(GUEST_RFLAGS, flags);
4382
Rusty Russell66aee912007-07-17 23:34:16 +10004383 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
4384 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004385
4386 update_exception_bitmap(vcpu);
4387
Gleb Natapov91b0aa22013-01-21 15:36:47 +02004388 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4389 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4390 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4391 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4392 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
4393 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004394}
4395
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004396static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397{
Mathias Krause772e0312012-08-30 01:30:19 +02004398 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02004399 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004400
Gleb Natapovd99e4152012-12-20 16:57:45 +02004401 var.dpl = 0x3;
4402 if (seg == VCPU_SREG_CS)
4403 var.type = 0x3;
4404
4405 if (!emulate_invalid_guest_state) {
4406 var.selector = var.base >> 4;
4407 var.base = var.base & 0xffff0;
4408 var.limit = 0xffff;
4409 var.g = 0;
4410 var.db = 0;
4411 var.present = 1;
4412 var.s = 1;
4413 var.l = 0;
4414 var.unusable = 0;
4415 var.type = 0x3;
4416 var.avl = 0;
4417 if (save->base & 0xf)
4418 printk_once(KERN_WARNING "kvm: segment base is not "
4419 "paragraph aligned when entering "
4420 "protected mode (seg=%d)", seg);
4421 }
4422
4423 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004424 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004425 vmcs_write32(sf->limit, var.limit);
4426 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004427}
4428
4429static void enter_rmode(struct kvm_vcpu *vcpu)
4430{
4431 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004432 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004433 struct kvm_vmx *kvm_vmx = to_kvm_vmx(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004434
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004435 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4436 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4437 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4438 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4439 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004440 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4441 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004442
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004443 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004444
Gleb Natapov776e58e2011-03-13 12:34:27 +02004445 /*
4446 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004447 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004448 */
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004449 if (!kvm_vmx->tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004450 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4451 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004452
Avi Kivity2fb92db2011-04-27 19:42:18 +03004453 vmx_segment_cache_clear(vmx);
4454
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004455 vmcs_writel(GUEST_TR_BASE, kvm_vmx->tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004456 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004457 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4458
4459 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004460 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004461
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004462 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004463
4464 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004465 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004466 update_exception_bitmap(vcpu);
4467
Gleb Natapovd99e4152012-12-20 16:57:45 +02004468 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4469 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4470 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4471 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4472 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4473 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004474
Eddie Dong8668a3c2007-10-10 14:26:45 +08004475 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004476}
4477
Amit Shah401d10d2009-02-20 22:53:37 +05304478static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4479{
4480 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004481 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4482
4483 if (!msr)
4484 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304485
Avi Kivity44ea2b12009-09-06 15:55:37 +03004486 /*
4487 * Force kernel_gs_base reloading before EFER changes, as control
4488 * of this msr depends on is_long_mode().
4489 */
4490 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004491 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304492 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004493 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304494 msr->data = efer;
4495 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004496 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304497
4498 msr->data = efer & ~EFER_LME;
4499 }
4500 setup_msrs(vmx);
4501}
4502
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004503#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004504
4505static void enter_lmode(struct kvm_vcpu *vcpu)
4506{
4507 u32 guest_tr_ar;
4508
Avi Kivity2fb92db2011-04-27 19:42:18 +03004509 vmx_segment_cache_clear(to_vmx(vcpu));
4510
Avi Kivity6aa8b732006-12-10 02:21:36 -08004511 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004512 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004513 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4514 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004515 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004516 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4517 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004518 }
Avi Kivityda38f432010-07-06 11:30:49 +03004519 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004520}
4521
4522static void exit_lmode(struct kvm_vcpu *vcpu)
4523{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004524 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004525 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004526}
4527
4528#endif
4529
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004530static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid,
4531 bool invalidate_gpa)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004532{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004533 if (enable_ept && (invalidate_gpa || !enable_vpid)) {
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004534 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4535 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004536 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004537 } else {
4538 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004539 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004540}
4541
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004542static void vmx_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004543{
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004544 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid, invalidate_gpa);
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004545}
4546
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004547static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4548{
4549 if (enable_ept)
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004550 vmx_flush_tlb(vcpu, true);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004551}
4552
Avi Kivitye8467fd2009-12-29 18:43:06 +02004553static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4554{
4555 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4556
4557 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4558 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4559}
4560
Avi Kivityaff48ba2010-12-05 18:56:11 +02004561static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4562{
Sean Christophersonb4d18512018-03-05 12:04:40 -08004563 if (enable_unrestricted_guest || (enable_ept && is_paging(vcpu)))
Avi Kivityaff48ba2010-12-05 18:56:11 +02004564 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4565 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4566}
4567
Anthony Liguori25c4c272007-04-27 09:29:21 +03004568static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004569{
Avi Kivityfc78f512009-12-07 12:16:48 +02004570 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4571
4572 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4573 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004574}
4575
Sheng Yang14394422008-04-28 12:24:45 +08004576static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4577{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004578 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4579
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004580 if (!test_bit(VCPU_EXREG_PDPTR,
4581 (unsigned long *)&vcpu->arch.regs_dirty))
4582 return;
4583
Sheng Yang14394422008-04-28 12:24:45 +08004584 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004585 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4586 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4587 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4588 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004589 }
4590}
4591
Avi Kivity8f5d5492009-05-31 18:41:29 +03004592static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4593{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004594 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4595
Avi Kivity8f5d5492009-05-31 18:41:29 +03004596 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004597 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4598 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4599 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4600 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004601 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004602
4603 __set_bit(VCPU_EXREG_PDPTR,
4604 (unsigned long *)&vcpu->arch.regs_avail);
4605 __set_bit(VCPU_EXREG_PDPTR,
4606 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004607}
4608
David Matlack38991522016-11-29 18:14:08 -08004609static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4610{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004611 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
4612 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004613 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4614
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004615 if (to_vmx(vcpu)->nested.msrs.secondary_ctls_high &
David Matlack38991522016-11-29 18:14:08 -08004616 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4617 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4618 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4619
4620 return fixed_bits_valid(val, fixed0, fixed1);
4621}
4622
4623static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4624{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004625 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr0_fixed0;
4626 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr0_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004627
4628 return fixed_bits_valid(val, fixed0, fixed1);
4629}
4630
4631static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4632{
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01004633 u64 fixed0 = to_vmx(vcpu)->nested.msrs.cr4_fixed0;
4634 u64 fixed1 = to_vmx(vcpu)->nested.msrs.cr4_fixed1;
David Matlack38991522016-11-29 18:14:08 -08004635
4636 return fixed_bits_valid(val, fixed0, fixed1);
4637}
4638
4639/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4640#define nested_guest_cr4_valid nested_cr4_valid
4641#define nested_host_cr4_valid nested_cr4_valid
4642
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004643static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004644
4645static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4646 unsigned long cr0,
4647 struct kvm_vcpu *vcpu)
4648{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004649 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4650 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004651 if (!(cr0 & X86_CR0_PG)) {
4652 /* From paging/starting to nonpaging */
4653 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004654 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004655 (CPU_BASED_CR3_LOAD_EXITING |
4656 CPU_BASED_CR3_STORE_EXITING));
4657 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004658 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004659 } else if (!is_paging(vcpu)) {
4660 /* From nonpaging to paging */
4661 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004662 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004663 ~(CPU_BASED_CR3_LOAD_EXITING |
4664 CPU_BASED_CR3_STORE_EXITING));
4665 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004666 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004667 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004668
4669 if (!(cr0 & X86_CR0_WP))
4670 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004671}
4672
Avi Kivity6aa8b732006-12-10 02:21:36 -08004673static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4674{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004675 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004676 unsigned long hw_cr0;
4677
Gleb Natapov50378782013-02-04 16:00:28 +02004678 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004679 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004680 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004681 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004682 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004683
Gleb Natapov218e7632013-01-21 15:36:45 +02004684 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4685 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004686
Gleb Natapov218e7632013-01-21 15:36:45 +02004687 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4688 enter_rmode(vcpu);
4689 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004690
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004691#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004692 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004693 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004694 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004695 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004696 exit_lmode(vcpu);
4697 }
4698#endif
4699
Sean Christophersonb4d18512018-03-05 12:04:40 -08004700 if (enable_ept && !enable_unrestricted_guest)
Sheng Yang14394422008-04-28 12:24:45 +08004701 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4702
Avi Kivity6aa8b732006-12-10 02:21:36 -08004703 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004704 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004705 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004706
4707 /* depends on vcpu->arch.cr0 to be set to a new value */
4708 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004709}
4710
Yu Zhang855feb62017-08-24 20:27:55 +08004711static int get_ept_level(struct kvm_vcpu *vcpu)
4712{
4713 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
4714 return 5;
4715 return 4;
4716}
4717
Peter Feiner995f00a2017-06-30 17:26:32 -07004718static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004719{
Yu Zhang855feb62017-08-24 20:27:55 +08004720 u64 eptp = VMX_EPTP_MT_WB;
Sheng Yang14394422008-04-28 12:24:45 +08004721
Yu Zhang855feb62017-08-24 20:27:55 +08004722 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004723
Peter Feiner995f00a2017-06-30 17:26:32 -07004724 if (enable_ept_ad_bits &&
4725 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004726 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004727 eptp |= (root_hpa & PAGE_MASK);
4728
4729 return eptp;
4730}
4731
Avi Kivity6aa8b732006-12-10 02:21:36 -08004732static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4733{
Sheng Yang14394422008-04-28 12:24:45 +08004734 unsigned long guest_cr3;
4735 u64 eptp;
4736
4737 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004738 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004739 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004740 vmcs_write64(EPT_POINTER, eptp);
Sean Christophersone90008d2018-03-05 12:04:37 -08004741 if (enable_unrestricted_guest || is_paging(vcpu) ||
4742 is_guest_mode(vcpu))
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004743 guest_cr3 = kvm_read_cr3(vcpu);
4744 else
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07004745 guest_cr3 = to_kvm_vmx(vcpu->kvm)->ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02004746 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004747 }
4748
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08004749 vmx_flush_tlb(vcpu, true);
Sheng Yang14394422008-04-28 12:24:45 +08004750 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004751}
4752
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004753static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004754{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004755 /*
4756 * Pass through host's Machine Check Enable value to hw_cr4, which
4757 * is in force while we are in guest mode. Do not let guests control
4758 * this bit, even if host CR4.MCE == 0.
4759 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08004760 unsigned long hw_cr4;
4761
4762 hw_cr4 = (cr4_read_shadow() & X86_CR4_MCE) | (cr4 & ~X86_CR4_MCE);
4763 if (enable_unrestricted_guest)
4764 hw_cr4 |= KVM_VM_CR4_ALWAYS_ON_UNRESTRICTED_GUEST;
4765 else if (to_vmx(vcpu)->rmode.vm86_active)
4766 hw_cr4 |= KVM_RMODE_VM_CR4_ALWAYS_ON;
4767 else
4768 hw_cr4 |= KVM_PMODE_VM_CR4_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004769
Paolo Bonzini0367f202016-07-12 10:44:55 +02004770 if ((cr4 & X86_CR4_UMIP) && !boot_cpu_has(X86_FEATURE_UMIP)) {
4771 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
4772 SECONDARY_EXEC_DESC);
4773 hw_cr4 &= ~X86_CR4_UMIP;
Radim Krčmář99158242018-01-31 18:12:50 +01004774 } else if (!is_guest_mode(vcpu) ||
4775 !nested_cpu_has2(get_vmcs12(vcpu), SECONDARY_EXEC_DESC))
Paolo Bonzini0367f202016-07-12 10:44:55 +02004776 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
4777 SECONDARY_EXEC_DESC);
4778
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004779 if (cr4 & X86_CR4_VMXE) {
4780 /*
4781 * To use VMXON (and later other VMX instructions), a guest
4782 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4783 * So basically the check on whether to allow nested VMX
4784 * is here.
4785 */
4786 if (!nested_vmx_allowed(vcpu))
4787 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004788 }
David Matlack38991522016-11-29 18:14:08 -08004789
4790 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004791 return 1;
4792
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004793 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08004794
Sean Christopherson5dc1f042018-03-05 12:04:39 -08004795 if (!enable_unrestricted_guest) {
4796 if (enable_ept) {
4797 if (!is_paging(vcpu)) {
4798 hw_cr4 &= ~X86_CR4_PAE;
4799 hw_cr4 |= X86_CR4_PSE;
4800 } else if (!(cr4 & X86_CR4_PAE)) {
4801 hw_cr4 &= ~X86_CR4_PAE;
4802 }
4803 }
4804
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004805 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004806 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4807 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4808 * to be manually disabled when guest switches to non-paging
4809 * mode.
4810 *
4811 * If !enable_unrestricted_guest, the CPU is always running
4812 * with CR0.PG=1 and CR4 needs to be modified.
4813 * If enable_unrestricted_guest, the CPU automatically
4814 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004815 */
Sean Christopherson5dc1f042018-03-05 12:04:39 -08004816 if (!is_paging(vcpu))
4817 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
4818 }
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004819
Sheng Yang14394422008-04-28 12:24:45 +08004820 vmcs_writel(CR4_READ_SHADOW, cr4);
4821 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004822 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004823}
4824
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825static void vmx_get_segment(struct kvm_vcpu *vcpu,
4826 struct kvm_segment *var, int seg)
4827{
Avi Kivitya9179492011-01-03 14:28:52 +02004828 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004829 u32 ar;
4830
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004831 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004832 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004833 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004834 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004835 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004836 var->base = vmx_read_guest_seg_base(vmx, seg);
4837 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4838 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004839 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004840 var->base = vmx_read_guest_seg_base(vmx, seg);
4841 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4842 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4843 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004844 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004845 var->type = ar & 15;
4846 var->s = (ar >> 4) & 1;
4847 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004848 /*
4849 * Some userspaces do not preserve unusable property. Since usable
4850 * segment has to be present according to VMX spec we can use present
4851 * property to amend userspace bug by making unusable segment always
4852 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4853 * segment as unusable.
4854 */
4855 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004856 var->avl = (ar >> 12) & 1;
4857 var->l = (ar >> 13) & 1;
4858 var->db = (ar >> 14) & 1;
4859 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860}
4861
Avi Kivitya9179492011-01-03 14:28:52 +02004862static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4863{
Avi Kivitya9179492011-01-03 14:28:52 +02004864 struct kvm_segment s;
4865
4866 if (to_vmx(vcpu)->rmode.vm86_active) {
4867 vmx_get_segment(vcpu, &s, seg);
4868 return s.base;
4869 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004870 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004871}
4872
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004873static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004874{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004875 struct vcpu_vmx *vmx = to_vmx(vcpu);
4876
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004877 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004878 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004879 else {
4880 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004881 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004882 }
Avi Kivity69c73022011-03-07 15:26:44 +02004883}
4884
Avi Kivity653e3102007-05-07 10:55:37 +03004885static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004886{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004887 u32 ar;
4888
Avi Kivityf0495f92012-06-07 17:06:10 +03004889 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004890 ar = 1 << 16;
4891 else {
4892 ar = var->type & 15;
4893 ar |= (var->s & 1) << 4;
4894 ar |= (var->dpl & 3) << 5;
4895 ar |= (var->present & 1) << 7;
4896 ar |= (var->avl & 1) << 12;
4897 ar |= (var->l & 1) << 13;
4898 ar |= (var->db & 1) << 14;
4899 ar |= (var->g & 1) << 15;
4900 }
Avi Kivity653e3102007-05-07 10:55:37 +03004901
4902 return ar;
4903}
4904
4905static void vmx_set_segment(struct kvm_vcpu *vcpu,
4906 struct kvm_segment *var, int seg)
4907{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004908 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004909 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004910
Avi Kivity2fb92db2011-04-27 19:42:18 +03004911 vmx_segment_cache_clear(vmx);
4912
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004913 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4914 vmx->rmode.segs[seg] = *var;
4915 if (seg == VCPU_SREG_TR)
4916 vmcs_write16(sf->selector, var->selector);
4917 else if (var->s)
4918 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004919 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004920 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004921
Avi Kivity653e3102007-05-07 10:55:37 +03004922 vmcs_writel(sf->base, var->base);
4923 vmcs_write32(sf->limit, var->limit);
4924 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004925
4926 /*
4927 * Fix the "Accessed" bit in AR field of segment registers for older
4928 * qemu binaries.
4929 * IA32 arch specifies that at the time of processor reset the
4930 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004931 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004932 * state vmexit when "unrestricted guest" mode is turned on.
4933 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4934 * tree. Newer qemu binaries with that qemu fix would not need this
4935 * kvm hack.
4936 */
4937 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004938 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004939
Gleb Natapovf924d662012-12-12 19:10:55 +02004940 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004941
4942out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004943 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004944}
4945
Avi Kivity6aa8b732006-12-10 02:21:36 -08004946static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4947{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004948 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004949
4950 *db = (ar >> 14) & 1;
4951 *l = (ar >> 13) & 1;
4952}
4953
Gleb Natapov89a27f42010-02-16 10:51:48 +02004954static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004955{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004956 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4957 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004958}
4959
Gleb Natapov89a27f42010-02-16 10:51:48 +02004960static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004961{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004962 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4963 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004964}
4965
Gleb Natapov89a27f42010-02-16 10:51:48 +02004966static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004967{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004968 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4969 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004970}
4971
Gleb Natapov89a27f42010-02-16 10:51:48 +02004972static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004973{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004974 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4975 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004976}
4977
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004978static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4979{
4980 struct kvm_segment var;
4981 u32 ar;
4982
4983 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004984 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004985 if (seg == VCPU_SREG_CS)
4986 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004987 ar = vmx_segment_access_rights(&var);
4988
4989 if (var.base != (var.selector << 4))
4990 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004991 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004992 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004993 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004994 return false;
4995
4996 return true;
4997}
4998
4999static bool code_segment_valid(struct kvm_vcpu *vcpu)
5000{
5001 struct kvm_segment cs;
5002 unsigned int cs_rpl;
5003
5004 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005005 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005006
Avi Kivity1872a3f2009-01-04 23:26:52 +02005007 if (cs.unusable)
5008 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005009 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005010 return false;
5011 if (!cs.s)
5012 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005013 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005014 if (cs.dpl > cs_rpl)
5015 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005016 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005017 if (cs.dpl != cs_rpl)
5018 return false;
5019 }
5020 if (!cs.present)
5021 return false;
5022
5023 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
5024 return true;
5025}
5026
5027static bool stack_segment_valid(struct kvm_vcpu *vcpu)
5028{
5029 struct kvm_segment ss;
5030 unsigned int ss_rpl;
5031
5032 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03005033 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005034
Avi Kivity1872a3f2009-01-04 23:26:52 +02005035 if (ss.unusable)
5036 return true;
5037 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005038 return false;
5039 if (!ss.s)
5040 return false;
5041 if (ss.dpl != ss_rpl) /* DPL != RPL */
5042 return false;
5043 if (!ss.present)
5044 return false;
5045
5046 return true;
5047}
5048
5049static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
5050{
5051 struct kvm_segment var;
5052 unsigned int rpl;
5053
5054 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03005055 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005056
Avi Kivity1872a3f2009-01-04 23:26:52 +02005057 if (var.unusable)
5058 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005059 if (!var.s)
5060 return false;
5061 if (!var.present)
5062 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07005063 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005064 if (var.dpl < rpl) /* DPL < RPL */
5065 return false;
5066 }
5067
5068 /* TODO: Add other members to kvm_segment_field to allow checking for other access
5069 * rights flags
5070 */
5071 return true;
5072}
5073
5074static bool tr_valid(struct kvm_vcpu *vcpu)
5075{
5076 struct kvm_segment tr;
5077
5078 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
5079
Avi Kivity1872a3f2009-01-04 23:26:52 +02005080 if (tr.unusable)
5081 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03005082 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005083 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02005084 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005085 return false;
5086 if (!tr.present)
5087 return false;
5088
5089 return true;
5090}
5091
5092static bool ldtr_valid(struct kvm_vcpu *vcpu)
5093{
5094 struct kvm_segment ldtr;
5095
5096 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
5097
Avi Kivity1872a3f2009-01-04 23:26:52 +02005098 if (ldtr.unusable)
5099 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03005100 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005101 return false;
5102 if (ldtr.type != 2)
5103 return false;
5104 if (!ldtr.present)
5105 return false;
5106
5107 return true;
5108}
5109
5110static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
5111{
5112 struct kvm_segment cs, ss;
5113
5114 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5115 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
5116
Nadav Amitb32a9912015-03-29 16:33:04 +03005117 return ((cs.selector & SEGMENT_RPL_MASK) ==
5118 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005119}
5120
5121/*
5122 * Check if guest state is valid. Returns true if valid, false if
5123 * not.
5124 * We assume that registers are always usable
5125 */
5126static bool guest_state_valid(struct kvm_vcpu *vcpu)
5127{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02005128 if (enable_unrestricted_guest)
5129 return true;
5130
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005131 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03005132 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03005133 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
5134 return false;
5135 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
5136 return false;
5137 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
5138 return false;
5139 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
5140 return false;
5141 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
5142 return false;
5143 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
5144 return false;
5145 } else {
5146 /* protected mode guest state checks */
5147 if (!cs_ss_rpl_check(vcpu))
5148 return false;
5149 if (!code_segment_valid(vcpu))
5150 return false;
5151 if (!stack_segment_valid(vcpu))
5152 return false;
5153 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
5154 return false;
5155 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
5156 return false;
5157 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
5158 return false;
5159 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
5160 return false;
5161 if (!tr_valid(vcpu))
5162 return false;
5163 if (!ldtr_valid(vcpu))
5164 return false;
5165 }
5166 /* TODO:
5167 * - Add checks on RIP
5168 * - Add checks on RFLAGS
5169 */
5170
5171 return true;
5172}
5173
Jim Mattson5fa99cb2017-07-06 16:33:07 -07005174static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
5175{
5176 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
5177}
5178
Mike Dayd77c26f2007-10-08 09:02:08 -04005179static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005180{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005181 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02005182 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005183 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005184
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005185 idx = srcu_read_lock(&kvm->srcu);
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005186 fn = to_kvm_vmx(kvm)->tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02005187 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5188 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005189 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005190 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08005191 r = kvm_write_guest_page(kvm, fn++, &data,
5192 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02005193 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005194 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005195 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
5196 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005197 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005198 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
5199 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005200 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02005201 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005202 r = kvm_write_guest_page(kvm, fn, &data,
5203 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
5204 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005205out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005206 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005207 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005208}
5209
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005210static int init_rmode_identity_map(struct kvm *kvm)
5211{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005212 struct kvm_vmx *kvm_vmx = to_kvm_vmx(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08005213 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005214 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005215 u32 tmp;
5216
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005217 /* Protect kvm_vmx->ept_identity_pagetable_done. */
Tang Chena255d472014-09-16 18:41:58 +08005218 mutex_lock(&kvm->slots_lock);
5219
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005220 if (likely(kvm_vmx->ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08005221 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08005222
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005223 if (!kvm_vmx->ept_identity_map_addr)
5224 kvm_vmx->ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
5225 identity_map_pfn = kvm_vmx->ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08005226
David Hildenbrandd8a6e362017-08-24 20:51:34 +02005227 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005228 kvm_vmx->ept_identity_map_addr, PAGE_SIZE);
Tang Chenf51770e2014-09-16 18:41:59 +08005229 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08005230 goto out2;
5231
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005232 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005233 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
5234 if (r < 0)
5235 goto out;
5236 /* Set up identity-mapping pagetable for EPT in real mode */
5237 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
5238 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
5239 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
5240 r = kvm_write_guest_page(kvm, identity_map_pfn,
5241 &tmp, i * sizeof(tmp), sizeof(tmp));
5242 if (r < 0)
5243 goto out;
5244 }
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07005245 kvm_vmx->ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08005246
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005247out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08005248 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08005249
5250out2:
5251 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08005252 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005253}
5254
Avi Kivity6aa8b732006-12-10 02:21:36 -08005255static void seg_setup(int seg)
5256{
Mathias Krause772e0312012-08-30 01:30:19 +02005257 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005258 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005259
5260 vmcs_write16(sf->selector, 0);
5261 vmcs_writel(sf->base, 0);
5262 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02005263 ar = 0x93;
5264 if (seg == VCPU_SREG_CS)
5265 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07005266
5267 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005268}
5269
Sheng Yangf78e0e22007-10-29 09:40:42 +08005270static int alloc_apic_access_page(struct kvm *kvm)
5271{
Xiao Guangrong44841412012-09-07 14:14:20 +08005272 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005273 int r = 0;
5274
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005275 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08005276 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08005277 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005278 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
5279 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005280 if (r)
5281 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005282
Tang Chen73a6d942014-09-11 13:38:00 +08005283 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08005284 if (is_error_page(page)) {
5285 r = -EFAULT;
5286 goto out;
5287 }
5288
Tang Chenc24ae0d2014-09-24 15:57:58 +08005289 /*
5290 * Do not pin the page in memory, so that memory hot-unplug
5291 * is able to migrate it.
5292 */
5293 put_page(page);
5294 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08005295out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005296 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08005297 return r;
5298}
5299
Wanpeng Li991e7a02015-09-16 17:30:05 +08005300static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005301{
5302 int vpid;
5303
Avi Kivity919818a2009-03-23 18:01:29 +02005304 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08005305 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005306 spin_lock(&vmx_vpid_lock);
5307 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005308 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08005309 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005310 else
5311 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005312 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005313 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08005314}
5315
Wanpeng Li991e7a02015-09-16 17:30:05 +08005316static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005317{
Wanpeng Li991e7a02015-09-16 17:30:05 +08005318 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005319 return;
5320 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08005321 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005322 spin_unlock(&vmx_vpid_lock);
5323}
5324
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005325static void __always_inline vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
5326 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08005327{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005328 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08005329
5330 if (!cpu_has_vmx_msr_bitmap())
5331 return;
5332
5333 /*
5334 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5335 * have the write-low and read-high bitmap offsets the wrong way round.
5336 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5337 */
Sheng Yang25c5f222008-03-28 13:18:56 +08005338 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08005339 if (type & MSR_TYPE_R)
5340 /* read-low */
5341 __clear_bit(msr, msr_bitmap + 0x000 / f);
5342
5343 if (type & MSR_TYPE_W)
5344 /* write-low */
5345 __clear_bit(msr, msr_bitmap + 0x800 / f);
5346
Sheng Yang25c5f222008-03-28 13:18:56 +08005347 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5348 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08005349 if (type & MSR_TYPE_R)
5350 /* read-high */
5351 __clear_bit(msr, msr_bitmap + 0x400 / f);
5352
5353 if (type & MSR_TYPE_W)
5354 /* write-high */
5355 __clear_bit(msr, msr_bitmap + 0xc00 / f);
5356
5357 }
5358}
5359
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005360static void __always_inline vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
5361 u32 msr, int type)
5362{
5363 int f = sizeof(unsigned long);
5364
5365 if (!cpu_has_vmx_msr_bitmap())
5366 return;
5367
5368 /*
5369 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5370 * have the write-low and read-high bitmap offsets the wrong way round.
5371 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5372 */
5373 if (msr <= 0x1fff) {
5374 if (type & MSR_TYPE_R)
5375 /* read-low */
5376 __set_bit(msr, msr_bitmap + 0x000 / f);
5377
5378 if (type & MSR_TYPE_W)
5379 /* write-low */
5380 __set_bit(msr, msr_bitmap + 0x800 / f);
5381
5382 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5383 msr &= 0x1fff;
5384 if (type & MSR_TYPE_R)
5385 /* read-high */
5386 __set_bit(msr, msr_bitmap + 0x400 / f);
5387
5388 if (type & MSR_TYPE_W)
5389 /* write-high */
5390 __set_bit(msr, msr_bitmap + 0xc00 / f);
5391
5392 }
5393}
5394
5395static void __always_inline vmx_set_intercept_for_msr(unsigned long *msr_bitmap,
5396 u32 msr, int type, bool value)
5397{
5398 if (value)
5399 vmx_enable_intercept_for_msr(msr_bitmap, msr, type);
5400 else
5401 vmx_disable_intercept_for_msr(msr_bitmap, msr, type);
5402}
5403
Wincy Vanf2b93282015-02-03 23:56:03 +08005404/*
5405 * If a msr is allowed by L0, we should check whether it is allowed by L1.
5406 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
5407 */
5408static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
5409 unsigned long *msr_bitmap_nested,
5410 u32 msr, int type)
5411{
5412 int f = sizeof(unsigned long);
5413
Wincy Vanf2b93282015-02-03 23:56:03 +08005414 /*
5415 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
5416 * have the write-low and read-high bitmap offsets the wrong way round.
5417 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
5418 */
5419 if (msr <= 0x1fff) {
5420 if (type & MSR_TYPE_R &&
5421 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
5422 /* read-low */
5423 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
5424
5425 if (type & MSR_TYPE_W &&
5426 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
5427 /* write-low */
5428 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
5429
5430 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
5431 msr &= 0x1fff;
5432 if (type & MSR_TYPE_R &&
5433 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
5434 /* read-high */
5435 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
5436
5437 if (type & MSR_TYPE_W &&
5438 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
5439 /* write-high */
5440 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
5441
5442 }
5443}
5444
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005445static u8 vmx_msr_bitmap_mode(struct kvm_vcpu *vcpu)
Avi Kivity58972972009-02-24 22:26:47 +02005446{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005447 u8 mode = 0;
5448
5449 if (cpu_has_secondary_exec_ctrls() &&
5450 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
5451 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
5452 mode |= MSR_BITMAP_MODE_X2APIC;
5453 if (enable_apicv && kvm_vcpu_apicv_active(vcpu))
5454 mode |= MSR_BITMAP_MODE_X2APIC_APICV;
5455 }
5456
5457 if (is_long_mode(vcpu))
5458 mode |= MSR_BITMAP_MODE_LM;
5459
5460 return mode;
Yang Zhang8d146952013-01-25 10:18:50 +08005461}
5462
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005463#define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4))
5464
5465static void vmx_update_msr_bitmap_x2apic(unsigned long *msr_bitmap,
5466 u8 mode)
Yang Zhang8d146952013-01-25 10:18:50 +08005467{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005468 int msr;
5469
5470 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
5471 unsigned word = msr / BITS_PER_LONG;
5472 msr_bitmap[word] = (mode & MSR_BITMAP_MODE_X2APIC_APICV) ? 0 : ~0;
5473 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005474 }
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005475
5476 if (mode & MSR_BITMAP_MODE_X2APIC) {
5477 /*
5478 * TPR reads and writes can be virtualized even if virtual interrupt
5479 * delivery is not in use.
5480 */
5481 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TASKPRI), MSR_TYPE_RW);
5482 if (mode & MSR_BITMAP_MODE_X2APIC_APICV) {
5483 vmx_enable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_TMCCT), MSR_TYPE_R);
5484 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_EOI), MSR_TYPE_W);
5485 vmx_disable_intercept_for_msr(msr_bitmap, X2APIC_MSR(APIC_SELF_IPI), MSR_TYPE_W);
5486 }
5487 }
5488}
5489
5490static void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu)
5491{
5492 struct vcpu_vmx *vmx = to_vmx(vcpu);
5493 unsigned long *msr_bitmap = vmx->vmcs01.msr_bitmap;
5494 u8 mode = vmx_msr_bitmap_mode(vcpu);
5495 u8 changed = mode ^ vmx->msr_bitmap_mode;
5496
5497 if (!changed)
5498 return;
5499
5500 vmx_set_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW,
5501 !(mode & MSR_BITMAP_MODE_LM));
5502
5503 if (changed & (MSR_BITMAP_MODE_X2APIC | MSR_BITMAP_MODE_X2APIC_APICV))
5504 vmx_update_msr_bitmap_x2apic(msr_bitmap, mode);
5505
5506 vmx->msr_bitmap_mode = mode;
Avi Kivity58972972009-02-24 22:26:47 +02005507}
5508
Suravee Suthikulpanitb2a05fe2017-09-12 10:42:41 -05005509static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005510{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005511 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005512}
5513
David Matlackc9f04402017-08-01 14:00:40 -07005514static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5515{
5516 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5517 gfn_t gfn;
5518
5519 /*
5520 * Don't need to mark the APIC access page dirty; it is never
5521 * written to by the CPU during APIC virtualization.
5522 */
5523
5524 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5525 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5526 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5527 }
5528
5529 if (nested_cpu_has_posted_intr(vmcs12)) {
5530 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5531 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5532 }
5533}
5534
5535
David Hildenbrand6342c502017-01-25 11:58:58 +01005536static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005537{
5538 struct vcpu_vmx *vmx = to_vmx(vcpu);
5539 int max_irr;
5540 void *vapic_page;
5541 u16 status;
5542
David Matlackc9f04402017-08-01 14:00:40 -07005543 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5544 return;
Wincy Van705699a2015-02-03 23:58:17 +08005545
David Matlackc9f04402017-08-01 14:00:40 -07005546 vmx->nested.pi_pending = false;
5547 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5548 return;
Wincy Van705699a2015-02-03 23:58:17 +08005549
David Matlackc9f04402017-08-01 14:00:40 -07005550 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5551 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005552 vapic_page = kmap(vmx->nested.virtual_apic_page);
Liran Alone7387b02017-12-24 18:12:54 +02005553 __kvm_apic_update_irr(vmx->nested.pi_desc->pir,
5554 vapic_page, &max_irr);
Wincy Van705699a2015-02-03 23:58:17 +08005555 kunmap(vmx->nested.virtual_apic_page);
5556
5557 status = vmcs_read16(GUEST_INTR_STATUS);
5558 if ((u8)max_irr > ((u8)status & 0xff)) {
5559 status &= ~0xff;
5560 status |= (u8)max_irr;
5561 vmcs_write16(GUEST_INTR_STATUS, status);
5562 }
5563 }
David Matlackc9f04402017-08-01 14:00:40 -07005564
5565 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005566}
5567
Wincy Van06a55242017-04-28 13:13:59 +08005568static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5569 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005570{
5571#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005572 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5573
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005574 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005575 /*
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005576 * The vector of interrupt to be delivered to vcpu had
5577 * been set in PIR before this function.
Feng Wu28b835d2015-09-18 22:29:54 +08005578 *
Haozhong Zhang5753743f2017-09-18 09:56:50 +08005579 * Following cases will be reached in this block, and
5580 * we always send a notification event in all cases as
5581 * explained below.
5582 *
5583 * Case 1: vcpu keeps in non-root mode. Sending a
5584 * notification event posts the interrupt to vcpu.
5585 *
5586 * Case 2: vcpu exits to root mode and is still
5587 * runnable. PIR will be synced to vIRR before the
5588 * next vcpu entry. Sending a notification event in
5589 * this case has no effect, as vcpu is not in root
5590 * mode.
5591 *
5592 * Case 3: vcpu exits to root mode and is blocked.
5593 * vcpu_block() has already synced PIR to vIRR and
5594 * never blocks vcpu if vIRR is not cleared. Therefore,
5595 * a blocked vcpu here does not wait for any requested
5596 * interrupts in PIR, and sending a notification event
5597 * which has no effect is safe here.
Feng Wu28b835d2015-09-18 22:29:54 +08005598 */
Feng Wu28b835d2015-09-18 22:29:54 +08005599
Wincy Van06a55242017-04-28 13:13:59 +08005600 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005601 return true;
5602 }
5603#endif
5604 return false;
5605}
5606
Wincy Van705699a2015-02-03 23:58:17 +08005607static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5608 int vector)
5609{
5610 struct vcpu_vmx *vmx = to_vmx(vcpu);
5611
5612 if (is_guest_mode(vcpu) &&
5613 vector == vmx->nested.posted_intr_nv) {
Wincy Van705699a2015-02-03 23:58:17 +08005614 /*
5615 * If a posted intr is not recognized by hardware,
5616 * we will accomplish it in the next vmentry.
5617 */
5618 vmx->nested.pi_pending = true;
5619 kvm_make_request(KVM_REQ_EVENT, vcpu);
Liran Alon6b697712017-11-09 20:27:20 +02005620 /* the PIR and ON have been set by L1. */
5621 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, true))
5622 kvm_vcpu_kick(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005623 return 0;
5624 }
5625 return -1;
5626}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005627/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005628 * Send interrupt to vcpu via posted interrupt way.
5629 * 1. If target vcpu is running(non-root mode), send posted interrupt
5630 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5631 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5632 * interrupt from PIR in next vmentry.
5633 */
5634static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5635{
5636 struct vcpu_vmx *vmx = to_vmx(vcpu);
5637 int r;
5638
Wincy Van705699a2015-02-03 23:58:17 +08005639 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5640 if (!r)
5641 return;
5642
Yang Zhanga20ed542013-04-11 19:25:15 +08005643 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5644 return;
5645
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005646 /* If a previous notification has sent the IPI, nothing to do. */
5647 if (pi_test_and_set_on(&vmx->pi_desc))
5648 return;
5649
Wincy Van06a55242017-04-28 13:13:59 +08005650 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005651 kvm_vcpu_kick(vcpu);
5652}
5653
Avi Kivity6aa8b732006-12-10 02:21:36 -08005654/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005655 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5656 * will not change in the lifetime of the guest.
5657 * Note that host-state that does change is set elsewhere. E.g., host-state
5658 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5659 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005660static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005661{
5662 u32 low32, high32;
5663 unsigned long tmpl;
5664 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005665 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005666
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005667 cr0 = read_cr0();
5668 WARN_ON(cr0 & X86_CR0_TS);
5669 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005670
5671 /*
5672 * Save the most likely value for this task's CR3 in the VMCS.
5673 * We can't use __get_current_cr3_fast() because we're not atomic.
5674 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005675 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005676 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
Ladi Prosek44889942017-09-22 07:53:15 +02005677 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005678
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005679 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005680 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005681 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
Ladi Prosek44889942017-09-22 07:53:15 +02005682 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005683
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005684 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005685#ifdef CONFIG_X86_64
5686 /*
5687 * Load null selectors, so we can avoid reloading them in
5688 * __vmx_load_host_state(), in case userspace uses the null selectors
5689 * too (the expected case).
5690 */
5691 vmcs_write16(HOST_DS_SELECTOR, 0);
5692 vmcs_write16(HOST_ES_SELECTOR, 0);
5693#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005694 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5695 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005696#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005697 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5698 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5699
Juergen Gross87930012017-09-04 12:25:27 +02005700 store_idt(&dt);
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005701 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005702 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005703
Avi Kivity83287ea422012-09-16 15:10:57 +03005704 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005705
5706 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5707 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5708 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5709 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5710
5711 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5712 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5713 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5714 }
5715}
5716
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005717static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5718{
5719 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5720 if (enable_ept)
5721 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005722 if (is_guest_mode(&vmx->vcpu))
5723 vmx->vcpu.arch.cr4_guest_owned_bits &=
5724 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005725 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5726}
5727
Yang Zhang01e439b2013-04-11 19:25:12 +08005728static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5729{
5730 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5731
Andrey Smetanind62caab2015-11-10 15:36:33 +03005732 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005733 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01005734
5735 if (!enable_vnmi)
5736 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS;
5737
Yunhong Jiang64672c92016-06-13 14:19:59 -07005738 /* Enable the preemption timer dynamically */
5739 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005740 return pin_based_exec_ctrl;
5741}
5742
Andrey Smetanind62caab2015-11-10 15:36:33 +03005743static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5744{
5745 struct vcpu_vmx *vmx = to_vmx(vcpu);
5746
5747 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005748 if (cpu_has_secondary_exec_ctrls()) {
5749 if (kvm_vcpu_apicv_active(vcpu))
5750 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5751 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5752 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5753 else
5754 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5755 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5756 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5757 }
5758
5759 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005760 vmx_update_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005761}
5762
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005763static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5764{
5765 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005766
5767 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5768 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5769
Paolo Bonzini35754c92015-07-29 12:05:37 +02005770 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005771 exec_control &= ~CPU_BASED_TPR_SHADOW;
5772#ifdef CONFIG_X86_64
5773 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5774 CPU_BASED_CR8_LOAD_EXITING;
5775#endif
5776 }
5777 if (!enable_ept)
5778 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5779 CPU_BASED_CR3_LOAD_EXITING |
5780 CPU_BASED_INVLPG_EXITING;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005781 if (kvm_mwait_in_guest(vmx->vcpu.kvm))
5782 exec_control &= ~(CPU_BASED_MWAIT_EXITING |
5783 CPU_BASED_MONITOR_EXITING);
Wanpeng Licaa057a2018-03-12 04:53:03 -07005784 if (kvm_hlt_in_guest(vmx->vcpu.kvm))
5785 exec_control &= ~CPU_BASED_HLT_EXITING;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005786 return exec_control;
5787}
5788
Jim Mattson45ec3682017-08-23 16:32:04 -07005789static bool vmx_rdrand_supported(void)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005790{
Jim Mattson45ec3682017-08-23 16:32:04 -07005791 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005792 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005793}
5794
Jim Mattson75f4fc82017-08-23 16:32:03 -07005795static bool vmx_rdseed_supported(void)
5796{
5797 return vmcs_config.cpu_based_2nd_exec_ctrl &
David Hildenbrand736fdf72017-08-24 20:51:37 +02005798 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005799}
5800
Paolo Bonzini80154d72017-08-24 13:55:35 +02005801static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005802{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005803 struct kvm_vcpu *vcpu = &vmx->vcpu;
5804
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005805 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini0367f202016-07-12 10:44:55 +02005806
Paolo Bonzini80154d72017-08-24 13:55:35 +02005807 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005808 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5809 if (vmx->vpid == 0)
5810 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5811 if (!enable_ept) {
5812 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5813 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005814 /* Enable INVPCID for non-ept guests may cause performance regression. */
5815 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005816 }
5817 if (!enable_unrestricted_guest)
5818 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005819 if (kvm_pause_in_guest(vmx->vcpu.kvm))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005820 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005821 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005822 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5823 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005824 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Paolo Bonzini0367f202016-07-12 10:44:55 +02005825
5826 /* SECONDARY_EXEC_DESC is enabled/disabled on writes to CR4.UMIP,
5827 * in vmx_set_cr4. */
5828 exec_control &= ~SECONDARY_EXEC_DESC;
5829
Abel Gordonabc4fc52013-04-18 14:35:25 +03005830 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5831 (handle_vmptrld).
5832 We can NOT enable shadow_vmcs here because we don't have yet
5833 a current VMCS12
5834 */
5835 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005836
5837 if (!enable_pml)
5838 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005839
Paolo Bonzini3db13482017-08-24 14:48:03 +02005840 if (vmx_xsaves_supported()) {
5841 /* Exposing XSAVES only when XSAVE is exposed */
5842 bool xsaves_enabled =
5843 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
5844 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
5845
5846 if (!xsaves_enabled)
5847 exec_control &= ~SECONDARY_EXEC_XSAVES;
5848
5849 if (nested) {
5850 if (xsaves_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005851 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini3db13482017-08-24 14:48:03 +02005852 SECONDARY_EXEC_XSAVES;
5853 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005854 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini3db13482017-08-24 14:48:03 +02005855 ~SECONDARY_EXEC_XSAVES;
5856 }
5857 }
5858
Paolo Bonzini80154d72017-08-24 13:55:35 +02005859 if (vmx_rdtscp_supported()) {
5860 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5861 if (!rdtscp_enabled)
5862 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5863
5864 if (nested) {
5865 if (rdtscp_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005866 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02005867 SECONDARY_EXEC_RDTSCP;
5868 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005869 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02005870 ~SECONDARY_EXEC_RDTSCP;
5871 }
5872 }
5873
5874 if (vmx_invpcid_supported()) {
5875 /* Exposing INVPCID only when PCID is exposed */
5876 bool invpcid_enabled =
5877 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5878 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5879
5880 if (!invpcid_enabled) {
5881 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5882 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5883 }
5884
5885 if (nested) {
5886 if (invpcid_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005887 vmx->nested.msrs.secondary_ctls_high |=
Paolo Bonzini80154d72017-08-24 13:55:35 +02005888 SECONDARY_EXEC_ENABLE_INVPCID;
5889 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005890 vmx->nested.msrs.secondary_ctls_high &=
Paolo Bonzini80154d72017-08-24 13:55:35 +02005891 ~SECONDARY_EXEC_ENABLE_INVPCID;
5892 }
5893 }
5894
Jim Mattson45ec3682017-08-23 16:32:04 -07005895 if (vmx_rdrand_supported()) {
5896 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
5897 if (rdrand_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005898 exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005899
5900 if (nested) {
5901 if (rdrand_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005902 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005903 SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005904 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005905 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005906 ~SECONDARY_EXEC_RDRAND_EXITING;
Jim Mattson45ec3682017-08-23 16:32:04 -07005907 }
5908 }
5909
Jim Mattson75f4fc82017-08-23 16:32:03 -07005910 if (vmx_rdseed_supported()) {
5911 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
5912 if (rdseed_enabled)
David Hildenbrand736fdf72017-08-24 20:51:37 +02005913 exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005914
5915 if (nested) {
5916 if (rdseed_enabled)
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005917 vmx->nested.msrs.secondary_ctls_high |=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005918 SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005919 else
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01005920 vmx->nested.msrs.secondary_ctls_high &=
David Hildenbrand736fdf72017-08-24 20:51:37 +02005921 ~SECONDARY_EXEC_RDSEED_EXITING;
Jim Mattson75f4fc82017-08-23 16:32:03 -07005922 }
5923 }
5924
Paolo Bonzini80154d72017-08-24 13:55:35 +02005925 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005926}
5927
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005928static void ept_set_mmio_spte_mask(void)
5929{
5930 /*
5931 * EPT Misconfigurations can be generated if the value of bits 2:0
5932 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005933 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005934 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5935 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005936}
5937
Wanpeng Lif53cd632014-12-02 19:14:58 +08005938#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005939/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005940 * Sets up the vmcs for emulated real mode.
5941 */
David Hildenbrand12d79912017-08-24 20:51:26 +02005942static void vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005943{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005944#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005945 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005946#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005947 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005948
Abel Gordon4607c2d2013-04-18 14:35:55 +03005949 if (enable_shadow_vmcs) {
5950 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5951 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5952 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005953 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +01005954 vmcs_write64(MSR_BITMAP, __pa(vmx->vmcs01.msr_bitmap));
Sheng Yang25c5f222008-03-28 13:18:56 +08005955
Avi Kivity6aa8b732006-12-10 02:21:36 -08005956 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5957
Avi Kivity6aa8b732006-12-10 02:21:36 -08005958 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005959 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005960 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005961
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005962 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005963
Dan Williamsdfa169b2016-06-02 11:17:24 -07005964 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005965 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005966 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005967 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005968 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005969
Andrey Smetanind62caab2015-11-10 15:36:33 +03005970 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005971 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5972 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5973 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5974 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5975
5976 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005977
Li RongQing0bcf2612015-12-03 13:29:34 +08005978 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005979 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005980 }
5981
Wanpeng Lib31c1142018-03-12 04:53:04 -07005982 if (!kvm_pause_in_guest(vmx->vcpu.kvm)) {
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005983 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005984 vmx->ple_window = ple_window;
5985 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005986 }
5987
Xiao Guangrongc3707952011-07-12 03:28:04 +08005988 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5989 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005990 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5991
Avi Kivity9581d442010-10-19 16:46:55 +02005992 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5993 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005994 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005995#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005996 rdmsrl(MSR_FS_BASE, a);
5997 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5998 rdmsrl(MSR_GS_BASE, a);
5999 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
6000#else
6001 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
6002 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
6003#endif
6004
Bandan Das2a499e42017-08-03 15:54:41 -04006005 if (cpu_has_vmx_vmfunc())
6006 vmcs_write64(VM_FUNCTION_CONTROL, 0);
6007
Eddie Dong2cc51562007-05-21 07:28:09 +03006008 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
6009 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03006010 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03006011 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03006012 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08006013
Radim Krčmář74545702015-04-27 15:11:25 +02006014 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6015 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08006016
Paolo Bonzini03916db2014-07-24 14:21:57 +02006017 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006018 u32 index = vmx_msr_index[i];
6019 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006020 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006021
6022 if (rdmsr_safe(index, &data_low, &data_high) < 0)
6023 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08006024 if (wrmsr_safe(index, data_low, data_high) < 0)
6025 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03006026 vmx->guest_msrs[j].index = i;
6027 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02006028 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006029 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006030 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006031
KarimAllah Ahmed28c1c9f2018-02-01 22:59:44 +01006032 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
6033 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, vmx->arch_capabilities);
Gleb Natapov2961e8762013-11-25 15:37:13 +02006034
6035 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006036
6037 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02006038 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03006039
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006040 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
6041 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
6042
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03006043 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006044
Wanpeng Lif53cd632014-12-02 19:14:58 +08006045 if (vmx_xsaves_supported())
6046 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
6047
Peter Feiner4e595162016-07-07 14:49:58 -07006048 if (enable_pml) {
6049 ASSERT(vmx->pml_pg);
6050 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
6051 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
6052 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006053}
6054
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006055static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006056{
6057 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01006058 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006059 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006060
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006061 vmx->rmode.vm86_active = 0;
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01006062 vmx->spec_ctrl = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006063
Wanpeng Li518e7b92018-02-28 14:03:31 +08006064 vcpu->arch.microcode_version = 0x100000000ULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006065 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006066 kvm_set_cr8(vcpu, 0);
6067
6068 if (!init_event) {
6069 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
6070 MSR_IA32_APICBASE_ENABLE;
6071 if (kvm_vcpu_is_reset_bsp(vcpu))
6072 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
6073 apic_base_msr.host_initiated = true;
6074 kvm_set_apic_base(vcpu, &apic_base_msr);
6075 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006076
Avi Kivity2fb92db2011-04-27 19:42:18 +03006077 vmx_segment_cache_clear(vmx);
6078
Avi Kivity5706be02008-08-20 15:07:31 +03006079 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01006080 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006081 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006082
6083 seg_setup(VCPU_SREG_DS);
6084 seg_setup(VCPU_SREG_ES);
6085 seg_setup(VCPU_SREG_FS);
6086 seg_setup(VCPU_SREG_GS);
6087 seg_setup(VCPU_SREG_SS);
6088
6089 vmcs_write16(GUEST_TR_SELECTOR, 0);
6090 vmcs_writel(GUEST_TR_BASE, 0);
6091 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
6092 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
6093
6094 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
6095 vmcs_writel(GUEST_LDTR_BASE, 0);
6096 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
6097 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
6098
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006099 if (!init_event) {
6100 vmcs_write32(GUEST_SYSENTER_CS, 0);
6101 vmcs_writel(GUEST_SYSENTER_ESP, 0);
6102 vmcs_writel(GUEST_SYSENTER_EIP, 0);
6103 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
6104 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006105
Wanpeng Lic37c2872017-11-20 14:52:21 -08006106 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
Jan Kiszka66450a22013-03-13 12:42:34 +01006107 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006108
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006109 vmcs_writel(GUEST_GDTR_BASE, 0);
6110 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
6111
6112 vmcs_writel(GUEST_IDTR_BASE, 0);
6113 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
6114
Anthony Liguori443381a2010-12-06 10:53:38 -06006115 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006116 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01006117 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Wanpeng Lia554d202017-10-11 05:10:19 -07006118 if (kvm_mpx_supported())
6119 vmcs_write64(GUEST_BNDCFGS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006120
Avi Kivitye00c8cf2007-10-21 11:00:39 +02006121 setup_msrs(vmx);
6122
Avi Kivity6aa8b732006-12-10 02:21:36 -08006123 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
6124
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006125 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08006126 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006127 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08006128 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006129 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08006130 vmcs_write32(TPR_THRESHOLD, 0);
6131 }
6132
Paolo Bonzinia73896c2014-11-02 07:54:30 +01006133 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006134
Sheng Yang2384d2b2008-01-17 15:14:33 +08006135 if (vmx->vpid != 0)
6136 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6137
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006138 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006139 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06006140 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006141 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02006142 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006143
Nadav Amitd28bc9d2015-04-13 14:34:08 +03006144 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006145
Wanpeng Lidd5f5342015-09-23 18:26:57 +08006146 vpid_sync_context(vmx->vpid);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006147 if (init_event)
6148 vmx_clear_hlt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006149}
6150
Nadav Har'Elb6f12502011-05-25 23:13:06 +03006151/*
6152 * In nested virtualization, check if L1 asked to exit on external interrupts.
6153 * For most existing hypervisors, this will always return true.
6154 */
6155static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
6156{
6157 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
6158 PIN_BASED_EXT_INTR_MASK;
6159}
6160
Bandan Das77b0f5d2014-04-19 18:17:45 -04006161/*
6162 * In nested virtualization, check if L1 has set
6163 * VM_EXIT_ACK_INTR_ON_EXIT
6164 */
6165static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
6166{
6167 return get_vmcs12(vcpu)->vm_exit_controls &
6168 VM_EXIT_ACK_INTR_ON_EXIT;
6169}
6170
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006171static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
6172{
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -05006173 return nested_cpu_has_nmi_exiting(get_vmcs12(vcpu));
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006174}
6175
Jan Kiszkac9a79532014-03-07 20:03:15 +01006176static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006177{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006178 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6179 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006180}
6181
Jan Kiszkac9a79532014-03-07 20:03:15 +01006182static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006183{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006184 if (!enable_vnmi ||
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006185 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01006186 enable_irq_window(vcpu);
6187 return;
6188 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02006189
Paolo Bonzini47c01522016-12-19 11:44:07 +01006190 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
6191 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006192}
6193
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006194static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03006195{
Avi Kivity9c8cba32007-11-22 11:42:59 +02006196 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006197 uint32_t intr;
6198 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02006199
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006200 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006201
Avi Kivityfa89a812008-09-01 15:57:51 +03006202 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006203 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006204 int inc_eip = 0;
6205 if (vcpu->arch.interrupt.soft)
6206 inc_eip = vcpu->arch.event_exit_inst_len;
6207 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006208 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006209 return;
6210 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006211 intr = irq | INTR_INFO_VALID_MASK;
6212 if (vcpu->arch.interrupt.soft) {
6213 intr |= INTR_TYPE_SOFT_INTR;
6214 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6215 vmx->vcpu.arch.event_exit_inst_len);
6216 } else
6217 intr |= INTR_TYPE_EXT_INTR;
6218 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006219
6220 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03006221}
6222
Sheng Yangf08864b2008-05-15 18:23:25 +08006223static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
6224{
Jan Kiszka66a5a342008-09-26 09:30:51 +02006225 struct vcpu_vmx *vmx = to_vmx(vcpu);
6226
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006227 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006228 /*
6229 * Tracking the NMI-blocked state in software is built upon
6230 * finding the next open IRQ window. This, in turn, depends on
6231 * well-behaving guests: They have to keep IRQs disabled at
6232 * least as long as the NMI handler runs. Otherwise we may
6233 * cause NMI nesting, maybe breaking the guest. But as this is
6234 * highly unlikely, we can live with the residual risk.
6235 */
6236 vmx->loaded_vmcs->soft_vnmi_blocked = 1;
6237 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6238 }
6239
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006240 ++vcpu->stat.nmi_injections;
6241 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02006242
Avi Kivity7ffd92c2009-06-09 14:10:45 +03006243 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05006244 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02006245 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02006246 return;
6247 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08006248
Sheng Yangf08864b2008-05-15 18:23:25 +08006249 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6250 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Wanpeng Licaa057a2018-03-12 04:53:03 -07006251
6252 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006253}
6254
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006255static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
6256{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006257 struct vcpu_vmx *vmx = to_vmx(vcpu);
6258 bool masked;
6259
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006260 if (!enable_vnmi)
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006261 return vmx->loaded_vmcs->soft_vnmi_blocked;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006262 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02006263 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02006264 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
6265 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6266 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006267}
6268
6269static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
6270{
6271 struct vcpu_vmx *vmx = to_vmx(vcpu);
6272
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006273 if (!enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006274 if (vmx->loaded_vmcs->soft_vnmi_blocked != masked) {
6275 vmx->loaded_vmcs->soft_vnmi_blocked = masked;
6276 vmx->loaded_vmcs->vnmi_blocked_time = 0;
6277 }
6278 } else {
6279 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
6280 if (masked)
6281 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
6282 GUEST_INTR_STATE_NMI);
6283 else
6284 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
6285 GUEST_INTR_STATE_NMI);
6286 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006287}
6288
Jan Kiszka2505dc92013-04-14 12:12:47 +02006289static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
6290{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006291 if (to_vmx(vcpu)->nested.nested_run_pending)
6292 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02006293
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01006294 if (!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01006295 to_vmx(vcpu)->loaded_vmcs->soft_vnmi_blocked)
6296 return 0;
6297
Jan Kiszka2505dc92013-04-14 12:12:47 +02006298 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6299 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
6300 | GUEST_INTR_STATE_NMI));
6301}
6302
Gleb Natapov78646122009-03-23 12:12:11 +02006303static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
6304{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01006305 return (!to_vmx(vcpu)->nested.nested_run_pending &&
6306 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03006307 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
6308 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02006309}
6310
Izik Eiduscbc94022007-10-25 00:29:55 +02006311static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
6312{
6313 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02006314
Sean Christophersonf7eaeb02018-03-05 12:04:36 -08006315 if (enable_unrestricted_guest)
6316 return 0;
6317
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02006318 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
6319 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02006320 if (ret)
6321 return ret;
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006322 to_kvm_vmx(kvm)->tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02006323 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02006324}
6325
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006326static int vmx_set_identity_map_addr(struct kvm *kvm, u64 ident_addr)
6327{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07006328 to_kvm_vmx(kvm)->ept_identity_map_addr = ident_addr;
Sean Christopherson2ac52ab2018-03-20 12:17:19 -07006329 return 0;
6330}
6331
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006332static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006333{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006334 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006335 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01006336 /*
6337 * Update instruction length as we may reinject the exception
6338 * from user space while in guest debugging mode.
6339 */
6340 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
6341 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006342 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006343 return false;
6344 /* fall through */
6345 case DB_VECTOR:
6346 if (vcpu->guest_debug &
6347 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
6348 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006349 /* fall through */
6350 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006351 case OF_VECTOR:
6352 case BR_VECTOR:
6353 case UD_VECTOR:
6354 case DF_VECTOR:
6355 case SS_VECTOR:
6356 case GP_VECTOR:
6357 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006358 return true;
6359 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02006360 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006361 return false;
6362}
6363
6364static int handle_rmode_exception(struct kvm_vcpu *vcpu,
6365 int vec, u32 err_code)
6366{
6367 /*
6368 * Instruction with address size override prefix opcode 0x67
6369 * Cause the #SS fault with 0 error code in VM86 mode.
6370 */
6371 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
6372 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
6373 if (vcpu->arch.halt_request) {
6374 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006375 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006376 }
6377 return 1;
6378 }
6379 return 0;
6380 }
6381
6382 /*
6383 * Forward all other exceptions that are valid in real mode.
6384 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
6385 * the required debugging infrastructure rework.
6386 */
6387 kvm_queue_exception(vcpu, vec);
6388 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006389}
6390
Andi Kleena0861c02009-06-08 17:37:09 +08006391/*
6392 * Trigger machine check on the host. We assume all the MSRs are already set up
6393 * by the CPU and that we still run on the same CPU as the MCE occurred on.
6394 * We pass a fake environment to the machine check handler because we want
6395 * the guest to be always treated like user space, no matter what context
6396 * it used internally.
6397 */
6398static void kvm_machine_check(void)
6399{
6400#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
6401 struct pt_regs regs = {
6402 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
6403 .flags = X86_EFLAGS_IF,
6404 };
6405
6406 do_machine_check(&regs, 0);
6407#endif
6408}
6409
Avi Kivity851ba692009-08-24 11:10:17 +03006410static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08006411{
6412 /* already handled by vcpu_run */
6413 return 1;
6414}
6415
Avi Kivity851ba692009-08-24 11:10:17 +03006416static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006417{
Avi Kivity1155f762007-11-22 11:30:47 +02006418 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006419 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006420 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006421 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006422 u32 vect_info;
6423 enum emulation_result er;
6424
Avi Kivity1155f762007-11-22 11:30:47 +02006425 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02006426 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006427
Andi Kleena0861c02009-06-08 17:37:09 +08006428 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03006429 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08006430
Jim Mattsonef85b672016-12-12 11:01:37 -08006431 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02006432 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03006433
Wanpeng Li082d06e2018-04-03 16:28:48 -07006434 if (is_invalid_opcode(intr_info))
6435 return handle_ud(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05006436
Avi Kivity6aa8b732006-12-10 02:21:36 -08006437 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06006438 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006439 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006440
Liran Alon9e869482018-03-12 13:12:51 +02006441 if (!vmx->rmode.vm86_active && is_gp_fault(intr_info)) {
6442 WARN_ON_ONCE(!enable_vmware_backdoor);
6443 er = emulate_instruction(vcpu,
6444 EMULTYPE_VMWARE | EMULTYPE_NO_UD_ON_FAIL);
6445 if (er == EMULATE_USER_EXIT)
6446 return 0;
6447 else if (er != EMULATE_DONE)
6448 kvm_queue_exception_e(vcpu, GP_VECTOR, error_code);
6449 return 1;
6450 }
6451
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006452 /*
6453 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
6454 * MMIO, it is better to report an internal error.
6455 * See the comments in vmx_handle_exit.
6456 */
6457 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
6458 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
6459 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6460 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02006461 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006462 vcpu->run->internal.data[0] = vect_info;
6463 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02006464 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08006465 return 0;
6466 }
6467
Avi Kivity6aa8b732006-12-10 02:21:36 -08006468 if (is_page_fault(intr_info)) {
6469 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07006470 /* EPT won't cause page fault directly */
6471 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
Paolo Bonzinid0006532017-08-11 18:36:43 +02006472 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006473 }
6474
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006475 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02006476
6477 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
6478 return handle_rmode_exception(vcpu, ex_no, error_code);
6479
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006480 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01006481 case AC_VECTOR:
6482 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
6483 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006484 case DB_VECTOR:
6485 dr6 = vmcs_readl(EXIT_QUALIFICATION);
6486 if (!(vcpu->guest_debug &
6487 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01006488 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006489 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Linus Torvalds32d43cd2018-03-20 12:16:59 -07006490 if (is_icebp(intr_info))
Huw Daviesfd2a4452014-04-16 10:02:51 +01006491 skip_emulated_instruction(vcpu);
6492
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006493 kvm_queue_exception(vcpu, DB_VECTOR);
6494 return 1;
6495 }
6496 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
6497 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
6498 /* fall through */
6499 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01006500 /*
6501 * Update instruction length as we may reinject #BP from
6502 * user space while in guest debugging mode. Reading it for
6503 * #DB as well causes no harm, it is not used in that case.
6504 */
6505 vmx->vcpu.arch.event_exit_inst_len =
6506 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006507 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03006508 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006509 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
6510 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006511 break;
6512 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01006513 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
6514 kvm_run->ex.exception = ex_no;
6515 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006516 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006517 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006518 return 0;
6519}
6520
Avi Kivity851ba692009-08-24 11:10:17 +03006521static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006522{
Avi Kivity1165f5f2007-04-19 17:27:43 +03006523 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006524 return 1;
6525}
6526
Avi Kivity851ba692009-08-24 11:10:17 +03006527static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08006528{
Avi Kivity851ba692009-08-24 11:10:17 +03006529 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07006530 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08006531 return 0;
6532}
Avi Kivity6aa8b732006-12-10 02:21:36 -08006533
Avi Kivity851ba692009-08-24 11:10:17 +03006534static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006535{
He, Qingbfdaab02007-09-12 14:18:28 +08006536 unsigned long exit_qualification;
Sean Christophersondca7f122018-03-08 08:57:27 -08006537 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02006538 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006539
He, Qingbfdaab02007-09-12 14:18:28 +08006540 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02006541 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03006542
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006543 ++vcpu->stat.io_exits;
6544
Sean Christopherson432baf62018-03-08 08:57:26 -08006545 if (string)
Andre Przywara51d8b662010-12-21 11:12:02 +01006546 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006547
6548 port = exit_qualification >> 16;
6549 size = (exit_qualification & 7) + 1;
Sean Christopherson432baf62018-03-08 08:57:26 -08006550 in = (exit_qualification & 8) != 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006551
Sean Christophersondca7f122018-03-08 08:57:27 -08006552 return kvm_fast_pio(vcpu, size, port, in);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006553}
6554
Ingo Molnar102d8322007-02-19 14:37:47 +02006555static void
6556vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
6557{
6558 /*
6559 * Patch in the VMCALL instruction:
6560 */
6561 hypercall[0] = 0x0f;
6562 hypercall[1] = 0x01;
6563 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006564}
6565
Guo Chao0fa06072012-06-28 15:16:19 +08006566/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006567static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6568{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006569 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006570 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6571 unsigned long orig_val = val;
6572
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006573 /*
6574 * We get here when L2 changed cr0 in a way that did not change
6575 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006576 * but did change L0 shadowed bits. So we first calculate the
6577 * effective cr0 value that L1 would like to write into the
6578 * hardware. It consists of the L2-owned bits from the new
6579 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006580 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006581 val = (val & ~vmcs12->cr0_guest_host_mask) |
6582 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6583
David Matlack38991522016-11-29 18:14:08 -08006584 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006585 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006586
6587 if (kvm_set_cr0(vcpu, val))
6588 return 1;
6589 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006590 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006591 } else {
6592 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006593 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006594 return 1;
David Matlack38991522016-11-29 18:14:08 -08006595
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006596 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006597 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006598}
6599
6600static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6601{
6602 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006603 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6604 unsigned long orig_val = val;
6605
6606 /* analogously to handle_set_cr0 */
6607 val = (val & ~vmcs12->cr4_guest_host_mask) |
6608 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6609 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006610 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006611 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006612 return 0;
6613 } else
6614 return kvm_set_cr4(vcpu, val);
6615}
6616
Paolo Bonzini0367f202016-07-12 10:44:55 +02006617static int handle_desc(struct kvm_vcpu *vcpu)
6618{
6619 WARN_ON(!(vcpu->arch.cr4 & X86_CR4_UMIP));
6620 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
6621}
6622
Avi Kivity851ba692009-08-24 11:10:17 +03006623static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006624{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006625 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006626 int cr;
6627 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006628 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006629 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006630
He, Qingbfdaab02007-09-12 14:18:28 +08006631 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006632 cr = exit_qualification & 15;
6633 reg = (exit_qualification >> 8) & 15;
6634 switch ((exit_qualification >> 4) & 3) {
6635 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006636 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006637 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006638 switch (cr) {
6639 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006640 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006641 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006642 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08006643 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity23902182010-06-10 17:02:16 +03006644 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006645 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006646 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006647 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006648 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006649 case 8: {
6650 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006651 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006652 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006653 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006654 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006655 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006656 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006657 return ret;
6658 /*
6659 * TODO: we might be squashing a
6660 * KVM_GUESTDBG_SINGLESTEP-triggered
6661 * KVM_EXIT_DEBUG here.
6662 */
Avi Kivity851ba692009-08-24 11:10:17 +03006663 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006664 return 0;
6665 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006666 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006667 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006668 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006669 WARN_ONCE(1, "Guest should always own CR0.TS");
6670 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006671 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006672 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006673 case 1: /*mov from cr*/
6674 switch (cr) {
6675 case 3:
Sean Christophersone1de91c2018-03-05 12:04:41 -08006676 WARN_ON_ONCE(enable_unrestricted_guest);
Avi Kivity9f8fe502010-12-05 17:30:00 +02006677 val = kvm_read_cr3(vcpu);
6678 kvm_register_write(vcpu, reg, val);
6679 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006680 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006681 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006682 val = kvm_get_cr8(vcpu);
6683 kvm_register_write(vcpu, reg, val);
6684 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006685 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006686 }
6687 break;
6688 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006689 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006690 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006691 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006692
Kyle Huey6affcbe2016-11-29 12:40:40 -08006693 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006694 default:
6695 break;
6696 }
Avi Kivity851ba692009-08-24 11:10:17 +03006697 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006698 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006699 (int)(exit_qualification >> 4) & 3, cr);
6700 return 0;
6701}
6702
Avi Kivity851ba692009-08-24 11:10:17 +03006703static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006704{
He, Qingbfdaab02007-09-12 14:18:28 +08006705 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006706 int dr, dr7, reg;
6707
6708 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6709 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6710
6711 /* First, if DR does not exist, trigger UD */
6712 if (!kvm_require_dr(vcpu, dr))
6713 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006714
Jan Kiszkaf2483412010-01-20 18:20:20 +01006715 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006716 if (!kvm_require_cpl(vcpu, 0))
6717 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006718 dr7 = vmcs_readl(GUEST_DR7);
6719 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006720 /*
6721 * As the vm-exit takes precedence over the debug trap, we
6722 * need to emulate the latter, either for the host or the
6723 * guest debugging itself.
6724 */
6725 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006726 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006727 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006728 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006729 vcpu->run->debug.arch.exception = DB_VECTOR;
6730 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006731 return 0;
6732 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006733 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006734 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006735 kvm_queue_exception(vcpu, DB_VECTOR);
6736 return 1;
6737 }
6738 }
6739
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006740 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006741 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6742 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006743
6744 /*
6745 * No more DR vmexits; force a reload of the debug registers
6746 * and reenter on this instruction. The next vmexit will
6747 * retrieve the full state of the debug registers.
6748 */
6749 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6750 return 1;
6751 }
6752
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006753 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6754 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006755 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006756
6757 if (kvm_get_dr(vcpu, dr, &val))
6758 return 1;
6759 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006760 } else
Nadav Amit57773922014-06-18 17:19:23 +03006761 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006762 return 1;
6763
Kyle Huey6affcbe2016-11-29 12:40:40 -08006764 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006765}
6766
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006767static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6768{
6769 return vcpu->arch.dr6;
6770}
6771
6772static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6773{
6774}
6775
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006776static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6777{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006778 get_debugreg(vcpu->arch.db[0], 0);
6779 get_debugreg(vcpu->arch.db[1], 1);
6780 get_debugreg(vcpu->arch.db[2], 2);
6781 get_debugreg(vcpu->arch.db[3], 3);
6782 get_debugreg(vcpu->arch.dr6, 6);
6783 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6784
6785 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006786 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006787}
6788
Gleb Natapov020df072010-04-13 10:05:23 +03006789static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6790{
6791 vmcs_writel(GUEST_DR7, val);
6792}
6793
Avi Kivity851ba692009-08-24 11:10:17 +03006794static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006795{
Kyle Huey6a908b62016-11-29 12:40:37 -08006796 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006797}
6798
Avi Kivity851ba692009-08-24 11:10:17 +03006799static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006800{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006801 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006802 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006803
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006804 msr_info.index = ecx;
6805 msr_info.host_initiated = false;
6806 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006807 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006808 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006809 return 1;
6810 }
6811
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006812 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006813
Avi Kivity6aa8b732006-12-10 02:21:36 -08006814 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006815 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6816 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006817 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006818}
6819
Avi Kivity851ba692009-08-24 11:10:17 +03006820static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006821{
Will Auld8fe8ab42012-11-29 12:42:12 -08006822 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006823 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6824 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6825 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006826
Will Auld8fe8ab42012-11-29 12:42:12 -08006827 msr.data = data;
6828 msr.index = ecx;
6829 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006830 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006831 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006832 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006833 return 1;
6834 }
6835
Avi Kivity59200272010-01-25 19:47:02 +02006836 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006837 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006838}
6839
Avi Kivity851ba692009-08-24 11:10:17 +03006840static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006841{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006842 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006843 return 1;
6844}
6845
Avi Kivity851ba692009-08-24 11:10:17 +03006846static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006847{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006848 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6849 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006850
Avi Kivity3842d132010-07-27 12:30:24 +03006851 kvm_make_request(KVM_REQ_EVENT, vcpu);
6852
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006853 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006854 return 1;
6855}
6856
Avi Kivity851ba692009-08-24 11:10:17 +03006857static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006858{
Avi Kivityd3bef152007-06-05 15:53:05 +03006859 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006860}
6861
Avi Kivity851ba692009-08-24 11:10:17 +03006862static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006863{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006864 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006865}
6866
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006867static int handle_invd(struct kvm_vcpu *vcpu)
6868{
Andre Przywara51d8b662010-12-21 11:12:02 +01006869 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006870}
6871
Avi Kivity851ba692009-08-24 11:10:17 +03006872static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006873{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006874 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006875
6876 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006877 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006878}
6879
Avi Kivityfee84b02011-11-10 14:57:25 +02006880static int handle_rdpmc(struct kvm_vcpu *vcpu)
6881{
6882 int err;
6883
6884 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006885 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006886}
6887
Avi Kivity851ba692009-08-24 11:10:17 +03006888static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006889{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006890 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006891}
6892
Dexuan Cui2acf9232010-06-10 11:27:12 +08006893static int handle_xsetbv(struct kvm_vcpu *vcpu)
6894{
6895 u64 new_bv = kvm_read_edx_eax(vcpu);
6896 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6897
6898 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006899 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006900 return 1;
6901}
6902
Wanpeng Lif53cd632014-12-02 19:14:58 +08006903static int handle_xsaves(struct kvm_vcpu *vcpu)
6904{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006905 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006906 WARN(1, "this should never happen\n");
6907 return 1;
6908}
6909
6910static int handle_xrstors(struct kvm_vcpu *vcpu)
6911{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006912 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006913 WARN(1, "this should never happen\n");
6914 return 1;
6915}
6916
Avi Kivity851ba692009-08-24 11:10:17 +03006917static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006918{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006919 if (likely(fasteoi)) {
6920 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6921 int access_type, offset;
6922
6923 access_type = exit_qualification & APIC_ACCESS_TYPE;
6924 offset = exit_qualification & APIC_ACCESS_OFFSET;
6925 /*
6926 * Sane guest uses MOV to write EOI, with written value
6927 * not cared. So make a short-circuit here by avoiding
6928 * heavy instruction emulation.
6929 */
6930 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6931 (offset == APIC_EOI)) {
6932 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006933 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006934 }
6935 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006936 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006937}
6938
Yang Zhangc7c9c562013-01-25 10:18:51 +08006939static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6940{
6941 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6942 int vector = exit_qualification & 0xff;
6943
6944 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6945 kvm_apic_set_eoi_accelerated(vcpu, vector);
6946 return 1;
6947}
6948
Yang Zhang83d4c282013-01-25 10:18:49 +08006949static int handle_apic_write(struct kvm_vcpu *vcpu)
6950{
6951 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6952 u32 offset = exit_qualification & 0xfff;
6953
6954 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6955 kvm_apic_write_nodecode(vcpu, offset);
6956 return 1;
6957}
6958
Avi Kivity851ba692009-08-24 11:10:17 +03006959static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006960{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006961 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006962 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006963 bool has_error_code = false;
6964 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006965 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006966 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006967
6968 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006969 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006970 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006971
6972 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6973
6974 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006975 if (reason == TASK_SWITCH_GATE && idt_v) {
6976 switch (type) {
6977 case INTR_TYPE_NMI_INTR:
6978 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006979 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006980 break;
6981 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006982 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006983 kvm_clear_interrupt_queue(vcpu);
6984 break;
6985 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006986 if (vmx->idt_vectoring_info &
6987 VECTORING_INFO_DELIVER_CODE_MASK) {
6988 has_error_code = true;
6989 error_code =
6990 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6991 }
6992 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006993 case INTR_TYPE_SOFT_EXCEPTION:
6994 kvm_clear_exception_queue(vcpu);
6995 break;
6996 default:
6997 break;
6998 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006999 }
Izik Eidus37817f22008-03-24 23:14:53 +02007000 tss_selector = exit_qualification;
7001
Gleb Natapov64a7ec02009-03-30 16:03:29 +03007002 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
7003 type != INTR_TYPE_EXT_INTR &&
7004 type != INTR_TYPE_NMI_INTR))
7005 skip_emulated_instruction(vcpu);
7006
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01007007 if (kvm_task_switch(vcpu, tss_selector,
7008 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
7009 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03007010 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7011 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7012 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007013 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03007014 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007015
Jan Kiszka42dbaa52008-12-15 13:52:10 +01007016 /*
7017 * TODO: What about debug traps on tss switch?
7018 * Are we supposed to inject them and update dr6?
7019 */
7020
7021 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02007022}
7023
Avi Kivity851ba692009-08-24 11:10:17 +03007024static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08007025{
Sheng Yangf9c617f2009-03-25 10:08:52 +08007026 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08007027 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01007028 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08007029
Sheng Yangf9c617f2009-03-25 10:08:52 +08007030 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08007031
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007032 /*
7033 * EPT violation happened while executing iret from NMI,
7034 * "blocked by NMI" bit has to be set before next VM entry.
7035 * There are errata that may cause this bit to not be set:
7036 * AAK134, BY25.
7037 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007038 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007039 enable_vnmi &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03007040 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03007041 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
7042
Sheng Yang14394422008-04-28 12:24:45 +08007043 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007044 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007045
Junaid Shahid27959a42016-12-06 16:46:10 -08007046 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007047 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08007048 ? PFERR_USER_MASK : 0;
7049 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007050 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08007051 ? PFERR_WRITE_MASK : 0;
7052 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08007053 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08007054 ? PFERR_FETCH_MASK : 0;
7055 /* ept page table entry is present? */
7056 error_code |= (exit_qualification &
7057 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
7058 EPT_VIOLATION_EXECUTABLE))
7059 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007060
Paolo Bonzinieebed242016-11-28 14:39:58 +01007061 error_code |= (exit_qualification & 0x100) != 0 ?
7062 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
Yang Zhang25d92082013-08-06 12:00:32 +03007063
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007064 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08007065 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08007066}
7067
Avi Kivity851ba692009-08-24 11:10:17 +03007068static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007069{
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007070 gpa_t gpa;
7071
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007072 /*
7073 * A nested guest cannot optimize MMIO vmexits, because we have an
7074 * nGPA here instead of the required GPA.
7075 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007076 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02007077 if (!is_guest_mode(vcpu) &&
7078 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08007079 trace_kvm_fast_mmio(gpa);
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01007080 /*
7081 * Doing kvm_skip_emulated_instruction() depends on undefined
7082 * behavior: Intel's manual doesn't mandate
7083 * VM_EXIT_INSTRUCTION_LEN to be set in VMCS when EPT MISCONFIG
7084 * occurs and while on real hardware it was observed to be set,
7085 * other hypervisors (namely Hyper-V) don't set it, we end up
7086 * advancing IP with some random value. Disable fast mmio when
7087 * running nested and keep it for real hardware in hope that
7088 * VM_EXIT_INSTRUCTION_LEN will always be set correctly.
7089 */
7090 if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
7091 return kvm_skip_emulated_instruction(vcpu);
7092 else
7093 return x86_emulate_instruction(vcpu, gpa, EMULTYPE_SKIP,
7094 NULL, 0) == EMULATE_DONE;
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03007095 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007096
Sean Christophersonc75d0edc2018-03-29 14:48:31 -07007097 return kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03007098}
7099
Avi Kivity851ba692009-08-24 11:10:17 +03007100static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08007101{
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007102 WARN_ON_ONCE(!enable_vnmi);
Paolo Bonzini47c01522016-12-19 11:44:07 +01007103 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
7104 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08007105 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03007106 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08007107
7108 return 1;
7109}
7110
Mohammed Gamal80ced182009-09-01 12:48:18 +02007111static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007112{
Avi Kivity8b3079a2009-01-05 12:10:54 +02007113 struct vcpu_vmx *vmx = to_vmx(vcpu);
7114 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007115 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02007116 u32 cpu_exec_ctrl;
7117 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03007118 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02007119
Sean Christopherson2bb8caf2018-03-12 10:56:13 -07007120 /*
7121 * We should never reach the point where we are emulating L2
7122 * due to invalid guest state as that means we incorrectly
7123 * allowed a nested VMEntry with an invalid vmcs12.
7124 */
7125 WARN_ON_ONCE(vmx->emulation_required && vmx->nested.nested_run_pending);
7126
Avi Kivity49e9d552010-09-19 14:34:08 +02007127 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
7128 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007129
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01007130 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03007131 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02007132 return handle_interrupt_window(&vmx->vcpu);
7133
Radim Krčmář72875d82017-04-26 22:32:19 +02007134 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03007135 return 1;
7136
Liran Alon9b8ae632017-11-05 16:56:34 +02007137 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007138
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02007139 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02007140 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02007141 ret = 0;
7142 goto out;
7143 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01007144
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007145 if (err != EMULATE_DONE)
7146 goto emulation_error;
7147
7148 if (vmx->emulation_required && !vmx->rmode.vm86_active &&
7149 vcpu->arch.exception.pending)
7150 goto emulation_error;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007151
Gleb Natapov8d76c492013-05-08 18:38:44 +03007152 if (vcpu->arch.halt_request) {
7153 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06007154 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03007155 goto out;
7156 }
7157
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007158 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02007159 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007160 if (need_resched())
7161 schedule();
7162 }
7163
Mohammed Gamal80ced182009-09-01 12:48:18 +02007164out:
7165 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03007166
Sean Christophersonadd5ff72018-03-23 09:34:00 -07007167emulation_error:
7168 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7169 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7170 vcpu->run->internal.ndata = 0;
7171 return 0;
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007172}
7173
7174static void grow_ple_window(struct kvm_vcpu *vcpu)
7175{
7176 struct vcpu_vmx *vmx = to_vmx(vcpu);
7177 int old = vmx->ple_window;
7178
Babu Mogerc8e88712018-03-16 16:37:24 -04007179 vmx->ple_window = __grow_ple_window(old, ple_window,
7180 ple_window_grow,
7181 ple_window_max);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007182
7183 if (vmx->ple_window != old)
7184 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007185
7186 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007187}
7188
7189static void shrink_ple_window(struct kvm_vcpu *vcpu)
7190{
7191 struct vcpu_vmx *vmx = to_vmx(vcpu);
7192 int old = vmx->ple_window;
7193
Babu Mogerc8e88712018-03-16 16:37:24 -04007194 vmx->ple_window = __shrink_ple_window(old, ple_window,
7195 ple_window_shrink,
7196 ple_window);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007197
7198 if (vmx->ple_window != old)
7199 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02007200
7201 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007202}
7203
7204/*
Feng Wubf9f6ac2015-09-18 22:29:55 +08007205 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
7206 */
7207static void wakeup_handler(void)
7208{
7209 struct kvm_vcpu *vcpu;
7210 int cpu = smp_processor_id();
7211
7212 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7213 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
7214 blocked_vcpu_list) {
7215 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
7216
7217 if (pi_test_on(pi_desc) == 1)
7218 kvm_vcpu_kick(vcpu);
7219 }
7220 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
7221}
7222
Peng Haoe01bca22018-04-07 05:47:32 +08007223static void vmx_enable_tdp(void)
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007224{
7225 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
7226 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
7227 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
7228 0ull, VMX_EPT_EXECUTABLE_MASK,
7229 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007230 VMX_EPT_RWX_MASK, 0ull);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007231
7232 ept_set_mmio_spte_mask();
7233 kvm_enable_tdp();
7234}
7235
Tiejun Chenf2c76482014-10-28 10:14:47 +08007236static __init int hardware_setup(void)
7237{
Paolo Bonzini904e14f2018-01-16 16:51:18 +01007238 int r = -ENOMEM, i;
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007239
7240 rdmsrl_safe(MSR_EFER, &host_efer);
7241
7242 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
7243 kvm_define_shared_msr(i, vmx_msr_index[i]);
7244
Radim Krčmář23611332016-09-29 22:41:33 +02007245 for (i = 0; i < VMX_BITMAP_NR; i++) {
7246 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
7247 if (!vmx_bitmap[i])
7248 goto out;
7249 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007250
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007251 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
7252 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
7253
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007254 if (setup_vmcs_config(&vmcs_config) < 0) {
7255 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02007256 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08007257 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007258
7259 if (boot_cpu_has(X86_FEATURE_NX))
7260 kvm_enable_efer_bits(EFER_NX);
7261
Wanpeng Li08d839c2017-03-23 05:30:08 -07007262 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
7263 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08007264 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07007265
Tiejun Chenf2c76482014-10-28 10:14:47 +08007266 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02007267 !cpu_has_vmx_ept_4levels() ||
David Hildenbrandf5f51582017-08-24 20:51:30 +02007268 !cpu_has_vmx_ept_mt_wb() ||
Wanpeng Li8ad81822017-10-09 15:51:53 -07007269 !cpu_has_vmx_invept_global())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007270 enable_ept = 0;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007271
Wanpeng Lifce6ac42017-05-11 02:58:56 -07007272 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007273 enable_ept_ad_bits = 0;
7274
Wanpeng Li8ad81822017-10-09 15:51:53 -07007275 if (!cpu_has_vmx_unrestricted_guest() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007276 enable_unrestricted_guest = 0;
7277
Paolo Bonziniad15a292015-01-30 16:18:49 +01007278 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08007279 flexpriority_enabled = 0;
7280
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01007281 if (!cpu_has_virtual_nmis())
7282 enable_vnmi = 0;
7283
Paolo Bonziniad15a292015-01-30 16:18:49 +01007284 /*
7285 * set_apic_access_page_addr() is used to reload apic access
7286 * page upon invalidation. No need to do anything if not
7287 * using the APIC_ACCESS_ADDR VMCS field.
7288 */
7289 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08007290 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007291
7292 if (!cpu_has_vmx_tpr_shadow())
7293 kvm_x86_ops->update_cr8_intercept = NULL;
7294
7295 if (enable_ept && !cpu_has_vmx_ept_2m_page())
7296 kvm_disable_largepages();
7297
Wanpeng Li0f107682017-09-28 18:06:24 -07007298 if (!cpu_has_vmx_ple()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007299 ple_gap = 0;
Wanpeng Li0f107682017-09-28 18:06:24 -07007300 ple_window = 0;
7301 ple_window_grow = 0;
7302 ple_window_max = 0;
7303 ple_window_shrink = 0;
7304 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007305
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007306 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08007307 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01007308 kvm_x86_ops->sync_pir_to_irr = NULL;
7309 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08007310
Haozhong Zhang64903d62015-10-20 15:39:09 +08007311 if (cpu_has_vmx_tsc_scaling()) {
7312 kvm_has_tsc_control = true;
7313 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
7314 kvm_tsc_scaling_ratio_frac_bits = 48;
7315 }
7316
Wanpeng Li04bb92e2015-09-16 19:31:11 +08007317 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7318
Junaid Shahidf160c7b2016-12-06 16:46:16 -08007319 if (enable_ept)
7320 vmx_enable_tdp();
7321 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08007322 kvm_disable_tdp();
7323
Kai Huang843e4332015-01-28 10:54:28 +08007324 /*
7325 * Only enable PML when hardware supports PML feature, and both EPT
7326 * and EPT A/D bit features are enabled -- PML depends on them to work.
7327 */
7328 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
7329 enable_pml = 0;
7330
7331 if (!enable_pml) {
7332 kvm_x86_ops->slot_enable_log_dirty = NULL;
7333 kvm_x86_ops->slot_disable_log_dirty = NULL;
7334 kvm_x86_ops->flush_log_dirty = NULL;
7335 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
7336 }
7337
Yunhong Jiang64672c92016-06-13 14:19:59 -07007338 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
7339 u64 vmx_msr;
7340
7341 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
7342 cpu_preemption_timer_multi =
7343 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
7344 } else {
7345 kvm_x86_ops->set_hv_timer = NULL;
7346 kvm_x86_ops->cancel_hv_timer = NULL;
7347 }
7348
Paolo Bonzinic5d167b2017-12-13 11:05:19 +01007349 if (!cpu_has_vmx_shadow_vmcs())
7350 enable_shadow_vmcs = 0;
7351 if (enable_shadow_vmcs)
7352 init_vmcs_shadow_fields();
7353
Feng Wubf9f6ac2015-09-18 22:29:55 +08007354 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
Paolo Bonzini13893092018-02-26 13:40:09 +01007355 nested_vmx_setup_ctls_msrs(&vmcs_config.nested, enable_apicv);
Feng Wubf9f6ac2015-09-18 22:29:55 +08007356
Ashok Rajc45dcc72016-06-22 14:59:56 +08007357 kvm_mce_cap_supported |= MCG_LMCE_P;
7358
Tiejun Chenf2c76482014-10-28 10:14:47 +08007359 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007360
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007361out:
Radim Krčmář23611332016-09-29 22:41:33 +02007362 for (i = 0; i < VMX_BITMAP_NR; i++)
7363 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007364
7365 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08007366}
7367
7368static __exit void hardware_unsetup(void)
7369{
Radim Krčmář23611332016-09-29 22:41:33 +02007370 int i;
7371
7372 for (i = 0; i < VMX_BITMAP_NR; i++)
7373 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08007374
Tiejun Chenf2c76482014-10-28 10:14:47 +08007375 free_kvm_area();
7376}
7377
Avi Kivity6aa8b732006-12-10 02:21:36 -08007378/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007379 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
7380 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
7381 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03007382static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007383{
Wanpeng Lib31c1142018-03-12 04:53:04 -07007384 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +02007385 grow_ple_window(vcpu);
7386
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08007387 /*
7388 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
7389 * VM-execution control is ignored if CPL > 0. OTOH, KVM
7390 * never set PAUSE_EXITING and just set PLE if supported,
7391 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
7392 */
7393 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007394 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007395}
7396
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007397static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08007398{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007399 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08007400}
7401
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007402static int handle_mwait(struct kvm_vcpu *vcpu)
7403{
7404 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
7405 return handle_nop(vcpu);
7406}
7407
Jim Mattson45ec3682017-08-23 16:32:04 -07007408static int handle_invalid_op(struct kvm_vcpu *vcpu)
7409{
7410 kvm_queue_exception(vcpu, UD_VECTOR);
7411 return 1;
7412}
7413
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03007414static int handle_monitor_trap(struct kvm_vcpu *vcpu)
7415{
7416 return 1;
7417}
7418
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04007419static int handle_monitor(struct kvm_vcpu *vcpu)
7420{
7421 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
7422 return handle_nop(vcpu);
7423}
7424
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08007425/*
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007426 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7427 * set the success or error code of an emulated VMX instruction, as specified
7428 * by Vol 2B, VMX Instruction Reference, "Conventions".
7429 */
7430static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7431{
7432 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7433 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7434 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7435}
7436
7437static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7438{
7439 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7440 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7441 X86_EFLAGS_SF | X86_EFLAGS_OF))
7442 | X86_EFLAGS_CF);
7443}
7444
Abel Gordon145c28d2013-04-18 14:36:55 +03007445static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007446 u32 vm_instruction_error)
7447{
7448 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7449 /*
7450 * failValid writes the error number to the current VMCS, which
7451 * can't be done there isn't a current VMCS.
7452 */
7453 nested_vmx_failInvalid(vcpu);
7454 return;
7455 }
7456 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7457 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7458 X86_EFLAGS_SF | X86_EFLAGS_OF))
7459 | X86_EFLAGS_ZF);
7460 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7461 /*
7462 * We don't need to force a shadow sync because
7463 * VM_INSTRUCTION_ERROR is not shadowed
7464 */
7465}
Abel Gordon145c28d2013-04-18 14:36:55 +03007466
Wincy Vanff651cb2014-12-11 08:52:58 +03007467static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7468{
7469 /* TODO: not to reset guest simply here. */
7470 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007471 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007472}
7473
Jan Kiszkaf4124502014-03-07 20:03:13 +01007474static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7475{
7476 struct vcpu_vmx *vmx =
7477 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7478
7479 vmx->nested.preemption_timer_expired = true;
7480 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7481 kvm_vcpu_kick(&vmx->vcpu);
7482
7483 return HRTIMER_NORESTART;
7484}
7485
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007486/*
Bandan Das19677e32014-05-06 02:19:15 -04007487 * Decode the memory-address operand of a vmx instruction, as recorded on an
7488 * exit caused by such an instruction (run by a guest hypervisor).
7489 * On success, returns 0. When the operand is invalid, returns 1 and throws
7490 * #UD or #GP.
7491 */
7492static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7493 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007494 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007495{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007496 gva_t off;
7497 bool exn;
7498 struct kvm_segment s;
7499
Bandan Das19677e32014-05-06 02:19:15 -04007500 /*
7501 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7502 * Execution", on an exit, vmx_instruction_info holds most of the
7503 * addressing components of the operand. Only the displacement part
7504 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7505 * For how an actual address is calculated from all these components,
7506 * refer to Vol. 1, "Operand Addressing".
7507 */
7508 int scaling = vmx_instruction_info & 3;
7509 int addr_size = (vmx_instruction_info >> 7) & 7;
7510 bool is_reg = vmx_instruction_info & (1u << 10);
7511 int seg_reg = (vmx_instruction_info >> 15) & 7;
7512 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7513 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7514 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7515 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7516
7517 if (is_reg) {
7518 kvm_queue_exception(vcpu, UD_VECTOR);
7519 return 1;
7520 }
7521
7522 /* Addr = segment_base + offset */
7523 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007524 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007525 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007526 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007527 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007528 off += kvm_register_read(vcpu, index_reg)<<scaling;
7529 vmx_get_segment(vcpu, &s, seg_reg);
7530 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007531
7532 if (addr_size == 1) /* 32 bit */
7533 *ret &= 0xffffffff;
7534
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007535 /* Checks for #GP/#SS exceptions. */
7536 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007537 if (is_long_mode(vcpu)) {
7538 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7539 * non-canonical form. This is the only check on the memory
7540 * destination for long mode!
7541 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007542 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007543 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007544 /* Protected mode: apply checks for segment validity in the
7545 * following order:
7546 * - segment type check (#GP(0) may be thrown)
7547 * - usability check (#GP(0)/#SS(0))
7548 * - limit check (#GP(0)/#SS(0))
7549 */
7550 if (wr)
7551 /* #GP(0) if the destination operand is located in a
7552 * read-only data segment or any code segment.
7553 */
7554 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7555 else
7556 /* #GP(0) if the source operand is located in an
7557 * execute-only code segment
7558 */
7559 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007560 if (exn) {
7561 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7562 return 1;
7563 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007564 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7565 */
7566 exn = (s.unusable != 0);
7567 /* Protected mode: #GP(0)/#SS(0) if the memory
7568 * operand is outside the segment limit.
7569 */
7570 exn = exn || (off + sizeof(u64) > s.limit);
7571 }
7572 if (exn) {
7573 kvm_queue_exception_e(vcpu,
7574 seg_reg == VCPU_SREG_SS ?
7575 SS_VECTOR : GP_VECTOR,
7576 0);
7577 return 1;
7578 }
7579
Bandan Das19677e32014-05-06 02:19:15 -04007580 return 0;
7581}
7582
Radim Krčmářcbf71272017-05-19 15:48:51 +02007583static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007584{
7585 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007586 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007587
7588 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007589 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007590 return 1;
7591
Radim Krčmářcbf71272017-05-19 15:48:51 +02007592 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7593 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007594 kvm_inject_page_fault(vcpu, &e);
7595 return 1;
7596 }
7597
Bandan Das3573e222014-05-06 02:19:16 -04007598 return 0;
7599}
7600
Jim Mattsone29acc52016-11-30 12:03:43 -08007601static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7602{
7603 struct vcpu_vmx *vmx = to_vmx(vcpu);
7604 struct vmcs *shadow_vmcs;
Paolo Bonzinif21f1652018-01-11 12:16:15 +01007605 int r;
Jim Mattsone29acc52016-11-30 12:03:43 -08007606
Paolo Bonzinif21f1652018-01-11 12:16:15 +01007607 r = alloc_loaded_vmcs(&vmx->nested.vmcs02);
7608 if (r < 0)
Jim Mattsonde3a0022017-11-27 17:22:25 -06007609 goto out_vmcs02;
Jim Mattsone29acc52016-11-30 12:03:43 -08007610
7611 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7612 if (!vmx->nested.cached_vmcs12)
7613 goto out_cached_vmcs12;
7614
7615 if (enable_shadow_vmcs) {
7616 shadow_vmcs = alloc_vmcs();
7617 if (!shadow_vmcs)
7618 goto out_shadow_vmcs;
7619 /* mark vmcs as shadow */
7620 shadow_vmcs->revision_id |= (1u << 31);
7621 /* init shadow vmcs */
7622 vmcs_clear(shadow_vmcs);
7623 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7624 }
7625
Jim Mattsone29acc52016-11-30 12:03:43 -08007626 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7627 HRTIMER_MODE_REL_PINNED);
7628 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7629
7630 vmx->nested.vmxon = true;
7631 return 0;
7632
7633out_shadow_vmcs:
7634 kfree(vmx->nested.cached_vmcs12);
7635
7636out_cached_vmcs12:
Jim Mattsonde3a0022017-11-27 17:22:25 -06007637 free_loaded_vmcs(&vmx->nested.vmcs02);
Jim Mattsone29acc52016-11-30 12:03:43 -08007638
Jim Mattsonde3a0022017-11-27 17:22:25 -06007639out_vmcs02:
Jim Mattsone29acc52016-11-30 12:03:43 -08007640 return -ENOMEM;
7641}
7642
Bandan Das3573e222014-05-06 02:19:16 -04007643/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007644 * Emulate the VMXON instruction.
7645 * Currently, we just remember that VMX is active, and do not save or even
7646 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7647 * do not currently need to store anything in that guest-allocated memory
7648 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7649 * argument is different from the VMXON pointer (which the spec says they do).
7650 */
7651static int handle_vmon(struct kvm_vcpu *vcpu)
7652{
Jim Mattsone29acc52016-11-30 12:03:43 -08007653 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007654 gpa_t vmptr;
7655 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007656 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007657 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7658 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007659
Jim Mattson70f3aac2017-04-26 08:53:46 -07007660 /*
7661 * The Intel VMX Instruction Reference lists a bunch of bits that are
7662 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7663 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7664 * Otherwise, we should fail with #UD. But most faulting conditions
7665 * have already been checked by hardware, prior to the VM-exit for
7666 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7667 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007668 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007669 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007670 kvm_queue_exception(vcpu, UD_VECTOR);
7671 return 1;
7672 }
7673
Abel Gordon145c28d2013-04-18 14:36:55 +03007674 if (vmx->nested.vmxon) {
7675 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007676 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007677 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007678
Haozhong Zhang3b840802016-06-22 14:59:54 +08007679 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007680 != VMXON_NEEDED_FEATURES) {
7681 kvm_inject_gp(vcpu, 0);
7682 return 1;
7683 }
7684
Radim Krčmářcbf71272017-05-19 15:48:51 +02007685 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007686 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007687
7688 /*
7689 * SDM 3: 24.11.5
7690 * The first 4 bytes of VMXON region contain the supported
7691 * VMCS revision identifier
7692 *
7693 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7694 * which replaces physical address width with 32
7695 */
7696 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7697 nested_vmx_failInvalid(vcpu);
7698 return kvm_skip_emulated_instruction(vcpu);
7699 }
7700
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007701 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7702 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007703 nested_vmx_failInvalid(vcpu);
7704 return kvm_skip_emulated_instruction(vcpu);
7705 }
7706 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7707 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007708 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007709 nested_vmx_failInvalid(vcpu);
7710 return kvm_skip_emulated_instruction(vcpu);
7711 }
7712 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007713 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007714
7715 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007716 ret = enter_vmx_operation(vcpu);
7717 if (ret)
7718 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007719
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007720 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007721 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007722}
7723
7724/*
7725 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7726 * for running VMX instructions (except VMXON, whose prerequisites are
7727 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007728 * Note that many of these exceptions have priority over VM exits, so they
7729 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007730 */
7731static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7732{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007733 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007734 kvm_queue_exception(vcpu, UD_VECTOR);
7735 return 0;
7736 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007737 return 1;
7738}
7739
David Matlack8ca44e82017-08-01 14:00:39 -07007740static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7741{
7742 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7743 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7744}
7745
Abel Gordone7953d72013-04-18 14:37:55 +03007746static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7747{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007748 if (vmx->nested.current_vmptr == -1ull)
7749 return;
7750
Abel Gordon012f83c2013-04-18 14:39:25 +03007751 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007752 /* copy to memory all shadowed fields in case
7753 they were modified */
7754 copy_shadow_to_vmcs12(vmx);
7755 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007756 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007757 }
Wincy Van705699a2015-02-03 23:58:17 +08007758 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007759
7760 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007761 kvm_vcpu_write_guest_page(&vmx->vcpu,
7762 vmx->nested.current_vmptr >> PAGE_SHIFT,
7763 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007764
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007765 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007766}
7767
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007768/*
7769 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7770 * just stops using VMX.
7771 */
7772static void free_nested(struct vcpu_vmx *vmx)
7773{
Wanpeng Lib7455822017-11-22 14:04:00 -08007774 if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007775 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007776
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007777 vmx->nested.vmxon = false;
Wanpeng Lib7455822017-11-22 14:04:00 -08007778 vmx->nested.smm.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007779 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007780 vmx->nested.posted_intr_nv = -1;
7781 vmx->nested.current_vmptr = -1ull;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007782 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007783 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007784 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7785 free_vmcs(vmx->vmcs01.shadow_vmcs);
7786 vmx->vmcs01.shadow_vmcs = NULL;
7787 }
David Matlack4f2777b2016-07-13 17:16:37 -07007788 kfree(vmx->nested.cached_vmcs12);
Jim Mattsonde3a0022017-11-27 17:22:25 -06007789 /* Unpin physical memory we referred to in the vmcs02 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007790 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007791 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007792 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007793 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007794 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007795 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007796 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007797 }
Wincy Van705699a2015-02-03 23:58:17 +08007798 if (vmx->nested.pi_desc_page) {
7799 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007800 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007801 vmx->nested.pi_desc_page = NULL;
7802 vmx->nested.pi_desc = NULL;
7803 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007804
Jim Mattsonde3a0022017-11-27 17:22:25 -06007805 free_loaded_vmcs(&vmx->nested.vmcs02);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007806}
7807
7808/* Emulate the VMXOFF instruction */
7809static int handle_vmoff(struct kvm_vcpu *vcpu)
7810{
7811 if (!nested_vmx_check_permission(vcpu))
7812 return 1;
7813 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007814 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007815 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007816}
7817
Nadav Har'El27d6c862011-05-25 23:06:59 +03007818/* Emulate the VMCLEAR instruction */
7819static int handle_vmclear(struct kvm_vcpu *vcpu)
7820{
7821 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007822 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007823 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007824
7825 if (!nested_vmx_check_permission(vcpu))
7826 return 1;
7827
Radim Krčmářcbf71272017-05-19 15:48:51 +02007828 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007829 return 1;
7830
Radim Krčmářcbf71272017-05-19 15:48:51 +02007831 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7832 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7833 return kvm_skip_emulated_instruction(vcpu);
7834 }
7835
7836 if (vmptr == vmx->nested.vmxon_ptr) {
7837 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7838 return kvm_skip_emulated_instruction(vcpu);
7839 }
7840
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007841 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007842 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007843
Jim Mattson587d7e722017-03-02 12:41:48 -08007844 kvm_vcpu_write_guest(vcpu,
7845 vmptr + offsetof(struct vmcs12, launch_state),
7846 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007847
Nadav Har'El27d6c862011-05-25 23:06:59 +03007848 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007849 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007850}
7851
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007852static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7853
7854/* Emulate the VMLAUNCH instruction */
7855static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7856{
7857 return nested_vmx_run(vcpu, true);
7858}
7859
7860/* Emulate the VMRESUME instruction */
7861static int handle_vmresume(struct kvm_vcpu *vcpu)
7862{
7863
7864 return nested_vmx_run(vcpu, false);
7865}
7866
Nadav Har'El49f705c2011-05-25 23:08:30 +03007867/*
7868 * Read a vmcs12 field. Since these can have varying lengths and we return
7869 * one type, we chose the biggest type (u64) and zero-extend the return value
7870 * to that size. Note that the caller, handle_vmread, might need to use only
7871 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7872 * 64-bit fields are to be returned).
7873 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007874static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7875 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007876{
7877 short offset = vmcs_field_to_offset(field);
7878 char *p;
7879
7880 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007881 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007882
7883 p = ((char *)(get_vmcs12(vcpu))) + offset;
7884
Jim Mattsond37f4262017-12-22 12:12:16 -08007885 switch (vmcs_field_width(field)) {
7886 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Nadav Har'El49f705c2011-05-25 23:08:30 +03007887 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007888 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007889 case VMCS_FIELD_WIDTH_U16:
Nadav Har'El49f705c2011-05-25 23:08:30 +03007890 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007891 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007892 case VMCS_FIELD_WIDTH_U32:
Nadav Har'El49f705c2011-05-25 23:08:30 +03007893 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007894 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007895 case VMCS_FIELD_WIDTH_U64:
Nadav Har'El49f705c2011-05-25 23:08:30 +03007896 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007897 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007898 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007899 WARN_ON(1);
7900 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007901 }
7902}
7903
Abel Gordon20b97fe2013-04-18 14:36:25 +03007904
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007905static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7906 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007907 short offset = vmcs_field_to_offset(field);
7908 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7909 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007910 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007911
Jim Mattsond37f4262017-12-22 12:12:16 -08007912 switch (vmcs_field_width(field)) {
7913 case VMCS_FIELD_WIDTH_U16:
Abel Gordon20b97fe2013-04-18 14:36:25 +03007914 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007915 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007916 case VMCS_FIELD_WIDTH_U32:
Abel Gordon20b97fe2013-04-18 14:36:25 +03007917 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007918 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007919 case VMCS_FIELD_WIDTH_U64:
Abel Gordon20b97fe2013-04-18 14:36:25 +03007920 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007921 return 0;
Jim Mattsond37f4262017-12-22 12:12:16 -08007922 case VMCS_FIELD_WIDTH_NATURAL_WIDTH:
Abel Gordon20b97fe2013-04-18 14:36:25 +03007923 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007924 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007925 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007926 WARN_ON(1);
7927 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007928 }
7929
7930}
7931
Abel Gordon16f5b902013-04-18 14:38:25 +03007932static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7933{
7934 int i;
7935 unsigned long field;
7936 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007937 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Paolo Bonzini44900ba2017-12-13 12:58:02 +01007938 const u16 *fields = shadow_read_write_fields;
Mathias Krausec2bae892013-06-26 20:36:21 +02007939 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007940
Jan Kiszka282da872014-10-08 18:05:39 +02007941 preempt_disable();
7942
Abel Gordon16f5b902013-04-18 14:38:25 +03007943 vmcs_load(shadow_vmcs);
7944
7945 for (i = 0; i < num_fields; i++) {
7946 field = fields[i];
Paolo Bonzini44900ba2017-12-13 12:58:02 +01007947 field_value = __vmcs_readl(field);
Abel Gordon16f5b902013-04-18 14:38:25 +03007948 vmcs12_write_any(&vmx->vcpu, field, field_value);
7949 }
7950
7951 vmcs_clear(shadow_vmcs);
7952 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007953
7954 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007955}
7956
Abel Gordonc3114422013-04-18 14:38:55 +03007957static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7958{
Paolo Bonzini44900ba2017-12-13 12:58:02 +01007959 const u16 *fields[] = {
Mathias Krausec2bae892013-06-26 20:36:21 +02007960 shadow_read_write_fields,
7961 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007962 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007963 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007964 max_shadow_read_write_fields,
7965 max_shadow_read_only_fields
7966 };
7967 int i, q;
7968 unsigned long field;
7969 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007970 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007971
7972 vmcs_load(shadow_vmcs);
7973
Mathias Krausec2bae892013-06-26 20:36:21 +02007974 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007975 for (i = 0; i < max_fields[q]; i++) {
7976 field = fields[q][i];
7977 vmcs12_read_any(&vmx->vcpu, field, &field_value);
Paolo Bonzini44900ba2017-12-13 12:58:02 +01007978 __vmcs_writel(field, field_value);
Abel Gordonc3114422013-04-18 14:38:55 +03007979 }
7980 }
7981
7982 vmcs_clear(shadow_vmcs);
7983 vmcs_load(vmx->loaded_vmcs->vmcs);
7984}
7985
Nadav Har'El49f705c2011-05-25 23:08:30 +03007986/*
7987 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7988 * used before) all generate the same failure when it is missing.
7989 */
7990static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7991{
7992 struct vcpu_vmx *vmx = to_vmx(vcpu);
7993 if (vmx->nested.current_vmptr == -1ull) {
7994 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007995 return 0;
7996 }
7997 return 1;
7998}
7999
8000static int handle_vmread(struct kvm_vcpu *vcpu)
8001{
8002 unsigned long field;
8003 u64 field_value;
8004 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8005 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8006 gva_t gva = 0;
8007
Kyle Hueyeb277562016-11-29 12:40:39 -08008008 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008009 return 1;
8010
Kyle Huey6affcbe2016-11-29 12:40:40 -08008011 if (!nested_vmx_check_vmcs12(vcpu))
8012 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008013
Nadav Har'El49f705c2011-05-25 23:08:30 +03008014 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03008015 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03008016 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008017 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008018 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008019 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008020 }
8021 /*
8022 * Now copy part of this value to register or memory, as requested.
8023 * Note that the number of bits actually copied is 32 or 64 depending
8024 * on the guest's mode (32 or 64 bit), not on the given field's length.
8025 */
8026 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03008027 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03008028 field_value);
8029 } else {
8030 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008031 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008032 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07008033 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03008034 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
8035 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
8036 }
8037
8038 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008039 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008040}
8041
8042
8043static int handle_vmwrite(struct kvm_vcpu *vcpu)
8044{
8045 unsigned long field;
8046 gva_t gva;
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008047 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008048 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8049 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008050
Nadav Har'El49f705c2011-05-25 23:08:30 +03008051 /* The value to write might be 32 or 64 bits, depending on L1's long
8052 * mode, and eventually we need to write that into a field of several
8053 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08008054 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03008055 * bits into the vmcs12 field.
8056 */
8057 u64 field_value = 0;
8058 struct x86_exception e;
8059
Kyle Hueyeb277562016-11-29 12:40:39 -08008060 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008061 return 1;
8062
Kyle Huey6affcbe2016-11-29 12:40:40 -08008063 if (!nested_vmx_check_vmcs12(vcpu))
8064 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08008065
Nadav Har'El49f705c2011-05-25 23:08:30 +03008066 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03008067 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008068 (((vmx_instruction_info) >> 3) & 0xf));
8069 else {
8070 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008071 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03008072 return 1;
8073 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03008074 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008075 kvm_inject_page_fault(vcpu, &e);
8076 return 1;
8077 }
8078 }
8079
8080
Nadav Amit27e6fb52014-06-18 17:19:26 +03008081 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03008082 if (vmcs_field_readonly(field)) {
8083 nested_vmx_failValid(vcpu,
8084 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008085 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008086 }
8087
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01008088 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03008089 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008090 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008091 }
8092
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008093 switch (field) {
8094#define SHADOW_FIELD_RW(x) case x:
8095#include "vmx_shadow_fields.h"
8096 /*
8097 * The fields that can be updated by L1 without a vmexit are
8098 * always updated in the vmcs02, the others go down the slow
8099 * path of prepare_vmcs02.
8100 */
8101 break;
8102 default:
8103 vmx->nested.dirty_vmcs12 = true;
8104 break;
8105 }
8106
Nadav Har'El49f705c2011-05-25 23:08:30 +03008107 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008108 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03008109}
8110
Jim Mattsona8bc2842016-11-30 12:03:44 -08008111static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
8112{
8113 vmx->nested.current_vmptr = vmptr;
8114 if (enable_shadow_vmcs) {
8115 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
8116 SECONDARY_EXEC_SHADOW_VMCS);
8117 vmcs_write64(VMCS_LINK_POINTER,
8118 __pa(vmx->vmcs01.shadow_vmcs));
8119 vmx->nested.sync_shadow_vmcs = true;
8120 }
Paolo Bonzini74a497f2017-12-20 13:55:39 +01008121 vmx->nested.dirty_vmcs12 = true;
Jim Mattsona8bc2842016-11-30 12:03:44 -08008122}
8123
Nadav Har'El63846662011-05-25 23:07:29 +03008124/* Emulate the VMPTRLD instruction */
8125static int handle_vmptrld(struct kvm_vcpu *vcpu)
8126{
8127 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008128 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03008129
8130 if (!nested_vmx_check_permission(vcpu))
8131 return 1;
8132
Radim Krčmářcbf71272017-05-19 15:48:51 +02008133 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03008134 return 1;
8135
Radim Krčmářcbf71272017-05-19 15:48:51 +02008136 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
8137 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
8138 return kvm_skip_emulated_instruction(vcpu);
8139 }
8140
8141 if (vmptr == vmx->nested.vmxon_ptr) {
8142 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
8143 return kvm_skip_emulated_instruction(vcpu);
8144 }
8145
Nadav Har'El63846662011-05-25 23:07:29 +03008146 if (vmx->nested.current_vmptr != vmptr) {
8147 struct vmcs12 *new_vmcs12;
8148 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02008149 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
8150 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03008151 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008152 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008153 }
8154 new_vmcs12 = kmap(page);
8155 if (new_vmcs12->revision_id != VMCS12_REVISION) {
8156 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008157 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03008158 nested_vmx_failValid(vcpu,
8159 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008160 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008161 }
Nadav Har'El63846662011-05-25 23:07:29 +03008162
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02008163 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07008164 /*
8165 * Load VMCS12 from guest memory since it is not already
8166 * cached.
8167 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008168 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
8169 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02008170 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02008171
Jim Mattsona8bc2842016-11-30 12:03:44 -08008172 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03008173 }
8174
8175 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008176 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03008177}
8178
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008179/* Emulate the VMPTRST instruction */
8180static int handle_vmptrst(struct kvm_vcpu *vcpu)
8181{
8182 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8183 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8184 gva_t vmcs_gva;
8185 struct x86_exception e;
8186
8187 if (!nested_vmx_check_permission(vcpu))
8188 return 1;
8189
8190 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008191 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008192 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07008193 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008194 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
8195 (void *)&to_vmx(vcpu)->nested.current_vmptr,
8196 sizeof(u64), &e)) {
8197 kvm_inject_page_fault(vcpu, &e);
8198 return 1;
8199 }
8200 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008201 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008202}
8203
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008204/* Emulate the INVEPT instruction */
8205static int handle_invept(struct kvm_vcpu *vcpu)
8206{
Wincy Vanb9c237b2015-02-03 23:56:30 +08008207 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008208 u32 vmx_instruction_info, types;
8209 unsigned long type;
8210 gva_t gva;
8211 struct x86_exception e;
8212 struct {
8213 u64 eptp, gpa;
8214 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008215
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008216 if (!(vmx->nested.msrs.secondary_ctls_high &
Wincy Vanb9c237b2015-02-03 23:56:30 +08008217 SECONDARY_EXEC_ENABLE_EPT) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008218 !(vmx->nested.msrs.ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008219 kvm_queue_exception(vcpu, UD_VECTOR);
8220 return 1;
8221 }
8222
8223 if (!nested_vmx_check_permission(vcpu))
8224 return 1;
8225
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008226 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03008227 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008228
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008229 types = (vmx->nested.msrs.ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008230
Jim Mattson85c856b2016-10-26 08:38:38 -07008231 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008232 nested_vmx_failValid(vcpu,
8233 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008234 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008235 }
8236
8237 /* According to the Intel VMX instruction reference, the memory
8238 * operand is read even if it isn't needed (e.g., for type==global)
8239 */
8240 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00008241 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008242 return 1;
8243 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
8244 sizeof(operand), &e)) {
8245 kvm_inject_page_fault(vcpu, &e);
8246 return 1;
8247 }
8248
8249 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008250 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04008251 /*
8252 * TODO: track mappings and invalidate
8253 * single context requests appropriately
8254 */
8255 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008256 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04008257 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008258 nested_vmx_succeed(vcpu);
8259 break;
8260 default:
8261 BUG_ON(1);
8262 break;
8263 }
8264
Kyle Huey6affcbe2016-11-29 12:40:40 -08008265 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008266}
8267
Petr Matouseka642fc32014-09-23 20:22:30 +02008268static int handle_invvpid(struct kvm_vcpu *vcpu)
8269{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008270 struct vcpu_vmx *vmx = to_vmx(vcpu);
8271 u32 vmx_instruction_info;
8272 unsigned long type, types;
8273 gva_t gva;
8274 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07008275 struct {
8276 u64 vpid;
8277 u64 gla;
8278 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008279
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008280 if (!(vmx->nested.msrs.secondary_ctls_high &
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008281 SECONDARY_EXEC_ENABLE_VPID) ||
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008282 !(vmx->nested.msrs.vpid_caps & VMX_VPID_INVVPID_BIT)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008283 kvm_queue_exception(vcpu, UD_VECTOR);
8284 return 1;
8285 }
8286
8287 if (!nested_vmx_check_permission(vcpu))
8288 return 1;
8289
8290 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8291 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
8292
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008293 types = (vmx->nested.msrs.vpid_caps &
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008294 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008295
Jim Mattson85c856b2016-10-26 08:38:38 -07008296 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008297 nested_vmx_failValid(vcpu,
8298 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008299 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008300 }
8301
8302 /* according to the intel vmx instruction reference, the memory
8303 * operand is read even if it isn't needed (e.g., for type==global)
8304 */
8305 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
8306 vmx_instruction_info, false, &gva))
8307 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07008308 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
8309 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008310 kvm_inject_page_fault(vcpu, &e);
8311 return 1;
8312 }
Jim Mattson40352602017-06-28 09:37:37 -07008313 if (operand.vpid >> 16) {
8314 nested_vmx_failValid(vcpu,
8315 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
8316 return kvm_skip_emulated_instruction(vcpu);
8317 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008318
8319 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008320 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Yu Zhangfd8cb432017-08-24 20:27:56 +08008321 if (is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07008322 nested_vmx_failValid(vcpu,
8323 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
8324 return kvm_skip_emulated_instruction(vcpu);
8325 }
8326 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01008327 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008328 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07008329 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008330 nested_vmx_failValid(vcpu,
8331 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008332 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008333 }
8334 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008335 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008336 break;
8337 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008338 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08008339 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07008340 }
8341
Wanpeng Lic2ba05c2017-12-12 17:33:03 -08008342 __vmx_flush_tlb(vcpu, vmx->nested.vpid02, true);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03008343 nested_vmx_succeed(vcpu);
8344
Kyle Huey6affcbe2016-11-29 12:40:40 -08008345 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02008346}
8347
Kai Huang843e4332015-01-28 10:54:28 +08008348static int handle_pml_full(struct kvm_vcpu *vcpu)
8349{
8350 unsigned long exit_qualification;
8351
8352 trace_kvm_pml_full(vcpu->vcpu_id);
8353
8354 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8355
8356 /*
8357 * PML buffer FULL happened while executing iret from NMI,
8358 * "blocked by NMI" bit has to be set before next VM entry.
8359 */
8360 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01008361 enable_vnmi &&
Kai Huang843e4332015-01-28 10:54:28 +08008362 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
8363 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
8364 GUEST_INTR_STATE_NMI);
8365
8366 /*
8367 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
8368 * here.., and there's no userspace involvement needed for PML.
8369 */
8370 return 1;
8371}
8372
Yunhong Jiang64672c92016-06-13 14:19:59 -07008373static int handle_preemption_timer(struct kvm_vcpu *vcpu)
8374{
8375 kvm_lapic_expired_hv_timer(vcpu);
8376 return 1;
8377}
8378
Bandan Das41ab9372017-08-03 15:54:43 -04008379static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
8380{
8381 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04008382 int maxphyaddr = cpuid_maxphyaddr(vcpu);
8383
8384 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008385 switch (address & VMX_EPTP_MT_MASK) {
8386 case VMX_EPTP_MT_UC:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008387 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_UC_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008388 return false;
8389 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008390 case VMX_EPTP_MT_WB:
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008391 if (!(vmx->nested.msrs.ept_caps & VMX_EPTP_WB_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008392 return false;
8393 break;
8394 default:
8395 return false;
8396 }
8397
David Hildenbrandbb97a012017-08-10 23:15:28 +02008398 /* only 4 levels page-walk length are valid */
8399 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008400 return false;
8401
8402 /* Reserved bits should not be set */
8403 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8404 return false;
8405
8406 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008407 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +01008408 if (!(vmx->nested.msrs.ept_caps & VMX_EPT_AD_BIT))
Bandan Das41ab9372017-08-03 15:54:43 -04008409 return false;
8410 }
8411
8412 return true;
8413}
8414
8415static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8416 struct vmcs12 *vmcs12)
8417{
8418 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8419 u64 address;
8420 bool accessed_dirty;
8421 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8422
8423 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8424 !nested_cpu_has_ept(vmcs12))
8425 return 1;
8426
8427 if (index >= VMFUNC_EPTP_ENTRIES)
8428 return 1;
8429
8430
8431 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8432 &address, index * 8, 8))
8433 return 1;
8434
David Hildenbrandbb97a012017-08-10 23:15:28 +02008435 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008436
8437 /*
8438 * If the (L2) guest does a vmfunc to the currently
8439 * active ept pointer, we don't have to do anything else
8440 */
8441 if (vmcs12->ept_pointer != address) {
8442 if (!valid_ept_address(vcpu, address))
8443 return 1;
8444
8445 kvm_mmu_unload(vcpu);
8446 mmu->ept_ad = accessed_dirty;
8447 mmu->base_role.ad_disabled = !accessed_dirty;
8448 vmcs12->ept_pointer = address;
8449 /*
8450 * TODO: Check what's the correct approach in case
8451 * mmu reload fails. Currently, we just let the next
8452 * reload potentially fail
8453 */
8454 kvm_mmu_reload(vcpu);
8455 }
8456
8457 return 0;
8458}
8459
Bandan Das2a499e42017-08-03 15:54:41 -04008460static int handle_vmfunc(struct kvm_vcpu *vcpu)
8461{
Bandan Das27c42a12017-08-03 15:54:42 -04008462 struct vcpu_vmx *vmx = to_vmx(vcpu);
8463 struct vmcs12 *vmcs12;
8464 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8465
8466 /*
8467 * VMFUNC is only supported for nested guests, but we always enable the
8468 * secondary control for simplicity; for non-nested mode, fake that we
8469 * didn't by injecting #UD.
8470 */
8471 if (!is_guest_mode(vcpu)) {
8472 kvm_queue_exception(vcpu, UD_VECTOR);
8473 return 1;
8474 }
8475
8476 vmcs12 = get_vmcs12(vcpu);
8477 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8478 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008479
8480 switch (function) {
8481 case 0:
8482 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8483 goto fail;
8484 break;
8485 default:
8486 goto fail;
8487 }
8488 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008489
8490fail:
8491 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8492 vmcs_read32(VM_EXIT_INTR_INFO),
8493 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008494 return 1;
8495}
8496
Nadav Har'El0140cae2011-05-25 23:06:28 +03008497/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008498 * The exit handlers return 1 if the exit was handled fully and guest execution
8499 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8500 * to be done to userspace and return 0.
8501 */
Mathias Krause772e0312012-08-30 01:30:19 +02008502static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008503 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8504 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008505 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008506 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008507 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008508 [EXIT_REASON_CR_ACCESS] = handle_cr,
8509 [EXIT_REASON_DR_ACCESS] = handle_dr,
8510 [EXIT_REASON_CPUID] = handle_cpuid,
8511 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8512 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8513 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8514 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008515 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008516 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008517 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008518 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008519 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008520 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008521 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008522 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008523 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008524 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008525 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008526 [EXIT_REASON_VMOFF] = handle_vmoff,
8527 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008528 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8529 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008530 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008531 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008532 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008533 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008534 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008535 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Paolo Bonzini0367f202016-07-12 10:44:55 +02008536 [EXIT_REASON_GDTR_IDTR] = handle_desc,
8537 [EXIT_REASON_LDTR_TR] = handle_desc,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008538 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8539 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008540 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008541 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008542 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008543 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008544 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008545 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008546 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008547 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008548 [EXIT_REASON_XSAVES] = handle_xsaves,
8549 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008550 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008551 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008552 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008553};
8554
8555static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008556 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008557
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008558static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8559 struct vmcs12 *vmcs12)
8560{
8561 unsigned long exit_qualification;
8562 gpa_t bitmap, last_bitmap;
8563 unsigned int port;
8564 int size;
8565 u8 b;
8566
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008567 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008568 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008569
8570 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8571
8572 port = exit_qualification >> 16;
8573 size = (exit_qualification & 7) + 1;
8574
8575 last_bitmap = (gpa_t)-1;
8576 b = -1;
8577
8578 while (size > 0) {
8579 if (port < 0x8000)
8580 bitmap = vmcs12->io_bitmap_a;
8581 else if (port < 0x10000)
8582 bitmap = vmcs12->io_bitmap_b;
8583 else
Joe Perches1d804d02015-03-30 16:46:09 -07008584 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008585 bitmap += (port & 0x7fff) / 8;
8586
8587 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008588 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008589 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008590 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008591 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008592
8593 port++;
8594 size--;
8595 last_bitmap = bitmap;
8596 }
8597
Joe Perches1d804d02015-03-30 16:46:09 -07008598 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008599}
8600
Nadav Har'El644d7112011-05-25 23:12:35 +03008601/*
8602 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8603 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8604 * disinterest in the current event (read or write a specific MSR) by using an
8605 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8606 */
8607static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8608 struct vmcs12 *vmcs12, u32 exit_reason)
8609{
8610 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8611 gpa_t bitmap;
8612
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008613 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008614 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008615
8616 /*
8617 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8618 * for the four combinations of read/write and low/high MSR numbers.
8619 * First we need to figure out which of the four to use:
8620 */
8621 bitmap = vmcs12->msr_bitmap;
8622 if (exit_reason == EXIT_REASON_MSR_WRITE)
8623 bitmap += 2048;
8624 if (msr_index >= 0xc0000000) {
8625 msr_index -= 0xc0000000;
8626 bitmap += 1024;
8627 }
8628
8629 /* Then read the msr_index'th bit from this bitmap: */
8630 if (msr_index < 1024*8) {
8631 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008632 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008633 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008634 return 1 & (b >> (msr_index & 7));
8635 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008636 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008637}
8638
8639/*
8640 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8641 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8642 * intercept (via guest_host_mask etc.) the current event.
8643 */
8644static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8645 struct vmcs12 *vmcs12)
8646{
8647 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8648 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008649 int reg;
8650 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008651
8652 switch ((exit_qualification >> 4) & 3) {
8653 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008654 reg = (exit_qualification >> 8) & 15;
8655 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008656 switch (cr) {
8657 case 0:
8658 if (vmcs12->cr0_guest_host_mask &
8659 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008660 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008661 break;
8662 case 3:
8663 if ((vmcs12->cr3_target_count >= 1 &&
8664 vmcs12->cr3_target_value0 == val) ||
8665 (vmcs12->cr3_target_count >= 2 &&
8666 vmcs12->cr3_target_value1 == val) ||
8667 (vmcs12->cr3_target_count >= 3 &&
8668 vmcs12->cr3_target_value2 == val) ||
8669 (vmcs12->cr3_target_count >= 4 &&
8670 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008671 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008672 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008673 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008674 break;
8675 case 4:
8676 if (vmcs12->cr4_guest_host_mask &
8677 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008678 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008679 break;
8680 case 8:
8681 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008682 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008683 break;
8684 }
8685 break;
8686 case 2: /* clts */
8687 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8688 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008689 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008690 break;
8691 case 1: /* mov from cr */
8692 switch (cr) {
8693 case 3:
8694 if (vmcs12->cpu_based_vm_exec_control &
8695 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008696 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008697 break;
8698 case 8:
8699 if (vmcs12->cpu_based_vm_exec_control &
8700 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008701 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008702 break;
8703 }
8704 break;
8705 case 3: /* lmsw */
8706 /*
8707 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8708 * cr0. Other attempted changes are ignored, with no exit.
8709 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008710 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008711 if (vmcs12->cr0_guest_host_mask & 0xe &
8712 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008713 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008714 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8715 !(vmcs12->cr0_read_shadow & 0x1) &&
8716 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008717 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008718 break;
8719 }
Joe Perches1d804d02015-03-30 16:46:09 -07008720 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008721}
8722
8723/*
8724 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8725 * should handle it ourselves in L0 (and then continue L2). Only call this
8726 * when in is_guest_mode (L2).
8727 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008728static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008729{
Nadav Har'El644d7112011-05-25 23:12:35 +03008730 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8731 struct vcpu_vmx *vmx = to_vmx(vcpu);
8732 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8733
Jim Mattson4f350c62017-09-14 16:31:44 -07008734 if (vmx->nested.nested_run_pending)
8735 return false;
8736
8737 if (unlikely(vmx->fail)) {
8738 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8739 vmcs_read32(VM_INSTRUCTION_ERROR));
8740 return true;
8741 }
Jan Kiszka542060e2014-01-04 18:47:21 +01008742
David Matlackc9f04402017-08-01 14:00:40 -07008743 /*
8744 * The host physical addresses of some pages of guest memory
Jim Mattsonde3a0022017-11-27 17:22:25 -06008745 * are loaded into the vmcs02 (e.g. vmcs12's Virtual APIC
8746 * Page). The CPU may write to these pages via their host
8747 * physical address while L2 is running, bypassing any
8748 * address-translation-based dirty tracking (e.g. EPT write
8749 * protection).
David Matlackc9f04402017-08-01 14:00:40 -07008750 *
8751 * Mark them dirty on every exit from L2 to prevent them from
8752 * getting out of sync with dirty tracking.
8753 */
8754 nested_mark_vmcs12_pages_dirty(vcpu);
8755
Jim Mattson4f350c62017-09-14 16:31:44 -07008756 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8757 vmcs_readl(EXIT_QUALIFICATION),
8758 vmx->idt_vectoring_info,
8759 intr_info,
8760 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8761 KVM_ISA_VMX);
Nadav Har'El644d7112011-05-25 23:12:35 +03008762
8763 switch (exit_reason) {
8764 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008765 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008766 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008767 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008768 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008769 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008770 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008771 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008772 else if (is_debug(intr_info) &&
8773 vcpu->guest_debug &
8774 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8775 return false;
8776 else if (is_breakpoint(intr_info) &&
8777 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8778 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008779 return vmcs12->exception_bitmap &
8780 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8781 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008782 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008783 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008784 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008785 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008786 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008787 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008788 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008789 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008790 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008791 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008792 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008793 case EXIT_REASON_HLT:
8794 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8795 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008796 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008797 case EXIT_REASON_INVLPG:
8798 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8799 case EXIT_REASON_RDPMC:
8800 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008801 case EXIT_REASON_RDRAND:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008802 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008803 case EXIT_REASON_RDSEED:
David Hildenbrand736fdf72017-08-24 20:51:37 +02008804 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008805 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008806 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8807 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8808 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8809 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8810 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8811 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008812 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008813 /*
8814 * VMX instructions trap unconditionally. This allows L1 to
8815 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8816 */
Joe Perches1d804d02015-03-30 16:46:09 -07008817 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008818 case EXIT_REASON_CR_ACCESS:
8819 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8820 case EXIT_REASON_DR_ACCESS:
8821 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8822 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008823 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008824 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8825 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008826 case EXIT_REASON_MSR_READ:
8827 case EXIT_REASON_MSR_WRITE:
8828 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8829 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008830 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008831 case EXIT_REASON_MWAIT_INSTRUCTION:
8832 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008833 case EXIT_REASON_MONITOR_TRAP_FLAG:
8834 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008835 case EXIT_REASON_MONITOR_INSTRUCTION:
8836 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8837 case EXIT_REASON_PAUSE_INSTRUCTION:
8838 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8839 nested_cpu_has2(vmcs12,
8840 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8841 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008842 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008843 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008844 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008845 case EXIT_REASON_APIC_ACCESS:
8846 return nested_cpu_has2(vmcs12,
8847 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008848 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008849 case EXIT_REASON_EOI_INDUCED:
8850 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008851 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008852 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008853 /*
8854 * L0 always deals with the EPT violation. If nested EPT is
8855 * used, and the nested mmu code discovers that the address is
8856 * missing in the guest EPT table (EPT12), the EPT violation
8857 * will be injected with nested_ept_inject_page_fault()
8858 */
Joe Perches1d804d02015-03-30 16:46:09 -07008859 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008860 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008861 /*
8862 * L2 never uses directly L1's EPT, but rather L0's own EPT
8863 * table (shadow on EPT) or a merged EPT table that L0 built
8864 * (EPT on EPT). So any problems with the structure of the
8865 * table is L0's fault.
8866 */
Joe Perches1d804d02015-03-30 16:46:09 -07008867 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008868 case EXIT_REASON_INVPCID:
8869 return
8870 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8871 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008872 case EXIT_REASON_WBINVD:
8873 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8874 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008875 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008876 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8877 /*
8878 * This should never happen, since it is not possible to
8879 * set XSS to a non-zero value---neither in L1 nor in L2.
8880 * If if it were, XSS would have to be checked against
8881 * the XSS exit bitmap in vmcs12.
8882 */
8883 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008884 case EXIT_REASON_PREEMPTION_TIMER:
8885 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008886 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008887 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008888 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008889 case EXIT_REASON_VMFUNC:
8890 /* VM functions are emulated through L2->L0 vmexits. */
8891 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008892 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008893 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008894 }
8895}
8896
Paolo Bonzini7313c692017-07-27 10:31:25 +02008897static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8898{
8899 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8900
8901 /*
8902 * At this point, the exit interruption info in exit_intr_info
8903 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8904 * we need to query the in-kernel LAPIC.
8905 */
8906 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8907 if ((exit_intr_info &
8908 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8909 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8910 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8911 vmcs12->vm_exit_intr_error_code =
8912 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8913 }
8914
8915 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8916 vmcs_readl(EXIT_QUALIFICATION));
8917 return 1;
8918}
8919
Avi Kivity586f9602010-11-18 13:09:54 +02008920static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8921{
8922 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8923 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8924}
8925
Kai Huanga3eaa862015-11-04 13:46:05 +08008926static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008927{
Kai Huanga3eaa862015-11-04 13:46:05 +08008928 if (vmx->pml_pg) {
8929 __free_page(vmx->pml_pg);
8930 vmx->pml_pg = NULL;
8931 }
Kai Huang843e4332015-01-28 10:54:28 +08008932}
8933
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008934static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008935{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008936 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008937 u64 *pml_buf;
8938 u16 pml_idx;
8939
8940 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8941
8942 /* Do nothing if PML buffer is empty */
8943 if (pml_idx == (PML_ENTITY_NUM - 1))
8944 return;
8945
8946 /* PML index always points to next available PML buffer entity */
8947 if (pml_idx >= PML_ENTITY_NUM)
8948 pml_idx = 0;
8949 else
8950 pml_idx++;
8951
8952 pml_buf = page_address(vmx->pml_pg);
8953 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8954 u64 gpa;
8955
8956 gpa = pml_buf[pml_idx];
8957 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008958 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008959 }
8960
8961 /* reset PML index */
8962 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8963}
8964
8965/*
8966 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8967 * Called before reporting dirty_bitmap to userspace.
8968 */
8969static void kvm_flush_pml_buffers(struct kvm *kvm)
8970{
8971 int i;
8972 struct kvm_vcpu *vcpu;
8973 /*
8974 * We only need to kick vcpu out of guest mode here, as PML buffer
8975 * is flushed at beginning of all VMEXITs, and it's obvious that only
8976 * vcpus running in guest are possible to have unflushed GPAs in PML
8977 * buffer.
8978 */
8979 kvm_for_each_vcpu(i, vcpu, kvm)
8980 kvm_vcpu_kick(vcpu);
8981}
8982
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008983static void vmx_dump_sel(char *name, uint32_t sel)
8984{
8985 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008986 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008987 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8988 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8989 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8990}
8991
8992static void vmx_dump_dtsel(char *name, uint32_t limit)
8993{
8994 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8995 name, vmcs_read32(limit),
8996 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8997}
8998
8999static void dump_vmcs(void)
9000{
9001 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
9002 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
9003 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
9004 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
9005 u32 secondary_exec_control = 0;
9006 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01009007 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009008 int i, n;
9009
9010 if (cpu_has_secondary_exec_ctrls())
9011 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9012
9013 pr_err("*** Guest State ***\n");
9014 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9015 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
9016 vmcs_readl(CR0_GUEST_HOST_MASK));
9017 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
9018 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
9019 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
9020 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
9021 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
9022 {
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009023 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
9024 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
9025 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
9026 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009027 }
9028 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
9029 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
9030 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
9031 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
9032 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9033 vmcs_readl(GUEST_SYSENTER_ESP),
9034 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
9035 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
9036 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
9037 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
9038 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
9039 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
9040 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
9041 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
9042 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
9043 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
9044 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
9045 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
9046 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009047 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9048 efer, vmcs_read64(GUEST_IA32_PAT));
9049 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
9050 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009051 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009052 if (cpu_has_load_perf_global_ctrl &&
9053 vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009054 pr_err("PerfGlobCtl = 0x%016llx\n",
9055 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009056 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009057 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009058 pr_err("Interruptibility = %08x ActivityState = %08x\n",
9059 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
9060 vmcs_read32(GUEST_ACTIVITY_STATE));
9061 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
9062 pr_err("InterruptStatus = %04x\n",
9063 vmcs_read16(GUEST_INTR_STATUS));
9064
9065 pr_err("*** Host State ***\n");
9066 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
9067 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
9068 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
9069 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
9070 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
9071 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
9072 vmcs_read16(HOST_TR_SELECTOR));
9073 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
9074 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
9075 vmcs_readl(HOST_TR_BASE));
9076 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
9077 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
9078 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
9079 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
9080 vmcs_readl(HOST_CR4));
9081 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
9082 vmcs_readl(HOST_IA32_SYSENTER_ESP),
9083 vmcs_read32(HOST_IA32_SYSENTER_CS),
9084 vmcs_readl(HOST_IA32_SYSENTER_EIP));
9085 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009086 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
9087 vmcs_read64(HOST_IA32_EFER),
9088 vmcs_read64(HOST_IA32_PAT));
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009089 if (cpu_has_load_perf_global_ctrl &&
9090 vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009091 pr_err("PerfGlobCtl = 0x%016llx\n",
9092 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009093
9094 pr_err("*** Control State ***\n");
9095 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
9096 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
9097 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
9098 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
9099 vmcs_read32(EXCEPTION_BITMAP),
9100 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
9101 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
9102 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
9103 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9104 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
9105 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
9106 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
9107 vmcs_read32(VM_EXIT_INTR_INFO),
9108 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
9109 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
9110 pr_err(" reason=%08x qualification=%016lx\n",
9111 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
9112 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
9113 vmcs_read32(IDT_VECTORING_INFO_FIELD),
9114 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009115 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08009116 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009117 pr_err("TSC Multiplier = 0x%016llx\n",
9118 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009119 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
9120 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
9121 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
9122 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
9123 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b402015-12-03 15:51:00 +01009124 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009125 n = vmcs_read32(CR3_TARGET_COUNT);
9126 for (i = 0; i + 1 < n; i += 4)
9127 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
9128 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
9129 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
9130 if (i < n)
9131 pr_err("CR3 target%u=%016lx\n",
9132 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
9133 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
9134 pr_err("PLE Gap=%08x Window=%08x\n",
9135 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
9136 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
9137 pr_err("Virtual processor ID = 0x%04x\n",
9138 vmcs_read16(VIRTUAL_PROCESSOR_ID));
9139}
9140
Avi Kivity6aa8b732006-12-10 02:21:36 -08009141/*
9142 * The guest has exited. See if we can fix it or if we need userspace
9143 * assistance.
9144 */
Avi Kivity851ba692009-08-24 11:10:17 +03009145static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009146{
Avi Kivity29bd8a72007-09-10 17:27:03 +03009147 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08009148 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02009149 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03009150
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01009151 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
9152
Kai Huang843e4332015-01-28 10:54:28 +08009153 /*
9154 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
9155 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
9156 * querying dirty_bitmap, we only need to kick all vcpus out of guest
9157 * mode as if vcpus is in root mode, the PML buffer must has been
9158 * flushed already.
9159 */
9160 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009161 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08009162
Mohammed Gamal80ced182009-09-01 12:48:18 +02009163 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02009164 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02009165 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01009166
Paolo Bonzini7313c692017-07-27 10:31:25 +02009167 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
9168 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03009169
Mohammed Gamal51207022010-05-31 22:40:54 +03009170 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02009171 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03009172 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
9173 vcpu->run->fail_entry.hardware_entry_failure_reason
9174 = exit_reason;
9175 return 0;
9176 }
9177
Avi Kivity29bd8a72007-09-10 17:27:03 +03009178 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009179 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
9180 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03009181 = vmcs_read32(VM_INSTRUCTION_ERROR);
9182 return 0;
9183 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08009184
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009185 /*
9186 * Note:
9187 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
9188 * delivery event since it indicates guest is accessing MMIO.
9189 * The vm-exit can be triggered again after return to guest that
9190 * will cause infinite loop.
9191 */
Mike Dayd77c26f2007-10-08 09:02:08 -04009192 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08009193 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02009194 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00009195 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009196 exit_reason != EXIT_REASON_TASK_SWITCH)) {
9197 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
9198 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02009199 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009200 vcpu->run->internal.data[0] = vectoring_info;
9201 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02009202 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
9203 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
9204 vcpu->run->internal.ndata++;
9205 vcpu->run->internal.data[3] =
9206 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
9207 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08009208 return 0;
9209 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02009210
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009211 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009212 vmx->loaded_vmcs->soft_vnmi_blocked)) {
9213 if (vmx_interrupt_allowed(vcpu)) {
9214 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
9215 } else if (vmx->loaded_vmcs->vnmi_blocked_time > 1000000000LL &&
9216 vcpu->arch.nmi_pending) {
9217 /*
9218 * This CPU don't support us in finding the end of an
9219 * NMI-blocked window if the guest runs with IRQs
9220 * disabled. So we pull the trigger after 1 s of
9221 * futile waiting, but inform the user about this.
9222 */
9223 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
9224 "state on VCPU %d after 1 s timeout\n",
9225 __func__, vcpu->vcpu_id);
9226 vmx->loaded_vmcs->soft_vnmi_blocked = 0;
9227 }
9228 }
9229
Avi Kivity6aa8b732006-12-10 02:21:36 -08009230 if (exit_reason < kvm_vmx_max_exit_handlers
9231 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03009232 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009233 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01009234 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
9235 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03009236 kvm_queue_exception(vcpu, UD_VECTOR);
9237 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009238 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08009239}
9240
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009241static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009242{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009243 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9244
9245 if (is_guest_mode(vcpu) &&
9246 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
9247 return;
9248
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009249 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009250 vmcs_write32(TPR_THRESHOLD, 0);
9251 return;
9252 }
9253
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009254 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08009255}
9256
Yang Zhang8d146952013-01-25 10:18:50 +08009257static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
9258{
9259 u32 sec_exec_control;
9260
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02009261 /* Postpone execution until vmcs01 is the current VMCS. */
9262 if (is_guest_mode(vcpu)) {
9263 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
9264 return;
9265 }
9266
Wanpeng Lif6e90f92016-09-22 07:43:25 +08009267 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08009268 return;
9269
Paolo Bonzini35754c92015-07-29 12:05:37 +02009270 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08009271 return;
9272
9273 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9274
9275 if (set) {
9276 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9277 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
9278 } else {
9279 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
9280 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07009281 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08009282 }
9283 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
9284
Paolo Bonzini904e14f2018-01-16 16:51:18 +01009285 vmx_update_msr_bitmap(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08009286}
9287
Tang Chen38b99172014-09-24 15:57:54 +08009288static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
9289{
9290 struct vcpu_vmx *vmx = to_vmx(vcpu);
9291
9292 /*
9293 * Currently we do not handle the nested case where L2 has an
9294 * APIC access page of its own; that page is still pinned.
9295 * Hence, we skip the case where the VCPU is in guest mode _and_
9296 * L1 prepared an APIC access page for L2.
9297 *
9298 * For the case where L1 and L2 share the same APIC access page
9299 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
9300 * in the vmcs12), this function will only update either the vmcs01
9301 * or the vmcs02. If the former, the vmcs02 will be updated by
9302 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
9303 * the next L2->L1 exit.
9304 */
9305 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07009306 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07009307 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08009308 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07009309 vmx_flush_tlb_ept_only(vcpu);
9310 }
Tang Chen38b99172014-09-24 15:57:54 +08009311}
9312
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009313static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009314{
9315 u16 status;
9316 u8 old;
9317
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009318 if (max_isr == -1)
9319 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009320
9321 status = vmcs_read16(GUEST_INTR_STATUS);
9322 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009323 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08009324 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02009325 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009326 vmcs_write16(GUEST_INTR_STATUS, status);
9327 }
9328}
9329
9330static void vmx_set_rvi(int vector)
9331{
9332 u16 status;
9333 u8 old;
9334
Wei Wang4114c272014-11-05 10:53:43 +08009335 if (vector == -1)
9336 vector = 0;
9337
Yang Zhangc7c9c562013-01-25 10:18:51 +08009338 status = vmcs_read16(GUEST_INTR_STATUS);
9339 old = (u8)status & 0xff;
9340 if ((u8)vector != old) {
9341 status &= ~0xff;
9342 status |= (u8)vector;
9343 vmcs_write16(GUEST_INTR_STATUS, status);
9344 }
9345}
9346
9347static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
9348{
Liran Alon851c1a182017-12-24 18:12:56 +02009349 /*
9350 * When running L2, updating RVI is only relevant when
9351 * vmcs12 virtual-interrupt-delivery enabled.
9352 * However, it can be enabled only when L1 also
9353 * intercepts external-interrupts and in that case
9354 * we should not update vmcs02 RVI but instead intercept
9355 * interrupt. Therefore, do nothing when running L2.
9356 */
9357 if (!is_guest_mode(vcpu))
Wanpeng Li963fee12014-07-17 19:03:00 +08009358 vmx_set_rvi(max_irr);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009359}
9360
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009361static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009362{
9363 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009364 int max_irr;
Liran Alonf27a85c2017-12-24 18:12:55 +02009365 bool max_irr_updated;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009366
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009367 WARN_ON(!vcpu->arch.apicv_active);
9368 if (pi_test_on(&vmx->pi_desc)) {
9369 pi_clear_on(&vmx->pi_desc);
9370 /*
9371 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
9372 * But on x86 this is just a compiler barrier anyway.
9373 */
9374 smp_mb__after_atomic();
Liran Alonf27a85c2017-12-24 18:12:55 +02009375 max_irr_updated =
9376 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir, &max_irr);
9377
9378 /*
9379 * If we are running L2 and L1 has a new pending interrupt
9380 * which can be injected, we should re-evaluate
9381 * what should be done with this new L1 interrupt.
Liran Alon851c1a182017-12-24 18:12:56 +02009382 * If L1 intercepts external-interrupts, we should
9383 * exit from L2 to L1. Otherwise, interrupt should be
9384 * delivered directly to L2.
Liran Alonf27a85c2017-12-24 18:12:55 +02009385 */
Liran Alon851c1a182017-12-24 18:12:56 +02009386 if (is_guest_mode(vcpu) && max_irr_updated) {
9387 if (nested_exit_on_intr(vcpu))
9388 kvm_vcpu_exiting_guest_mode(vcpu);
9389 else
9390 kvm_make_request(KVM_REQ_EVENT, vcpu);
9391 }
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01009392 } else {
9393 max_irr = kvm_lapic_find_highest_irr(vcpu);
9394 }
9395 vmx_hwapic_irr_update(vcpu, max_irr);
9396 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01009397}
9398
Andrey Smetanin63086302015-11-10 15:36:32 +03009399static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009400{
Andrey Smetanind62caab2015-11-10 15:36:33 +03009401 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009402 return;
9403
Yang Zhangc7c9c562013-01-25 10:18:51 +08009404 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
9405 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
9406 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
9407 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
9408}
9409
Paolo Bonzini967235d2016-12-19 14:03:45 +01009410static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
9411{
9412 struct vcpu_vmx *vmx = to_vmx(vcpu);
9413
9414 pi_clear_on(&vmx->pi_desc);
9415 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9416}
9417
Avi Kivity51aa01d2010-07-20 14:31:20 +03009418static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009419{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009420 u32 exit_intr_info = 0;
9421 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009422
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009423 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9424 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009425 return;
9426
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009427 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9428 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9429 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009430
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009431 /* if exit due to PF check for async PF */
9432 if (is_page_fault(exit_intr_info))
9433 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9434
Andi Kleena0861c02009-06-08 17:37:09 +08009435 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009436 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9437 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009438 kvm_machine_check();
9439
Gleb Natapov20f65982009-05-11 13:35:55 +03009440 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009441 if (is_nmi(exit_intr_info)) {
Andi Kleendd60d212017-07-25 17:20:32 -07009442 kvm_before_interrupt(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009443 asm("int $2");
Andi Kleendd60d212017-07-25 17:20:32 -07009444 kvm_after_interrupt(&vmx->vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009445 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009446}
Gleb Natapov20f65982009-05-11 13:35:55 +03009447
Yang Zhanga547c6d2013-04-11 19:25:10 +08009448static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9449{
9450 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9451
Yang Zhanga547c6d2013-04-11 19:25:10 +08009452 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9453 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9454 unsigned int vector;
9455 unsigned long entry;
9456 gate_desc *desc;
9457 struct vcpu_vmx *vmx = to_vmx(vcpu);
9458#ifdef CONFIG_X86_64
9459 unsigned long tmp;
9460#endif
9461
9462 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9463 desc = (gate_desc *)vmx->host_idt_base + vector;
Thomas Gleixner64b163f2017-08-28 08:47:37 +02009464 entry = gate_offset(desc);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009465 asm volatile(
9466#ifdef CONFIG_X86_64
9467 "mov %%" _ASM_SP ", %[sp]\n\t"
9468 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9469 "push $%c[ss]\n\t"
9470 "push %[sp]\n\t"
9471#endif
9472 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009473 __ASM_SIZE(push) " $%c[cs]\n\t"
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01009474 CALL_NOSPEC
Yang Zhanga547c6d2013-04-11 19:25:10 +08009475 :
9476#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009477 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009478#endif
Josh Poimboeuff5caf622017-09-20 16:24:33 -05009479 ASM_CALL_CONSTRAINT
Yang Zhanga547c6d2013-04-11 19:25:10 +08009480 :
Peter Zijlstrac940a3f2018-01-25 10:58:14 +01009481 THUNK_TARGET(entry),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009482 [ss]"i"(__KERNEL_DS),
9483 [cs]"i"(__KERNEL_CS)
9484 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009485 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009486}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009487STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009488
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009489static bool vmx_has_high_real_mode_segbase(void)
9490{
9491 return enable_unrestricted_guest || emulate_invalid_guest_state;
9492}
9493
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009494static bool vmx_mpx_supported(void)
9495{
9496 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9497 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9498}
9499
Wanpeng Li55412b22014-12-02 19:21:30 +08009500static bool vmx_xsaves_supported(void)
9501{
9502 return vmcs_config.cpu_based_2nd_exec_ctrl &
9503 SECONDARY_EXEC_XSAVES;
9504}
9505
Paolo Bonzini66336ca2016-07-12 10:36:41 +02009506static bool vmx_umip_emulated(void)
9507{
Paolo Bonzini0367f202016-07-12 10:44:55 +02009508 return vmcs_config.cpu_based_2nd_exec_ctrl &
9509 SECONDARY_EXEC_DESC;
Paolo Bonzini66336ca2016-07-12 10:36:41 +02009510}
9511
Avi Kivity51aa01d2010-07-20 14:31:20 +03009512static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9513{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009514 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009515 bool unblock_nmi;
9516 u8 vector;
9517 bool idtv_info_valid;
9518
9519 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009520
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009521 if (enable_vnmi) {
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009522 if (vmx->loaded_vmcs->nmi_known_unmasked)
9523 return;
9524 /*
9525 * Can't use vmx->exit_intr_info since we're not sure what
9526 * the exit reason is.
9527 */
9528 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9529 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9530 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9531 /*
9532 * SDM 3: 27.7.1.2 (September 2008)
9533 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9534 * a guest IRET fault.
9535 * SDM 3: 23.2.2 (September 2008)
9536 * Bit 12 is undefined in any of the following cases:
9537 * If the VM exit sets the valid bit in the IDT-vectoring
9538 * information field.
9539 * If the VM exit is due to a double fault.
9540 */
9541 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9542 vector != DF_VECTOR && !idtv_info_valid)
9543 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9544 GUEST_INTR_STATE_NMI);
9545 else
9546 vmx->loaded_vmcs->nmi_known_unmasked =
9547 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9548 & GUEST_INTR_STATE_NMI);
9549 } else if (unlikely(vmx->loaded_vmcs->soft_vnmi_blocked))
9550 vmx->loaded_vmcs->vnmi_blocked_time +=
9551 ktime_to_ns(ktime_sub(ktime_get(),
9552 vmx->loaded_vmcs->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03009553}
9554
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009555static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009556 u32 idt_vectoring_info,
9557 int instr_len_field,
9558 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009559{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009560 u8 vector;
9561 int type;
9562 bool idtv_info_valid;
9563
9564 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009565
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009566 vcpu->arch.nmi_injected = false;
9567 kvm_clear_exception_queue(vcpu);
9568 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009569
9570 if (!idtv_info_valid)
9571 return;
9572
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009573 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009574
Avi Kivity668f6122008-07-02 09:28:55 +03009575 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9576 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009577
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009578 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009579 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009580 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009581 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009582 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009583 * Clear bit "block by NMI" before VM entry if a NMI
9584 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009585 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009586 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009587 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009588 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009589 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009590 /* fall through */
9591 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009592 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009593 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009594 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009595 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009596 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009597 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009598 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009599 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009600 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009601 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009602 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009603 break;
9604 default:
9605 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009606 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009607}
9608
Avi Kivity83422e12010-07-20 14:43:23 +03009609static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9610{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009611 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009612 VM_EXIT_INSTRUCTION_LEN,
9613 IDT_VECTORING_ERROR_CODE);
9614}
9615
Avi Kivityb463a6f2010-07-20 15:06:17 +03009616static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9617{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009618 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009619 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9620 VM_ENTRY_INSTRUCTION_LEN,
9621 VM_ENTRY_EXCEPTION_ERROR_CODE);
9622
9623 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9624}
9625
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009626static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9627{
9628 int i, nr_msrs;
9629 struct perf_guest_switch_msr *msrs;
9630
9631 msrs = perf_guest_get_msrs(&nr_msrs);
9632
9633 if (!msrs)
9634 return;
9635
9636 for (i = 0; i < nr_msrs; i++)
9637 if (msrs[i].host == msrs[i].guest)
9638 clear_atomic_switch_msr(vmx, msrs[i].msr);
9639 else
9640 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9641 msrs[i].host);
9642}
9643
Jiang Biao33365e72016-11-03 15:03:37 +08009644static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009645{
9646 struct vcpu_vmx *vmx = to_vmx(vcpu);
9647 u64 tscl;
9648 u32 delta_tsc;
9649
9650 if (vmx->hv_deadline_tsc == -1)
9651 return;
9652
9653 tscl = rdtsc();
9654 if (vmx->hv_deadline_tsc > tscl)
9655 /* sure to be 32 bit only because checked on set_hv_timer */
9656 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9657 cpu_preemption_timer_multi);
9658 else
9659 delta_tsc = 0;
9660
9661 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9662}
9663
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009664static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009665{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009666 struct vcpu_vmx *vmx = to_vmx(vcpu);
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009667 unsigned long cr3, cr4, evmcs_rsp;
Avi Kivity104f2262010-11-18 13:12:52 +02009668
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009669 /* Record the guest's net vcpu time for enforced NMI injections. */
Paolo Bonzinid02fcf52017-11-06 13:31:13 +01009670 if (unlikely(!enable_vnmi &&
Paolo Bonzini8a1b4392017-11-06 13:31:12 +01009671 vmx->loaded_vmcs->soft_vnmi_blocked))
9672 vmx->loaded_vmcs->entry_time = ktime_get();
9673
Avi Kivity104f2262010-11-18 13:12:52 +02009674 /* Don't enter VMX if guest state is invalid, let the exit handler
9675 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009676 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009677 return;
9678
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009679 if (vmx->ple_window_dirty) {
9680 vmx->ple_window_dirty = false;
9681 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9682 }
9683
Abel Gordon012f83c2013-04-18 14:39:25 +03009684 if (vmx->nested.sync_shadow_vmcs) {
9685 copy_vmcs12_to_shadow(vmx);
9686 vmx->nested.sync_shadow_vmcs = false;
9687 }
9688
Avi Kivity104f2262010-11-18 13:12:52 +02009689 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9690 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9691 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9692 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9693
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009694 cr3 = __get_current_cr3_fast();
Ladi Prosek44889942017-09-22 07:53:15 +02009695 if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) {
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009696 vmcs_writel(HOST_CR3, cr3);
Ladi Prosek44889942017-09-22 07:53:15 +02009697 vmx->loaded_vmcs->vmcs_host_cr3 = cr3;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009698 }
9699
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009700 cr4 = cr4_read_shadow();
Ladi Prosek44889942017-09-22 07:53:15 +02009701 if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) {
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009702 vmcs_writel(HOST_CR4, cr4);
Ladi Prosek44889942017-09-22 07:53:15 +02009703 vmx->loaded_vmcs->vmcs_host_cr4 = cr4;
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009704 }
9705
Avi Kivity104f2262010-11-18 13:12:52 +02009706 /* When single-stepping over STI and MOV SS, we must clear the
9707 * corresponding interruptibility bits in the guest state. Otherwise
9708 * vmentry fails as it then expects bit 14 (BS) in pending debug
9709 * exceptions being set, but that's not correct for the guest debugging
9710 * case. */
9711 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9712 vmx_set_interrupt_shadow(vcpu, 0);
9713
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009714 if (static_cpu_has(X86_FEATURE_PKU) &&
9715 kvm_read_cr4_bits(vcpu, X86_CR4_PKE) &&
9716 vcpu->arch.pkru != vmx->host_pkru)
9717 __write_pkru(vcpu->arch.pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009718
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009719 atomic_switch_perf_msrs(vmx);
9720
Yunhong Jiang64672c92016-06-13 14:19:59 -07009721 vmx_arm_hv_timer(vcpu);
9722
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01009723 /*
9724 * If this vCPU has touched SPEC_CTRL, restore the guest's value if
9725 * it's non-zero. Since vmentry is serialising on affected CPUs, there
9726 * is no need to worry about the conditional branch over the wrmsr
9727 * being speculatively taken.
9728 */
9729 if (vmx->spec_ctrl)
Paolo Bonziniecb586b2018-02-22 16:43:17 +01009730 native_wrmsrl(MSR_IA32_SPEC_CTRL, vmx->spec_ctrl);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01009731
Nadav Har'Eld462b812011-05-24 15:26:10 +03009732 vmx->__launched = vmx->loaded_vmcs->launched;
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009733
9734 evmcs_rsp = static_branch_unlikely(&enable_evmcs) ?
9735 (unsigned long)&current_evmcs->host_rsp : 0;
9736
Avi Kivity104f2262010-11-18 13:12:52 +02009737 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009738 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009739 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9740 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9741 "push %%" _ASM_CX " \n\t"
9742 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03009743 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009744 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009745 /* Avoid VMWRITE when Enlightened VMCS is in use */
9746 "test %%" _ASM_SI ", %%" _ASM_SI " \n\t"
9747 "jz 2f \n\t"
9748 "mov %%" _ASM_SP ", (%%" _ASM_SI ") \n\t"
9749 "jmp 1f \n\t"
9750 "2: \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009751 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03009752 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009753 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009754 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9755 "mov %%cr2, %%" _ASM_DX " \n\t"
9756 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009757 "je 3f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009758 "mov %%" _ASM_AX", %%cr2 \n\t"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009759 "3: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009760 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009761 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009762 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009763 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9764 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9765 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9766 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9767 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9768 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009769#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009770 "mov %c[r8](%0), %%r8 \n\t"
9771 "mov %c[r9](%0), %%r9 \n\t"
9772 "mov %c[r10](%0), %%r10 \n\t"
9773 "mov %c[r11](%0), %%r11 \n\t"
9774 "mov %c[r12](%0), %%r12 \n\t"
9775 "mov %c[r13](%0), %%r13 \n\t"
9776 "mov %c[r14](%0), %%r14 \n\t"
9777 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009778#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009779 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009780
Avi Kivity6aa8b732006-12-10 02:21:36 -08009781 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009782 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009783 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009784 "jmp 2f \n\t"
9785 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9786 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009787 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009788 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009789 "pop %0 \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08009790 "setbe %c[fail](%0)\n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009791 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9792 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9793 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9794 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9795 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9796 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9797 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009798#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009799 "mov %%r8, %c[r8](%0) \n\t"
9800 "mov %%r9, %c[r9](%0) \n\t"
9801 "mov %%r10, %c[r10](%0) \n\t"
9802 "mov %%r11, %c[r11](%0) \n\t"
9803 "mov %%r12, %c[r12](%0) \n\t"
9804 "mov %%r13, %c[r13](%0) \n\t"
9805 "mov %%r14, %c[r14](%0) \n\t"
9806 "mov %%r15, %c[r15](%0) \n\t"
Jim Mattson0cb5b302018-01-03 14:31:38 -08009807 "xor %%r8d, %%r8d \n\t"
9808 "xor %%r9d, %%r9d \n\t"
9809 "xor %%r10d, %%r10d \n\t"
9810 "xor %%r11d, %%r11d \n\t"
9811 "xor %%r12d, %%r12d \n\t"
9812 "xor %%r13d, %%r13d \n\t"
9813 "xor %%r14d, %%r14d \n\t"
9814 "xor %%r15d, %%r15d \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009815#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009816 "mov %%cr2, %%" _ASM_AX " \n\t"
9817 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009818
Jim Mattson0cb5b302018-01-03 14:31:38 -08009819 "xor %%eax, %%eax \n\t"
9820 "xor %%ebx, %%ebx \n\t"
9821 "xor %%esi, %%esi \n\t"
9822 "xor %%edi, %%edi \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009823 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009824 ".pushsection .rodata \n\t"
9825 ".global vmx_return \n\t"
9826 "vmx_return: " _ASM_PTR " 2b \n\t"
9827 ".popsection"
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009828 : : "c"(vmx), "d"((unsigned long)HOST_RSP), "S"(evmcs_rsp),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009829 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009830 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +03009831 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009832 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9833 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9834 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9835 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9836 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9837 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9838 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009839#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009840 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9841 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9842 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9843 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9844 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9845 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9846 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9847 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009848#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009849 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9850 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009851 : "cc", "memory"
9852#ifdef CONFIG_X86_64
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009853 , "rax", "rbx", "rdi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009854 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009855#else
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009856 , "eax", "ebx", "edi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009857#endif
9858 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009859
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01009860 /*
9861 * We do not use IBRS in the kernel. If this vCPU has used the
9862 * SPEC_CTRL MSR it may have left it on; save the value and
9863 * turn it off. This is much more efficient than blindly adding
9864 * it to the atomic save/restore list. Especially as the former
9865 * (Saving guest MSRs on vmexit) doesn't even exist in KVM.
9866 *
9867 * For non-nested case:
9868 * If the L01 MSR bitmap does not intercept the MSR, then we need to
9869 * save it.
9870 *
9871 * For nested case:
9872 * If the L02 MSR bitmap does not intercept the MSR, then we need to
9873 * save it.
9874 */
Paolo Bonzini946fbbc2018-02-22 16:43:18 +01009875 if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL)))
Paolo Bonziniecb586b2018-02-22 16:43:17 +01009876 vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01009877
9878 if (vmx->spec_ctrl)
Paolo Bonziniecb586b2018-02-22 16:43:17 +01009879 native_wrmsrl(MSR_IA32_SPEC_CTRL, 0);
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +01009880
David Woodhouse117cc7a2018-01-12 11:11:27 +00009881 /* Eliminate branch target predictions from guest mode */
9882 vmexit_fill_RSB();
9883
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +01009884 /* All fields are clean at this point */
9885 if (static_branch_unlikely(&enable_evmcs))
9886 current_evmcs->hv_clean_fields |=
9887 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
9888
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009889 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
Wanpeng Li74c55932017-11-29 01:31:20 -08009890 if (vmx->host_debugctlmsr)
9891 update_debugctlmsr(vmx->host_debugctlmsr);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009892
Avi Kivityaa67f602012-08-01 16:48:03 +03009893#ifndef CONFIG_X86_64
9894 /*
9895 * The sysexit path does not restore ds/es, so we must set them to
9896 * a reasonable value ourselves.
9897 *
9898 * We can't defer this to vmx_load_host_state() since that function
9899 * may be executed in interrupt context, which saves and restore segments
9900 * around it, nullifying its effect.
9901 */
9902 loadsegment(ds, __USER_DS);
9903 loadsegment(es, __USER_DS);
9904#endif
9905
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009906 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009907 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009908 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009909 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009910 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009911 vcpu->arch.regs_dirty = 0;
9912
Gleb Natapove0b890d2013-09-25 12:51:33 +03009913 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009914 * eager fpu is enabled if PKEY is supported and CR4 is switched
9915 * back on host, so it is safe to read guest PKRU from current
9916 * XSAVE.
9917 */
Paolo Bonzinib9dd21e2017-08-23 23:14:38 +02009918 if (static_cpu_has(X86_FEATURE_PKU) &&
9919 kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) {
9920 vcpu->arch.pkru = __read_pkru();
9921 if (vcpu->arch.pkru != vmx->host_pkru)
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009922 __write_pkru(vmx->host_pkru);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009923 }
9924
Gleb Natapove0b890d2013-09-25 12:51:33 +03009925 vmx->nested.nested_run_pending = 0;
Jim Mattsonb060ca32017-09-14 16:31:42 -07009926 vmx->idt_vectoring_info = 0;
9927
9928 vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON);
9929 if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9930 return;
9931
9932 vmx->loaded_vmcs->launched = 1;
9933 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Gleb Natapove0b890d2013-09-25 12:51:33 +03009934
Avi Kivity51aa01d2010-07-20 14:31:20 +03009935 vmx_complete_atomic_exit(vmx);
9936 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009937 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009938}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009939STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009940
Sean Christopherson434a1e92018-03-20 12:17:18 -07009941static struct kvm *vmx_vm_alloc(void)
9942{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07009943 struct kvm_vmx *kvm_vmx = kzalloc(sizeof(struct kvm_vmx), GFP_KERNEL);
9944 return &kvm_vmx->kvm;
Sean Christopherson434a1e92018-03-20 12:17:18 -07009945}
9946
9947static void vmx_vm_free(struct kvm *kvm)
9948{
Sean Christopherson40bbb9d2018-03-20 12:17:20 -07009949 kfree(to_kvm_vmx(kvm));
Sean Christopherson434a1e92018-03-20 12:17:18 -07009950}
9951
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009952static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009953{
9954 struct vcpu_vmx *vmx = to_vmx(vcpu);
9955 int cpu;
9956
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009957 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009958 return;
9959
9960 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009961 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009962 vmx_vcpu_put(vcpu);
9963 vmx_vcpu_load(vcpu, cpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009964 put_cpu();
9965}
9966
Jim Mattson2f1fe812016-07-08 15:36:06 -07009967/*
9968 * Ensure that the current vmcs of the logical processor is the
9969 * vmcs01 of the vcpu before calling free_nested().
9970 */
9971static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9972{
9973 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009974
Christoffer Dallec7660c2017-12-04 21:35:23 +01009975 vcpu_load(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009976 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009977 free_nested(vmx);
9978 vcpu_put(vcpu);
9979}
9980
Avi Kivity6aa8b732006-12-10 02:21:36 -08009981static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9982{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009983 struct vcpu_vmx *vmx = to_vmx(vcpu);
9984
Kai Huang843e4332015-01-28 10:54:28 +08009985 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009986 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009987 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009988 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009989 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009990 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009991 kfree(vmx->guest_msrs);
9992 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009993 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009994}
9995
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009996static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009997{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009998 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009999 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010000 unsigned long *msr_bitmap;
Avi Kivity15ad7142007-07-11 18:17:21 +030010001 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -080010002
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010003 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010004 return ERR_PTR(-ENOMEM);
10005
Wanpeng Li991e7a02015-09-16 17:30:05 +080010006 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +080010007
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010008 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
10009 if (err)
10010 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010011
Peter Feiner4e595162016-07-07 14:49:58 -070010012 err = -ENOMEM;
10013
10014 /*
10015 * If PML is turned on, failure on enabling PML just results in failure
10016 * of creating the vcpu, therefore we can simplify PML logic (by
10017 * avoiding dealing with cases, such as enabling PML partially on vcpus
10018 * for the guest, etc.
10019 */
10020 if (enable_pml) {
10021 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
10022 if (!vmx->pml_pg)
10023 goto uninit_vcpu;
10024 }
10025
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010026 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +020010027 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
10028 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +030010029
Peter Feiner4e595162016-07-07 14:49:58 -070010030 if (!vmx->guest_msrs)
10031 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010032
Paolo Bonzinif21f1652018-01-11 12:16:15 +010010033 err = alloc_loaded_vmcs(&vmx->vmcs01);
10034 if (err < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010035 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040010036
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010037 msr_bitmap = vmx->vmcs01.msr_bitmap;
10038 vmx_disable_intercept_for_msr(msr_bitmap, MSR_FS_BASE, MSR_TYPE_RW);
10039 vmx_disable_intercept_for_msr(msr_bitmap, MSR_GS_BASE, MSR_TYPE_RW);
10040 vmx_disable_intercept_for_msr(msr_bitmap, MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
10041 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_CS, MSR_TYPE_RW);
10042 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_ESP, MSR_TYPE_RW);
10043 vmx_disable_intercept_for_msr(msr_bitmap, MSR_IA32_SYSENTER_EIP, MSR_TYPE_RW);
10044 vmx->msr_bitmap_mode = 0;
10045
Paolo Bonzinif21f1652018-01-11 12:16:15 +010010046 vmx->loaded_vmcs = &vmx->vmcs01;
Avi Kivity15ad7142007-07-11 18:17:21 +030010047 cpu = get_cpu();
10048 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -100010049 vmx->vcpu.cpu = cpu;
David Hildenbrand12d79912017-08-24 20:51:26 +020010050 vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010051 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030010052 put_cpu();
Paolo Bonzini35754c92015-07-29 12:05:37 +020010053 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +020010054 err = alloc_apic_access_page(kvm);
10055 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -020010056 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +020010057 }
Ingo Molnar965b58a2007-01-05 16:36:23 -080010058
Sean Christophersone90008d2018-03-05 12:04:37 -080010059 if (enable_ept && !enable_unrestricted_guest) {
Tang Chenf51770e2014-09-16 18:41:59 +080010060 err = init_rmode_identity_map(kvm);
10061 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +020010062 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +080010063 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +080010064
Wanpeng Li5c614b32015-10-13 09:18:36 -070010065 if (nested) {
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010066 nested_vmx_setup_ctls_msrs(&vmx->nested.msrs,
10067 kvm_vcpu_apicv_active(&vmx->vcpu));
Wanpeng Li5c614b32015-10-13 09:18:36 -070010068 vmx->nested.vpid02 = allocate_vpid();
10069 }
Wincy Vanb9c237b2015-02-03 23:56:30 +080010070
Wincy Van705699a2015-02-03 23:58:17 +080010071 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030010072 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +030010073
Haozhong Zhang37e4c992016-06-22 14:59:55 +080010074 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
10075
Paolo Bonzini31afb2e2017-06-06 12:57:06 +020010076 /*
10077 * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR
10078 * or POSTED_INTR_WAKEUP_VECTOR.
10079 */
10080 vmx->pi_desc.nv = POSTED_INTR_VECTOR;
10081 vmx->pi_desc.sn = 1;
10082
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010083 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -080010084
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010085free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -070010086 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +080010087 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010088free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010089 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -070010090free_pml:
10091 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010092uninit_vcpu:
10093 kvm_vcpu_uninit(&vmx->vcpu);
10094free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +080010095 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +100010096 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +100010097 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -080010098}
10099
Wanpeng Lib31c1142018-03-12 04:53:04 -070010100static int vmx_vm_init(struct kvm *kvm)
10101{
10102 if (!ple_gap)
10103 kvm->arch.pause_in_guest = true;
10104 return 0;
10105}
10106
Yang, Sheng002c7f72007-07-31 14:23:01 +030010107static void __init vmx_check_processor_compat(void *rtn)
10108{
10109 struct vmcs_config vmcs_conf;
10110
10111 *(int *)rtn = 0;
10112 if (setup_vmcs_config(&vmcs_conf) < 0)
10113 *(int *)rtn = -EIO;
Paolo Bonzini13893092018-02-26 13:40:09 +010010114 nested_vmx_setup_ctls_msrs(&vmcs_conf.nested, enable_apicv);
Yang, Sheng002c7f72007-07-31 14:23:01 +030010115 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
10116 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
10117 smp_processor_id());
10118 *(int *)rtn = -EIO;
10119 }
10120}
10121
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010122static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +080010123{
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010124 u8 cache;
10125 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +080010126
Sheng Yang522c68c2009-04-27 20:35:43 +080010127 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +020010128 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +080010129 * 2. EPT with VT-d:
10130 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +020010131 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +080010132 * b. VT-d with snooping control feature: snooping control feature of
10133 * VT-d engine can guarantee the cache correctness. Just set it
10134 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +080010135 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +080010136 * consistent with host MTRR
10137 */
Paolo Bonzini606decd2015-10-01 13:12:47 +020010138 if (is_mmio) {
10139 cache = MTRR_TYPE_UNCACHABLE;
10140 goto exit;
10141 }
10142
10143 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010144 ipat = VMX_EPT_IPAT_BIT;
10145 cache = MTRR_TYPE_WRBACK;
10146 goto exit;
10147 }
10148
10149 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
10150 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +020010151 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +080010152 cache = MTRR_TYPE_WRBACK;
10153 else
10154 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010155 goto exit;
10156 }
10157
Xiao Guangrongff536042015-06-15 16:55:22 +080010158 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +080010159
10160exit:
10161 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +080010162}
10163
Sheng Yang17cc3932010-01-05 19:02:27 +080010164static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +020010165{
Sheng Yang878403b2010-01-05 19:02:29 +080010166 if (enable_ept && !cpu_has_vmx_ept_1g_page())
10167 return PT_DIRECTORY_LEVEL;
10168 else
10169 /* For shadow and EPT supported 1GB page */
10170 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +020010171}
10172
Xiao Guangrongfeda8052015-09-09 14:05:55 +080010173static void vmcs_set_secondary_exec_control(u32 new_ctl)
10174{
10175 /*
10176 * These bits in the secondary execution controls field
10177 * are dynamic, the others are mostly based on the hypervisor
10178 * architecture and the guest's CPUID. Do not touch the
10179 * dynamic bits.
10180 */
10181 u32 mask =
10182 SECONDARY_EXEC_SHADOW_VMCS |
10183 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini0367f202016-07-12 10:44:55 +020010184 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
10185 SECONDARY_EXEC_DESC;
Xiao Guangrongfeda8052015-09-09 14:05:55 +080010186
10187 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
10188
10189 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
10190 (new_ctl & ~mask) | (cur_ctl & mask));
10191}
10192
David Matlack8322ebb2016-11-29 18:14:09 -080010193/*
10194 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
10195 * (indicating "allowed-1") if they are supported in the guest's CPUID.
10196 */
10197static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
10198{
10199 struct vcpu_vmx *vmx = to_vmx(vcpu);
10200 struct kvm_cpuid_entry2 *entry;
10201
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010202 vmx->nested.msrs.cr0_fixed1 = 0xffffffff;
10203 vmx->nested.msrs.cr4_fixed1 = X86_CR4_PCE;
David Matlack8322ebb2016-11-29 18:14:09 -080010204
10205#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
10206 if (entry && (entry->_reg & (_cpuid_mask))) \
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010207 vmx->nested.msrs.cr4_fixed1 |= (_cr4_mask); \
David Matlack8322ebb2016-11-29 18:14:09 -080010208} while (0)
10209
10210 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
10211 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
10212 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
10213 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
10214 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
10215 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
10216 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
10217 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
10218 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
10219 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
10220 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
10221 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
10222 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
10223 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
10224 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
10225
10226 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
10227 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
10228 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
10229 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
10230 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
Paolo Bonzinic4ad77e2017-11-13 14:23:59 +010010231 cr4_fixed1_update(X86_CR4_UMIP, ecx, bit(X86_FEATURE_UMIP));
David Matlack8322ebb2016-11-29 18:14:09 -080010232
10233#undef cr4_fixed1_update
10234}
10235
Sheng Yang0e851882009-12-18 16:48:46 +080010236static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
10237{
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010238 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010239
Paolo Bonzini80154d72017-08-24 13:55:35 +020010240 if (cpu_has_secondary_exec_ctrls()) {
10241 vmx_compute_secondary_exec_control(vmx);
10242 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +080010243 }
Mao, Junjiead756a12012-07-02 01:18:48 +000010244
Haozhong Zhang37e4c992016-06-22 14:59:55 +080010245 if (nested_vmx_allowed(vcpu))
10246 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
10247 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
10248 else
10249 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
10250 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -080010251
10252 if (nested_vmx_allowed(vcpu))
10253 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +080010254}
10255
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010256static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
10257{
Nadav Har'El7b8050f2011-05-25 23:16:10 +030010258 if (func == 1 && nested)
10259 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +020010260}
10261
Yang Zhang25d92082013-08-06 12:00:32 +030010262static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
10263 struct x86_exception *fault)
10264{
Jan Kiszka533558b2014-01-04 18:47:20 +010010265 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -040010266 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010010267 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -040010268 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +030010269
Bandan Dasc5f983f2017-05-05 15:25:14 -040010270 if (vmx->nested.pml_full) {
10271 exit_reason = EXIT_REASON_PML_FULL;
10272 vmx->nested.pml_full = false;
10273 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
10274 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +010010275 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +030010276 else
Jan Kiszka533558b2014-01-04 18:47:20 +010010277 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -040010278
10279 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +030010280 vmcs12->guest_physical_address = fault->address;
10281}
10282
Peter Feiner995f00a2017-06-30 17:26:32 -070010283static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
10284{
David Hildenbrandbb97a012017-08-10 23:15:28 +020010285 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -070010286}
10287
Nadav Har'El155a97a2013-08-05 11:07:16 +030010288/* Callbacks for nested_ept_init_mmu_context: */
10289
10290static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
10291{
10292 /* return the page table to be shadowed - in our case, EPT12 */
10293 return get_vmcs12(vcpu)->ept_pointer;
10294}
10295
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010296static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +030010297{
Paolo Bonziniad896af2013-10-02 16:56:14 +020010298 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +020010299 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010300 return 1;
10301
10302 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +020010303 kvm_init_shadow_ept_mmu(vcpu,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010010304 to_vmx(vcpu)->nested.msrs.ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010305 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +020010306 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +030010307 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
10308 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
10309 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
10310
10311 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010312 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +030010313}
10314
10315static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
10316{
10317 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
10318}
10319
Eugene Korenevsky19d5f102014-12-16 22:35:53 +030010320static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
10321 u16 error_code)
10322{
10323 bool inequality, bit;
10324
10325 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
10326 inequality =
10327 (error_code & vmcs12->page_fault_error_code_mask) !=
10328 vmcs12->page_fault_error_code_match;
10329 return inequality ^ bit;
10330}
10331
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010332static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
10333 struct x86_exception *fault)
10334{
10335 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10336
10337 WARN_ON(!is_guest_mode(vcpu));
10338
Wanpeng Li305d0ab2017-09-28 18:16:44 -070010339 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
10340 !to_vmx(vcpu)->nested.nested_run_pending) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +020010341 vmcs12->vm_exit_intr_error_code = fault->error_code;
10342 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
10343 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
10344 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
10345 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +020010346 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010347 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +020010348 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010349}
10350
Paolo Bonzinic9923842017-12-13 14:16:30 +010010351static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
10352 struct vmcs12 *vmcs12);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010353
10354static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010355 struct vmcs12 *vmcs12)
10356{
10357 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010358 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010359 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010360
10361 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010362 /*
10363 * Translate L1 physical address to host physical
10364 * address for vmcs02. Keep the page pinned, so this
10365 * physical address remains valid. We keep a reference
10366 * to it so we can release it later.
10367 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010368 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020010369 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010370 vmx->nested.apic_access_page = NULL;
10371 }
10372 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010373 /*
10374 * If translation failed, no matter: This feature asks
10375 * to exit when accessing the given address, and if it
10376 * can never be accessed, this feature won't do
10377 * anything anyway.
10378 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010379 if (!is_error_page(page)) {
10380 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010381 hpa = page_to_phys(vmx->nested.apic_access_page);
10382 vmcs_write64(APIC_ACCESS_ADDR, hpa);
10383 } else {
10384 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
10385 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
10386 }
10387 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
10388 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
10389 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
10390 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
10391 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010392 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010393
10394 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010395 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +020010396 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010397 vmx->nested.virtual_apic_page = NULL;
10398 }
10399 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010400
10401 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010402 * If translation failed, VM entry will fail because
10403 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
10404 * Failing the vm entry is _not_ what the processor
10405 * does but it's basically the only possibility we
10406 * have. We could still enter the guest if CR8 load
10407 * exits are enabled, CR8 store exits are enabled, and
10408 * virtualize APIC access is disabled; in this case
10409 * the processor would never use the TPR shadow and we
10410 * could simply clear the bit from the execution
10411 * control. But such a configuration is useless, so
10412 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010413 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010414 if (!is_error_page(page)) {
10415 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010416 hpa = page_to_phys(vmx->nested.virtual_apic_page);
10417 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
10418 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010419 }
10420
Wincy Van705699a2015-02-03 23:58:17 +080010421 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010422 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
10423 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010424 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010425 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +080010426 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010427 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
10428 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010429 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010430 vmx->nested.pi_desc_page = page;
10431 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080010432 vmx->nested.pi_desc =
10433 (struct pi_desc *)((void *)vmx->nested.pi_desc +
10434 (unsigned long)(vmcs12->posted_intr_desc_addr &
10435 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010436 vmcs_write64(POSTED_INTR_DESC_ADDR,
10437 page_to_phys(vmx->nested.pi_desc_page) +
10438 (unsigned long)(vmcs12->posted_intr_desc_addr &
10439 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +080010440 }
Linus Torvaldsd4667ca2018-02-14 17:02:15 -080010441 if (nested_vmx_prepare_msr_bitmap(vcpu, vmcs12))
KarimAllah Ahmed3712caeb2018-02-10 23:39:26 +000010442 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
10443 CPU_BASED_USE_MSR_BITMAPS);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010444 else
10445 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
10446 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +080010447}
10448
Jan Kiszkaf4124502014-03-07 20:03:13 +010010449static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
10450{
10451 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
10452 struct vcpu_vmx *vmx = to_vmx(vcpu);
10453
10454 if (vcpu->arch.virtual_tsc_khz == 0)
10455 return;
10456
10457 /* Make sure short timeouts reliably trigger an immediate vmexit.
10458 * hrtimer_start does not guarantee this. */
10459 if (preemption_timeout <= 1) {
10460 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
10461 return;
10462 }
10463
10464 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
10465 preemption_timeout *= 1000000;
10466 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
10467 hrtimer_start(&vmx->nested.preemption_timer,
10468 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
10469}
10470
Jim Mattson56a20512017-07-06 16:33:06 -070010471static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
10472 struct vmcs12 *vmcs12)
10473{
10474 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
10475 return 0;
10476
10477 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
10478 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
10479 return -EINVAL;
10480
10481 return 0;
10482}
10483
Wincy Van3af18d92015-02-03 23:49:31 +080010484static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
10485 struct vmcs12 *vmcs12)
10486{
Wincy Van3af18d92015-02-03 23:49:31 +080010487 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
10488 return 0;
10489
Jim Mattson5fa99cb2017-07-06 16:33:07 -070010490 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +080010491 return -EINVAL;
10492
10493 return 0;
10494}
10495
Jim Mattson712b12d2017-08-24 13:24:47 -070010496static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
10497 struct vmcs12 *vmcs12)
10498{
10499 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10500 return 0;
10501
10502 if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr))
10503 return -EINVAL;
10504
10505 return 0;
10506}
10507
Wincy Van3af18d92015-02-03 23:49:31 +080010508/*
10509 * Merge L0's and L1's MSR bitmap, return false to indicate that
10510 * we do not use the hardware.
10511 */
Paolo Bonzinic9923842017-12-13 14:16:30 +010010512static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
10513 struct vmcs12 *vmcs12)
Wincy Van3af18d92015-02-03 23:49:31 +080010514{
Wincy Van82f0dd42015-02-03 23:57:18 +080010515 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010516 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010517 unsigned long *msr_bitmap_l1;
Paolo Bonzini904e14f2018-01-16 16:51:18 +010010518 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.vmcs02.msr_bitmap;
Ashok Raj15d45072018-02-01 22:59:43 +010010519 /*
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010520 * pred_cmd & spec_ctrl are trying to verify two things:
Ashok Raj15d45072018-02-01 22:59:43 +010010521 *
10522 * 1. L0 gave a permission to L1 to actually passthrough the MSR. This
10523 * ensures that we do not accidentally generate an L02 MSR bitmap
10524 * from the L12 MSR bitmap that is too permissive.
10525 * 2. That L1 or L2s have actually used the MSR. This avoids
10526 * unnecessarily merging of the bitmap if the MSR is unused. This
10527 * works properly because we only update the L01 MSR bitmap lazily.
10528 * So even if L0 should pass L1 these MSRs, the L01 bitmap is only
10529 * updated to reflect this when L1 (or its L2s) actually write to
10530 * the MSR.
10531 */
KarimAllah Ahmed206587a2018-02-10 23:39:25 +000010532 bool pred_cmd = !msr_write_intercepted_l01(vcpu, MSR_IA32_PRED_CMD);
10533 bool spec_ctrl = !msr_write_intercepted_l01(vcpu, MSR_IA32_SPEC_CTRL);
Wincy Vanf2b93282015-02-03 23:56:03 +080010534
Paolo Bonzinic9923842017-12-13 14:16:30 +010010535 /* Nothing to do if the MSR bitmap is not in use. */
10536 if (!cpu_has_vmx_msr_bitmap() ||
10537 !nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
10538 return false;
10539
Ashok Raj15d45072018-02-01 22:59:43 +010010540 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010541 !pred_cmd && !spec_ctrl)
Wincy Vanf2b93282015-02-03 23:56:03 +080010542 return false;
10543
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010544 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10545 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010546 return false;
Paolo Bonzinic9923842017-12-13 14:16:30 +010010547
Radim Krčmářd048c092016-08-08 20:16:22 +020010548 msr_bitmap_l1 = (unsigned long *)kmap(page);
Paolo Bonzinic9923842017-12-13 14:16:30 +010010549 if (nested_cpu_has_apic_reg_virt(vmcs12)) {
10550 /*
10551 * L0 need not intercept reads for MSRs between 0x800 and 0x8ff, it
10552 * just lets the processor take the value from the virtual-APIC page;
10553 * take those 256 bits directly from the L1 bitmap.
10554 */
10555 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
10556 unsigned word = msr / BITS_PER_LONG;
10557 msr_bitmap_l0[word] = msr_bitmap_l1[word];
10558 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
Wincy Van608406e2015-02-03 23:57:51 +080010559 }
Paolo Bonzinic9923842017-12-13 14:16:30 +010010560 } else {
10561 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
10562 unsigned word = msr / BITS_PER_LONG;
10563 msr_bitmap_l0[word] = ~0;
10564 msr_bitmap_l0[word + (0x800 / sizeof(long))] = ~0;
10565 }
10566 }
10567
10568 nested_vmx_disable_intercept_for_msr(
10569 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010570 X2APIC_MSR(APIC_TASKPRI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010571 MSR_TYPE_W);
10572
10573 if (nested_cpu_has_vid(vmcs12)) {
10574 nested_vmx_disable_intercept_for_msr(
10575 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010576 X2APIC_MSR(APIC_EOI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010577 MSR_TYPE_W);
10578 nested_vmx_disable_intercept_for_msr(
10579 msr_bitmap_l1, msr_bitmap_l0,
Paolo Bonzinid7231e72017-12-21 00:47:55 +010010580 X2APIC_MSR(APIC_SELF_IPI),
Paolo Bonzinic9923842017-12-13 14:16:30 +010010581 MSR_TYPE_W);
Wincy Van82f0dd42015-02-03 23:57:18 +080010582 }
Ashok Raj15d45072018-02-01 22:59:43 +010010583
KarimAllah Ahmedd28b3872018-02-01 22:59:45 +010010584 if (spec_ctrl)
10585 nested_vmx_disable_intercept_for_msr(
10586 msr_bitmap_l1, msr_bitmap_l0,
10587 MSR_IA32_SPEC_CTRL,
10588 MSR_TYPE_R | MSR_TYPE_W);
10589
Ashok Raj15d45072018-02-01 22:59:43 +010010590 if (pred_cmd)
10591 nested_vmx_disable_intercept_for_msr(
10592 msr_bitmap_l1, msr_bitmap_l0,
10593 MSR_IA32_PRED_CMD,
10594 MSR_TYPE_W);
10595
Wincy Vanf2b93282015-02-03 23:56:03 +080010596 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010597 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010598
10599 return true;
10600}
10601
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040010602static int nested_vmx_check_apic_access_controls(struct kvm_vcpu *vcpu,
10603 struct vmcs12 *vmcs12)
10604{
10605 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
10606 !page_address_valid(vcpu, vmcs12->apic_access_addr))
10607 return -EINVAL;
10608 else
10609 return 0;
10610}
10611
Wincy Vanf2b93282015-02-03 23:56:03 +080010612static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
10613 struct vmcs12 *vmcs12)
10614{
Wincy Van82f0dd42015-02-03 23:57:18 +080010615 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080010616 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080010617 !nested_cpu_has_vid(vmcs12) &&
10618 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080010619 return 0;
10620
10621 /*
10622 * If virtualize x2apic mode is enabled,
10623 * virtualize apic access must be disabled.
10624 */
Wincy Van82f0dd42015-02-03 23:57:18 +080010625 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
10626 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080010627 return -EINVAL;
10628
Wincy Van608406e2015-02-03 23:57:51 +080010629 /*
10630 * If virtual interrupt delivery is enabled,
10631 * we must exit on external interrupts.
10632 */
10633 if (nested_cpu_has_vid(vmcs12) &&
10634 !nested_exit_on_intr(vcpu))
10635 return -EINVAL;
10636
Wincy Van705699a2015-02-03 23:58:17 +080010637 /*
10638 * bits 15:8 should be zero in posted_intr_nv,
10639 * the descriptor address has been already checked
10640 * in nested_get_vmcs12_pages.
10641 */
10642 if (nested_cpu_has_posted_intr(vmcs12) &&
10643 (!nested_cpu_has_vid(vmcs12) ||
10644 !nested_exit_intr_ack_set(vcpu) ||
10645 vmcs12->posted_intr_nv & 0xff00))
10646 return -EINVAL;
10647
Wincy Vanf2b93282015-02-03 23:56:03 +080010648 /* tpr shadow is needed by all apicv features. */
10649 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10650 return -EINVAL;
10651
10652 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010653}
10654
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010655static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10656 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010657 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010658{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010659 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010660 u64 count, addr;
10661
10662 if (vmcs12_read_any(vcpu, count_field, &count) ||
10663 vmcs12_read_any(vcpu, addr_field, &addr)) {
10664 WARN_ON(1);
10665 return -EINVAL;
10666 }
10667 if (count == 0)
10668 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010669 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010670 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10671 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010672 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010673 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10674 addr_field, maxphyaddr, count, addr);
10675 return -EINVAL;
10676 }
10677 return 0;
10678}
10679
10680static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10681 struct vmcs12 *vmcs12)
10682{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010683 if (vmcs12->vm_exit_msr_load_count == 0 &&
10684 vmcs12->vm_exit_msr_store_count == 0 &&
10685 vmcs12->vm_entry_msr_load_count == 0)
10686 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010687 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010688 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010689 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010690 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010691 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010692 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010693 return -EINVAL;
10694 return 0;
10695}
10696
Bandan Dasc5f983f2017-05-05 15:25:14 -040010697static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10698 struct vmcs12 *vmcs12)
10699{
10700 u64 address = vmcs12->pml_address;
10701 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10702
10703 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10704 if (!nested_cpu_has_ept(vmcs12) ||
10705 !IS_ALIGNED(address, 4096) ||
10706 address >> maxphyaddr)
10707 return -EINVAL;
10708 }
10709
10710 return 0;
10711}
10712
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010713static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10714 struct vmx_msr_entry *e)
10715{
10716 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010717 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010718 return -EINVAL;
10719 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10720 e->index == MSR_IA32_UCODE_REV)
10721 return -EINVAL;
10722 if (e->reserved != 0)
10723 return -EINVAL;
10724 return 0;
10725}
10726
10727static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10728 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010729{
10730 if (e->index == MSR_FS_BASE ||
10731 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010732 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10733 nested_vmx_msr_check_common(vcpu, e))
10734 return -EINVAL;
10735 return 0;
10736}
10737
10738static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10739 struct vmx_msr_entry *e)
10740{
10741 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10742 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010743 return -EINVAL;
10744 return 0;
10745}
10746
10747/*
10748 * Load guest's/host's msr at nested entry/exit.
10749 * return 0 for success, entry index for failure.
10750 */
10751static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10752{
10753 u32 i;
10754 struct vmx_msr_entry e;
10755 struct msr_data msr;
10756
10757 msr.host_initiated = false;
10758 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010759 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10760 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010761 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010762 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10763 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010764 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010765 }
10766 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010767 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010768 "%s check failed (%u, 0x%x, 0x%x)\n",
10769 __func__, i, e.index, e.reserved);
10770 goto fail;
10771 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010772 msr.index = e.index;
10773 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010774 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010775 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010776 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10777 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010778 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010779 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010780 }
10781 return 0;
10782fail:
10783 return i + 1;
10784}
10785
10786static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10787{
10788 u32 i;
10789 struct vmx_msr_entry e;
10790
10791 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010792 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010793 if (kvm_vcpu_read_guest(vcpu,
10794 gpa + i * sizeof(e),
10795 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010796 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010797 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10798 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010799 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010800 }
10801 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010802 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010803 "%s check failed (%u, 0x%x, 0x%x)\n",
10804 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010805 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010806 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010807 msr_info.host_initiated = false;
10808 msr_info.index = e.index;
10809 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010810 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010811 "%s cannot read MSR (%u, 0x%x)\n",
10812 __func__, i, e.index);
10813 return -EINVAL;
10814 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010815 if (kvm_vcpu_write_guest(vcpu,
10816 gpa + i * sizeof(e) +
10817 offsetof(struct vmx_msr_entry, value),
10818 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010819 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010820 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010821 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010822 return -EINVAL;
10823 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010824 }
10825 return 0;
10826}
10827
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010828static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10829{
10830 unsigned long invalid_mask;
10831
10832 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10833 return (val & invalid_mask) == 0;
10834}
10835
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010836/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010837 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10838 * emulating VM entry into a guest with EPT enabled.
10839 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10840 * is assigned to entry_failure_code on failure.
10841 */
10842static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010843 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010844{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010845 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010846 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010847 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10848 return 1;
10849 }
10850
10851 /*
10852 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10853 * must not be dereferenced.
10854 */
10855 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10856 !nested_ept) {
10857 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10858 *entry_failure_code = ENTRY_FAIL_PDPTE;
10859 return 1;
10860 }
10861 }
10862
10863 vcpu->arch.cr3 = cr3;
10864 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10865 }
10866
10867 kvm_mmu_reset_context(vcpu);
10868 return 0;
10869}
10870
Paolo Bonzini74a497f2017-12-20 13:55:39 +010010871static void prepare_vmcs02_full(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10872 bool from_vmentry)
10873{
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010010874 struct vcpu_vmx *vmx = to_vmx(vcpu);
10875
10876 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10877 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10878 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10879 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10880 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10881 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10882 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10883 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10884 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10885 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10886 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10887 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10888 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10889 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10890 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10891 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10892 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10893 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10894 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10895 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10896 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10897 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10898 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10899 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10900 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10901 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10902 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10903 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10904 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10905 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10906 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010010907
10908 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
10909 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10910 vmcs12->guest_pending_dbg_exceptions);
10911 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10912 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10913
10914 if (nested_cpu_has_xsaves(vmcs12))
10915 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
10916 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10917
10918 if (cpu_has_vmx_posted_intr())
10919 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
10920
10921 /*
10922 * Whether page-faults are trapped is determined by a combination of
10923 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10924 * If enable_ept, L0 doesn't care about page faults and we should
10925 * set all of these to L1's desires. However, if !enable_ept, L0 does
10926 * care about (at least some) page faults, and because it is not easy
10927 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10928 * to exit on each and every L2 page fault. This is done by setting
10929 * MASK=MATCH=0 and (see below) EB.PF=1.
10930 * Note that below we don't need special code to set EB.PF beyond the
10931 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10932 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10933 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
10934 */
10935 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10936 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10937 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10938 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10939
10940 /* All VMFUNCs are currently emulated through L0 vmexits. */
10941 if (cpu_has_vmx_vmfunc())
10942 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10943
10944 if (cpu_has_vmx_apicv()) {
10945 vmcs_write64(EOI_EXIT_BITMAP0, vmcs12->eoi_exit_bitmap0);
10946 vmcs_write64(EOI_EXIT_BITMAP1, vmcs12->eoi_exit_bitmap1);
10947 vmcs_write64(EOI_EXIT_BITMAP2, vmcs12->eoi_exit_bitmap2);
10948 vmcs_write64(EOI_EXIT_BITMAP3, vmcs12->eoi_exit_bitmap3);
10949 }
10950
10951 /*
10952 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10953 * Some constant fields are set here by vmx_set_constant_host_state().
10954 * Other fields are different per CPU, and will be set later when
10955 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10956 */
10957 vmx_set_constant_host_state(vmx);
10958
10959 /*
10960 * Set the MSR load/store lists to match L0's settings.
10961 */
10962 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10963 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10964 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10965 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10966 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10967
10968 set_cr4_guest_host_mask(vmx);
10969
10970 if (vmx_mpx_supported())
10971 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10972
10973 if (enable_vpid) {
10974 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02)
10975 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10976 else
10977 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10978 }
10979
10980 /*
10981 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10982 */
10983 if (enable_ept) {
10984 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10985 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10986 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10987 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10988 }
Radim Krčmář80132f42018-02-02 18:26:58 +010010989
10990 if (cpu_has_vmx_msr_bitmap())
10991 vmcs_write64(MSR_BITMAP, __pa(vmx->nested.vmcs02.msr_bitmap));
Paolo Bonzini74a497f2017-12-20 13:55:39 +010010992}
10993
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010994/*
10995 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10996 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010997 * 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 +030010998 * guest in a way that will both be appropriate to L1's requests, and our
10999 * needs. In addition to modifying the active vmcs (which is vmcs02), this
11000 * function also has additional necessary side-effects, like setting various
11001 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010011002 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
11003 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011004 */
Ladi Prosekee146c12016-11-30 16:03:09 +010011005static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080011006 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011007{
11008 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040011009 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011010
Sean Christopherson9d1887e2018-03-05 09:33:27 -080011011 if (vmx->nested.dirty_vmcs12) {
11012 prepare_vmcs02_full(vcpu, vmcs12, from_vmentry);
11013 vmx->nested.dirty_vmcs12 = false;
11014 }
11015
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011016 /*
11017 * First, the fields that are shadowed. This must be kept in sync
11018 * with vmx_shadow_fields.h.
11019 */
11020
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011021 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011022 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011023 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011024 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
11025 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
Paolo Bonzini8665c3f2017-12-20 13:56:53 +010011026
11027 /*
11028 * Not in vmcs02: GUEST_PML_INDEX, HOST_FS_SELECTOR, HOST_GS_SELECTOR,
11029 * HOST_FS_BASE, HOST_GS_BASE.
11030 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011031
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011032 if (from_vmentry &&
11033 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020011034 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
11035 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
11036 } else {
11037 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
11038 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
11039 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011040 if (from_vmentry) {
11041 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
11042 vmcs12->vm_entry_intr_info_field);
11043 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
11044 vmcs12->vm_entry_exception_error_code);
11045 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
11046 vmcs12->vm_entry_instruction_len);
11047 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
11048 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070011049 vmx->loaded_vmcs->nmi_known_unmasked =
11050 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011051 } else {
11052 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
11053 }
Gleb Natapov63fbf592013-07-28 18:31:06 +030011054 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011055
Jan Kiszkaf4124502014-03-07 20:03:13 +010011056 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080011057
Paolo Bonzini93140062016-07-06 13:23:51 +020011058 /* Preemption timer setting is only taken from vmcs01. */
11059 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
11060 exec_control |= vmcs_config.pin_based_exec_ctrl;
11061 if (vmx->hv_deadline_tsc == -1)
11062 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
11063
11064 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080011065 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080011066 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
11067 vmx->nested.pi_pending = false;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011068 } else {
Wincy Van705699a2015-02-03 23:58:17 +080011069 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011070 }
Wincy Van705699a2015-02-03 23:58:17 +080011071
Jan Kiszkaf4124502014-03-07 20:03:13 +010011072 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011073
Jan Kiszkaf4124502014-03-07 20:03:13 +010011074 vmx->nested.preemption_timer_expired = false;
11075 if (nested_cpu_has_preemption_timer(vmcs12))
11076 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010011077
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011078 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020011079 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080011080
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011081 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020011082 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020011083 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010011084 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020011085 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020011086 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040011087 SECONDARY_EXEC_APIC_REGISTER_VIRT |
11088 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011089 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040011090 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
11091 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
11092 ~SECONDARY_EXEC_ENABLE_PML;
11093 exec_control |= vmcs12_exec_ctrl;
11094 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011095
Paolo Bonzini25a2e4f2017-12-20 14:05:21 +010011096 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
Wincy Van608406e2015-02-03 23:57:51 +080011097 vmcs_write16(GUEST_INTR_STATUS,
11098 vmcs12->guest_intr_status);
Wincy Van608406e2015-02-03 23:57:51 +080011099
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011100 /*
11101 * Write an illegal value to APIC_ACCESS_ADDR. Later,
11102 * nested_get_vmcs12_pages will either fix it up or
11103 * remove the VM execution control.
11104 */
11105 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
11106 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
11107
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011108 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
11109 }
11110
Jim Mattson83bafef2016-10-04 10:48:38 -070011111 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011112 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
11113 * entry, but only if the current (host) sp changed from the value
11114 * we wrote last (vmx->host_rsp). This cache is no longer relevant
11115 * if we switch vmcs, and rather than hold a separate cache per vmcs,
11116 * here we just force the write to happen on entry.
11117 */
11118 vmx->host_rsp = 0;
11119
11120 exec_control = vmx_exec_control(vmx); /* L0's desires */
11121 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
11122 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
11123 exec_control &= ~CPU_BASED_TPR_SHADOW;
11124 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011125
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011126 /*
11127 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
11128 * nested_get_vmcs12_pages can't fix it up, the illegal value
11129 * will result in a VM entry failure.
11130 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011131 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080011132 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011133 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Jim Mattson51aa68e2017-09-12 13:02:54 -070011134 } else {
11135#ifdef CONFIG_X86_64
11136 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
11137 CPU_BASED_CR8_STORE_EXITING;
11138#endif
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011139 }
11140
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011141 /*
Quan Xu8eb73e22017-12-12 16:44:21 +080011142 * A vmexit (to either L1 hypervisor or L0 userspace) is always needed
11143 * for I/O port accesses.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011144 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011145 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
11146 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
11147
11148 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
11149
11150 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
11151 * bitwise-or of what L1 wants to trap for L2, and what we want to
11152 * trap. Note that CR0.TS also needs updating - we do this later.
11153 */
11154 update_exception_bitmap(vcpu);
11155 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
11156 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
11157
Nadav Har'El8049d652013-08-05 11:07:06 +030011158 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
11159 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
11160 * bits are further modified by vmx_set_efer() below.
11161 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010011162 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030011163
11164 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
11165 * emulated by vmx_set_efer(), below.
11166 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020011167 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030011168 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
11169 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011170 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
11171
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011172 if (from_vmentry &&
11173 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011174 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011175 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011176 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011177 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011178 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011179
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011180 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
11181
Peter Feinerc95ba922016-08-17 09:36:47 -070011182 if (kvm_has_tsc_control)
11183 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011184
11185 if (enable_vpid) {
11186 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070011187 * There is no direct mapping between vpid02 and vpid12, the
11188 * vpid02 is per-vCPU for L0 and reused while the value of
11189 * vpid12 is changed w/ one invvpid during nested vmentry.
11190 * The vpid12 is allocated by L1 for L2, so it will not
11191 * influence global bitmap(for vpid01 and vpid02 allocation)
11192 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011193 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070011194 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
Wanpeng Li5c614b32015-10-13 09:18:36 -070011195 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
11196 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080011197 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070011198 }
11199 } else {
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080011200 vmx_flush_tlb(vcpu, true);
Wanpeng Li5c614b32015-10-13 09:18:36 -070011201 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011202 }
11203
Ladi Prosek1fb883b2017-04-04 14:18:53 +020011204 if (enable_pml) {
11205 /*
11206 * Conceptually we want to copy the PML address and index from
11207 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
11208 * since we always flush the log on each vmexit, this happens
11209 * to be equivalent to simply resetting the fields in vmcs02.
11210 */
11211 ASSERT(vmx->pml_pg);
11212 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
11213 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
11214 }
11215
Nadav Har'El155a97a2013-08-05 11:07:16 +030011216 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020011217 if (nested_ept_init_mmu_context(vcpu)) {
11218 *entry_failure_code = ENTRY_FAIL_DEFAULT;
11219 return 1;
11220 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011221 } else if (nested_cpu_has2(vmcs12,
11222 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11223 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011224 }
11225
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011226 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011227 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
11228 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011229 * The CR0_READ_SHADOW is what L2 should have expected to read given
11230 * the specifications by L1; It's not enough to take
11231 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
11232 * have more bits than L1 expected.
11233 */
11234 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
11235 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
11236
11237 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
11238 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
11239
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011240 if (from_vmentry &&
11241 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080011242 vcpu->arch.efer = vmcs12->guest_ia32_efer;
11243 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
11244 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11245 else
11246 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11247 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
11248 vmx_set_efer(vcpu, vcpu->arch.efer);
11249
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011250 /*
11251 * Guest state is invalid and unrestricted guest is disabled,
11252 * which means L1 attempted VMEntry to L2 with invalid state.
11253 * Fail the VMEntry.
11254 */
Paolo Bonzini3184a992018-03-21 14:20:18 +010011255 if (vmx->emulation_required) {
11256 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011257 return 1;
Paolo Bonzini3184a992018-03-21 14:20:18 +010011258 }
Sean Christopherson2bb8caf2018-03-12 10:56:13 -070011259
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011260 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010011261 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010011262 entry_failure_code))
11263 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010011264
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011265 if (!enable_ept)
11266 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
11267
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011268 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
11269 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010011270 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030011271}
11272
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050011273static int nested_vmx_check_nmi_controls(struct vmcs12 *vmcs12)
11274{
11275 if (!nested_cpu_has_nmi_exiting(vmcs12) &&
11276 nested_cpu_has_virtual_nmis(vmcs12))
11277 return -EINVAL;
11278
11279 if (!nested_cpu_has_virtual_nmis(vmcs12) &&
11280 nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING))
11281 return -EINVAL;
11282
11283 return 0;
11284}
11285
Jim Mattsonca0bde22016-11-30 12:03:46 -080011286static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11287{
11288 struct vcpu_vmx *vmx = to_vmx(vcpu);
11289
11290 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
11291 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
11292 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11293
Jim Mattson56a20512017-07-06 16:33:06 -070011294 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
11295 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11296
Jim Mattsonca0bde22016-11-30 12:03:46 -080011297 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
11298 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11299
Krish Sadhukhanf0f4cf52018-04-11 01:10:16 -040011300 if (nested_vmx_check_apic_access_controls(vcpu, vmcs12))
11301 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11302
Jim Mattson712b12d2017-08-24 13:24:47 -070011303 if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12))
11304 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11305
Jim Mattsonca0bde22016-11-30 12:03:46 -080011306 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
11307 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11308
11309 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
11310 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11311
Bandan Dasc5f983f2017-05-05 15:25:14 -040011312 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
11313 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11314
Jim Mattsonca0bde22016-11-30 12:03:46 -080011315 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011316 vmx->nested.msrs.procbased_ctls_low,
11317 vmx->nested.msrs.procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070011318 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
11319 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011320 vmx->nested.msrs.secondary_ctls_low,
11321 vmx->nested.msrs.secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011322 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011323 vmx->nested.msrs.pinbased_ctls_low,
11324 vmx->nested.msrs.pinbased_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011325 !vmx_control_verify(vmcs12->vm_exit_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011326 vmx->nested.msrs.exit_ctls_low,
11327 vmx->nested.msrs.exit_ctls_high) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080011328 !vmx_control_verify(vmcs12->vm_entry_controls,
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011329 vmx->nested.msrs.entry_ctls_low,
11330 vmx->nested.msrs.entry_ctls_high))
Jim Mattsonca0bde22016-11-30 12:03:46 -080011331 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11332
Krish Sadhukhan0c7f6502018-02-20 21:24:39 -050011333 if (nested_vmx_check_nmi_controls(vmcs12))
Jim Mattsonca0bde22016-11-30 12:03:46 -080011334 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11335
Bandan Das41ab9372017-08-03 15:54:43 -040011336 if (nested_cpu_has_vmfunc(vmcs12)) {
11337 if (vmcs12->vm_function_control &
Paolo Bonzini6677f3d2018-02-26 13:40:08 +010011338 ~vmx->nested.msrs.vmfunc_controls)
Bandan Das41ab9372017-08-03 15:54:43 -040011339 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11340
11341 if (nested_cpu_has_eptp_switching(vmcs12)) {
11342 if (!nested_cpu_has_ept(vmcs12) ||
11343 !page_address_valid(vcpu, vmcs12->eptp_list_address))
11344 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11345 }
11346 }
Bandan Das27c42a12017-08-03 15:54:42 -040011347
Jim Mattsonc7c2c702017-05-05 11:28:09 -070011348 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
11349 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
11350
Jim Mattsonca0bde22016-11-30 12:03:46 -080011351 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
11352 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
11353 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
11354 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
11355
11356 return 0;
11357}
11358
11359static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11360 u32 *exit_qual)
11361{
11362 bool ia32e;
11363
11364 *exit_qual = ENTRY_FAIL_DEFAULT;
11365
11366 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
11367 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
11368 return 1;
11369
11370 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
11371 vmcs12->vmcs_link_pointer != -1ull) {
11372 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
11373 return 1;
11374 }
11375
11376 /*
11377 * If the load IA32_EFER VM-entry control is 1, the following checks
11378 * are performed on the field for the IA32_EFER MSR:
11379 * - Bits reserved in the IA32_EFER MSR must be 0.
11380 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
11381 * the IA-32e mode guest VM-exit control. It must also be identical
11382 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
11383 * CR0.PG) is 1.
11384 */
11385 if (to_vmx(vcpu)->nested.nested_run_pending &&
11386 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
11387 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
11388 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
11389 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
11390 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
11391 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
11392 return 1;
11393 }
11394
11395 /*
11396 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
11397 * IA32_EFER MSR must be 0 in the field for that register. In addition,
11398 * the values of the LMA and LME bits in the field must each be that of
11399 * the host address-space size VM-exit control.
11400 */
11401 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
11402 ia32e = (vmcs12->vm_exit_controls &
11403 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
11404 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
11405 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
11406 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
11407 return 1;
11408 }
11409
Wanpeng Lif1b026a2017-11-05 16:54:48 -080011410 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) &&
11411 (is_noncanonical_address(vmcs12->guest_bndcfgs & PAGE_MASK, vcpu) ||
11412 (vmcs12->guest_bndcfgs & MSR_IA32_BNDCFGS_RSVD)))
11413 return 1;
11414
Jim Mattsonca0bde22016-11-30 12:03:46 -080011415 return 0;
11416}
11417
Jim Mattson858e25c2016-11-30 12:03:47 -080011418static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
11419{
11420 struct vcpu_vmx *vmx = to_vmx(vcpu);
11421 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattson858e25c2016-11-30 12:03:47 -080011422 u32 msr_entry_idx;
11423 u32 exit_qual;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011424 int r;
Jim Mattson858e25c2016-11-30 12:03:47 -080011425
Jim Mattson858e25c2016-11-30 12:03:47 -080011426 enter_guest_mode(vcpu);
11427
11428 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
11429 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11430
Jim Mattsonde3a0022017-11-27 17:22:25 -060011431 vmx_switch_vmcs(vcpu, &vmx->nested.vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080011432 vmx_segment_cache_clear(vmx);
11433
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011434 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
11435 vcpu->arch.tsc_offset += vmcs12->tsc_offset;
11436
11437 r = EXIT_REASON_INVALID_STATE;
11438 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual))
11439 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080011440
11441 nested_get_vmcs12_pages(vcpu, vmcs12);
11442
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011443 r = EXIT_REASON_MSR_LOAD_FAIL;
Jim Mattson858e25c2016-11-30 12:03:47 -080011444 msr_entry_idx = nested_vmx_load_msr(vcpu,
11445 vmcs12->vm_entry_msr_load_addr,
11446 vmcs12->vm_entry_msr_load_count);
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011447 if (msr_entry_idx)
11448 goto fail;
Jim Mattson858e25c2016-11-30 12:03:47 -080011449
Jim Mattson858e25c2016-11-30 12:03:47 -080011450 /*
11451 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
11452 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
11453 * returned as far as L1 is concerned. It will only return (and set
11454 * the success flag) when L2 exits (see nested_vmx_vmexit()).
11455 */
11456 return 0;
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020011457
11458fail:
11459 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
11460 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
11461 leave_guest_mode(vcpu);
11462 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
11463 nested_vmx_entry_failure(vcpu, vmcs12, r, exit_qual);
11464 return 1;
Jim Mattson858e25c2016-11-30 12:03:47 -080011465}
11466
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011467/*
11468 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
11469 * for running an L2 nested guest.
11470 */
11471static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
11472{
11473 struct vmcs12 *vmcs12;
11474 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070011475 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080011476 u32 exit_qual;
11477 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011478
Kyle Hueyeb277562016-11-29 12:40:39 -080011479 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011480 return 1;
11481
Kyle Hueyeb277562016-11-29 12:40:39 -080011482 if (!nested_vmx_check_vmcs12(vcpu))
11483 goto out;
11484
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011485 vmcs12 = get_vmcs12(vcpu);
11486
Abel Gordon012f83c2013-04-18 14:39:25 +030011487 if (enable_shadow_vmcs)
11488 copy_shadow_to_vmcs12(vmx);
11489
Nadav Har'El7c177932011-05-25 23:12:04 +030011490 /*
11491 * The nested entry process starts with enforcing various prerequisites
11492 * on vmcs12 as required by the Intel SDM, and act appropriately when
11493 * they fail: As the SDM explains, some conditions should cause the
11494 * instruction to fail, while others will cause the instruction to seem
11495 * to succeed, but return an EXIT_REASON_INVALID_STATE.
11496 * To speed up the normal (success) code path, we should avoid checking
11497 * for misconfigurations which will anyway be caught by the processor
11498 * when using the merged vmcs02.
11499 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070011500 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
11501 nested_vmx_failValid(vcpu,
11502 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
11503 goto out;
11504 }
11505
Nadav Har'El7c177932011-05-25 23:12:04 +030011506 if (vmcs12->launch_state == launch) {
11507 nested_vmx_failValid(vcpu,
11508 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
11509 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080011510 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030011511 }
11512
Jim Mattsonca0bde22016-11-30 12:03:46 -080011513 ret = check_vmentry_prereqs(vcpu, vmcs12);
11514 if (ret) {
11515 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080011516 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020011517 }
11518
Nadav Har'El7c177932011-05-25 23:12:04 +030011519 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080011520 * After this point, the trap flag no longer triggers a singlestep trap
11521 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
11522 * This is not 100% correct; for performance reasons, we delegate most
11523 * of the checks on host state to the processor. If those fail,
11524 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020011525 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080011526 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020011527
Jim Mattsonca0bde22016-11-30 12:03:46 -080011528 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
11529 if (ret) {
11530 nested_vmx_entry_failure(vcpu, vmcs12,
11531 EXIT_REASON_INVALID_STATE, exit_qual);
11532 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020011533 }
11534
11535 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030011536 * We're finally done with prerequisite checking, and can start with
11537 * the nested entry.
11538 */
11539
Jim Mattson858e25c2016-11-30 12:03:47 -080011540 ret = enter_vmx_non_root_mode(vcpu, true);
11541 if (ret)
11542 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030011543
Chao Gao135a06c2018-02-11 10:06:30 +080011544 /*
11545 * If we're entering a halted L2 vcpu and the L2 vcpu won't be woken
11546 * by event injection, halt vcpu.
11547 */
11548 if ((vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) &&
11549 !(vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK))
Joel Schopp5cb56052015-03-02 13:43:31 -060011550 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010011551
Jan Kiszka7af40ad32014-01-04 18:47:23 +010011552 vmx->nested.nested_run_pending = 1;
11553
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011554 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080011555
11556out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080011557 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030011558}
11559
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011560/*
11561 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
11562 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
11563 * This function returns the new value we should put in vmcs12.guest_cr0.
11564 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
11565 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
11566 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
11567 * didn't trap the bit, because if L1 did, so would L0).
11568 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
11569 * been modified by L2, and L1 knows it. So just leave the old value of
11570 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
11571 * isn't relevant, because if L0 traps this bit it can set it to anything.
11572 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
11573 * changed these bits, and therefore they need to be updated, but L0
11574 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
11575 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
11576 */
11577static inline unsigned long
11578vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11579{
11580 return
11581 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
11582 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
11583 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
11584 vcpu->arch.cr0_guest_owned_bits));
11585}
11586
11587static inline unsigned long
11588vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
11589{
11590 return
11591 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
11592 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
11593 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
11594 vcpu->arch.cr4_guest_owned_bits));
11595}
11596
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011597static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
11598 struct vmcs12 *vmcs12)
11599{
11600 u32 idt_vectoring;
11601 unsigned int nr;
11602
Wanpeng Li664f8e22017-08-24 03:35:09 -070011603 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011604 nr = vcpu->arch.exception.nr;
11605 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11606
11607 if (kvm_exception_is_soft(nr)) {
11608 vmcs12->vm_exit_instruction_len =
11609 vcpu->arch.event_exit_inst_len;
11610 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
11611 } else
11612 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
11613
11614 if (vcpu->arch.exception.has_error_code) {
11615 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
11616 vmcs12->idt_vectoring_error_code =
11617 vcpu->arch.exception.error_code;
11618 }
11619
11620 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010011621 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011622 vmcs12->idt_vectoring_info_field =
11623 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
Liran Alon04140b42018-03-23 03:01:31 +030011624 } else if (vcpu->arch.interrupt.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011625 nr = vcpu->arch.interrupt.nr;
11626 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
11627
11628 if (vcpu->arch.interrupt.soft) {
11629 idt_vectoring |= INTR_TYPE_SOFT_INTR;
11630 vmcs12->vm_entry_instruction_len =
11631 vcpu->arch.event_exit_inst_len;
11632 } else
11633 idt_vectoring |= INTR_TYPE_EXT_INTR;
11634
11635 vmcs12->idt_vectoring_info_field = idt_vectoring;
11636 }
11637}
11638
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011639static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
11640{
11641 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011642 unsigned long exit_qual;
Liran Alon917dc602017-11-05 16:07:43 +020011643 bool block_nested_events =
11644 vmx->nested.nested_run_pending || kvm_event_needs_reinjection(vcpu);
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011645
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011646 if (vcpu->arch.exception.pending &&
11647 nested_vmx_check_exception(vcpu, &exit_qual)) {
Liran Alon917dc602017-11-05 16:07:43 +020011648 if (block_nested_events)
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011649 return -EBUSY;
11650 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011651 return 0;
11652 }
11653
Jan Kiszkaf4124502014-03-07 20:03:13 +010011654 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
11655 vmx->nested.preemption_timer_expired) {
Liran Alon917dc602017-11-05 16:07:43 +020011656 if (block_nested_events)
Jan Kiszkaf4124502014-03-07 20:03:13 +010011657 return -EBUSY;
11658 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
11659 return 0;
11660 }
11661
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011662 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020011663 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011664 return -EBUSY;
11665 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11666 NMI_VECTOR | INTR_TYPE_NMI_INTR |
11667 INTR_INFO_VALID_MASK, 0);
11668 /*
11669 * The NMI-triggered VM exit counts as injection:
11670 * clear this one and block further NMIs.
11671 */
11672 vcpu->arch.nmi_pending = 0;
11673 vmx_set_nmi_mask(vcpu, true);
11674 return 0;
11675 }
11676
11677 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
11678 nested_exit_on_intr(vcpu)) {
Liran Alon917dc602017-11-05 16:07:43 +020011679 if (block_nested_events)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011680 return -EBUSY;
11681 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080011682 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011683 }
11684
David Hildenbrand6342c502017-01-25 11:58:58 +010011685 vmx_complete_nested_posted_interrupt(vcpu);
11686 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011687}
11688
Jan Kiszkaf4124502014-03-07 20:03:13 +010011689static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
11690{
11691 ktime_t remaining =
11692 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
11693 u64 value;
11694
11695 if (ktime_to_ns(remaining) <= 0)
11696 return 0;
11697
11698 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
11699 do_div(value, 1000000);
11700 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11701}
11702
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011703/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011704 * Update the guest state fields of vmcs12 to reflect changes that
11705 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
11706 * VM-entry controls is also updated, since this is really a guest
11707 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011708 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011709static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011710{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011711 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11712 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11713
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011714 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11715 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11716 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11717
11718 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11719 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11720 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11721 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11722 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11723 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11724 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11725 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11726 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11727 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11728 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11729 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11730 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11731 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11732 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11733 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11734 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11735 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11736 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11737 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11738 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11739 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11740 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11741 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11742 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11743 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11744 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11745 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11746 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11747 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11748 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11749 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11750 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11751 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11752 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11753 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11754
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011755 vmcs12->guest_interruptibility_info =
11756 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11757 vmcs12->guest_pending_dbg_exceptions =
11758 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011759 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11760 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11761 else
11762 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011763
Jan Kiszkaf4124502014-03-07 20:03:13 +010011764 if (nested_cpu_has_preemption_timer(vmcs12)) {
11765 if (vmcs12->vm_exit_controls &
11766 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11767 vmcs12->vmx_preemption_timer_value =
11768 vmx_get_preemption_timer_value(vcpu);
11769 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11770 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011771
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011772 /*
11773 * In some cases (usually, nested EPT), L2 is allowed to change its
11774 * own CR3 without exiting. If it has changed it, we must keep it.
11775 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11776 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11777 *
11778 * Additionally, restore L2's PDPTR to vmcs12.
11779 */
11780 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011781 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011782 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11783 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11784 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11785 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11786 }
11787
Jim Mattsond281e132017-06-01 12:44:46 -070011788 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011789
Wincy Van608406e2015-02-03 23:57:51 +080011790 if (nested_cpu_has_vid(vmcs12))
11791 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11792
Jan Kiszkac18911a2013-03-13 16:06:41 +010011793 vmcs12->vm_entry_controls =
11794 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011795 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011796
Jan Kiszka2996fca2014-06-16 13:59:43 +020011797 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11798 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11799 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11800 }
11801
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011802 /* TODO: These cannot have changed unless we have MSR bitmaps and
11803 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011804 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011805 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011806 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11807 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011808 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11809 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11810 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011811 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011812 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011813}
11814
11815/*
11816 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11817 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11818 * and this function updates it to reflect the changes to the guest state while
11819 * L2 was running (and perhaps made some exits which were handled directly by L0
11820 * without going back to L1), and to reflect the exit reason.
11821 * Note that we do not have to copy here all VMCS fields, just those that
11822 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11823 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11824 * which already writes to vmcs12 directly.
11825 */
11826static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11827 u32 exit_reason, u32 exit_intr_info,
11828 unsigned long exit_qualification)
11829{
11830 /* update guest state fields: */
11831 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011832
11833 /* update exit information fields: */
11834
Jan Kiszka533558b2014-01-04 18:47:20 +010011835 vmcs12->vm_exit_reason = exit_reason;
11836 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011837 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011838
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011839 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011840 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11841 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11842
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011843 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011844 vmcs12->launch_state = 1;
11845
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011846 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11847 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011848 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011849
11850 /*
11851 * Transfer the event that L0 or L1 may wanted to inject into
11852 * L2 to IDT_VECTORING_INFO_FIELD.
11853 */
11854 vmcs12_save_pending_event(vcpu, vmcs12);
11855 }
11856
11857 /*
11858 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11859 * preserved above and would only end up incorrectly in L1.
11860 */
11861 vcpu->arch.nmi_injected = false;
11862 kvm_clear_exception_queue(vcpu);
11863 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011864}
11865
Wanpeng Li5af41572017-11-05 16:54:49 -080011866static void load_vmcs12_mmu_host_state(struct kvm_vcpu *vcpu,
11867 struct vmcs12 *vmcs12)
11868{
11869 u32 entry_failure_code;
11870
11871 nested_ept_uninit_mmu_context(vcpu);
11872
11873 /*
11874 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11875 * couldn't have changed.
11876 */
11877 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11878 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
11879
11880 if (!enable_ept)
11881 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11882}
11883
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011884/*
11885 * A part of what we need to when the nested L2 guest exits and we want to
11886 * run its L1 parent, is to reset L1's guest state to the host state specified
11887 * in vmcs12.
11888 * This function is to be called not only on normal nested exit, but also on
11889 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11890 * Failures During or After Loading Guest State").
11891 * This function should be called when the active VMCS is L1's (vmcs01).
11892 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011893static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11894 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011895{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011896 struct kvm_segment seg;
11897
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011898 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11899 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011900 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011901 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11902 else
11903 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11904 vmx_set_efer(vcpu, vcpu->arch.efer);
11905
11906 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11907 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011908 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011909 /*
11910 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011911 * actually changed, because vmx_set_cr0 refers to efer set above.
11912 *
11913 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11914 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011915 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011916 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011917 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011918
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011919 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011920 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
Haozhong Zhang8eb3f872017-10-10 15:01:22 +080011921 vmx_set_cr4(vcpu, vmcs12->host_cr4);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011922
Wanpeng Li5af41572017-11-05 16:54:49 -080011923 load_vmcs12_mmu_host_state(vcpu, vmcs12);
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011924
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011925 if (enable_vpid) {
11926 /*
11927 * Trivially support vpid by letting L2s share their parent
11928 * L1's vpid. TODO: move to a more elaborate solution, giving
11929 * each L2 its own vpid and exposing the vpid feature to L1.
11930 */
Wanpeng Lic2ba05c2017-12-12 17:33:03 -080011931 vmx_flush_tlb(vcpu, true);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011932 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011933
11934 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11935 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11936 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11937 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11938 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Ladi Prosek21f2d552017-10-11 16:54:42 +020011939 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
11940 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011941
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011942 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11943 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11944 vmcs_write64(GUEST_BNDCFGS, 0);
11945
Jan Kiszka44811c02013-08-04 17:17:27 +020011946 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011947 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011948 vcpu->arch.pat = vmcs12->host_ia32_pat;
11949 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011950 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11951 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11952 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011953
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011954 /* Set L1 segment info according to Intel SDM
11955 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11956 seg = (struct kvm_segment) {
11957 .base = 0,
11958 .limit = 0xFFFFFFFF,
11959 .selector = vmcs12->host_cs_selector,
11960 .type = 11,
11961 .present = 1,
11962 .s = 1,
11963 .g = 1
11964 };
11965 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11966 seg.l = 1;
11967 else
11968 seg.db = 1;
11969 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11970 seg = (struct kvm_segment) {
11971 .base = 0,
11972 .limit = 0xFFFFFFFF,
11973 .type = 3,
11974 .present = 1,
11975 .s = 1,
11976 .db = 1,
11977 .g = 1
11978 };
11979 seg.selector = vmcs12->host_ds_selector;
11980 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11981 seg.selector = vmcs12->host_es_selector;
11982 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11983 seg.selector = vmcs12->host_ss_selector;
11984 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11985 seg.selector = vmcs12->host_fs_selector;
11986 seg.base = vmcs12->host_fs_base;
11987 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11988 seg.selector = vmcs12->host_gs_selector;
11989 seg.base = vmcs12->host_gs_base;
11990 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11991 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011992 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011993 .limit = 0x67,
11994 .selector = vmcs12->host_tr_selector,
11995 .type = 11,
11996 .present = 1
11997 };
11998 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11999
Jan Kiszka503cd0c2013-03-03 13:05:44 +010012000 kvm_set_dr(vcpu, 7, 0x400);
12001 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030012002
Wincy Van3af18d92015-02-03 23:49:31 +080012003 if (cpu_has_vmx_msr_bitmap())
Paolo Bonzini904e14f2018-01-16 16:51:18 +010012004 vmx_update_msr_bitmap(vcpu);
Wincy Van3af18d92015-02-03 23:49:31 +080012005
Wincy Vanff651cb2014-12-11 08:52:58 +030012006 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
12007 vmcs12->vm_exit_msr_load_count))
12008 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012009}
12010
12011/*
12012 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
12013 * and modify vmcs12 to make it see what it would expect to see there if
12014 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
12015 */
Jan Kiszka533558b2014-01-04 18:47:20 +010012016static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
12017 u32 exit_intr_info,
12018 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012019{
12020 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012021 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
12022
Jan Kiszka5f3d5792013-04-14 12:12:46 +020012023 /* trying to cancel vmlaunch/vmresume is a bug */
12024 WARN_ON_ONCE(vmx->nested.nested_run_pending);
12025
Wanpeng Li6550c4d2017-07-31 19:25:27 -070012026 /*
Jim Mattson4f350c62017-09-14 16:31:44 -070012027 * The only expected VM-instruction error is "VM entry with
12028 * invalid control field(s)." Anything else indicates a
12029 * problem with L0.
Wanpeng Li6550c4d2017-07-31 19:25:27 -070012030 */
Jim Mattson4f350c62017-09-14 16:31:44 -070012031 WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) !=
12032 VMXERR_ENTRY_INVALID_CONTROL_FIELD));
12033
12034 leave_guest_mode(vcpu);
12035
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012036 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
12037 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
12038
Jim Mattson4f350c62017-09-14 16:31:44 -070012039 if (likely(!vmx->fail)) {
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012040 if (exit_reason == -1)
12041 sync_vmcs12(vcpu, vmcs12);
12042 else
12043 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
12044 exit_qualification);
Jim Mattson4f350c62017-09-14 16:31:44 -070012045
12046 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
12047 vmcs12->vm_exit_msr_store_count))
12048 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Bandan Das77b0f5d2014-04-19 18:17:45 -040012049 }
12050
Jim Mattson4f350c62017-09-14 16:31:44 -070012051 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Paolo Bonzini8391ce42016-07-07 14:58:33 +020012052 vm_entry_controls_reset_shadow(vmx);
12053 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010012054 vmx_segment_cache_clear(vmx);
12055
Paolo Bonzini93140062016-07-06 13:23:51 +020012056 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070012057 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
12058 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010012059 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020012060 if (vmx->hv_deadline_tsc == -1)
12061 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
12062 PIN_BASED_VMX_PREEMPTION_TIMER);
12063 else
12064 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
12065 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070012066 if (kvm_has_tsc_control)
12067 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012068
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020012069 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
12070 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
12071 vmx_set_virtual_x2apic_mode(vcpu,
12072 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070012073 } else if (!nested_cpu_has_ept(vmcs12) &&
12074 nested_cpu_has2(vmcs12,
12075 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
12076 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020012077 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012078
12079 /* This is needed for same reason as it was needed in prepare_vmcs02 */
12080 vmx->host_rsp = 0;
12081
12082 /* Unpin physical memory we referred to in vmcs02 */
12083 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020012084 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012085 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012086 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012087 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020012088 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012089 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080012090 }
Wincy Van705699a2015-02-03 23:58:17 +080012091 if (vmx->nested.pi_desc_page) {
12092 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020012093 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080012094 vmx->nested.pi_desc_page = NULL;
12095 vmx->nested.pi_desc = NULL;
12096 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012097
12098 /*
Tang Chen38b99172014-09-24 15:57:54 +080012099 * We are now running in L2, mmu_notifier will force to reload the
12100 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
12101 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080012102 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080012103
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012104 if (enable_shadow_vmcs && exit_reason != -1)
Abel Gordon012f83c2013-04-18 14:39:25 +030012105 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012106
12107 /* in case we halted in L2 */
12108 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Jim Mattson4f350c62017-09-14 16:31:44 -070012109
12110 if (likely(!vmx->fail)) {
12111 /*
12112 * TODO: SDM says that with acknowledge interrupt on
12113 * exit, bit 31 of the VM-exit interrupt information
12114 * (valid interrupt) is always set to 1 on
12115 * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't
12116 * need kvm_cpu_has_interrupt(). See the commit
12117 * message for details.
12118 */
12119 if (nested_exit_intr_ack_set(vcpu) &&
12120 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
12121 kvm_cpu_has_interrupt(vcpu)) {
12122 int irq = kvm_cpu_get_interrupt(vcpu);
12123 WARN_ON(irq < 0);
12124 vmcs12->vm_exit_intr_info = irq |
12125 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
12126 }
12127
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012128 if (exit_reason != -1)
12129 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
12130 vmcs12->exit_qualification,
12131 vmcs12->idt_vectoring_info_field,
12132 vmcs12->vm_exit_intr_info,
12133 vmcs12->vm_exit_intr_error_code,
12134 KVM_ISA_VMX);
Jim Mattson4f350c62017-09-14 16:31:44 -070012135
12136 load_vmcs12_host_state(vcpu, vmcs12);
12137
12138 return;
12139 }
12140
12141 /*
12142 * After an early L2 VM-entry failure, we're now back
12143 * in L1 which thinks it just finished a VMLAUNCH or
12144 * VMRESUME instruction, so we need to set the failure
12145 * flag and the VM-instruction error field of the VMCS
12146 * accordingly.
12147 */
12148 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Wanpeng Li5af41572017-11-05 16:54:49 -080012149
12150 load_vmcs12_mmu_host_state(vcpu, vmcs12);
12151
Jim Mattson4f350c62017-09-14 16:31:44 -070012152 /*
12153 * The emulated instruction was already skipped in
12154 * nested_vmx_run, but the updated RIP was never
12155 * written back to the vmcs01.
12156 */
12157 skip_emulated_instruction(vcpu);
12158 vmx->fail = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030012159}
12160
Nadav Har'El7c177932011-05-25 23:12:04 +030012161/*
Jan Kiszka42124922014-01-04 18:47:19 +010012162 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
12163 */
12164static void vmx_leave_nested(struct kvm_vcpu *vcpu)
12165{
Wanpeng Li2f707d92017-03-06 04:03:28 -080012166 if (is_guest_mode(vcpu)) {
12167 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010012168 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080012169 }
Jan Kiszka42124922014-01-04 18:47:19 +010012170 free_nested(to_vmx(vcpu));
12171}
12172
12173/*
Nadav Har'El7c177932011-05-25 23:12:04 +030012174 * L1's failure to enter L2 is a subset of a normal exit, as explained in
12175 * 23.7 "VM-entry failures during or after loading guest state" (this also
12176 * lists the acceptable exit-reason and exit-qualification parameters).
12177 * It should only be called before L2 actually succeeded to run, and when
12178 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
12179 */
12180static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
12181 struct vmcs12 *vmcs12,
12182 u32 reason, unsigned long qualification)
12183{
12184 load_vmcs12_host_state(vcpu, vmcs12);
12185 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
12186 vmcs12->exit_qualification = qualification;
12187 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030012188 if (enable_shadow_vmcs)
12189 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030012190}
12191
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012192static int vmx_check_intercept(struct kvm_vcpu *vcpu,
12193 struct x86_instruction_info *info,
12194 enum x86_intercept_stage stage)
12195{
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +020012196 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
12197 struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt;
12198
12199 /*
12200 * RDPID causes #UD if disabled through secondary execution controls.
12201 * Because it is marked as EmulateOnUD, we need to intercept it here.
12202 */
12203 if (info->intercept == x86_intercept_rdtscp &&
12204 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDTSCP)) {
12205 ctxt->exception.vector = UD_VECTOR;
12206 ctxt->exception.error_code_valid = false;
12207 return X86EMUL_PROPAGATE_FAULT;
12208 }
12209
12210 /* TODO: check more intercepts... */
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012211 return X86EMUL_CONTINUE;
12212}
12213
Yunhong Jiang64672c92016-06-13 14:19:59 -070012214#ifdef CONFIG_X86_64
12215/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
12216static inline int u64_shl_div_u64(u64 a, unsigned int shift,
12217 u64 divisor, u64 *result)
12218{
12219 u64 low = a << shift, high = a >> (64 - shift);
12220
12221 /* To avoid the overflow on divq */
12222 if (high >= divisor)
12223 return 1;
12224
12225 /* Low hold the result, high hold rem which is discarded */
12226 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
12227 "rm" (divisor), "0" (low), "1" (high));
12228 *result = low;
12229
12230 return 0;
12231}
12232
12233static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
12234{
KarimAllah Ahmed386c6dd2018-04-10 14:15:46 +020012235 struct vcpu_vmx *vmx;
12236 u64 tscl, guest_tscl, delta_tsc;
12237
12238 if (kvm_mwait_in_guest(vcpu->kvm))
12239 return -EOPNOTSUPP;
12240
12241 vmx = to_vmx(vcpu);
12242 tscl = rdtsc();
12243 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
12244 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070012245
12246 /* Convert to host delta tsc if tsc scaling is enabled */
12247 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
12248 u64_shl_div_u64(delta_tsc,
12249 kvm_tsc_scaling_ratio_frac_bits,
12250 vcpu->arch.tsc_scaling_ratio,
12251 &delta_tsc))
12252 return -ERANGE;
12253
12254 /*
12255 * If the delta tsc can't fit in the 32 bit after the multi shift,
12256 * we can't use the preemption timer.
12257 * It's possible that it fits on later vmentries, but checking
12258 * on every vmentry is costly so we just use an hrtimer.
12259 */
12260 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
12261 return -ERANGE;
12262
12263 vmx->hv_deadline_tsc = tscl + delta_tsc;
12264 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
12265 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070012266
12267 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070012268}
12269
12270static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
12271{
12272 struct vcpu_vmx *vmx = to_vmx(vcpu);
12273 vmx->hv_deadline_tsc = -1;
12274 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
12275 PIN_BASED_VMX_PREEMPTION_TIMER);
12276}
12277#endif
12278
Paolo Bonzini48d89b92014-08-26 13:27:46 +020012279static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012280{
Wanpeng Lib31c1142018-03-12 04:53:04 -070012281 if (!kvm_pause_in_guest(vcpu->kvm))
Radim Krčmářb4a2d312014-08-21 18:08:08 +020012282 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012283}
12284
Kai Huang843e4332015-01-28 10:54:28 +080012285static void vmx_slot_enable_log_dirty(struct kvm *kvm,
12286 struct kvm_memory_slot *slot)
12287{
12288 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
12289 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
12290}
12291
12292static void vmx_slot_disable_log_dirty(struct kvm *kvm,
12293 struct kvm_memory_slot *slot)
12294{
12295 kvm_mmu_slot_set_dirty(kvm, slot);
12296}
12297
12298static void vmx_flush_log_dirty(struct kvm *kvm)
12299{
12300 kvm_flush_pml_buffers(kvm);
12301}
12302
Bandan Dasc5f983f2017-05-05 15:25:14 -040012303static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
12304{
12305 struct vmcs12 *vmcs12;
12306 struct vcpu_vmx *vmx = to_vmx(vcpu);
12307 gpa_t gpa;
12308 struct page *page = NULL;
12309 u64 *pml_address;
12310
12311 if (is_guest_mode(vcpu)) {
12312 WARN_ON_ONCE(vmx->nested.pml_full);
12313
12314 /*
12315 * Check if PML is enabled for the nested guest.
12316 * Whether eptp bit 6 is set is already checked
12317 * as part of A/D emulation.
12318 */
12319 vmcs12 = get_vmcs12(vcpu);
12320 if (!nested_cpu_has_pml(vmcs12))
12321 return 0;
12322
Dan Carpenter47698862017-05-10 22:43:17 +030012323 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040012324 vmx->nested.pml_full = true;
12325 return 1;
12326 }
12327
12328 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
12329
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020012330 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
12331 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040012332 return 0;
12333
12334 pml_address = kmap(page);
12335 pml_address[vmcs12->guest_pml_index--] = gpa;
12336 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020012337 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040012338 }
12339
12340 return 0;
12341}
12342
Kai Huang843e4332015-01-28 10:54:28 +080012343static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
12344 struct kvm_memory_slot *memslot,
12345 gfn_t offset, unsigned long mask)
12346{
12347 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
12348}
12349
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012350static void __pi_post_block(struct kvm_vcpu *vcpu)
12351{
12352 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
12353 struct pi_desc old, new;
12354 unsigned int dest;
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012355
12356 do {
12357 old.control = new.control = pi_desc->control;
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012358 WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR,
12359 "Wakeup handler not enabled while the VCPU is blocked\n");
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012360
12361 dest = cpu_physical_id(vcpu->cpu);
12362
12363 if (x2apic_enabled())
12364 new.ndst = dest;
12365 else
12366 new.ndst = (dest << 8) & 0xFF00;
12367
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012368 /* set 'NV' to 'notification vector' */
12369 new.nv = POSTED_INTR_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020012370 } while (cmpxchg64(&pi_desc->control, old.control,
12371 new.control) != old.control);
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012372
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012373 if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
12374 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012375 list_del(&vcpu->blocked_vcpu_list);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012376 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012377 vcpu->pre_pcpu = -1;
12378 }
12379}
12380
Feng Wuefc64402015-09-18 22:29:51 +080012381/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080012382 * This routine does the following things for vCPU which is going
12383 * to be blocked if VT-d PI is enabled.
12384 * - Store the vCPU to the wakeup list, so when interrupts happen
12385 * we can find the right vCPU to wake up.
12386 * - Change the Posted-interrupt descriptor as below:
12387 * 'NDST' <-- vcpu->pre_pcpu
12388 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
12389 * - If 'ON' is set during this process, which means at least one
12390 * interrupt is posted for this vCPU, we cannot block it, in
12391 * this case, return 1, otherwise, return 0.
12392 *
12393 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070012394static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012395{
Feng Wubf9f6ac2015-09-18 22:29:55 +080012396 unsigned int dest;
12397 struct pi_desc old, new;
12398 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
12399
12400 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080012401 !irq_remapping_cap(IRQ_POSTING_CAP) ||
12402 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080012403 return 0;
12404
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012405 WARN_ON(irqs_disabled());
12406 local_irq_disable();
12407 if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) {
12408 vcpu->pre_pcpu = vcpu->cpu;
12409 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
12410 list_add_tail(&vcpu->blocked_vcpu_list,
12411 &per_cpu(blocked_vcpu_on_cpu,
12412 vcpu->pre_pcpu));
12413 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
12414 }
Feng Wubf9f6ac2015-09-18 22:29:55 +080012415
12416 do {
12417 old.control = new.control = pi_desc->control;
12418
Feng Wubf9f6ac2015-09-18 22:29:55 +080012419 WARN((pi_desc->sn == 1),
12420 "Warning: SN field of posted-interrupts "
12421 "is set before blocking\n");
12422
12423 /*
12424 * Since vCPU can be preempted during this process,
12425 * vcpu->cpu could be different with pre_pcpu, we
12426 * need to set pre_pcpu as the destination of wakeup
12427 * notification event, then we can find the right vCPU
12428 * to wakeup in wakeup handler if interrupts happen
12429 * when the vCPU is in blocked state.
12430 */
12431 dest = cpu_physical_id(vcpu->pre_pcpu);
12432
12433 if (x2apic_enabled())
12434 new.ndst = dest;
12435 else
12436 new.ndst = (dest << 8) & 0xFF00;
12437
12438 /* set 'NV' to 'wakeup vector' */
12439 new.nv = POSTED_INTR_WAKEUP_VECTOR;
Paolo Bonzinic0a16662017-09-28 17:58:41 +020012440 } while (cmpxchg64(&pi_desc->control, old.control,
12441 new.control) != old.control);
Feng Wubf9f6ac2015-09-18 22:29:55 +080012442
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012443 /* We should not block the vCPU if an interrupt is posted for it. */
12444 if (pi_test_on(pi_desc) == 1)
12445 __pi_post_block(vcpu);
12446
12447 local_irq_enable();
12448 return (vcpu->pre_pcpu == -1);
Feng Wubf9f6ac2015-09-18 22:29:55 +080012449}
12450
Yunhong Jiangbc225122016-06-13 14:19:58 -070012451static int vmx_pre_block(struct kvm_vcpu *vcpu)
12452{
12453 if (pi_pre_block(vcpu))
12454 return 1;
12455
Yunhong Jiang64672c92016-06-13 14:19:59 -070012456 if (kvm_lapic_hv_timer_in_use(vcpu))
12457 kvm_lapic_switch_to_sw_timer(vcpu);
12458
Yunhong Jiangbc225122016-06-13 14:19:58 -070012459 return 0;
12460}
12461
12462static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012463{
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012464 if (vcpu->pre_pcpu == -1)
Feng Wubf9f6ac2015-09-18 22:29:55 +080012465 return;
12466
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012467 WARN_ON(irqs_disabled());
12468 local_irq_disable();
Paolo Bonzinicd39e112017-06-06 12:57:04 +020012469 __pi_post_block(vcpu);
Paolo Bonzini8b306e22017-06-06 12:57:05 +020012470 local_irq_enable();
Feng Wubf9f6ac2015-09-18 22:29:55 +080012471}
12472
Yunhong Jiangbc225122016-06-13 14:19:58 -070012473static void vmx_post_block(struct kvm_vcpu *vcpu)
12474{
Yunhong Jiang64672c92016-06-13 14:19:59 -070012475 if (kvm_x86_ops->set_hv_timer)
12476 kvm_lapic_switch_to_hv_timer(vcpu);
12477
Yunhong Jiangbc225122016-06-13 14:19:58 -070012478 pi_post_block(vcpu);
12479}
12480
Feng Wubf9f6ac2015-09-18 22:29:55 +080012481/*
Feng Wuefc64402015-09-18 22:29:51 +080012482 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
12483 *
12484 * @kvm: kvm
12485 * @host_irq: host irq of the interrupt
12486 * @guest_irq: gsi of the interrupt
12487 * @set: set or unset PI
12488 * returns 0 on success, < 0 on failure
12489 */
12490static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
12491 uint32_t guest_irq, bool set)
12492{
12493 struct kvm_kernel_irq_routing_entry *e;
12494 struct kvm_irq_routing_table *irq_rt;
12495 struct kvm_lapic_irq irq;
12496 struct kvm_vcpu *vcpu;
12497 struct vcpu_data vcpu_info;
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010012498 int idx, ret = 0;
Feng Wuefc64402015-09-18 22:29:51 +080012499
12500 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080012501 !irq_remapping_cap(IRQ_POSTING_CAP) ||
12502 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080012503 return 0;
12504
12505 idx = srcu_read_lock(&kvm->irq_srcu);
12506 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
Jan H. Schönherr3a8b0672017-09-07 19:02:30 +010012507 if (guest_irq >= irq_rt->nr_rt_entries ||
12508 hlist_empty(&irq_rt->map[guest_irq])) {
12509 pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n",
12510 guest_irq, irq_rt->nr_rt_entries);
12511 goto out;
12512 }
Feng Wuefc64402015-09-18 22:29:51 +080012513
12514 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
12515 if (e->type != KVM_IRQ_ROUTING_MSI)
12516 continue;
12517 /*
12518 * VT-d PI cannot support posting multicast/broadcast
12519 * interrupts to a vCPU, we still use interrupt remapping
12520 * for these kind of interrupts.
12521 *
12522 * For lowest-priority interrupts, we only support
12523 * those with single CPU as the destination, e.g. user
12524 * configures the interrupts via /proc/irq or uses
12525 * irqbalance to make the interrupts single-CPU.
12526 *
12527 * We will support full lowest-priority interrupt later.
12528 */
12529
Radim Krčmář371313132016-07-12 22:09:27 +020012530 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080012531 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
12532 /*
12533 * Make sure the IRTE is in remapped mode if
12534 * we don't handle it in posted mode.
12535 */
12536 ret = irq_set_vcpu_affinity(host_irq, NULL);
12537 if (ret < 0) {
12538 printk(KERN_INFO
12539 "failed to back to remapped mode, irq: %u\n",
12540 host_irq);
12541 goto out;
12542 }
12543
Feng Wuefc64402015-09-18 22:29:51 +080012544 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080012545 }
Feng Wuefc64402015-09-18 22:29:51 +080012546
12547 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
12548 vcpu_info.vector = irq.vector;
12549
hu huajun2698d822018-04-11 15:16:40 +080012550 trace_kvm_pi_irte_update(host_irq, vcpu->vcpu_id, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080012551 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
12552
12553 if (set)
12554 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
Haozhong Zhangdc91f2e2017-09-18 09:56:49 +080012555 else
Feng Wuefc64402015-09-18 22:29:51 +080012556 ret = irq_set_vcpu_affinity(host_irq, NULL);
Feng Wuefc64402015-09-18 22:29:51 +080012557
12558 if (ret < 0) {
12559 printk(KERN_INFO "%s: failed to update PI IRTE\n",
12560 __func__);
12561 goto out;
12562 }
12563 }
12564
12565 ret = 0;
12566out:
12567 srcu_read_unlock(&kvm->irq_srcu, idx);
12568 return ret;
12569}
12570
Ashok Rajc45dcc72016-06-22 14:59:56 +080012571static void vmx_setup_mce(struct kvm_vcpu *vcpu)
12572{
12573 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
12574 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
12575 FEATURE_CONTROL_LMCE;
12576 else
12577 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
12578 ~FEATURE_CONTROL_LMCE;
12579}
12580
Ladi Prosek72d7b372017-10-11 16:54:41 +020012581static int vmx_smi_allowed(struct kvm_vcpu *vcpu)
12582{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012583 /* we need a nested vmexit to enter SMM, postpone if run is pending */
12584 if (to_vmx(vcpu)->nested.nested_run_pending)
12585 return 0;
Ladi Prosek72d7b372017-10-11 16:54:41 +020012586 return 1;
12587}
12588
Ladi Prosek0234bf82017-10-11 16:54:40 +020012589static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate)
12590{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012591 struct vcpu_vmx *vmx = to_vmx(vcpu);
12592
12593 vmx->nested.smm.guest_mode = is_guest_mode(vcpu);
12594 if (vmx->nested.smm.guest_mode)
12595 nested_vmx_vmexit(vcpu, -1, 0, 0);
12596
12597 vmx->nested.smm.vmxon = vmx->nested.vmxon;
12598 vmx->nested.vmxon = false;
Wanpeng Licaa057a2018-03-12 04:53:03 -070012599 vmx_clear_hlt(vcpu);
Ladi Prosek0234bf82017-10-11 16:54:40 +020012600 return 0;
12601}
12602
12603static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase)
12604{
Ladi Prosek72e9cbd2017-10-11 16:54:43 +020012605 struct vcpu_vmx *vmx = to_vmx(vcpu);
12606 int ret;
12607
12608 if (vmx->nested.smm.vmxon) {
12609 vmx->nested.vmxon = true;
12610 vmx->nested.smm.vmxon = false;
12611 }
12612
12613 if (vmx->nested.smm.guest_mode) {
12614 vcpu->arch.hflags &= ~HF_SMM_MASK;
12615 ret = enter_vmx_non_root_mode(vcpu, false);
12616 vcpu->arch.hflags |= HF_SMM_MASK;
12617 if (ret)
12618 return ret;
12619
12620 vmx->nested.smm.guest_mode = false;
12621 }
Ladi Prosek0234bf82017-10-11 16:54:40 +020012622 return 0;
12623}
12624
Ladi Prosekcc3d9672017-10-17 16:02:39 +020012625static int enable_smi_window(struct kvm_vcpu *vcpu)
12626{
12627 return 0;
12628}
12629
Kees Cook404f6aa2016-08-08 16:29:06 -070012630static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080012631 .cpu_has_kvm_support = cpu_has_kvm_support,
12632 .disabled_by_bios = vmx_disabled_by_bios,
12633 .hardware_setup = hardware_setup,
12634 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030012635 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012636 .hardware_enable = hardware_enable,
12637 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080012638 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020012639 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012640
Wanpeng Lib31c1142018-03-12 04:53:04 -070012641 .vm_init = vmx_vm_init,
Sean Christopherson434a1e92018-03-20 12:17:18 -070012642 .vm_alloc = vmx_vm_alloc,
12643 .vm_free = vmx_vm_free,
Wanpeng Lib31c1142018-03-12 04:53:04 -070012644
Avi Kivity6aa8b732006-12-10 02:21:36 -080012645 .vcpu_create = vmx_create_vcpu,
12646 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030012647 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012648
Avi Kivity04d2cc72007-09-10 18:10:54 +030012649 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012650 .vcpu_load = vmx_vcpu_load,
12651 .vcpu_put = vmx_vcpu_put,
12652
Paolo Bonzinia96036b2015-11-10 11:55:36 +010012653 .update_bp_intercept = update_exception_bitmap,
Tom Lendacky801e4592018-02-21 13:39:51 -060012654 .get_msr_feature = vmx_get_msr_feature,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012655 .get_msr = vmx_get_msr,
12656 .set_msr = vmx_set_msr,
12657 .get_segment_base = vmx_get_segment_base,
12658 .get_segment = vmx_get_segment,
12659 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020012660 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012661 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020012662 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020012663 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030012664 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012665 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012666 .set_cr3 = vmx_set_cr3,
12667 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012668 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012669 .get_idt = vmx_get_idt,
12670 .set_idt = vmx_set_idt,
12671 .get_gdt = vmx_get_gdt,
12672 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010012673 .get_dr6 = vmx_get_dr6,
12674 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030012675 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010012676 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030012677 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012678 .get_rflags = vmx_get_rflags,
12679 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080012680
Avi Kivity6aa8b732006-12-10 02:21:36 -080012681 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012682
Avi Kivity6aa8b732006-12-10 02:21:36 -080012683 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020012684 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012685 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040012686 .set_interrupt_shadow = vmx_set_interrupt_shadow,
12687 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020012688 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030012689 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012690 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020012691 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030012692 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020012693 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012694 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010012695 .get_nmi_mask = vmx_get_nmi_mask,
12696 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012697 .enable_nmi_window = enable_nmi_window,
12698 .enable_irq_window = enable_irq_window,
12699 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080012700 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080012701 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030012702 .get_enable_apicv = vmx_get_enable_apicv,
12703 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012704 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010012705 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080012706 .hwapic_irr_update = vmx_hwapic_irr_update,
12707 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080012708 .sync_pir_to_irr = vmx_sync_pir_to_irr,
12709 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030012710
Izik Eiduscbc94022007-10-25 00:29:55 +020012711 .set_tss_addr = vmx_set_tss_addr,
Sean Christopherson2ac52ab2018-03-20 12:17:19 -070012712 .set_identity_map_addr = vmx_set_identity_map_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080012713 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080012714 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012715
Avi Kivity586f9602010-11-18 13:09:54 +020012716 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020012717
Sheng Yang17cc3932010-01-05 19:02:27 +080012718 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080012719
12720 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080012721
12722 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000012723 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020012724
12725 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080012726
12727 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012728
KarimAllah Ahmede79f2452018-04-14 05:10:52 +020012729 .read_l1_tsc_offset = vmx_read_l1_tsc_offset,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012730 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020012731
12732 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012733
12734 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080012735 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000012736 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080012737 .xsaves_supported = vmx_xsaves_supported,
Paolo Bonzini66336ca2016-07-12 10:36:41 +020012738 .umip_emulated = vmx_umip_emulated,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012739
12740 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012741
12742 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080012743
12744 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
12745 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
12746 .flush_log_dirty = vmx_flush_log_dirty,
12747 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040012748 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f72015-06-19 15:45:05 +020012749
Feng Wubf9f6ac2015-09-18 22:29:55 +080012750 .pre_block = vmx_pre_block,
12751 .post_block = vmx_post_block,
12752
Wei Huang25462f72015-06-19 15:45:05 +020012753 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080012754
12755 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070012756
12757#ifdef CONFIG_X86_64
12758 .set_hv_timer = vmx_set_hv_timer,
12759 .cancel_hv_timer = vmx_cancel_hv_timer,
12760#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080012761
12762 .setup_mce = vmx_setup_mce,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012763
Ladi Prosek72d7b372017-10-11 16:54:41 +020012764 .smi_allowed = vmx_smi_allowed,
Ladi Prosek0234bf82017-10-11 16:54:40 +020012765 .pre_enter_smm = vmx_pre_enter_smm,
12766 .pre_leave_smm = vmx_pre_leave_smm,
Ladi Prosekcc3d9672017-10-17 16:02:39 +020012767 .enable_smi_window = enable_smi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012768};
12769
12770static int __init vmx_init(void)
12771{
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010012772 int r;
12773
12774#if IS_ENABLED(CONFIG_HYPERV)
12775 /*
12776 * Enlightened VMCS usage should be recommended and the host needs
12777 * to support eVMCS v1 or above. We can also disable eVMCS support
12778 * with module parameter.
12779 */
12780 if (enlightened_vmcs &&
12781 ms_hyperv.hints & HV_X64_ENLIGHTENED_VMCS_RECOMMENDED &&
12782 (ms_hyperv.nested_features & HV_X64_ENLIGHTENED_VMCS_VERSION) >=
12783 KVM_EVMCS_VERSION) {
12784 int cpu;
12785
12786 /* Check that we have assist pages on all online CPUs */
12787 for_each_online_cpu(cpu) {
12788 if (!hv_get_vp_assist_page(cpu)) {
12789 enlightened_vmcs = false;
12790 break;
12791 }
12792 }
12793
12794 if (enlightened_vmcs) {
12795 pr_info("KVM: vmx: using Hyper-V Enlightened VMCS\n");
12796 static_branch_enable(&enable_evmcs);
12797 }
12798 } else {
12799 enlightened_vmcs = false;
12800 }
12801#endif
12802
12803 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012804 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030012805 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012806 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080012807
Dave Young2965faa2015-09-09 15:38:55 -070012808#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012809 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
12810 crash_vmclear_local_loaded_vmcss);
12811#endif
12812
He, Qingfdef3ad2007-04-30 09:45:24 +030012813 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080012814}
12815
12816static void __exit vmx_exit(void)
12817{
Dave Young2965faa2015-09-09 15:38:55 -070012818#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053012819 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012820 synchronize_rcu();
12821#endif
12822
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080012823 kvm_exit();
Vitaly Kuznetsov773e8a02018-03-20 15:02:11 +010012824
12825#if IS_ENABLED(CONFIG_HYPERV)
12826 if (static_branch_unlikely(&enable_evmcs)) {
12827 int cpu;
12828 struct hv_vp_assist_page *vp_ap;
12829 /*
12830 * Reset everything to support using non-enlightened VMCS
12831 * access later (e.g. when we reload the module with
12832 * enlightened_vmcs=0)
12833 */
12834 for_each_online_cpu(cpu) {
12835 vp_ap = hv_get_vp_assist_page(cpu);
12836
12837 if (!vp_ap)
12838 continue;
12839
12840 vp_ap->current_nested_vmcs = 0;
12841 vp_ap->enlighten_vmentry = 0;
12842 }
12843
12844 static_branch_disable(&enable_evmcs);
12845 }
12846#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080012847}
12848
12849module_init(vmx_init)
12850module_exit(vmx_exit)